aboutsummaryrefslogtreecommitdiff
path: root/drivers/misc/cardreader/Kconfig
AgeCommit message (Collapse)AuthorFilesLines
2024-10-18misc: rtsx: list supported models in Kconfig helpYo-Jung (Leo) Lin1-1/+2
rts5228, rts5261, rts5264 are supported by the rtsx_pci driver, but they are not mentioned in the Kconfig help when the code was added. List those models in the Kconfig help accordingly. Signed-off-by: Yo-Jung Lin (Leo) <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Greg Kroah-Hartman <[email protected]>
2019-05-21treewide: Add SPDX license identifier - Makefile/KconfigThomas Gleixner1-0/+1
Add SPDX license identifiers to all Make/Kconfig files which: - Have no license information of any form These files fall under the project license, GPL v2 only. The resulting SPDX license identifier is: GPL-2.0-only Signed-off-by: Thomas Gleixner <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
2018-12-17misc: cardreader: add new Alcor Micro Cardreader PCI driverOleksij Rempel1-0/+11
This driver provides support for Alcor Micro AU6601 and AU6621 card readers. This is single LUN HW and it is expected to work with following standards: - Support SDR104 / SDR50 - MultiMedia Card (MMC) - Memory Stick (MS) - Memory Stick PRO (MS_Pro) Since it is a PCIe controller, it should work on any architecture supporting PCIe. For now, it was developed and tested only on x86_64. This driver is a result of RE work and was created without any documentation or real knowledge of HW internals. Signed-off-by: Oleksij Rempel <[email protected]> Signed-off-by: Ulf Hansson <[email protected]>
2017-11-29misc: rtsx: Add support for RTS5260Rui Feng1-1/+1
Add support for new chip rts5260. In order to support rts5260, the definitions of some internal registers and workflow have to be modified and are different from its predecessors and OCP function is added for RTS5260. So we need this patch to ensure RTS5260 can work. Signed-off-by: Rui Feng <[email protected]> Reviewed-by: Daniel Bristot de Oliveira <[email protected]> Tested-by: Perry Yuan <[email protected]> Signed-off-by: Lee Jones <[email protected]>
2017-11-29misc: rtsx: Move Realtek Card Reader Driver to miscRui Feng1-0/+20
Because Realtek card reader drivers are pcie and usb drivers, and they bridge mmc subsystem and memstick subsystem, they are not mfd drivers. Greg and Lee Jones had a discussion about where to put the drivers, the result is that misc is a good place for them, so I move all files to misc. If I don't move them to a right place, I can't add any patch for this driver. Signed-off-by: Rui Feng <[email protected]> Reviewed-by: Daniel Bristot de Oliveira <[email protected]> Acked-by: Arnd Bergmann <[email protected]> Acked-by: Ulf Hansson <[email protected]> Acked-by: Greg Kroah-Hartman <[email protected]> Tested-by: Perry Yuan <[email protected]> Signed-off-by: Lee Jones <[email protected]>