Grygorii Strashko | 1c5258f | 2019-02-05 17:31:22 +0530 | [diff] [blame] | 1 | menu "SOC (System On Chip) specific Drivers" |
| 2 | |
Dave Gerlach | 50a6c08 | 2020-07-15 23:39:57 -0500 | [diff] [blame] | 3 | config SOC_DEVICE |
| 4 | bool "Enable SoC Device ID drivers using Driver Model" |
| 5 | help |
| 6 | This allows drivers to be provided for SoCs to help in identifying |
| 7 | the SoC in use and matching SoC attributes for selecting SoC |
| 8 | specific data. This is useful for other device drivers that may |
| 9 | need different parameters or quirks enabled depending on the |
| 10 | specific device variant in use. |
| 11 | |
Michal Simek | 34d3512 | 2024-05-29 16:47:59 +0200 | [diff] [blame] | 12 | config SOC_AMD_VERSAL2 |
| 13 | bool "Enable SoC Device ID driver for AMD Versal Gen 2" |
| 14 | depends on SOC_DEVICE && ARCH_VERSAL2 |
| 15 | help |
| 16 | Enable this option to select SoC device id driver for AMD Versal Gen 2. |
| 17 | This allows other drivers to verify the SoC familiy & revision using |
| 18 | matching SoC attributes. |
| 19 | |
Dave Gerlach | f8f8b12 | 2020-07-15 23:39:59 -0500 | [diff] [blame] | 20 | config SOC_DEVICE_TI_K3 |
Andrew Davis | f92ee08 | 2023-04-06 11:38:12 -0500 | [diff] [blame] | 21 | depends on SOC_DEVICE && ARCH_K3 |
Dave Gerlach | f8f8b12 | 2020-07-15 23:39:59 -0500 | [diff] [blame] | 22 | bool "Enable SoC Device ID driver for TI K3 SoCs" |
| 23 | help |
| 24 | This allows Texas Instruments Keystone 3 SoCs to identify |
| 25 | specifics about the SoC in use. |
| 26 | |
T Karthik Reddy | 501c206 | 2021-08-10 06:50:18 -0600 | [diff] [blame] | 27 | config SOC_XILINX_ZYNQMP |
| 28 | bool "Enable SoC Device ID driver for Xilinx ZynqMP" |
| 29 | depends on SOC_DEVICE && ARCH_ZYNQMP |
| 30 | help |
| 31 | Enable this option to select SoC device id driver for Xilinx ZynqMP. |
| 32 | This allows other drivers to verify the SoC familiy & revision |
| 33 | using matching SoC attributes. |
| 34 | |
T Karthik Reddy | cb8485b | 2021-08-10 06:50:19 -0600 | [diff] [blame] | 35 | config SOC_XILINX_VERSAL |
| 36 | bool "Enable SoC Device ID driver for Xilinx Versal" |
| 37 | depends on SOC_DEVICE && ARCH_VERSAL |
| 38 | help |
| 39 | Enable this option to select SoC device id driver for Xilinx Versal. |
| 40 | This allows other drivers to verify the SoC familiy & revision using |
| 41 | matching SoC attributes. |
| 42 | |
Michal Simek | afcb640 | 2022-11-16 16:36:35 +0100 | [diff] [blame] | 43 | config SOC_XILINX_VERSAL_NET |
| 44 | bool "Enable SoC Device ID driver for Xilinx Versal NET" |
| 45 | depends on SOC_DEVICE && ARCH_VERSAL_NET |
| 46 | help |
| 47 | Enable this option to select SoC device id driver for Xilinx Versal NET. |
| 48 | This allows other drivers to verify the SoC familiy & revision using |
| 49 | matching SoC attributes. |
| 50 | |
Caleb Connolly | 8bef2e4 | 2024-07-15 12:08:14 +0200 | [diff] [blame] | 51 | source "drivers/soc/qcom/Kconfig" |
Sam Protsenko | 619e5e4 | 2024-01-10 21:09:00 -0600 | [diff] [blame] | 52 | source "drivers/soc/samsung/Kconfig" |
Grygorii Strashko | 1c5258f | 2019-02-05 17:31:22 +0530 | [diff] [blame] | 53 | source "drivers/soc/ti/Kconfig" |
| 54 | |
| 55 | endmenu |