Kconfig 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see Documentation/kbuild/kconfig-language.txt.
  4. #
  5. mainmenu "uClinux/68k (w/o MMU) Kernel Configuration"
  6. config M68KNOMMU
  7. bool
  8. default y
  9. config MMU
  10. bool
  11. default n
  12. config FPU
  13. bool
  14. default n
  15. config UID16
  16. bool
  17. default y
  18. config RWSEM_GENERIC_SPINLOCK
  19. bool
  20. default y
  21. config RWSEM_XCHGADD_ALGORITHM
  22. bool
  23. default n
  24. config GENERIC_CALIBRATE_DELAY
  25. bool
  26. default y
  27. source "init/Kconfig"
  28. menu "Processor type and features"
  29. choice
  30. prompt "CPU"
  31. default M68EZ328
  32. config M68328
  33. bool "MC68328"
  34. help
  35. Motorola 68328 processor support.
  36. config M68EZ328
  37. bool "MC68EZ328"
  38. help
  39. Motorola 68EX328 processor support.
  40. config M68VZ328
  41. bool "MC68VZ328"
  42. help
  43. Motorola 68VZ328 processor support.
  44. config M68360
  45. bool "MC68360"
  46. help
  47. Motorola 68360 processor support.
  48. config M5206
  49. bool "MCF5206"
  50. help
  51. Motorola ColdFire 5206 processor support.
  52. config M5206e
  53. bool "MCF5206e"
  54. help
  55. Motorola ColdFire 5206e processor support.
  56. config M520x
  57. bool "MCF520x"
  58. help
  59. Freescale Coldfire 5207/5208 processor support.
  60. config M523x
  61. bool "MCF523x"
  62. help
  63. Freescale Coldfire 5230/1/2/4/5 processor support
  64. config M5249
  65. bool "MCF5249"
  66. help
  67. Motorola ColdFire 5249 processor support.
  68. config M5271
  69. bool "MCF5271"
  70. help
  71. Freescale (Motorola) ColdFire 5270/5271 processor support.
  72. config M5272
  73. bool "MCF5272"
  74. help
  75. Motorola ColdFire 5272 processor support.
  76. config M5275
  77. bool "MCF5275"
  78. help
  79. Freescale (Motorola) ColdFire 5274/5275 processor support.
  80. config M528x
  81. bool "MCF528x"
  82. help
  83. Motorola ColdFire 5280/5282 processor support.
  84. config M5307
  85. bool "MCF5307"
  86. help
  87. Motorola ColdFire 5307 processor support.
  88. config M5407
  89. bool "MCF5407"
  90. help
  91. Motorola ColdFire 5407 processor support.
  92. endchoice
  93. config M527x
  94. bool
  95. depends on (M5271 || M5275)
  96. default y
  97. config COLDFIRE
  98. bool
  99. depends on (M5206 || M5206e || M520x || M523x || M5249 || M527x || M5272 || M528x || M5307 || M5407)
  100. default y
  101. choice
  102. prompt "CPU CLOCK Frequency"
  103. default AUTO
  104. config CLOCK_AUTO
  105. bool "AUTO"
  106. ---help---
  107. Define the CPU clock frequency in use. On many boards you don't
  108. really need to know, so you can select the AUTO option. On some
  109. boards you need to know the real clock frequency to determine other
  110. system timing (for example baud rate dividors, etc). Some processors
  111. have an internal PLL and you can select a frequency to run at.
  112. You need to know a little about the internals of your processor to
  113. set this. If in doubt choose the AUTO option.
  114. config CLOCK_11MHz
  115. bool "11MHz"
  116. help
  117. Select a 11MHz CPU clock frequency.
  118. config CLOCK_16MHz
  119. bool "16MHz"
  120. help
  121. Select a 16MHz CPU clock frequency.
  122. config CLOCK_20MHz
  123. bool "20MHz"
  124. help
  125. Select a 20MHz CPU clock frequency.
  126. config CLOCK_24MHz
  127. bool "24MHz"
  128. help
  129. Select a 24MHz CPU clock frequency.
  130. config CLOCK_25MHz
  131. bool "25MHz"
  132. help
  133. Select a 25MHz CPU clock frequency.
  134. config CLOCK_33MHz
  135. bool "33MHz"
  136. help
  137. Select a 33MHz CPU clock frequency.
  138. config CLOCK_40MHz
  139. bool "40MHz"
  140. help
  141. Select a 40MHz CPU clock frequency.
  142. config CLOCK_45MHz
  143. bool "45MHz"
  144. help
  145. Select a 45MHz CPU clock frequency.
  146. config CLOCK_48MHz
  147. bool "48MHz"
  148. help
  149. Select a 48MHz CPU clock frequency.
  150. config CLOCK_50MHz
  151. bool "50MHz"
  152. help
  153. Select a 50MHz CPU clock frequency.
  154. config CLOCK_54MHz
  155. bool "54MHz"
  156. help
  157. Select a 54MHz CPU clock frequency.
  158. config CLOCK_60MHz
  159. bool "60MHz"
  160. help
  161. Select a 60MHz CPU clock frequency.
  162. config CLOCK_62_5MHz
  163. bool "62.5MHz"
  164. help
  165. Select a 62.5MHz CPU clock frequency.
  166. config CLOCK_64MHz
  167. bool "64MHz"
  168. help
  169. Select a 64MHz CPU clock frequency.
  170. config CLOCK_66MHz
  171. bool "66MHz"
  172. help
  173. Select a 66MHz CPU clock frequency.
  174. config CLOCK_70MHz
  175. bool "70MHz"
  176. help
  177. Select a 70MHz CPU clock frequency.
  178. config CLOCK_100MHz
  179. bool "100MHz"
  180. help
  181. Select a 100MHz CPU clock frequency.
  182. config CLOCK_140MHz
  183. bool "140MHz"
  184. help
  185. Select a 140MHz CPU clock frequency.
  186. config CLOCK_150MHz
  187. bool "150MHz"
  188. help
  189. Select a 150MHz CPU clock frequency.
  190. config CLOCK_166MHz
  191. bool "166MHz"
  192. help
  193. Select a 166MHz CPU clock frequency.
  194. endchoice
  195. config OLDMASK
  196. bool "Old mask 5307 (1H55J) silicon"
  197. depends on M5307
  198. help
  199. Build support for the older revision ColdFire 5307 silicon.
  200. Specifically this is the 1H55J mask revision.
  201. comment "Platform"
  202. config PILOT3
  203. bool "Pilot 1000/5000, PalmPilot Personal/Pro, or PalmIII support"
  204. depends on M68328
  205. help
  206. Support for the Palm Pilot 1000/5000, Personal/Pro and PalmIII.
  207. config XCOPILOT_BUGS
  208. bool " (X)Copilot support"
  209. depends on PILOT3
  210. help
  211. Support the bugs of Xcopilot.
  212. config UCSIMM
  213. bool "uCsimm module support"
  214. depends on M68EZ328
  215. help
  216. Support for the Arcturus Networks uCsimm module.
  217. config UCDIMM
  218. bool "uDsimm module support"
  219. depends on M68VZ328
  220. help
  221. Support for the Arcturus Networks uDsimm module.
  222. config DRAGEN2
  223. bool "DragenEngine II board support"
  224. depends on M68VZ328
  225. help
  226. Support for the DragenEngine II board.
  227. config DIRECT_IO_ACCESS
  228. bool " Allow user to access IO directly"
  229. depends on (UCSIMM || UCDIMM || DRAGEN2)
  230. help
  231. Disable the CPU internal registers protection in user mode,
  232. to allow a user application to read/write them.
  233. config INIT_LCD
  234. bool " Initialize LCD"
  235. depends on (UCSIMM || UCDIMM || DRAGEN2)
  236. help
  237. Initialize the LCD controller of the 68x328 processor.
  238. config MEMORY_RESERVE
  239. int " Memory reservation (MiB)"
  240. depends on (UCSIMM || UCDIMM)
  241. help
  242. Reserve certain memory regions on 68x328 based boards.
  243. config UCQUICC
  244. bool "Lineo uCquicc board support"
  245. depends on M68360
  246. help
  247. Support for the Lineo uCquicc board.
  248. config ARN5206
  249. bool "Arnewsh 5206 board support"
  250. depends on M5206
  251. help
  252. Support for the Arnewsh 5206 board.
  253. config M5206eC3
  254. bool "Motorola M5206eC3 board support"
  255. depends on M5206e
  256. help
  257. Support for the Motorola M5206eC3 board.
  258. config ELITE
  259. bool "Motorola M5206eLITE board support"
  260. depends on M5206e
  261. help
  262. Support for the Motorola M5206eLITE board.
  263. config M5208EVB
  264. bool "Freescale M5208EVB board support"
  265. depends on M520x
  266. help
  267. Support for the Freescale Coldfire M5208EVB.
  268. config M5235EVB
  269. bool "Freescale M5235EVB support"
  270. depends on M523x
  271. help
  272. Support for the Freescale M5235EVB board.
  273. config M5249C3
  274. bool "Motorola M5249C3 board support"
  275. depends on M5249
  276. help
  277. Support for the Motorola M5249C3 board.
  278. config M5271EVB
  279. bool "Freescale (Motorola) M5271EVB board support"
  280. depends on M5271
  281. help
  282. Support for the Freescale (Motorola) M5271EVB board.
  283. config M5275EVB
  284. bool "Freescale (Motorola) M5275EVB board support"
  285. depends on M5275
  286. help
  287. Support for the Freescale (Motorola) M5275EVB board.
  288. config M5272C3
  289. bool "Motorola M5272C3 board support"
  290. depends on M5272
  291. help
  292. Support for the Motorola M5272C3 board.
  293. config COBRA5272
  294. bool "senTec COBRA5272 board support"
  295. depends on M5272
  296. help
  297. Support for the senTec COBRA5272 board.
  298. config M5282EVB
  299. bool "Motorola M5282EVB board support"
  300. depends on M528x
  301. help
  302. Support for the Motorola M5282EVB board.
  303. config COBRA5282
  304. bool "senTec COBRA5282 board support"
  305. depends on M528x
  306. help
  307. Support for the senTec COBRA5282 board.
  308. config SOM5282EM
  309. bool "EMAC.Inc SOM5282EM board support"
  310. depends on M528x
  311. help
  312. Support for the EMAC.Inc SOM5282EM module.
  313. config ARN5307
  314. bool "Arnewsh 5307 board support"
  315. depends on M5307
  316. help
  317. Support for the Arnewsh 5307 board.
  318. config M5307C3
  319. bool "Motorola M5307C3 board support"
  320. depends on M5307
  321. help
  322. Support for the Motorola M5307C3 board.
  323. config eLIA
  324. bool "Moreton Bay eLIA board support"
  325. depends on M5307
  326. help
  327. Support for the Moreton Bay eLIA board.
  328. config SECUREEDGEMP3
  329. bool "SnapGear SecureEdge/MP3 platform support"
  330. depends on M5307
  331. help
  332. Support for the SnapGear SecureEdge/MP3 platform.
  333. config M5407C3
  334. bool "Motorola M5407C3 board support"
  335. depends on M5407
  336. help
  337. Support for the Motorola M5407C3 board.
  338. config CLEOPATRA
  339. bool "Feith CLEOPATRA board support"
  340. depends on (M5307 || M5407)
  341. help
  342. Support for the Feith Cleopatra boards.
  343. config CANCam
  344. bool "Feith CANCam board support"
  345. depends on M5272
  346. help
  347. Support for the Feith CANCam board.
  348. config SCALES
  349. bool "Feith SCALES board support"
  350. depends on M5272
  351. help
  352. Support for the Feith SCALES board.
  353. config NETtel
  354. bool "SecureEdge/NETtel board support"
  355. depends on (M5206e || M5272 || M5307)
  356. help
  357. Support for the SnapGear NETtel/SecureEdge/SnapGear boards.
  358. config SNAPGEAR
  359. bool "SnapGear router board support"
  360. depends on NETtel
  361. help
  362. Special additional support for SnapGear router boards.
  363. config CPU16B
  364. bool "Sneha Technologies S.L. Sarasvati board support"
  365. depends on M5272
  366. help
  367. Support for the SNEHA CPU16B board.
  368. config MOD5272
  369. bool "Netburner MOD-5272 board support"
  370. depends on M5272
  371. help
  372. Support for the Netburner MOD-5272 board.
  373. config ROMFS_FROM_ROM
  374. bool " ROMFS image not RAM resident"
  375. depends on (NETtel || SNAPGEAR)
  376. help
  377. The ROMfs filesystem will stay resident in the FLASH/ROM, not be
  378. moved into RAM.
  379. config PILOT
  380. bool
  381. default y
  382. depends on (PILOT3 || PILOT5)
  383. config ARNEWSH
  384. bool
  385. default y
  386. depends on (ARN5206 || ARN5307)
  387. config FREESCALE
  388. bool
  389. default y
  390. depends on (M5206eC3 || M5208EVB || M5235EVB || M5249C3 || M5271EVB || M5272C3 || M5275EVB || M5282EVB || M5307C3 || M5407C3)
  391. config HW_FEITH
  392. bool
  393. default y
  394. depends on (CLEOPATRA || CANCam || SCALES)
  395. config senTec
  396. bool
  397. default y
  398. depends on (COBRA5272 || COBRA5282)
  399. config EMAC_INC
  400. bool
  401. default y
  402. depends on (SOM5282EM)
  403. config SNEHA
  404. bool
  405. default y
  406. depends on CPU16B
  407. config LARGE_ALLOCS
  408. bool "Allow allocating large blocks (> 1MB) of memory"
  409. help
  410. Allow the slab memory allocator to keep chains for very large
  411. memory sizes - upto 32MB. You may need this if your system has
  412. a lot of RAM, and you need to able to allocate very large
  413. contiguous chunks. If unsure, say N.
  414. config 4KSTACKS
  415. bool "Use 4Kb for kernel stacks instead of 8Kb"
  416. default y
  417. help
  418. If you say Y here the kernel will use a 4Kb stacksize for the
  419. kernel stack attached to each process/thread. This facilitates
  420. running more threads on a system and also reduces the pressure
  421. on the VM subsystem for higher order allocations.
  422. choice
  423. prompt "RAM size"
  424. default AUTO
  425. config RAMAUTO
  426. bool "AUTO"
  427. ---help---
  428. Configure the RAM size on your platform. Many platforms can auto
  429. detect this, on those choose the AUTO option. Otherwise set the
  430. RAM size you intend using.
  431. config RAM4MB
  432. bool "4MiB"
  433. help
  434. Set RAM size to be 4MiB.
  435. config RAM8MB
  436. bool "8MiB"
  437. help
  438. Set RAM size to be 8MiB.
  439. config RAM16MB
  440. bool "16MiB"
  441. help
  442. Set RAM size to be 16MiB.
  443. config RAM32MB
  444. bool "32MiB"
  445. help
  446. Set RAM size to be 32MiB.
  447. endchoice
  448. choice
  449. prompt "RAM bus width"
  450. default RAMAUTOBIT
  451. config RAMAUTOBIT
  452. bool "AUTO"
  453. ---help---
  454. Select the physical RAM data bus size. Not needed on most platforms,
  455. so you can generally choose AUTO.
  456. config RAM8BIT
  457. bool "8bit"
  458. help
  459. Configure RAM bus to be 8 bits wide.
  460. config RAM16BIT
  461. bool "16bit"
  462. help
  463. Configure RAM bus to be 16 bits wide.
  464. config RAM32BIT
  465. bool "32bit"
  466. help
  467. Configure RAM bus to be 32 bits wide.
  468. endchoice
  469. choice
  470. prompt "Kernel executes from"
  471. ---help---
  472. Choose the memory type that the kernel will be running in.
  473. config RAMKERNEL
  474. bool "RAM"
  475. help
  476. The kernel will be resident in RAM when running.
  477. config ROMKERNEL
  478. bool "ROM"
  479. help
  480. The kernel will be resident in FLASH/ROM when running.
  481. endchoice
  482. source "mm/Kconfig"
  483. endmenu
  484. config ISA_DMA_API
  485. bool
  486. depends on !M5272
  487. default y
  488. menu "Bus options (PCI, PCMCIA, EISA, MCA, ISA)"
  489. config PCI
  490. bool "PCI support"
  491. help
  492. Support for PCI bus.
  493. config COMEMPCI
  494. bool "CO-MEM lite PCI controller support"
  495. depends on (M5307 || M5407)
  496. source "drivers/pci/Kconfig"
  497. source "drivers/pcmcia/Kconfig"
  498. source "drivers/pci/hotplug/Kconfig"
  499. endmenu
  500. menu "Executable file formats"
  501. source "fs/Kconfig.binfmt"
  502. endmenu
  503. menu "Power management options"
  504. config PM
  505. bool "Power Management support"
  506. help
  507. Support processor power management modes
  508. endmenu
  509. source "net/Kconfig"
  510. source "drivers/Kconfig"
  511. source "fs/Kconfig"
  512. source "arch/m68knommu/Kconfig.debug"
  513. source "security/Kconfig"
  514. source "crypto/Kconfig"
  515. source "lib/Kconfig"