Greg Ungerer | 0e152d8 | 2011-06-20 15:49:09 +1000 | [diff] [blame] | 1 | comment "Processor Type" |
| 2 | |
Geert Uytterhoeven | ad8f955 | 2011-12-26 20:32:02 +0100 | [diff] [blame] | 3 | choice |
| 4 | prompt "CPU family support" |
| 5 | default M68KCLASSIC if MMU |
| 6 | default COLDFIRE if !MMU |
| 7 | help |
| 8 | The Freescale (was Motorola) M68K family of processors implements |
| 9 | the full 68000 processor instruction set. |
Masanari Iida | 6b2aac4 | 2012-04-14 00:14:11 +0900 | [diff] [blame] | 10 | The Freescale ColdFire family of processors is a modern derivative |
Geert Uytterhoeven | ad8f955 | 2011-12-26 20:32:02 +0100 | [diff] [blame] | 11 | of the 68000 processor family. They are mainly targeted at embedded |
| 12 | applications, and are all System-On-Chip (SOC) devices, as opposed |
| 13 | to stand alone CPUs. They implement a subset of the original 68000 |
| 14 | processor instruction set. |
| 15 | If you anticipate running this kernel on a computer with a classic |
| 16 | MC68xxx processor, select M68KCLASSIC. |
| 17 | If you anticipate running this kernel on a computer with a ColdFire |
| 18 | processor, select COLDFIRE. |
| 19 | |
| 20 | config M68KCLASSIC |
| 21 | bool "Classic M68K CPU family support" |
| 22 | |
| 23 | config COLDFIRE |
| 24 | bool "Coldfire CPU family support" |
| 25 | select GENERIC_GPIO |
Steven King | eac5794 | 2012-05-21 13:10:19 -0700 | [diff] [blame] | 26 | select ARCH_WANT_OPTIONAL_GPIOLIB |
Mark Brown | 7563bbf | 2012-04-15 10:52:54 +0100 | [diff] [blame] | 27 | select ARCH_HAVE_CUSTOM_GPIO_H |
Geert Uytterhoeven | ad8f955 | 2011-12-26 20:32:02 +0100 | [diff] [blame] | 28 | select CPU_HAS_NO_BITFIELDS |
| 29 | select CPU_HAS_NO_MULDIV64 |
| 30 | select GENERIC_CSUM |
Greg Ungerer | e7d6582 | 2012-08-03 16:08:36 +1000 | [diff] [blame^] | 31 | select HAVE_CLK |
Geert Uytterhoeven | ad8f955 | 2011-12-26 20:32:02 +0100 | [diff] [blame] | 32 | |
| 33 | endchoice |
| 34 | |
| 35 | if M68KCLASSIC |
| 36 | |
Greg Ungerer | 0e152d8 | 2011-06-20 15:49:09 +1000 | [diff] [blame] | 37 | config M68000 |
| 38 | bool |
| 39 | select CPU_HAS_NO_BITFIELDS |
Greg Ungerer | 84f3fb7 | 2011-11-11 15:13:08 +1000 | [diff] [blame] | 40 | select CPU_HAS_NO_MULDIV64 |
Geert Uytterhoeven | 9f1f118 | 2012-06-06 19:37:52 +0200 | [diff] [blame] | 41 | select CPU_HAS_NO_UNALIGNED |
Greg Ungerer | 7f73baf | 2011-10-18 15:49:19 +1000 | [diff] [blame] | 42 | select GENERIC_CSUM |
Greg Ungerer | 0e152d8 | 2011-06-20 15:49:09 +1000 | [diff] [blame] | 43 | help |
| 44 | The Freescale (was Motorola) 68000 CPU is the first generation of |
| 45 | the well known M68K family of processors. The CPU core as well as |
| 46 | being available as a stand alone CPU was also used in many |
| 47 | System-On-Chip devices (eg 68328, 68302, etc). It does not contain |
| 48 | a paging MMU. |
| 49 | |
| 50 | config MCPU32 |
| 51 | bool |
| 52 | select CPU_HAS_NO_BITFIELDS |
Geert Uytterhoeven | 7df0d27 | 2012-06-06 19:39:39 +0200 | [diff] [blame] | 53 | select CPU_HAS_NO_UNALIGNED |
Greg Ungerer | 0e152d8 | 2011-06-20 15:49:09 +1000 | [diff] [blame] | 54 | help |
| 55 | The Freescale (was then Motorola) CPU32 is a CPU core that is |
| 56 | based on the 68020 processor. For the most part it is used in |
| 57 | System-On-Chip parts, and does not contain a paging MMU. |
| 58 | |
Greg Ungerer | 0e152d8 | 2011-06-20 15:49:09 +1000 | [diff] [blame] | 59 | config M68020 |
| 60 | bool "68020 support" |
| 61 | depends on MMU |
Greg Ungerer | 5717a02 | 2011-10-19 16:27:30 +1000 | [diff] [blame] | 62 | select GENERIC_ATOMIC64 |
Greg Ungerer | e08d703 | 2011-10-14 14:43:30 +1000 | [diff] [blame] | 63 | select CPU_HAS_ADDRESS_SPACES |
Greg Ungerer | 0e152d8 | 2011-06-20 15:49:09 +1000 | [diff] [blame] | 64 | help |
| 65 | If you anticipate running this kernel on a computer with a MC68020 |
| 66 | processor, say Y. Otherwise, say N. Note that the 68020 requires a |
| 67 | 68851 MMU (Memory Management Unit) to run Linux/m68k, except on the |
| 68 | Sun 3, which provides its own version. |
| 69 | |
| 70 | config M68030 |
| 71 | bool "68030 support" |
| 72 | depends on MMU && !MMU_SUN3 |
Greg Ungerer | 5717a02 | 2011-10-19 16:27:30 +1000 | [diff] [blame] | 73 | select GENERIC_ATOMIC64 |
Greg Ungerer | e08d703 | 2011-10-14 14:43:30 +1000 | [diff] [blame] | 74 | select CPU_HAS_ADDRESS_SPACES |
Greg Ungerer | 0e152d8 | 2011-06-20 15:49:09 +1000 | [diff] [blame] | 75 | help |
| 76 | If you anticipate running this kernel on a computer with a MC68030 |
| 77 | processor, say Y. Otherwise, say N. Note that a MC68EC030 will not |
| 78 | work, as it does not include an MMU (Memory Management Unit). |
| 79 | |
| 80 | config M68040 |
| 81 | bool "68040 support" |
| 82 | depends on MMU && !MMU_SUN3 |
Greg Ungerer | 5717a02 | 2011-10-19 16:27:30 +1000 | [diff] [blame] | 83 | select GENERIC_ATOMIC64 |
Greg Ungerer | e08d703 | 2011-10-14 14:43:30 +1000 | [diff] [blame] | 84 | select CPU_HAS_ADDRESS_SPACES |
Greg Ungerer | 0e152d8 | 2011-06-20 15:49:09 +1000 | [diff] [blame] | 85 | help |
| 86 | If you anticipate running this kernel on a computer with a MC68LC040 |
| 87 | or MC68040 processor, say Y. Otherwise, say N. Note that an |
| 88 | MC68EC040 will not work, as it does not include an MMU (Memory |
| 89 | Management Unit). |
| 90 | |
| 91 | config M68060 |
| 92 | bool "68060 support" |
| 93 | depends on MMU && !MMU_SUN3 |
Greg Ungerer | 5717a02 | 2011-10-19 16:27:30 +1000 | [diff] [blame] | 94 | select GENERIC_ATOMIC64 |
Greg Ungerer | e08d703 | 2011-10-14 14:43:30 +1000 | [diff] [blame] | 95 | select CPU_HAS_ADDRESS_SPACES |
Greg Ungerer | 0e152d8 | 2011-06-20 15:49:09 +1000 | [diff] [blame] | 96 | help |
| 97 | If you anticipate running this kernel on a computer with a MC68060 |
| 98 | processor, say Y. Otherwise, say N. |
| 99 | |
| 100 | config M68328 |
| 101 | bool "MC68328" |
| 102 | depends on !MMU |
| 103 | select M68000 |
| 104 | help |
| 105 | Motorola 68328 processor support. |
| 106 | |
| 107 | config M68EZ328 |
| 108 | bool "MC68EZ328" |
| 109 | depends on !MMU |
| 110 | select M68000 |
| 111 | help |
| 112 | Motorola 68EX328 processor support. |
| 113 | |
| 114 | config M68VZ328 |
| 115 | bool "MC68VZ328" |
| 116 | depends on !MMU |
| 117 | select M68000 |
| 118 | help |
| 119 | Motorola 68VZ328 processor support. |
| 120 | |
| 121 | config M68360 |
| 122 | bool "MC68360" |
| 123 | depends on !MMU |
| 124 | select MCPU32 |
| 125 | help |
| 126 | Motorola 68360 processor support. |
| 127 | |
Geert Uytterhoeven | ad8f955 | 2011-12-26 20:32:02 +0100 | [diff] [blame] | 128 | endif # M68KCLASSIC |
| 129 | |
| 130 | if COLDFIRE |
| 131 | |
Greg Ungerer | 0e152d8 | 2011-06-20 15:49:09 +1000 | [diff] [blame] | 132 | config M5206 |
| 133 | bool "MCF5206" |
| 134 | depends on !MMU |
Greg Ungerer | 0e152d8 | 2011-06-20 15:49:09 +1000 | [diff] [blame] | 135 | select COLDFIRE_SW_A7 |
| 136 | select HAVE_MBAR |
| 137 | help |
| 138 | Motorola ColdFire 5206 processor support. |
| 139 | |
| 140 | config M5206e |
| 141 | bool "MCF5206e" |
| 142 | depends on !MMU |
Greg Ungerer | 0e152d8 | 2011-06-20 15:49:09 +1000 | [diff] [blame] | 143 | select COLDFIRE_SW_A7 |
| 144 | select HAVE_MBAR |
| 145 | help |
| 146 | Motorola ColdFire 5206e processor support. |
| 147 | |
| 148 | config M520x |
| 149 | bool "MCF520x" |
| 150 | depends on !MMU |
Greg Ungerer | 0e152d8 | 2011-06-20 15:49:09 +1000 | [diff] [blame] | 151 | select GENERIC_CLOCKEVENTS |
| 152 | select HAVE_CACHE_SPLIT |
| 153 | help |
| 154 | Freescale Coldfire 5207/5208 processor support. |
| 155 | |
| 156 | config M523x |
| 157 | bool "MCF523x" |
| 158 | depends on !MMU |
Greg Ungerer | 0e152d8 | 2011-06-20 15:49:09 +1000 | [diff] [blame] | 159 | select GENERIC_CLOCKEVENTS |
| 160 | select HAVE_CACHE_SPLIT |
| 161 | select HAVE_IPSBAR |
| 162 | help |
| 163 | Freescale Coldfire 5230/1/2/4/5 processor support |
| 164 | |
| 165 | config M5249 |
| 166 | bool "MCF5249" |
| 167 | depends on !MMU |
Greg Ungerer | 0e152d8 | 2011-06-20 15:49:09 +1000 | [diff] [blame] | 168 | select COLDFIRE_SW_A7 |
| 169 | select HAVE_MBAR |
| 170 | help |
| 171 | Motorola ColdFire 5249 processor support. |
| 172 | |
Steven King | 04e037a | 2012-06-05 08:23:08 -0700 | [diff] [blame] | 173 | config M525x |
| 174 | bool "MCF525x" |
| 175 | depends on !MMU |
| 176 | select COLDFIRE_SW_A7 |
| 177 | select HAVE_MBAR |
| 178 | help |
| 179 | Freescale (Motorola) Coldfire 5251/5253 processor support. |
| 180 | |
Greg Ungerer | 0e152d8 | 2011-06-20 15:49:09 +1000 | [diff] [blame] | 181 | config M527x |
| 182 | bool |
| 183 | |
| 184 | config M5271 |
| 185 | bool "MCF5271" |
| 186 | depends on !MMU |
Greg Ungerer | 0e152d8 | 2011-06-20 15:49:09 +1000 | [diff] [blame] | 187 | select M527x |
| 188 | select HAVE_CACHE_SPLIT |
| 189 | select HAVE_IPSBAR |
| 190 | select GENERIC_CLOCKEVENTS |
| 191 | help |
| 192 | Freescale (Motorola) ColdFire 5270/5271 processor support. |
| 193 | |
| 194 | config M5272 |
| 195 | bool "MCF5272" |
| 196 | depends on !MMU |
Greg Ungerer | 0e152d8 | 2011-06-20 15:49:09 +1000 | [diff] [blame] | 197 | select COLDFIRE_SW_A7 |
| 198 | select HAVE_MBAR |
| 199 | help |
| 200 | Motorola ColdFire 5272 processor support. |
| 201 | |
| 202 | config M5275 |
| 203 | bool "MCF5275" |
| 204 | depends on !MMU |
Greg Ungerer | 0e152d8 | 2011-06-20 15:49:09 +1000 | [diff] [blame] | 205 | select M527x |
| 206 | select HAVE_CACHE_SPLIT |
| 207 | select HAVE_IPSBAR |
| 208 | select GENERIC_CLOCKEVENTS |
| 209 | help |
| 210 | Freescale (Motorola) ColdFire 5274/5275 processor support. |
| 211 | |
| 212 | config M528x |
| 213 | bool "MCF528x" |
| 214 | depends on !MMU |
Greg Ungerer | 0e152d8 | 2011-06-20 15:49:09 +1000 | [diff] [blame] | 215 | select GENERIC_CLOCKEVENTS |
| 216 | select HAVE_CACHE_SPLIT |
| 217 | select HAVE_IPSBAR |
| 218 | help |
| 219 | Motorola ColdFire 5280/5282 processor support. |
| 220 | |
| 221 | config M5307 |
| 222 | bool "MCF5307" |
| 223 | depends on !MMU |
Greg Ungerer | 0e152d8 | 2011-06-20 15:49:09 +1000 | [diff] [blame] | 224 | select COLDFIRE_SW_A7 |
| 225 | select HAVE_CACHE_CB |
| 226 | select HAVE_MBAR |
| 227 | help |
| 228 | Motorola ColdFire 5307 processor support. |
| 229 | |
| 230 | config M532x |
| 231 | bool "MCF532x" |
| 232 | depends on !MMU |
Greg Ungerer | 0e152d8 | 2011-06-20 15:49:09 +1000 | [diff] [blame] | 233 | select HAVE_CACHE_CB |
| 234 | help |
| 235 | Freescale (Motorola) ColdFire 532x processor support. |
| 236 | |
| 237 | config M5407 |
| 238 | bool "MCF5407" |
| 239 | depends on !MMU |
Greg Ungerer | 0e152d8 | 2011-06-20 15:49:09 +1000 | [diff] [blame] | 240 | select COLDFIRE_SW_A7 |
| 241 | select HAVE_CACHE_CB |
| 242 | select HAVE_MBAR |
| 243 | help |
| 244 | Motorola ColdFire 5407 processor support. |
| 245 | |
| 246 | config M54xx |
| 247 | bool |
| 248 | |
| 249 | config M547x |
| 250 | bool "MCF547x" |
Greg Ungerer | 0e152d8 | 2011-06-20 15:49:09 +1000 | [diff] [blame] | 251 | select M54xx |
Greg Ungerer | 1f7034b | 2011-10-19 14:13:18 +1000 | [diff] [blame] | 252 | select MMU_COLDFIRE if MMU |
Greg Ungerer | 0e152d8 | 2011-06-20 15:49:09 +1000 | [diff] [blame] | 253 | select HAVE_CACHE_CB |
| 254 | select HAVE_MBAR |
| 255 | help |
| 256 | Freescale ColdFire 5470/5471/5472/5473/5474/5475 processor support. |
| 257 | |
| 258 | config M548x |
| 259 | bool "MCF548x" |
Greg Ungerer | 1f7034b | 2011-10-19 14:13:18 +1000 | [diff] [blame] | 260 | select MMU_COLDFIRE if MMU |
Greg Ungerer | 0e152d8 | 2011-06-20 15:49:09 +1000 | [diff] [blame] | 261 | select M54xx |
| 262 | select HAVE_CACHE_CB |
| 263 | select HAVE_MBAR |
| 264 | help |
| 265 | Freescale ColdFire 5480/5481/5482/5483/5484/5485 processor support. |
| 266 | |
Steven King | bea8bcb | 2012-06-06 14:28:31 -0700 | [diff] [blame] | 267 | config M5441x |
| 268 | bool "MCF5441x" |
| 269 | depends on !MMU |
| 270 | select GENERIC_CLOCKEVENTS |
| 271 | select HAVE_CACHE_CB |
| 272 | help |
| 273 | Freescale Coldfire 54410/54415/54416/54417/54418 processor support. |
| 274 | |
Geert Uytterhoeven | ad8f955 | 2011-12-26 20:32:02 +0100 | [diff] [blame] | 275 | endif # COLDFIRE |
| 276 | |
Greg Ungerer | 0e152d8 | 2011-06-20 15:49:09 +1000 | [diff] [blame] | 277 | |
| 278 | comment "Processor Specific Options" |
| 279 | |
| 280 | config M68KFPU_EMU |
| 281 | bool "Math emulation support (EXPERIMENTAL)" |
| 282 | depends on MMU |
| 283 | depends on EXPERIMENTAL |
| 284 | help |
| 285 | At some point in the future, this will cause floating-point math |
| 286 | instructions to be emulated by the kernel on machines that lack a |
| 287 | floating-point math coprocessor. Thrill-seekers and chronically |
| 288 | sleep-deprived psychotic hacker types can say Y now, everyone else |
| 289 | should probably wait a while. |
| 290 | |
| 291 | config M68KFPU_EMU_EXTRAPREC |
| 292 | bool "Math emulation extra precision" |
| 293 | depends on M68KFPU_EMU |
| 294 | help |
| 295 | The fpu uses normally a few bit more during calculations for |
| 296 | correct rounding, the emulator can (often) do the same but this |
| 297 | extra calculation can cost quite some time, so you can disable |
| 298 | it here. The emulator will then "only" calculate with a 64 bit |
| 299 | mantissa and round slightly incorrect, what is more than enough |
| 300 | for normal usage. |
| 301 | |
| 302 | config M68KFPU_EMU_ONLY |
| 303 | bool "Math emulation only kernel" |
| 304 | depends on M68KFPU_EMU |
| 305 | help |
| 306 | This option prevents any floating-point instructions from being |
| 307 | compiled into the kernel, thereby the kernel doesn't save any |
| 308 | floating point context anymore during task switches, so this |
| 309 | kernel will only be usable on machines without a floating-point |
| 310 | math coprocessor. This makes the kernel a bit faster as no tests |
| 311 | needs to be executed whether a floating-point instruction in the |
| 312 | kernel should be executed or not. |
| 313 | |
| 314 | config ADVANCED |
| 315 | bool "Advanced configuration options" |
| 316 | depends on MMU |
| 317 | ---help--- |
| 318 | This gives you access to some advanced options for the CPU. The |
| 319 | defaults should be fine for most users, but these options may make |
| 320 | it possible for you to improve performance somewhat if you know what |
| 321 | you are doing. |
| 322 | |
| 323 | Note that the answer to this question won't directly affect the |
| 324 | kernel: saying N will just cause the configurator to skip all |
| 325 | the questions about these options. |
| 326 | |
| 327 | Most users should say N to this question. |
| 328 | |
| 329 | config RMW_INSNS |
| 330 | bool "Use read-modify-write instructions" |
| 331 | depends on ADVANCED |
| 332 | ---help--- |
| 333 | This allows to use certain instructions that work with indivisible |
| 334 | read-modify-write bus cycles. While this is faster than the |
| 335 | workaround of disabling interrupts, it can conflict with DMA |
| 336 | ( = direct memory access) on many Amiga systems, and it is also said |
| 337 | to destabilize other machines. It is very likely that this will |
| 338 | cause serious problems on any Amiga or Atari Medusa if set. The only |
| 339 | configuration where it should work are 68030-based Ataris, where it |
| 340 | apparently improves performance. But you've been warned! Unless you |
| 341 | really know what you are doing, say N. Try Y only if you're quite |
| 342 | adventurous. |
| 343 | |
| 344 | config SINGLE_MEMORY_CHUNK |
| 345 | bool "Use one physical chunk of memory only" if ADVANCED && !SUN3 |
| 346 | depends on MMU |
| 347 | default y if SUN3 |
| 348 | select NEED_MULTIPLE_NODES |
| 349 | help |
| 350 | Ignore all but the first contiguous chunk of physical memory for VM |
| 351 | purposes. This will save a few bytes kernel size and may speed up |
| 352 | some operations. Say N if not sure. |
| 353 | |
| 354 | config ARCH_DISCONTIGMEM_ENABLE |
| 355 | def_bool MMU && !SINGLE_MEMORY_CHUNK |
| 356 | |
| 357 | config 060_WRITETHROUGH |
| 358 | bool "Use write-through caching for 68060 supervisor accesses" |
| 359 | depends on ADVANCED && M68060 |
| 360 | ---help--- |
| 361 | The 68060 generally uses copyback caching of recently accessed data. |
| 362 | Copyback caching means that memory writes will be held in an on-chip |
| 363 | cache and only written back to memory some time later. Saying Y |
| 364 | here will force supervisor (kernel) accesses to use writethrough |
| 365 | caching. Writethrough caching means that data is written to memory |
| 366 | straight away, so that cache and memory data always agree. |
| 367 | Writethrough caching is less efficient, but is needed for some |
| 368 | drivers on 68060 based systems where the 68060 bus snooping signal |
| 369 | is hardwired on. The 53c710 SCSI driver is known to suffer from |
| 370 | this problem. |
| 371 | |
| 372 | config M68K_L2_CACHE |
| 373 | bool |
| 374 | depends on MAC |
| 375 | default y |
| 376 | |
| 377 | config NODES_SHIFT |
| 378 | int |
| 379 | default "3" |
| 380 | depends on !SINGLE_MEMORY_CHUNK |
| 381 | |
Geert Uytterhoeven | 022613e | 2012-06-06 17:26:35 +0200 | [diff] [blame] | 382 | config CPU_HAS_NO_BITFIELDS |
| 383 | bool |
| 384 | |
| 385 | config CPU_HAS_NO_MULDIV64 |
| 386 | bool |
| 387 | |
Geert Uytterhoeven | 9f1f118 | 2012-06-06 19:37:52 +0200 | [diff] [blame] | 388 | config CPU_HAS_NO_UNALIGNED |
| 389 | bool |
| 390 | |
Geert Uytterhoeven | 022613e | 2012-06-06 17:26:35 +0200 | [diff] [blame] | 391 | config CPU_HAS_ADDRESS_SPACES |
| 392 | bool |
| 393 | |
Greg Ungerer | 0e152d8 | 2011-06-20 15:49:09 +1000 | [diff] [blame] | 394 | config FPU |
| 395 | bool |
| 396 | |
| 397 | config COLDFIRE_SW_A7 |
| 398 | bool |
| 399 | |
| 400 | config HAVE_CACHE_SPLIT |
| 401 | bool |
| 402 | |
| 403 | config HAVE_CACHE_CB |
| 404 | bool |
| 405 | |
| 406 | config HAVE_MBAR |
| 407 | bool |
| 408 | |
| 409 | config HAVE_IPSBAR |
| 410 | bool |
| 411 | |
| 412 | config CLOCK_SET |
| 413 | bool "Enable setting the CPU clock frequency" |
| 414 | depends on COLDFIRE |
| 415 | default n |
| 416 | help |
| 417 | On some CPU's you do not need to know what the core CPU clock |
| 418 | frequency is. On these you can disable clock setting. On some |
| 419 | traditional 68K parts, and on all ColdFire parts you need to set |
| 420 | the appropriate CPU clock frequency. On these devices many of the |
| 421 | onboard peripherals derive their timing from the master CPU clock |
| 422 | frequency. |
| 423 | |
| 424 | config CLOCK_FREQ |
| 425 | int "Set the core clock frequency" |
| 426 | default "66666666" |
| 427 | depends on CLOCK_SET |
| 428 | help |
| 429 | Define the CPU clock frequency in use. This is the core clock |
| 430 | frequency, it may or may not be the same as the external clock |
| 431 | crystal fitted to your board. Some processors have an internal |
| 432 | PLL and can have their frequency programmed at run time, others |
| 433 | use internal dividers. In general the kernel won't setup a PLL |
| 434 | if it is fitted (there are some exceptions). This value will be |
| 435 | specific to the exact CPU that you are using. |
| 436 | |
| 437 | config OLDMASK |
| 438 | bool "Old mask 5307 (1H55J) silicon" |
| 439 | depends on M5307 |
| 440 | help |
| 441 | Build support for the older revision ColdFire 5307 silicon. |
| 442 | Specifically this is the 1H55J mask revision. |
| 443 | |
| 444 | if HAVE_CACHE_SPLIT |
| 445 | choice |
| 446 | prompt "Split Cache Configuration" |
| 447 | default CACHE_I |
| 448 | |
| 449 | config CACHE_I |
| 450 | bool "Instruction" |
| 451 | help |
| 452 | Use all of the ColdFire CPU cache memory as an instruction cache. |
| 453 | |
| 454 | config CACHE_D |
| 455 | bool "Data" |
| 456 | help |
| 457 | Use all of the ColdFire CPU cache memory as a data cache. |
| 458 | |
| 459 | config CACHE_BOTH |
| 460 | bool "Both" |
| 461 | help |
| 462 | Split the ColdFire CPU cache, and use half as an instruction cache |
| 463 | and half as a data cache. |
| 464 | endchoice |
| 465 | endif |
| 466 | |
| 467 | if HAVE_CACHE_CB |
| 468 | choice |
| 469 | prompt "Data cache mode" |
| 470 | default CACHE_WRITETHRU |
| 471 | |
| 472 | config CACHE_WRITETHRU |
| 473 | bool "Write-through" |
| 474 | help |
| 475 | The ColdFire CPU cache is set into Write-through mode. |
| 476 | |
| 477 | config CACHE_COPYBACK |
| 478 | bool "Copy-back" |
| 479 | help |
| 480 | The ColdFire CPU cache is set into Copy-back mode. |
| 481 | endchoice |
| 482 | endif |
| 483 | |