Kconfig 835 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. # SPDX-License-Identifier: BSD-2-Clause
  2. config PLATFORM_GENERIC
  3. bool
  4. select FDT
  5. select FDT_DOMAIN
  6. select FDT_PMU
  7. default y
  8. if PLATFORM_GENERIC
  9. config PLATFORM_GENERIC_NAME
  10. string "Platform default name"
  11. default "Generic"
  12. config PLATFORM_GENERIC_MAJOR_VER
  13. int "Platform major version"
  14. range 0 65535
  15. default 0
  16. config PLATFORM_GENERIC_MINOR_VER
  17. int "Platform minor version"
  18. range 0 65535
  19. default 1
  20. config PLATFORM_ALLWINNER_D1
  21. bool "Allwinner D1 support"
  22. depends on FDT_IRQCHIP_PLIC
  23. default n
  24. config PLATFORM_ANDES_AE350
  25. bool "Andes AE350 support"
  26. default n
  27. config PLATFORM_RENESAS_RZFIVE
  28. bool "Renesas RZ/Five support"
  29. default n
  30. config PLATFORM_SIFIVE_FU540
  31. bool "SiFive FU540 support"
  32. default n
  33. config PLATFORM_SIFIVE_FU740
  34. bool "SiFive FU740 support"
  35. depends on FDT_RESET && FDT_I2C
  36. default n
  37. endif