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