Kconfig 12 KB

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