Grygorii Strashko | 432f66f | 2019-02-05 17:31:22 +0530 | [diff] [blame] | 1 | menu "SOC (System On Chip) specific Drivers" |
| 2 | |
Dave Gerlach | 6d3b82d | 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 | |
Dave Gerlach | 3e1b59c | 2020-07-15 23:39:59 -0500 | [diff] [blame] | 12 | config SOC_DEVICE_TI_K3 |
| 13 | depends on SOC_DEVICE |
| 14 | bool "Enable SoC Device ID driver for TI K3 SoCs" |
| 15 | help |
| 16 | This allows Texas Instruments Keystone 3 SoCs to identify |
| 17 | specifics about the SoC in use. |
| 18 | |
T Karthik Reddy | a890a53 | 2021-08-10 06:50:18 -0600 | [diff] [blame] | 19 | config SOC_XILINX_ZYNQMP |
| 20 | bool "Enable SoC Device ID driver for Xilinx ZynqMP" |
| 21 | depends on SOC_DEVICE && ARCH_ZYNQMP |
| 22 | help |
| 23 | Enable this option to select SoC device id driver for Xilinx ZynqMP. |
| 24 | This allows other drivers to verify the SoC familiy & revision |
| 25 | using matching SoC attributes. |
| 26 | |
T Karthik Reddy | 42e20f5 | 2021-08-10 06:50:19 -0600 | [diff] [blame] | 27 | config SOC_XILINX_VERSAL |
| 28 | bool "Enable SoC Device ID driver for Xilinx Versal" |
| 29 | depends on SOC_DEVICE && ARCH_VERSAL |
| 30 | help |
| 31 | Enable this option to select SoC device id driver for Xilinx Versal. |
| 32 | This allows other drivers to verify the SoC familiy & revision using |
| 33 | matching SoC attributes. |
| 34 | |
Michal Simek | 64fc7fc | 2022-11-16 16:36:35 +0100 | [diff] [blame] | 35 | config SOC_XILINX_VERSAL_NET |
| 36 | bool "Enable SoC Device ID driver for Xilinx Versal NET" |
| 37 | depends on SOC_DEVICE && ARCH_VERSAL_NET |
| 38 | help |
| 39 | Enable this option to select SoC device id driver for Xilinx Versal NET. |
| 40 | This allows other drivers to verify the SoC familiy & revision using |
| 41 | matching SoC attributes. |
| 42 | |
Grygorii Strashko | 432f66f | 2019-02-05 17:31:22 +0530 | [diff] [blame] | 43 | source "drivers/soc/ti/Kconfig" |
| 44 | |
| 45 | endmenu |