Kconfig 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. config DTC
  2. bool
  3. config OF
  4. bool
  5. menu "Device Tree and Open Firmware support"
  6. depends on OF
  7. config OF_SELFTEST
  8. bool "Device Tree Runtime self tests"
  9. depends on OF_IRQ
  10. help
  11. This option builds in test cases for the device tree infrastructure
  12. that are executed once at boot time, and the results dumped to the
  13. console.
  14. If unsure, say N here, but this option is safe to enable.
  15. config OF_FLATTREE
  16. bool
  17. select DTC
  18. config OF_EARLY_FLATTREE
  19. bool
  20. select OF_FLATTREE
  21. config OF_PROMTREE
  22. bool
  23. # Hardly any platforms need this. It is safe to select, but only do so if you
  24. # need it.
  25. config OF_DYNAMIC
  26. bool
  27. config OF_ADDRESS
  28. def_bool y
  29. depends on !SPARC
  30. select OF_ADDRESS_PCI if PCI
  31. config OF_ADDRESS_PCI
  32. bool
  33. config OF_IRQ
  34. def_bool y
  35. depends on !SPARC
  36. config OF_NET
  37. depends on NETDEVICES
  38. def_bool y
  39. config OF_MDIO
  40. def_tristate PHYLIB
  41. depends on PHYLIB
  42. help
  43. OpenFirmware MDIO bus (Ethernet PHY) accessors
  44. config OF_PCI
  45. def_tristate PCI
  46. depends on PCI
  47. help
  48. OpenFirmware PCI bus accessors
  49. config OF_PCI_IRQ
  50. def_tristate PCI
  51. depends on OF_PCI && OF_IRQ
  52. help
  53. OpenFirmware PCI IRQ routing helpers
  54. config OF_MTD
  55. depends on MTD
  56. def_bool y
  57. config OF_RESERVED_MEM
  58. depends on OF_EARLY_FLATTREE
  59. bool
  60. help
  61. Helpers to allow for reservation of memory regions
  62. endmenu # OF