Kconfig.machine 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454
  1. # SPDX-License-Identifier: GPL-2.0
  2. comment "Machine Types"
  3. if M68KCLASSIC
  4. config AMIGA
  5. bool "Amiga support"
  6. depends on MMU
  7. select LEGACY_TIMER_TICK
  8. help
  9. This option enables support for the Amiga series of computers. If
  10. you plan to use this kernel on an Amiga, say Y here and browse the
  11. material available in <file:Documentation/arch/m68k>; otherwise say N.
  12. config ATARI
  13. bool "Atari support"
  14. depends on MMU
  15. select HAVE_ARCH_NVRAM_OPS
  16. select LEGACY_TIMER_TICK
  17. help
  18. This option enables support for the 68000-based Atari series of
  19. computers (including the TT, Falcon and Medusa). If you plan to use
  20. this kernel on an Atari, say Y here and browse the material
  21. available in <file:Documentation/arch/m68k>; otherwise say N.
  22. config ATARI_KBD_CORE
  23. bool
  24. config MAC
  25. bool "Macintosh support"
  26. depends on MMU
  27. select HAVE_ARCH_NVRAM_OPS
  28. select HAVE_PATA_PLATFORM
  29. select LEGACY_TIMER_TICK
  30. help
  31. This option enables support for the Apple Macintosh series of
  32. computers. If you plan to use this kernel on a Mac, say Y here and
  33. browse the documentation available at <http://www.mac.linux-m68k.org/>;
  34. otherwise say N.
  35. config APOLLO
  36. bool "Apollo support"
  37. depends on MMU
  38. select LEGACY_TIMER_TICK
  39. help
  40. Say Y here if you want to run Linux on an MC680x0-based Apollo
  41. Domain workstation such as the DN3500.
  42. config VME
  43. bool "VME (Motorola and BVM) support"
  44. depends on MMU
  45. help
  46. Say Y here if you want to build a kernel for a 680x0 based VME
  47. board. Boards currently supported include Motorola boards MVME147,
  48. MVME162, MVME166, MVME167, MVME172, and MVME177. BVME4000 and
  49. BVME6000 boards from BVM Ltd are also supported.
  50. config MVME147
  51. bool "MVME147 support"
  52. depends on MMU
  53. depends on VME
  54. select LEGACY_TIMER_TICK
  55. help
  56. Say Y to include support for early Motorola VME boards. This will
  57. build a kernel which can run on MVME147 single-board computers. If
  58. you select this option you will have to select the appropriate
  59. drivers for SCSI, Ethernet and serial ports later on.
  60. config MVME16x
  61. bool "MVME162, 166 and 167 support"
  62. depends on MMU
  63. depends on VME
  64. select LEGACY_TIMER_TICK
  65. help
  66. Say Y to include support for Motorola VME boards. This will build a
  67. kernel which can run on MVME162, MVME166, MVME167, MVME172, and
  68. MVME177 boards. If you select this option you will have to select
  69. the appropriate drivers for SCSI, Ethernet and serial ports later
  70. on.
  71. config BVME6000
  72. bool "BVME4000 and BVME6000 support"
  73. depends on MMU
  74. depends on VME
  75. select LEGACY_TIMER_TICK
  76. help
  77. Say Y to include support for VME boards from BVM Ltd. This will
  78. build a kernel which can run on BVME4000 and BVME6000 boards. If
  79. you select this option you will have to select the appropriate
  80. drivers for SCSI, Ethernet and serial ports later on.
  81. config HP300
  82. bool "HP9000/300 and HP9000/400 support"
  83. depends on MMU
  84. select LEGACY_TIMER_TICK
  85. help
  86. This option enables support for the HP9000/300 and HP9000/400 series
  87. of workstations. Support for these machines is still somewhat
  88. experimental. If you plan to try to use the kernel on such a machine
  89. say Y here.
  90. Everybody else says N.
  91. config SUN3X
  92. bool "Sun3x support"
  93. depends on MMU
  94. select LEGACY_TIMER_TICK
  95. select M68030
  96. help
  97. This option enables support for the Sun 3x series of workstations.
  98. Be warned that this support is very experimental.
  99. Note that Sun 3x kernels are not compatible with Sun 3 hardware.
  100. General Linux information on the Sun 3x series (now discontinued)
  101. is at <http://www.angelfire.com/ca2/tech68k/sun3.html>.
  102. If you don't want to compile a kernel for a Sun 3x, say N.
  103. config Q40
  104. bool "Q40/Q60 support"
  105. depends on MMU
  106. select LEGACY_TIMER_TICK
  107. help
  108. The Q40 is a Motorola 68040-based successor to the Sinclair QL
  109. manufactured in Germany. There is an official Q40 home page at
  110. <http://www.q40.de/>. This option enables support for the Q40 and
  111. Q60. Select your CPU below. For 68LC060 don't forget to enable FPU
  112. emulation.
  113. config VIRT
  114. bool "Virtual M68k Machine support"
  115. depends on MMU
  116. select GENERIC_CLOCKEVENTS
  117. select GOLDFISH
  118. select GOLDFISH_TIMER
  119. select GOLDFISH_TTY
  120. select M68040
  121. select RTC_CLASS
  122. select RTC_DRV_GOLDFISH
  123. select TTY
  124. select VIRTIO_MENU
  125. select VIRTIO_MMIO
  126. help
  127. This options enable a pure virtual machine based on m68k,
  128. VIRTIO MMIO devices and GOLDFISH interfaces (TTY, RTC, PIC).
  129. config PILOT
  130. bool
  131. config PILOT3
  132. bool "Pilot 1000/5000, PalmPilot Personal/Pro, or PalmIII support"
  133. depends on !MMU
  134. select M68328
  135. select PILOT
  136. help
  137. Support for the Palm Pilot 1000/5000, Personal/Pro and PalmIII.
  138. config XCOPILOT_BUGS
  139. bool "(X)Copilot support"
  140. depends on PILOT3
  141. help
  142. Support the bugs of Xcopilot.
  143. config UCSIMM
  144. bool "uCsimm module support"
  145. depends on !MMU
  146. select M68EZ328
  147. help
  148. Support for the Arcturus Networks uCsimm module.
  149. config UCDIMM
  150. bool "uCdimm module support"
  151. depends on !MMU
  152. select M68VZ328
  153. help
  154. Support for the Arcturus Networks uCdimm module.
  155. config DRAGEN2
  156. bool "DragonEngine II board support"
  157. depends on !MMU
  158. select M68VZ328
  159. help
  160. Support for the DragonEngine II board.
  161. config DIRECT_IO_ACCESS
  162. bool "Allow user to access IO directly"
  163. depends on (UCSIMM || UCDIMM || DRAGEN2)
  164. help
  165. Disable the CPU internal registers protection in user mode,
  166. to allow a user application to read/write them.
  167. config INIT_LCD
  168. bool "Initialize LCD"
  169. depends on (UCSIMM || UCDIMM || DRAGEN2)
  170. help
  171. Initialize the LCD controller of the 68x328 processor.
  172. config MEMORY_RESERVE
  173. int "Memory reservation (MiB)"
  174. depends on (UCSIMM || UCDIMM)
  175. default 0
  176. help
  177. Reserve certain memory regions on 68x328 based boards.
  178. endif # M68KCLASSIC
  179. config ARN5206
  180. bool "Arnewsh 5206 board support"
  181. depends on M5206
  182. help
  183. Support for the Arnewsh 5206 board.
  184. config M5206eC3
  185. bool "Motorola M5206eC3 board support"
  186. depends on M5206e
  187. help
  188. Support for the Motorola M5206eC3 board.
  189. config ELITE
  190. bool "Motorola M5206eLITE board support"
  191. depends on M5206e
  192. help
  193. Support for the Motorola M5206eLITE board.
  194. config M5235EVB
  195. bool "Freescale M5235EVB support"
  196. depends on M523x
  197. help
  198. Support for the Freescale M5235EVB board.
  199. config M5249C3
  200. bool "Motorola M5249C3 board support"
  201. depends on M5249
  202. help
  203. Support for the Motorola M5249C3 board.
  204. config M5272C3
  205. bool "Motorola M5272C3 board support"
  206. depends on M5272
  207. help
  208. Support for the Motorola M5272C3 board.
  209. config WILDFIRE
  210. bool "Intec Automation Inc. WildFire board support"
  211. depends on M528x
  212. help
  213. Support for the Intec Automation Inc. WildFire.
  214. config WILDFIREMOD
  215. bool "Intec Automation Inc. WildFire module support"
  216. depends on M528x
  217. help
  218. Support for the Intec Automation Inc. WildFire module.
  219. config ARN5307
  220. bool "Arnewsh 5307 board support"
  221. depends on M5307
  222. help
  223. Support for the Arnewsh 5307 board.
  224. config M5307C3
  225. bool "Motorola M5307C3 board support"
  226. depends on M5307
  227. help
  228. Support for the Motorola M5307C3 board.
  229. config SECUREEDGEMP3
  230. bool "SnapGear SecureEdge/MP3 platform support"
  231. depends on M5307
  232. help
  233. Support for the SnapGear SecureEdge/MP3 platform.
  234. config M5407C3
  235. bool "Motorola M5407C3 board support"
  236. depends on M5407
  237. help
  238. Support for the Motorola M5407C3 board.
  239. config AMCORE
  240. bool "Sysam AMCORE board support"
  241. depends on M5307
  242. help
  243. Support for the Sysam AMCORE open-hardware generic board.
  244. config STMARK2
  245. bool "Sysam stmark2 board support"
  246. depends on M5441x
  247. help
  248. Support for the Sysam stmark2 open-hardware generic board.
  249. config FIREBEE
  250. bool "FireBee board support"
  251. depends on M547x
  252. help
  253. Support for the FireBee ColdFire 5475 based board.
  254. config CLEOPATRA
  255. bool "Feith CLEOPATRA board support"
  256. depends on (M5307 || M5407)
  257. help
  258. Support for the Feith Cleopatra boards.
  259. config CANCam
  260. bool "Feith CANCam board support"
  261. depends on M5272
  262. help
  263. Support for the Feith CANCam board.
  264. config SCALES
  265. bool "Feith SCALES board support"
  266. depends on M5272
  267. help
  268. Support for the Feith SCALES board.
  269. config NETtel
  270. bool "SecureEdge/NETtel board support"
  271. depends on (M5206e || M5272 || M5307)
  272. help
  273. Support for the SnapGear NETtel/SecureEdge/SnapGear boards.
  274. config MOD5272
  275. bool "Netburner MOD-5272 board support"
  276. depends on M5272
  277. help
  278. Support for the Netburner MOD-5272 board.
  279. if !MMU || COLDFIRE
  280. comment "Machine Options"
  281. config UBOOT
  282. bool "Support for U-Boot command line parameters"
  283. depends on COLDFIRE
  284. help
  285. If you say Y here kernel will try to collect command
  286. line parameters from the initial u-boot stack.
  287. config 4KSTACKS
  288. bool "Use 4Kb for kernel stacks instead of 8Kb"
  289. default y
  290. help
  291. If you say Y here the kernel will use a 4Kb stacksize for the
  292. kernel stack attached to each process/thread. This facilitates
  293. running more threads on a system and also reduces the pressure
  294. on the VM subsystem for higher order allocations.
  295. comment "RAM configuration"
  296. config RAMBASE
  297. hex "Address of the base of RAM"
  298. default "0"
  299. help
  300. Define the address that RAM starts at. On many platforms this is
  301. 0, the base of the address space. And this is the default. Some
  302. platforms choose to setup their RAM at other addresses within the
  303. processor address space.
  304. config RAMSIZE
  305. hex "Size of RAM (in bytes), or 0 for automatic"
  306. default "0x400000"
  307. help
  308. Define the size of the system RAM. If you select 0 then the
  309. kernel will try to probe the RAM size at runtime. This is not
  310. supported on all CPU types.
  311. config VECTORBASE
  312. hex "Address of the base of system vectors"
  313. default "0"
  314. help
  315. Define the address of the system vectors. Commonly this is
  316. put at the start of RAM, but it doesn't have to be. On ColdFire
  317. platforms this address is programmed into the VBR register, thus
  318. actually setting the address to use.
  319. config MBAR
  320. hex "Address of the MBAR (internal peripherals)"
  321. default "0x10000000"
  322. depends on HAVE_MBAR
  323. help
  324. Define the address of the internal system peripherals. This value
  325. is set in the processors MBAR register. This is generally setup by
  326. the boot loader, and will not be written by the kernel. By far most
  327. ColdFire boards use the default 0x10000000 value, so if unsure then
  328. use this.
  329. config IPSBAR
  330. hex "Address of the IPSBAR (internal peripherals)"
  331. default "0x40000000"
  332. depends on HAVE_IPSBAR
  333. help
  334. Define the address of the internal system peripherals. This value
  335. is set in the processors IPSBAR register. This is generally setup by
  336. the boot loader, and will not be written by the kernel. By far most
  337. ColdFire boards use the default 0x40000000 value, so if unsure then
  338. use this.
  339. config KERNELBASE
  340. hex "Address of the base of kernel code"
  341. default "0x400"
  342. help
  343. Typically on m68k systems the kernel will not start at the base
  344. of RAM, but usually some small offset from it. Define the start
  345. address of the kernel here. The most common setup will have the
  346. processor vectors at the base of RAM and then the start of the
  347. kernel. On some platforms some RAM is reserved for boot loaders
  348. and the kernel starts after that. The 0x400 default was based on
  349. a system with the RAM based at address 0, and leaving enough room
  350. for the theoretical maximum number of 256 vectors.
  351. comment "ROM configuration"
  352. config ROM
  353. bool "Specify ROM linker regions"
  354. help
  355. Define a ROM region for the linker script. This creates a kernel
  356. that can be stored in flash, with possibly the text, and data
  357. regions being copied out to RAM at startup.
  358. config ROMVEC
  359. hex "Address of the base of the ROM vectors"
  360. default "0x10c10000"
  361. depends on ROM
  362. help
  363. This is almost always the same as the base of the ROM. Since on all
  364. 68000 type variants the vectors are at the base of the boot device
  365. on system startup.
  366. config ROMSTART
  367. hex "Address of the base of system image in ROM"
  368. default "0x10c10400"
  369. depends on ROM
  370. help
  371. Define the start address of the system image in ROM. Commonly this
  372. is strait after the ROM vectors.
  373. choice
  374. prompt "Kernel executes from"
  375. help
  376. Choose the memory type that the kernel will be running in.
  377. config RAMKERNEL
  378. bool "RAM"
  379. help
  380. The kernel will be resident in RAM when running.
  381. config ROMKERNEL
  382. bool "ROM"
  383. depends on ROM
  384. help
  385. The kernel will be resident in FLASH/ROM when running. This is
  386. often referred to as Execute-in-Place (XIP), since the kernel
  387. code executes from the position it is stored in the FLASH/ROM.
  388. endchoice
  389. endif # !MMU || COLDFIRE