Kconfig 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. if BMIPS_GENERIC
  2. choice
  3. prompt "Built-in device tree"
  4. help
  5. Legacy bootloaders do not pass a DTB pointer to the kernel, so
  6. if a "wrapper" is not being used, the kernel will need to include
  7. a device tree that matches the target board.
  8. The builtin DTB will only be used if the firmware does not supply
  9. a valid DTB.
  10. config DT_NONE
  11. bool "None"
  12. config DT_BCM93384WVG
  13. bool "BCM93384WVG Zephyr CPU"
  14. select BUILTIN_DTB
  15. config DT_BCM93384WVG_VIPER
  16. bool "BCM93384WVG Viper CPU (EXPERIMENTAL)"
  17. select BUILTIN_DTB
  18. config DT_BCM96368MVWG
  19. bool "BCM96368MVWG"
  20. select BUILTIN_DTB
  21. config DT_BCM9EJTAGPRB
  22. bool "BCM9EJTAGPRB"
  23. select BUILTIN_DTB
  24. config DT_BCM97125CBMB
  25. bool "BCM97125CBMB"
  26. select BUILTIN_DTB
  27. config DT_BCM97346DBSMB
  28. bool "BCM97346DBSMB"
  29. select BUILTIN_DTB
  30. config DT_BCM97358SVMB
  31. bool "BCM97358SVMB"
  32. select BUILTIN_DTB
  33. config DT_BCM97360SVMB
  34. bool "BCM97360SVMB"
  35. select BUILTIN_DTB
  36. config DT_BCM97362SVMB
  37. bool "BCM97362SVMB"
  38. select BUILTIN_DTB
  39. config DT_BCM97420C
  40. bool "BCM97420C"
  41. select BUILTIN_DTB
  42. config DT_BCM97425SVMB
  43. bool "BCM97425SVMB"
  44. select BUILTIN_DTB
  45. config DT_BCM97435SVMB
  46. bool "BCM97435SVMB"
  47. select BUILTIN_DTB
  48. endchoice
  49. endif