Kconfig 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. menu "SOC (System On Chip) specific Drivers"
  2. config SOC_DEVICE
  3. bool "Enable SoC Device ID drivers using Driver Model"
  4. help
  5. This allows drivers to be provided for SoCs to help in identifying
  6. the SoC in use and matching SoC attributes for selecting SoC
  7. specific data. This is useful for other device drivers that may
  8. need different parameters or quirks enabled depending on the
  9. specific device variant in use.
  10. config SOC_DEVICE_TI_K3
  11. depends on SOC_DEVICE
  12. bool "Enable SoC Device ID driver for TI K3 SoCs"
  13. help
  14. This allows Texas Instruments Keystone 3 SoCs to identify
  15. specifics about the SoC in use.
  16. config SOC_XILINX_ZYNQMP
  17. bool "Enable SoC Device ID driver for Xilinx ZynqMP"
  18. depends on SOC_DEVICE && ARCH_ZYNQMP
  19. help
  20. Enable this option to select SoC device id driver for Xilinx ZynqMP.
  21. This allows other drivers to verify the SoC familiy & revision
  22. using matching SoC attributes.
  23. config SOC_XILINX_VERSAL
  24. bool "Enable SoC Device ID driver for Xilinx Versal"
  25. depends on SOC_DEVICE && ARCH_VERSAL
  26. help
  27. Enable this option to select SoC device id driver for Xilinx Versal.
  28. This allows other drivers to verify the SoC familiy & revision using
  29. matching SoC attributes.
  30. source "drivers/soc/ti/Kconfig"
  31. endmenu