Merge branch 'linux-2.6'
[pandora-kernel.git] / arch / powerpc / platforms / 8xx / Kconfig
1 config FADS
2         bool
3
4 config CPM1
5         bool
6         select CPM
7
8 choice
9         prompt "8xx Machine Type"
10         depends on PPC_8xx
11         depends on 8xx
12         default MPC885ADS
13
14 config MPC8XXFADS
15         bool "FADS"
16         select FADS
17
18 config MPC86XADS
19         bool "MPC86XADS"
20         select CPM1
21         select PPC_CPM_NEW_BINDING
22         help
23           MPC86x Application Development System by Freescale Semiconductor.
24           The MPC86xADS is meant to serve as a platform for s/w and h/w
25           development around the MPC86X processor families.
26
27 config MPC885ADS
28         bool "MPC885ADS"
29         select CPM1
30         select PPC_CPM_NEW_BINDING
31         help
32           Freescale Semiconductor MPC885 Application Development System (ADS).
33           Also known as DUET.
34           The MPC885ADS is meant to serve as a platform for s/w and h/w
35           development around the MPC885 processor family.
36
37 config PPC_EP88XC
38         bool "Embedded Planet EP88xC (a.k.a. CWH-PPC-885XN-VE)"
39         select CPM1
40         select PPC_CPM_NEW_BINDING
41         help
42           This enables support for the Embedded Planet EP88xC board.
43
44           This board is also resold by Freescale as the QUICCStart
45           MPC885 Evaluation System and/or the CWH-PPC-885XN-VE.
46
47 endchoice
48
49 menu "Freescale Ethernet driver platform-specific options"
50         depends on (FS_ENET && MPC885ADS)
51
52         config MPC8xx_SECOND_ETH
53         bool "Second Ethernet channel"
54         depends on MPC885ADS
55         default y
56         help
57           This enables support for second Ethernet on MPC885ADS and MPC86xADS boards.
58           The latter will use SCC1, for 885ADS you can select it below.
59
60         choice
61                 prompt "Second Ethernet channel"
62                 depends on MPC8xx_SECOND_ETH
63                 default MPC8xx_SECOND_ETH_FEC2
64
65                 config MPC8xx_SECOND_ETH_FEC2
66                 bool "FEC2"
67                 depends on MPC885ADS
68                 help
69                   Enable FEC2 to serve as 2-nd Ethernet channel. Note that SMC2
70                   (often 2-nd UART) will not work if this is enabled.
71
72                 config MPC8xx_SECOND_ETH_SCC3
73                 bool "SCC3"
74                 depends on MPC885ADS
75                 help
76                   Enable SCC3 to serve as 2-nd Ethernet channel. Note that SMC1
77                   (often 1-nd UART) will not work if this is enabled.
78
79         endchoice
80
81 endmenu
82
83 #
84 # MPC8xx Communication options
85 #
86
87 menu "MPC8xx CPM Options"
88         depends on 8xx
89
90 # This doesn't really belong here, but it is convenient to ask
91 # 8xx specific questions.
92 comment "Generic MPC8xx Options"
93
94 config 8xx_COPYBACK
95         bool "Copy-Back Data Cache (else Writethrough)"
96         help
97           Saying Y here will cause the cache on an MPC8xx processor to be used
98           in Copy-Back mode.  If you say N here, it is used in Writethrough
99           mode.
100
101           If in doubt, say Y here.
102
103 config 8xx_CPU6
104         bool "CPU6 Silicon Errata (860 Pre Rev. C)"
105         help
106           MPC860 CPUs, prior to Rev C have some bugs in the silicon, which
107           require workarounds for Linux (and most other OSes to work).  If you
108           get a BUG() very early in boot, this might fix the problem.  For
109           more details read the document entitled "MPC860 Family Device Errata
110           Reference" on Freescale's website.  This option also incurs a
111           performance hit.
112
113           If in doubt, say N here.
114
115 config 8xx_CPU15
116         bool "CPU15 Silicon Errata"
117         default y
118         help
119           This enables a workaround for erratum CPU15 on MPC8xx chips.
120           This bug can cause incorrect code execution under certain
121           circumstances.  This workaround adds some overhead (a TLB miss
122           every time execution crosses a page boundary), and you may wish
123           to disable it if you have worked around the bug in the compiler
124           (by not placing conditional branches or branches to LR or CTR
125           in the last word of a page, with a target of the last cache
126           line in the next page), or if you have used some other
127           workaround.
128
129           If in doubt, say Y here.
130
131 choice
132         prompt "Microcode patch selection"
133         default NO_UCODE_PATCH
134         help
135           Help not implemented yet, coming soon.
136
137 config NO_UCODE_PATCH
138         bool "None"
139
140 config USB_SOF_UCODE_PATCH
141         bool "USB SOF patch"
142         help
143           Help not implemented yet, coming soon.
144
145 config I2C_SPI_UCODE_PATCH
146         bool "I2C/SPI relocation patch"
147         help
148           Help not implemented yet, coming soon.
149
150 config I2C_SPI_SMC1_UCODE_PATCH
151         bool "I2C/SPI/SMC1 relocation patch"
152         help
153           Help not implemented yet, coming soon.
154
155 endchoice
156
157 config UCODE_PATCH
158         bool
159         default y
160         depends on !NO_UCODE_PATCH
161
162 endmenu