http://downloads.netgear.com/files/GPL/GPL_Source_V361j_DM111PSP_series_consumer_rele...
[bcm963xx.git] / kernel / linux / arch / arm / mach-ixp4xx / Kconfig
1 if ARCH_IXP4XX
2
3 config ARCH_SUPPORTS_BIG_ENDIAN
4         bool
5         default y
6
7 menu "Intel IXP4xx Implementation Options"
8
9 comment "IXP4xx Platforms"
10
11 config ARCH_AVILA
12         bool "Avila"
13         help
14           Say 'Y' here if you want your kernel to support the Gateworks
15           Avila Network Platform. For more information on this platform,
16           see Documentation/arm/IXP4xx.
17
18 config ARCH_ADI_COYOTE
19         bool "Coyote"
20         help
21           Say 'Y' here if you want your kernel to support the ADI 
22           Engineering Coyote Gateway Reference Platform. For more
23           information on this platform, see Documentation/arm/IXP4xx.
24
25 config ARCH_IXDP425
26         bool "IXDP425"
27         help
28           Say 'Y' here if you want your kernel to support Intel's 
29           IXDP425 Development Platform (Also known as Richfield).  
30           For more information on this platform, see Documentation/arm/IXP4xx.
31
32 #
33 # IXCDP1100 is the exact same HW as IXDP425, but with a different machine 
34 # number from the bootloader due to marketing monkeys, so we just enable it 
35 # by default if IXDP425 is enabled.
36 #
37 config ARCH_IXCDP1100
38         bool 
39         depends on ARCH_IXDP425
40         default y
41
42 config ARCH_PRPMC1100
43         bool "PrPMC1100"
44         help
45           Say 'Y' here if you want your kernel to support the Motorola
46           PrPCM1100 Processor Mezanine Module. For more information on
47           this platform, see Documentation/arm/IXP4xx.
48
49 #
50 # Avila and IXDP share the same source for now. Will change in future
51 #
52 config  ARCH_IXDP4XX
53         bool
54         depends on ARCH_IXDP425 || ARCH_AVILA
55         default y
56
57 comment "IXP4xx Options"
58
59 config IXP4XX_INDIRECT_PCI
60         bool "Use indirect PCI memory access"
61         help
62           IXP4xx provides two methods of accessing PCI memory space:
63
64           1) A direct mapped window from 0x48000000 to 0x4bffffff (64MB).
65              To access PCI via this space, we simply ioremap() the BAR
66              into the kernel and we can use the standard read[bwl]/write[bwl]
67              macros. This is the preffered method due to speed but it
68              limits the system to just 64MB of PCI memory. This can be 
69              problamatic if using video cards and other memory-heavy devices.
70           
71           2) If > 64MB of memory space is required, the IXP4xx can be 
72              configured to use indirect registers to access PCI This allows 
73              for up to 128MB (0x48000000 to 0x4fffffff) of memory on the bus. 
74              The disadvantadge of this is that every PCI access requires 
75              three local register accesses plus a spinlock, but in some 
76              cases the performance hit is acceptable. In addition, you cannot 
77              mmap() PCI devices in this case due to the indirect nature
78              of the PCI window.
79
80           By default, the direct method is used. Choose this option if you
81           need to use the indirect method instead. If you don't know
82           what you need, leave this option unselected.
83
84 endmenu
85
86 endif