Kconfig 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805
  1. # For a description of the syntax of this configuration file,
  2. # see Documentation/kbuild/kconfig-language.txt.
  3. #
  4. mainmenu "Linux/PowerPC Kernel Configuration"
  5. source "arch/powerpc/platforms/Kconfig.cputype"
  6. config PPC32
  7. bool
  8. default y if !PPC64
  9. config 64BIT
  10. bool
  11. default y if PPC64
  12. config WORD_SIZE
  13. int
  14. default 64 if PPC64
  15. default 32 if !PPC64
  16. config PPC_MERGE
  17. def_bool y
  18. config MMU
  19. bool
  20. default y
  21. config GENERIC_CMOS_UPDATE
  22. def_bool y
  23. config GENERIC_TIME
  24. def_bool y
  25. config GENERIC_TIME_VSYSCALL
  26. def_bool y
  27. config GENERIC_CLOCKEVENTS
  28. def_bool y
  29. config GENERIC_HARDIRQS
  30. bool
  31. default y
  32. config HAVE_SETUP_PER_CPU_AREA
  33. def_bool PPC64
  34. config IRQ_PER_CPU
  35. bool
  36. default y
  37. config STACKTRACE_SUPPORT
  38. bool
  39. default y
  40. config TRACE_IRQFLAGS_SUPPORT
  41. bool
  42. depends on PPC64
  43. default y
  44. config LOCKDEP_SUPPORT
  45. bool
  46. default y
  47. config RWSEM_GENERIC_SPINLOCK
  48. bool
  49. config RWSEM_XCHGADD_ALGORITHM
  50. bool
  51. default y
  52. config GENERIC_LOCKBREAK
  53. bool
  54. default y
  55. depends on SMP && PREEMPT
  56. config ARCH_HAS_ILOG2_U32
  57. bool
  58. default y
  59. config ARCH_HAS_ILOG2_U64
  60. bool
  61. default y if 64BIT
  62. config GENERIC_HWEIGHT
  63. bool
  64. default y
  65. config GENERIC_CALIBRATE_DELAY
  66. bool
  67. default y
  68. config GENERIC_FIND_NEXT_BIT
  69. bool
  70. default y
  71. config GENERIC_GPIO
  72. bool
  73. help
  74. Generic GPIO API support
  75. config ARCH_NO_VIRT_TO_BUS
  76. def_bool PPC64
  77. config PPC
  78. bool
  79. default y
  80. select HAVE_IDE
  81. select HAVE_OPROFILE
  82. select HAVE_KPROBES
  83. select HAVE_KRETPROBES
  84. select HAVE_LMB
  85. config EARLY_PRINTK
  86. bool
  87. default y
  88. config COMPAT
  89. bool
  90. default y if PPC64
  91. select COMPAT_BINFMT_ELF
  92. config SYSVIPC_COMPAT
  93. bool
  94. depends on COMPAT && SYSVIPC
  95. default y
  96. # All PPC32s use generic nvram driver through ppc_md
  97. config GENERIC_NVRAM
  98. bool
  99. default y if PPC32
  100. config SCHED_NO_NO_OMIT_FRAME_POINTER
  101. bool
  102. default y
  103. config ARCH_MAY_HAVE_PC_FDC
  104. bool
  105. default !PPC_PSERIES || PCI
  106. config PPC_OF
  107. def_bool y
  108. config OF
  109. def_bool y
  110. config PPC_UDBG_16550
  111. bool
  112. default n
  113. config GENERIC_TBSYNC
  114. bool
  115. default y if PPC32 && SMP
  116. default n
  117. config AUDIT_ARCH
  118. bool
  119. default y
  120. config GENERIC_BUG
  121. bool
  122. default y
  123. depends on BUG
  124. config SYS_SUPPORTS_APM_EMULATION
  125. default y if PMAC_APM_EMU
  126. bool
  127. config DEFAULT_UIMAGE
  128. bool
  129. help
  130. Used to allow a board to specify it wants a uImage built by default
  131. default n
  132. config REDBOOT
  133. bool
  134. config HIBERNATE_32
  135. bool
  136. depends on (PPC_PMAC && !SMP) || BROKEN
  137. default y
  138. config HIBERNATE_64
  139. bool
  140. depends on BROKEN || (PPC_PMAC64 && EXPERIMENTAL)
  141. default y
  142. config ARCH_HIBERNATION_POSSIBLE
  143. bool
  144. depends on (PPC64 && HIBERNATE_64) || (PPC32 && HIBERNATE_32)
  145. default y
  146. config ARCH_SUSPEND_POSSIBLE
  147. def_bool y
  148. depends on ADB_PMU || PPC_EFIKA || PPC_LITE5200
  149. config PPC_DCR_NATIVE
  150. bool
  151. default n
  152. config PPC_DCR_MMIO
  153. bool
  154. default n
  155. config PPC_DCR
  156. bool
  157. depends on PPC_DCR_NATIVE || PPC_DCR_MMIO
  158. default y
  159. config PPC_OF_PLATFORM_PCI
  160. bool
  161. depends on PCI
  162. depends on PPC64 # not supported on 32 bits yet
  163. default n
  164. source "init/Kconfig"
  165. source "arch/powerpc/sysdev/Kconfig"
  166. source "arch/powerpc/platforms/Kconfig"
  167. menu "Kernel options"
  168. config HIGHMEM
  169. bool "High memory support"
  170. depends on PPC32
  171. source kernel/time/Kconfig
  172. source kernel/Kconfig.hz
  173. source kernel/Kconfig.preempt
  174. source "fs/Kconfig.binfmt"
  175. config HUGETLB_PAGE_SIZE_VARIABLE
  176. bool
  177. depends on HUGETLB_PAGE
  178. default y
  179. config MATH_EMULATION
  180. bool "Math emulation"
  181. depends on 4xx || 8xx || E200 || PPC_MPC832x || E500
  182. ---help---
  183. Some PowerPC chips designed for embedded applications do not have
  184. a floating-point unit and therefore do not implement the
  185. floating-point instructions in the PowerPC instruction set. If you
  186. say Y here, the kernel will include code to emulate a floating-point
  187. unit, which will allow programs that use floating-point
  188. instructions to run.
  189. config 8XX_MINIMAL_FPEMU
  190. bool "Minimal math emulation for 8xx"
  191. depends on 8xx && !MATH_EMULATION
  192. help
  193. Older arch/ppc kernels still emulated a few floating point
  194. instructions such as load and store, even when full math
  195. emulation is disabled. Say "Y" here if you want to preserve
  196. this behavior.
  197. It is recommended that you build a soft-float userspace instead.
  198. config IOMMU_VMERGE
  199. bool "Enable IOMMU virtual merging"
  200. depends on PPC64
  201. default y
  202. help
  203. Cause IO segments sent to a device for DMA to be merged virtually
  204. by the IOMMU when they happen to have been allocated contiguously.
  205. This doesn't add pressure to the IOMMU allocator. However, some
  206. drivers don't support getting large merged segments coming back
  207. from *_map_sg().
  208. Most drivers don't have this problem; it is safe to say Y here.
  209. config IOMMU_HELPER
  210. def_bool PPC64
  211. config HOTPLUG_CPU
  212. bool "Support for enabling/disabling CPUs"
  213. depends on SMP && HOTPLUG && EXPERIMENTAL && (PPC_PSERIES || PPC_PMAC)
  214. ---help---
  215. Say Y here to be able to disable and re-enable individual
  216. CPUs at runtime on SMP machines.
  217. Say N if you are unsure.
  218. config ARCH_ENABLE_MEMORY_HOTPLUG
  219. def_bool y
  220. config ARCH_HAS_WALK_MEMORY
  221. def_bool y
  222. config ARCH_ENABLE_MEMORY_HOTREMOVE
  223. def_bool y
  224. config KEXEC
  225. bool "kexec system call (EXPERIMENTAL)"
  226. depends on (PPC_PRPMC2800 || PPC_MULTIPLATFORM) && EXPERIMENTAL
  227. help
  228. kexec is a system call that implements the ability to shutdown your
  229. current kernel, and to start another kernel. It is like a reboot
  230. but it is independent of the system firmware. And like a reboot
  231. you can start any kernel with it, not just Linux.
  232. The name comes from the similarity to the exec system call.
  233. It is an ongoing process to be certain the hardware in a machine
  234. is properly shutdown, so do not be surprised if this code does not
  235. initially work for you. It may help to enable device hotplugging
  236. support. As of this writing the exact hardware interface is
  237. strongly in flux, so no good recommendation can be made.
  238. config CRASH_DUMP
  239. bool "Build a kdump crash kernel (EXPERIMENTAL)"
  240. depends on PPC_MULTIPLATFORM && PPC64 && EXPERIMENTAL
  241. help
  242. Build a kernel suitable for use as a kdump capture kernel.
  243. The kernel will be linked at a different address than normal, and
  244. so can only be used for Kdump.
  245. Don't change this unless you know what you are doing.
  246. config PHYP_DUMP
  247. bool "Hypervisor-assisted dump (EXPERIMENTAL)"
  248. depends on PPC_PSERIES && EXPERIMENTAL
  249. help
  250. Hypervisor-assisted dump is meant to be a kdump replacement
  251. offering robustness and speed not possible without system
  252. hypervisor assistence.
  253. If unsure, say "N"
  254. config PPCBUG_NVRAM
  255. bool "Enable reading PPCBUG NVRAM during boot" if PPLUS || LOPEC
  256. default y if PPC_PREP
  257. config IRQ_ALL_CPUS
  258. bool "Distribute interrupts on all CPUs by default"
  259. depends on SMP && !MV64360
  260. help
  261. This option gives the kernel permission to distribute IRQs across
  262. multiple CPUs. Saying N here will route all IRQs to the first
  263. CPU. Generally saying Y is safe, although some problems have been
  264. reported with SMP Power Macintoshes with this option enabled.
  265. config NUMA
  266. bool "NUMA support"
  267. depends on PPC64
  268. default y if SMP && PPC_PSERIES
  269. config NODES_SHIFT
  270. int
  271. default "4"
  272. depends on NEED_MULTIPLE_NODES
  273. config ARCH_SELECT_MEMORY_MODEL
  274. def_bool y
  275. depends on PPC64
  276. config ARCH_FLATMEM_ENABLE
  277. def_bool y
  278. depends on (PPC64 && !NUMA) || PPC32
  279. config ARCH_SPARSEMEM_ENABLE
  280. def_bool y
  281. depends on PPC64
  282. select SPARSEMEM_VMEMMAP_ENABLE
  283. config ARCH_SPARSEMEM_DEFAULT
  284. def_bool y
  285. depends on (SMP && PPC_PSERIES) || PPC_PS3
  286. config ARCH_POPULATES_NODE_MAP
  287. def_bool y
  288. source "mm/Kconfig"
  289. config ARCH_MEMORY_PROBE
  290. def_bool y
  291. depends on MEMORY_HOTPLUG
  292. # Some NUMA nodes have memory ranges that span
  293. # other nodes. Even though a pfn is valid and
  294. # between a node's start and end pfns, it may not
  295. # reside on that node. See memmap_init_zone()
  296. # for details.
  297. config NODES_SPAN_OTHER_NODES
  298. def_bool y
  299. depends on NEED_MULTIPLE_NODES
  300. config PPC_HAS_HASH_64K
  301. bool
  302. depends on PPC64
  303. default n
  304. config PPC_64K_PAGES
  305. bool "64k page size"
  306. depends on PPC64
  307. select PPC_HAS_HASH_64K
  308. help
  309. This option changes the kernel logical page size to 64k. On machines
  310. without processor support for 64k pages, the kernel will simulate
  311. them by loading each individual 4k page on demand transparently,
  312. while on hardware with such support, it will be used to map
  313. normal application pages.
  314. config FORCE_MAX_ZONEORDER
  315. int "Maximum zone order"
  316. default "9" if PPC_64K_PAGES
  317. default "13" if PPC64 && !PPC_64K_PAGES
  318. default "11"
  319. help
  320. The kernel memory allocator divides physically contiguous memory
  321. blocks into "zones", where each zone is a power of two number of
  322. pages. This option selects the largest power of two that the kernel
  323. keeps in the memory allocator. If you need to allocate very large
  324. blocks of physically contiguous memory, then you may need to
  325. increase this value.
  326. This config option is actually maximum order plus one. For example,
  327. a value of 11 means that the largest free memory block is 2^10 pages.
  328. The page size is not necessarily 4KB. For example, on 64-bit
  329. systems, 64KB pages can be enabled via CONFIG_PPC_64K_PAGES. Keep
  330. this in mind when choosing a value for this option.
  331. config PPC_SUBPAGE_PROT
  332. bool "Support setting protections for 4k subpages"
  333. depends on PPC_64K_PAGES
  334. help
  335. This option adds support for a system call to allow user programs
  336. to set access permissions (read/write, readonly, or no access)
  337. on the 4k subpages of each 64k page.
  338. config SCHED_SMT
  339. bool "SMT (Hyperthreading) scheduler support"
  340. depends on PPC64 && SMP
  341. help
  342. SMT scheduler support improves the CPU scheduler's decision making
  343. when dealing with POWER5 cpus at a cost of slightly increased
  344. overhead in some places. If unsure say N here.
  345. config PROC_DEVICETREE
  346. bool "Support for device tree in /proc"
  347. depends on PROC_FS
  348. help
  349. This option adds a device-tree directory under /proc which contains
  350. an image of the device tree that the kernel copies from Open
  351. Firmware or other boot firmware. If unsure, say Y here.
  352. config CMDLINE_BOOL
  353. bool "Default bootloader kernel arguments"
  354. config CMDLINE
  355. string "Initial kernel command string"
  356. depends on CMDLINE_BOOL
  357. default "console=ttyS0,9600 console=tty0 root=/dev/sda2"
  358. help
  359. On some platforms, there is currently no way for the boot loader to
  360. pass arguments to the kernel. For these platforms, you can supply
  361. some command-line options at build time by entering them here. In
  362. most cases you will need to specify the root device here.
  363. if !44x || BROKEN
  364. config ARCH_WANTS_FREEZER_CONTROL
  365. def_bool y
  366. depends on ADB_PMU
  367. source kernel/power/Kconfig
  368. endif
  369. config SECCOMP
  370. bool "Enable seccomp to safely compute untrusted bytecode"
  371. depends on PROC_FS
  372. default y
  373. help
  374. This kernel feature is useful for number crunching applications
  375. that may need to compute untrusted bytecode during their
  376. execution. By using pipes or other transports made available to
  377. the process as file descriptors supporting the read/write
  378. syscalls, it's possible to isolate those applications in
  379. their own address space using seccomp. Once seccomp is
  380. enabled via /proc/<pid>/seccomp, it cannot be disabled
  381. and the task is only allowed to execute a few safe syscalls
  382. defined by each seccomp mode.
  383. If unsure, say Y. Only embedded should say N here.
  384. endmenu
  385. config ISA_DMA_API
  386. bool
  387. default !PPC_ISERIES || PCI
  388. menu "Bus options"
  389. config ISA
  390. bool "Support for ISA-bus hardware"
  391. depends on PPC_PREP || PPC_CHRP
  392. select PPC_I8259
  393. help
  394. Find out whether you have ISA slots on your motherboard. ISA is the
  395. name of a bus system, i.e. the way the CPU talks to the other stuff
  396. inside your box. If you have an Apple machine, say N here; if you
  397. have an IBM RS/6000 or pSeries machine or a PReP machine, say Y. If
  398. you have an embedded board, consult your board documentation.
  399. config ZONE_DMA
  400. bool
  401. default y
  402. config GENERIC_ISA_DMA
  403. bool
  404. depends on PPC64 || POWER4 || 6xx && !CPM2
  405. default y
  406. config PPC_INDIRECT_PCI
  407. bool
  408. depends on PCI
  409. default y if 40x || 44x
  410. default n
  411. config EISA
  412. bool
  413. config SBUS
  414. bool
  415. config FSL_SOC
  416. bool
  417. config FSL_PCI
  418. bool
  419. select PPC_INDIRECT_PCI
  420. config 4xx_SOC
  421. bool
  422. config FSL_LBC
  423. bool
  424. help
  425. Freescale Localbus support
  426. # Yes MCA RS/6000s exist but Linux-PPC does not currently support any
  427. config MCA
  428. bool
  429. config PCI
  430. bool "PCI support" if 40x || CPM2 || PPC_83xx || PPC_85xx || PPC_86xx \
  431. || PPC_MPC52xx || (EMBEDDED && (PPC_PSERIES || PPC_ISERIES)) \
  432. || PPC_PS3 || 44x
  433. default y if !40x && !CPM2 && !8xx && !PPC_MPC512x && !PPC_83xx \
  434. && !PPC_85xx && !PPC_86xx
  435. default PCI_PERMEDIA if !4xx && !CPM2 && !8xx
  436. default PCI_QSPAN if !4xx && !CPM2 && 8xx
  437. select ARCH_SUPPORTS_MSI
  438. help
  439. Find out whether your system includes a PCI bus. PCI is the name of
  440. a bus system, i.e. the way the CPU talks to the other stuff inside
  441. your box. If you say Y here, the kernel will include drivers and
  442. infrastructure code to support PCI bus devices.
  443. config PCI_DOMAINS
  444. def_bool PCI
  445. config PCI_SYSCALL
  446. def_bool PCI
  447. config PCI_QSPAN
  448. bool "QSpan PCI"
  449. depends on !4xx && !CPM2 && 8xx
  450. select PPC_I8259
  451. help
  452. Say Y here if you have a system based on a Motorola 8xx-series
  453. embedded processor with a QSPAN PCI interface, otherwise say N.
  454. config PCI_8260
  455. bool
  456. depends on PCI && 8260
  457. select PPC_INDIRECT_PCI
  458. default y
  459. config 8260_PCI9
  460. bool "Enable workaround for MPC826x erratum PCI 9"
  461. depends on PCI_8260 && !8272
  462. default y
  463. choice
  464. prompt "IDMA channel for PCI 9 workaround"
  465. depends on 8260_PCI9
  466. config 8260_PCI9_IDMA1
  467. bool "IDMA1"
  468. config 8260_PCI9_IDMA2
  469. bool "IDMA2"
  470. config 8260_PCI9_IDMA3
  471. bool "IDMA3"
  472. config 8260_PCI9_IDMA4
  473. bool "IDMA4"
  474. endchoice
  475. source "drivers/pci/pcie/Kconfig"
  476. source "drivers/pci/Kconfig"
  477. source "drivers/pcmcia/Kconfig"
  478. source "drivers/pci/hotplug/Kconfig"
  479. endmenu
  480. menu "Advanced setup"
  481. depends on PPC32
  482. config ADVANCED_OPTIONS
  483. bool "Prompt for advanced kernel configuration options"
  484. help
  485. This option will enable prompting for a variety of advanced kernel
  486. configuration options. These options can cause the kernel to not
  487. work if they are set incorrectly, but can be used to optimize certain
  488. aspects of kernel memory management.
  489. Unless you know what you are doing, say N here.
  490. comment "Default settings for advanced configuration options are used"
  491. depends on !ADVANCED_OPTIONS
  492. config LOWMEM_SIZE_BOOL
  493. bool "Set maximum low memory"
  494. depends on ADVANCED_OPTIONS
  495. help
  496. This option allows you to set the maximum amount of memory which
  497. will be used as "low memory", that is, memory which the kernel can
  498. access directly, without having to set up a kernel virtual mapping.
  499. This can be useful in optimizing the layout of kernel virtual
  500. memory.
  501. Say N here unless you know what you are doing.
  502. config LOWMEM_SIZE
  503. hex "Maximum low memory size (in bytes)" if LOWMEM_SIZE_BOOL
  504. default "0x30000000"
  505. config RELOCATABLE
  506. bool "Build a relocatable kernel (EXPERIMENTAL)"
  507. depends on EXPERIMENTAL && ADVANCED_OPTIONS && FLATMEM && FSL_BOOKE
  508. help
  509. This builds a kernel image that is capable of running at the
  510. location the kernel is loaded at (some alignment restrictions may
  511. exist).
  512. One use is for the kexec on panic case where the recovery kernel
  513. must live at a different physical address than the primary
  514. kernel.
  515. Note: If CONFIG_RELOCATABLE=y, then the kernel runs from the address
  516. it has been loaded at and the compile time physical addresses
  517. CONFIG_PHYSICAL_START is ignored. However CONFIG_PHYSICAL_START
  518. setting can still be useful to bootwrappers that need to know the
  519. load location of the kernel (eg. u-boot/mkimage).
  520. config PAGE_OFFSET_BOOL
  521. bool "Set custom page offset address"
  522. depends on ADVANCED_OPTIONS
  523. help
  524. This option allows you to set the kernel virtual address at which
  525. the kernel will map low memory. This can be useful in optimizing
  526. the virtual memory layout of the system.
  527. Say N here unless you know what you are doing.
  528. config PAGE_OFFSET
  529. hex "Virtual address of memory base" if PAGE_OFFSET_BOOL
  530. default "0xc0000000"
  531. config KERNEL_START_BOOL
  532. bool "Set custom kernel base address"
  533. depends on ADVANCED_OPTIONS
  534. help
  535. This option allows you to set the kernel virtual address at which
  536. the kernel will be loaded. Normally this should match PAGE_OFFSET
  537. however there are times (like kdump) that one might not want them
  538. to be the same.
  539. Say N here unless you know what you are doing.
  540. config KERNEL_START
  541. hex "Virtual address of kernel base" if KERNEL_START_BOOL
  542. default PAGE_OFFSET if PAGE_OFFSET_BOOL
  543. default "0xc2000000" if CRASH_DUMP
  544. default "0xc0000000"
  545. config PHYSICAL_START_BOOL
  546. bool "Set physical address where the kernel is loaded"
  547. depends on ADVANCED_OPTIONS && FLATMEM && FSL_BOOKE
  548. help
  549. This gives the physical address where the kernel is loaded.
  550. Say N here unless you know what you are doing.
  551. config PHYSICAL_START
  552. hex "Physical address where the kernel is loaded" if PHYSICAL_START_BOOL
  553. default "0x02000000" if PPC_STD_MMU && CRASH_DUMP
  554. default "0x00000000"
  555. config PHYSICAL_ALIGN
  556. hex
  557. default "0x10000000" if FSL_BOOKE
  558. help
  559. This value puts the alignment restrictions on physical address
  560. where kernel is loaded and run from. Kernel is compiled for an
  561. address which meets above alignment restriction.
  562. config TASK_SIZE_BOOL
  563. bool "Set custom user task size"
  564. depends on ADVANCED_OPTIONS
  565. help
  566. This option allows you to set the amount of virtual address space
  567. allocated to user tasks. This can be useful in optimizing the
  568. virtual memory layout of the system.
  569. Say N here unless you know what you are doing.
  570. config TASK_SIZE
  571. hex "Size of user task space" if TASK_SIZE_BOOL
  572. default "0x80000000" if PPC_PREP || PPC_8xx
  573. default "0xc0000000"
  574. config CONSISTENT_START_BOOL
  575. bool "Set custom consistent memory pool address"
  576. depends on ADVANCED_OPTIONS && NOT_COHERENT_CACHE
  577. help
  578. This option allows you to set the base virtual address
  579. of the consistent memory pool. This pool of virtual
  580. memory is used to make consistent memory allocations.
  581. config CONSISTENT_START
  582. hex "Base virtual address of consistent memory pool" if CONSISTENT_START_BOOL
  583. default "0xfd000000" if (NOT_COHERENT_CACHE && 8xx)
  584. default "0xff100000" if NOT_COHERENT_CACHE
  585. config CONSISTENT_SIZE_BOOL
  586. bool "Set custom consistent memory pool size"
  587. depends on ADVANCED_OPTIONS && NOT_COHERENT_CACHE
  588. help
  589. This option allows you to set the size of the
  590. consistent memory pool. This pool of virtual memory
  591. is used to make consistent memory allocations.
  592. config CONSISTENT_SIZE
  593. hex "Size of consistent memory pool" if CONSISTENT_SIZE_BOOL
  594. default "0x00200000" if NOT_COHERENT_CACHE
  595. config PIN_TLB
  596. bool "Pinned Kernel TLBs (860 ONLY)"
  597. depends on ADVANCED_OPTIONS && 8xx
  598. endmenu
  599. if PPC64
  600. config PAGE_OFFSET
  601. hex
  602. default "0xc000000000000000"
  603. config KERNEL_START
  604. hex
  605. default "0xc000000002000000" if CRASH_DUMP
  606. default "0xc000000000000000"
  607. config PHYSICAL_START
  608. hex
  609. default "0x02000000" if CRASH_DUMP
  610. default "0x00000000"
  611. endif
  612. source "net/Kconfig"
  613. source "drivers/Kconfig"
  614. source "fs/Kconfig"
  615. # XXX source "arch/ppc/8xx_io/Kconfig"
  616. # XXX source "arch/ppc/8260_io/Kconfig"
  617. source "arch/powerpc/sysdev/qe_lib/Kconfig"
  618. source "lib/Kconfig"
  619. source "arch/powerpc/Kconfig.debug"
  620. source "security/Kconfig"
  621. config KEYS_COMPAT
  622. bool
  623. depends on COMPAT && KEYS
  624. default y
  625. source "crypto/Kconfig"
  626. config PPC_CLOCK
  627. bool
  628. default n
  629. config PPC_LIB_RHEAP
  630. bool