MIPS: Make CM GCR base configurable
[platform/kernel/u-boot.git] / arch / mips / Kconfig
1 menu "MIPS architecture"
2         depends on MIPS
3
4 config SYS_ARCH
5         default "mips"
6
7 config SYS_CPU
8         default "mips32" if CPU_MIPS32
9         default "mips64" if CPU_MIPS64
10
11 choice
12         prompt "Target select"
13         optional
14
15 config TARGET_QEMU_MIPS
16         bool "Support qemu-mips"
17         select SUPPORTS_BIG_ENDIAN
18         select SUPPORTS_LITTLE_ENDIAN
19         select SUPPORTS_CPU_MIPS32_R1
20         select SUPPORTS_CPU_MIPS32_R2
21         select SUPPORTS_CPU_MIPS64_R1
22         select SUPPORTS_CPU_MIPS64_R2
23         select ROM_EXCEPTION_VECTORS
24
25 config TARGET_MALTA
26         bool "Support malta"
27         select DM
28         select DM_SERIAL
29         select DYNAMIC_IO_PORT_BASE
30         select MIPS_CM
31         select MIPS_L2_CACHE
32         select OF_CONTROL
33         select OF_ISA_BUS
34         select SUPPORTS_BIG_ENDIAN
35         select SUPPORTS_LITTLE_ENDIAN
36         select SUPPORTS_CPU_MIPS32_R1
37         select SUPPORTS_CPU_MIPS32_R2
38         select SUPPORTS_CPU_MIPS32_R6
39         select SUPPORTS_CPU_MIPS64_R1
40         select SUPPORTS_CPU_MIPS64_R2
41         select SUPPORTS_CPU_MIPS64_R6
42         select SWAP_IO_SPACE
43         select MIPS_L1_CACHE_SHIFT_6
44         select ROM_EXCEPTION_VECTORS
45
46 config TARGET_VCT
47         bool "Support vct"
48         select SUPPORTS_BIG_ENDIAN
49         select SUPPORTS_CPU_MIPS32_R1
50         select SUPPORTS_CPU_MIPS32_R2
51         select SYS_MIPS_CACHE_INIT_RAM_LOAD
52         select ROM_EXCEPTION_VECTORS
53
54 config TARGET_DBAU1X00
55         bool "Support dbau1x00"
56         select SUPPORTS_BIG_ENDIAN
57         select SUPPORTS_LITTLE_ENDIAN
58         select SUPPORTS_CPU_MIPS32_R1
59         select SUPPORTS_CPU_MIPS32_R2
60         select SYS_MIPS_CACHE_INIT_RAM_LOAD
61         select ROM_EXCEPTION_VECTORS
62         select MIPS_TUNE_4KC
63
64 config TARGET_PB1X00
65         bool "Support pb1x00"
66         select SUPPORTS_LITTLE_ENDIAN
67         select SUPPORTS_CPU_MIPS32_R1
68         select SUPPORTS_CPU_MIPS32_R2
69         select SYS_MIPS_CACHE_INIT_RAM_LOAD
70         select ROM_EXCEPTION_VECTORS
71         select MIPS_TUNE_4KC
72
73 config ARCH_ATH79
74         bool "Support QCA/Atheros ath79"
75         select OF_CONTROL
76         select DM
77
78 config ARCH_BMIPS
79         bool "Support BMIPS SoCs"
80         select OF_CONTROL
81         select DM
82         select CLK
83         select CPU
84         select RAM
85         select SYSRESET
86
87 config MACH_PIC32
88         bool "Support Microchip PIC32"
89         select OF_CONTROL
90         select DM
91
92 config TARGET_BOSTON
93         bool "Support Boston"
94         select DM
95         select DM_SERIAL
96         select OF_CONTROL
97         select MIPS_CM
98         select MIPS_L1_CACHE_SHIFT_6
99         select MIPS_L2_CACHE
100         select SUPPORTS_BIG_ENDIAN
101         select SUPPORTS_LITTLE_ENDIAN
102         select SUPPORTS_CPU_MIPS32_R1
103         select SUPPORTS_CPU_MIPS32_R2
104         select SUPPORTS_CPU_MIPS32_R6
105         select SUPPORTS_CPU_MIPS64_R1
106         select SUPPORTS_CPU_MIPS64_R2
107         select SUPPORTS_CPU_MIPS64_R6
108         select ROM_EXCEPTION_VECTORS
109
110 config TARGET_XILFPGA
111         bool "Support Imagination Xilfpga"
112         select OF_CONTROL
113         select DM
114         select DM_SERIAL
115         select DM_GPIO
116         select DM_ETH
117         select SUPPORTS_LITTLE_ENDIAN
118         select SUPPORTS_CPU_MIPS32_R1
119         select SUPPORTS_CPU_MIPS32_R2
120         select MIPS_L1_CACHE_SHIFT_4
121         select ROM_EXCEPTION_VECTORS
122         help
123           This supports IMGTEC MIPSfpga platform
124
125 endchoice
126
127 source "board/dbau1x00/Kconfig"
128 source "board/imgtec/boston/Kconfig"
129 source "board/imgtec/malta/Kconfig"
130 source "board/imgtec/xilfpga/Kconfig"
131 source "board/micronas/vct/Kconfig"
132 source "board/pb1x00/Kconfig"
133 source "board/qemu-mips/Kconfig"
134 source "arch/mips/mach-ath79/Kconfig"
135 source "arch/mips/mach-bmips/Kconfig"
136 source "arch/mips/mach-pic32/Kconfig"
137
138 if MIPS
139
140 choice
141         prompt "Endianness selection"
142         help
143           Some MIPS boards can be configured for either little or big endian
144           byte order. These modes require different U-Boot images. In general there
145           is one preferred byteorder for a particular system but some systems are
146           just as commonly used in the one or the other endianness.
147
148 config SYS_BIG_ENDIAN
149         bool "Big endian"
150         depends on SUPPORTS_BIG_ENDIAN
151
152 config SYS_LITTLE_ENDIAN
153         bool "Little endian"
154         depends on SUPPORTS_LITTLE_ENDIAN
155
156 endchoice
157
158 choice
159         prompt "CPU selection"
160         default CPU_MIPS32_R2
161
162 config CPU_MIPS32_R1
163         bool "MIPS32 Release 1"
164         depends on SUPPORTS_CPU_MIPS32_R1
165         select 32BIT
166         help
167           Choose this option to build an U-Boot for release 1 through 5 of the
168           MIPS32 architecture.
169
170 config CPU_MIPS32_R2
171         bool "MIPS32 Release 2"
172         depends on SUPPORTS_CPU_MIPS32_R2
173         select 32BIT
174         help
175           Choose this option to build an U-Boot for release 2 through 5 of the
176           MIPS32 architecture.
177
178 config CPU_MIPS32_R6
179         bool "MIPS32 Release 6"
180         depends on SUPPORTS_CPU_MIPS32_R6
181         select 32BIT
182         help
183           Choose this option to build an U-Boot for release 6 or later of the
184           MIPS32 architecture.
185
186 config CPU_MIPS64_R1
187         bool "MIPS64 Release 1"
188         depends on SUPPORTS_CPU_MIPS64_R1
189         select 64BIT
190         help
191           Choose this option to build a kernel for release 1 through 5 of the
192           MIPS64 architecture.
193
194 config CPU_MIPS64_R2
195         bool "MIPS64 Release 2"
196         depends on SUPPORTS_CPU_MIPS64_R2
197         select 64BIT
198         help
199           Choose this option to build a kernel for release 2 through 5 of the
200           MIPS64 architecture.
201
202 config CPU_MIPS64_R6
203         bool "MIPS64 Release 6"
204         depends on SUPPORTS_CPU_MIPS64_R6
205         select 64BIT
206         help
207           Choose this option to build a kernel for release 6 or later of the
208           MIPS64 architecture.
209
210 endchoice
211
212 menu "General setup"
213
214 config ROM_EXCEPTION_VECTORS
215         bool "Build U-Boot image with exception vectors"
216         help
217           Enable this to include exception vectors in the U-Boot image. This is
218           required if the U-Boot entry point is equal to the address of the
219           CPU reset exception vector (e.g. U-Boot as ROM loader in Qemu,
220           U-Boot booted from parallel NOR flash).
221           Disable this, if the U-Boot image is booted from DRAM (e.g. by SPL).
222           In that case the image size will be reduced by 0x500 bytes.
223
224 config MIPS_CM_BASE
225         hex "MIPS CM GCR Base Address"
226         depends on MIPS_CM
227         default 0x1fbf8000
228         help
229           The physical base address at which to map the MIPS Coherence Manager
230           Global Configuration Registers (GCRs). This should be set such that
231           the GCRs occupy a region of the physical address space which is
232           otherwise unused, or at minimum that software doesn't need to access.
233
234 endmenu
235
236 menu "OS boot interface"
237
238 config MIPS_BOOT_CMDLINE_LEGACY
239         bool "Hand over legacy command line to Linux kernel"
240         default y
241         help
242           Enable this option if you want U-Boot to hand over the Yamon-style
243           command line to the kernel. All bootargs will be prepared as argc/argv
244           compatible list. The argument count (argc) is stored in register $a0.
245           The address of the argument list (argv) is stored in register $a1.
246
247 config MIPS_BOOT_ENV_LEGACY
248         bool "Hand over legacy environment to Linux kernel"
249         default y
250         help
251           Enable this option if you want U-Boot to hand over the Yamon-style
252           environment to the kernel. Information like memory size, initrd
253           address and size will be prepared as zero-terminated key/value list.
254           The address of the environment is stored in register $a2.
255
256 config MIPS_BOOT_FDT
257         bool "Hand over a flattened device tree to Linux kernel"
258         default n
259         help
260           Enable this option if you want U-Boot to hand over a flattened
261           device tree to the kernel. According to UHI register $a0 will be set
262           to -2 and the FDT address is stored in $a1.
263
264 endmenu
265
266 config SUPPORTS_BIG_ENDIAN
267         bool
268
269 config SUPPORTS_LITTLE_ENDIAN
270         bool
271
272 config SUPPORTS_CPU_MIPS32_R1
273         bool
274
275 config SUPPORTS_CPU_MIPS32_R2
276         bool
277
278 config SUPPORTS_CPU_MIPS32_R6
279         bool
280
281 config SUPPORTS_CPU_MIPS64_R1
282         bool
283
284 config SUPPORTS_CPU_MIPS64_R2
285         bool
286
287 config SUPPORTS_CPU_MIPS64_R6
288         bool
289
290 config CPU_MIPS32
291         bool
292         default y if CPU_MIPS32_R1 || CPU_MIPS32_R2 || CPU_MIPS32_R6
293
294 config CPU_MIPS64
295         bool
296         default y if CPU_MIPS64_R1 || CPU_MIPS64_R2 || CPU_MIPS64_R6
297
298 config MIPS_TUNE_4KC
299         bool
300
301 config MIPS_TUNE_14KC
302         bool
303
304 config MIPS_TUNE_24KC
305         bool
306
307 config MIPS_TUNE_34KC
308         bool
309
310 config MIPS_TUNE_74KC
311         bool
312
313 config 32BIT
314         bool
315
316 config 64BIT
317         bool
318
319 config SWAP_IO_SPACE
320         bool
321
322 config SYS_MIPS_CACHE_INIT_RAM_LOAD
323         bool
324
325 config MIPS_INIT_STACK_IN_SRAM
326         bool
327         default n
328         help
329           Select this if the initial stack frame could be setup in SRAM.
330           Normally the initial stack frame is set up in DRAM which is often
331           only available after lowlevel_init. With this option the initial
332           stack frame and the early C environment is set up before
333           lowlevel_init. Thus lowlevel_init does not need to be implemented
334           in assembler.
335
336 config SYS_DCACHE_SIZE
337         int
338         default 0
339         help
340           The total size of the L1 Dcache, if known at compile time.
341
342 config SYS_DCACHE_LINE_SIZE
343         int
344         default 0
345         help
346           The size of L1 Dcache lines, if known at compile time.
347
348 config SYS_ICACHE_SIZE
349         int
350         default 0
351         help
352           The total size of the L1 ICache, if known at compile time.
353
354 config SYS_ICACHE_LINE_SIZE
355         int
356         default 0
357         help
358           The size of L1 Icache lines, if known at compile time.
359
360 config SYS_CACHE_SIZE_AUTO
361         def_bool y if SYS_DCACHE_SIZE = 0 && SYS_ICACHE_SIZE = 0 && \
362                 SYS_DCACHE_LINE_SIZE = 0 && SYS_ICACHE_LINE_SIZE = 0
363         help
364           Select this (or let it be auto-selected by not defining any cache
365           sizes) in order to allow U-Boot to automatically detect the sizes
366           of caches at runtime. This has a small cost in code size & runtime
367           so if you know the cache configuration for your system at compile
368           time it would be beneficial to configure it.
369
370 config MIPS_L1_CACHE_SHIFT_4
371         bool
372
373 config MIPS_L1_CACHE_SHIFT_5
374         bool
375
376 config MIPS_L1_CACHE_SHIFT_6
377         bool
378
379 config MIPS_L1_CACHE_SHIFT_7
380         bool
381
382 config MIPS_L1_CACHE_SHIFT
383         int
384         default "7" if MIPS_L1_CACHE_SHIFT_7
385         default "6" if MIPS_L1_CACHE_SHIFT_6
386         default "5" if MIPS_L1_CACHE_SHIFT_5
387         default "4" if MIPS_L1_CACHE_SHIFT_4
388         default "5"
389
390 config MIPS_L2_CACHE
391         bool
392         help
393           Select this if your system includes an L2 cache and you want U-Boot
394           to initialise & maintain it.
395
396 config DYNAMIC_IO_PORT_BASE
397         bool
398
399 config MIPS_CM
400         bool
401         help
402           Select this if your system contains a MIPS Coherence Manager and you
403           wish U-Boot to configure it or make use of it to retrieve system
404           information such as cache configuration.
405
406 endif
407
408 endmenu