Kconfig 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. if ARCH_IXP4XX
  2. config ARCH_SUPPORTS_BIG_ENDIAN
  3. bool
  4. default y
  5. menu "Intel IXP4xx Implementation Options"
  6. comment "IXP4xx Platforms"
  7. config MACH_NSLU2
  8. bool
  9. prompt "Linksys NSLU2"
  10. help
  11. Say 'Y' here if you want your kernel to support Linksys's
  12. NSLU2 NAS device. For more information on this platform,
  13. see http://www.nslu2-linux.org
  14. config ARCH_AVILA
  15. bool "Avila"
  16. help
  17. Say 'Y' here if you want your kernel to support the Gateworks
  18. Avila Network Platform. For more information on this platform,
  19. see <file:Documentation/arm/IXP4xx>.
  20. config ARCH_ADI_COYOTE
  21. bool "Coyote"
  22. help
  23. Say 'Y' here if you want your kernel to support the ADI
  24. Engineering Coyote Gateway Reference Platform. For more
  25. information on this platform, see <file:Documentation/arm/IXP4xx>.
  26. config ARCH_IXDP425
  27. bool "IXDP425"
  28. help
  29. Say 'Y' here if you want your kernel to support Intel's
  30. IXDP425 Development Platform (Also known as Richfield).
  31. For more information on this platform, see <file:Documentation/arm/IXP4xx>.
  32. config MACH_IXDPG425
  33. bool "IXDPG425"
  34. help
  35. Say 'Y' here if you want your kernel to support Intel's
  36. IXDPG425 Development Platform (Also known as Montajade).
  37. For more information on this platform, see <file:Documentation/arm/IXP4xx>.
  38. config MACH_IXDP465
  39. bool "IXDP465"
  40. help
  41. Say 'Y' here if you want your kernel to support Intel's
  42. IXDP465 Development Platform (Also known as BMP).
  43. For more information on this platform, see <file:Documentation/arm/IXP4xx>.
  44. #
  45. # IXCDP1100 is the exact same HW as IXDP425, but with a different machine
  46. # number from the bootloader due to marketing monkeys, so we just enable it
  47. # by default if IXDP425 is enabled.
  48. #
  49. config ARCH_IXCDP1100
  50. bool
  51. depends on ARCH_IXDP425
  52. default y
  53. config ARCH_PRPMC1100
  54. bool "PrPMC1100"
  55. help
  56. Say 'Y' here if you want your kernel to support the Motorola
  57. PrPCM1100 Processor Mezanine Module. For more information on
  58. this platform, see <file:Documentation/arm/IXP4xx>.
  59. config MACH_NAS100D
  60. bool
  61. prompt "NAS100D"
  62. help
  63. Say 'Y' here if you want your kernel to support Iomega's
  64. NAS 100d device. For more information on this platform,
  65. see http://www.nslu2-linux.org/wiki/NAS100d/HomePage
  66. #
  67. # Avila and IXDP share the same source for now. Will change in future
  68. #
  69. config ARCH_IXDP4XX
  70. bool
  71. depends on ARCH_IXDP425 || ARCH_AVILA || MACH_IXDP465
  72. default y
  73. #
  74. # Certain registers and IRQs are only enabled if supporting IXP465 CPUs
  75. #
  76. config CPU_IXP46X
  77. bool
  78. depends on MACH_IXDP465
  79. default y
  80. config MACH_GTWX5715
  81. bool "Gemtek WX5715 (Linksys WRV54G)"
  82. depends on ARCH_IXP4XX
  83. help
  84. This board is currently inside the Linksys WRV54G Gateways.
  85. IXP425 - 266mhz
  86. 32mb SDRAM
  87. 8mb Flash
  88. miniPCI slot 0 does not have a card connector soldered to the board
  89. miniPCI slot 1 has an ISL3880 802.11g card (Prism54)
  90. npe0 is connected to a Kendin KS8995M Switch (4 ports)
  91. npe1 is the "wan" port
  92. "Console" UART is available on J11 as console
  93. "High Speed" UART is n/c (as far as I can tell)
  94. 20 Pin ARM/Xscale JTAG interface on J2
  95. comment "IXP4xx Options"
  96. config IXP4XX_INDIRECT_PCI
  97. bool "Use indirect PCI memory access"
  98. help
  99. IXP4xx provides two methods of accessing PCI memory space:
  100. 1) A direct mapped window from 0x48000000 to 0x4bffffff (64MB).
  101. To access PCI via this space, we simply ioremap() the BAR
  102. into the kernel and we can use the standard read[bwl]/write[bwl]
  103. macros. This is the preferred method due to speed but it
  104. limits the system to just 64MB of PCI memory. This can be
  105. problamatic if using video cards and other memory-heavy devices.
  106. 2) If > 64MB of memory space is required, the IXP4xx can be
  107. configured to use indirect registers to access PCI This allows
  108. for up to 128MB (0x48000000 to 0x4fffffff) of memory on the bus.
  109. The disadvantadge of this is that every PCI access requires
  110. three local register accesses plus a spinlock, but in some
  111. cases the performance hit is acceptable. In addition, you cannot
  112. mmap() PCI devices in this case due to the indirect nature
  113. of the PCI window.
  114. By default, the direct method is used. Choose this option if you
  115. need to use the indirect method instead. If you don't know
  116. what you need, leave this option unselected.
  117. endmenu
  118. endif