]> asedeno.scripts.mit.edu Git - linux.git/blob - arch/xtensa/Kconfig
Merge tag 'perf-urgent-for-mingo-5.5-20191216' of git://git.kernel.org/pub/scm/linux...
[linux.git] / arch / xtensa / Kconfig
1 # SPDX-License-Identifier: GPL-2.0
2 config XTENSA
3         def_bool y
4         select ARCH_32BIT_OFF_T
5         select ARCH_HAS_BINFMT_FLAT if !MMU
6         select ARCH_HAS_DMA_PREP_COHERENT if MMU
7         select ARCH_HAS_SYNC_DMA_FOR_CPU if MMU
8         select ARCH_HAS_SYNC_DMA_FOR_DEVICE if MMU
9         select ARCH_HAS_UNCACHED_SEGMENT if MMU
10         select ARCH_USE_QUEUED_RWLOCKS
11         select ARCH_USE_QUEUED_SPINLOCKS
12         select ARCH_WANT_FRAME_POINTERS
13         select ARCH_WANT_IPC_PARSE_VERSION
14         select BUILDTIME_EXTABLE_SORT
15         select CLONE_BACKWARDS
16         select COMMON_CLK
17         select DMA_REMAP if MMU
18         select GENERIC_ATOMIC64
19         select GENERIC_CLOCKEVENTS
20         select GENERIC_IRQ_SHOW
21         select GENERIC_PCI_IOMAP
22         select GENERIC_SCHED_CLOCK
23         select GENERIC_STRNCPY_FROM_USER if KASAN
24         select HAVE_ARCH_JUMP_LABEL if !XIP_KERNEL
25         select HAVE_ARCH_KASAN if MMU && !XIP_KERNEL
26         select HAVE_ARCH_TRACEHOOK
27         select HAVE_DEBUG_KMEMLEAK
28         select HAVE_DMA_CONTIGUOUS
29         select HAVE_EXIT_THREAD
30         select HAVE_FUNCTION_TRACER
31         select HAVE_FUTEX_CMPXCHG if !MMU
32         select HAVE_HW_BREAKPOINT if PERF_EVENTS
33         select HAVE_IRQ_TIME_ACCOUNTING
34         select HAVE_OPROFILE
35         select HAVE_PCI
36         select HAVE_PERF_EVENTS
37         select HAVE_STACKPROTECTOR
38         select HAVE_SYSCALL_TRACEPOINTS
39         select IRQ_DOMAIN
40         select MODULES_USE_ELF_RELA
41         select PERF_USE_VMALLOC
42         select VIRT_TO_BUS
43         help
44           Xtensa processors are 32-bit RISC machines designed by Tensilica
45           primarily for embedded systems.  These processors are both
46           configurable and extensible.  The Linux port to the Xtensa
47           architecture supports all processor configurations and extensions,
48           with reasonable minimum requirements.  The Xtensa Linux project has
49           a home page at <http://www.linux-xtensa.org/>.
50
51 config GENERIC_HWEIGHT
52         def_bool y
53
54 config ARCH_HAS_ILOG2_U32
55         def_bool n
56
57 config ARCH_HAS_ILOG2_U64
58         def_bool n
59
60 config NO_IOPORT_MAP
61         def_bool n
62
63 config HZ
64         int
65         default 100
66
67 config LOCKDEP_SUPPORT
68         def_bool y
69
70 config STACKTRACE_SUPPORT
71         def_bool y
72
73 config TRACE_IRQFLAGS_SUPPORT
74         def_bool y
75
76 config MMU
77         def_bool n
78
79 config HAVE_XTENSA_GPIO32
80         def_bool n
81
82 config KASAN_SHADOW_OFFSET
83         hex
84         default 0x6e400000
85
86 menu "Processor type and features"
87
88 choice
89         prompt "Xtensa Processor Configuration"
90         default XTENSA_VARIANT_FSF
91
92 config XTENSA_VARIANT_FSF
93         bool "fsf - default (not generic) configuration"
94         select MMU
95
96 config XTENSA_VARIANT_DC232B
97         bool "dc232b - Diamond 232L Standard Core Rev.B (LE)"
98         select MMU
99         select HAVE_XTENSA_GPIO32
100         help
101           This variant refers to Tensilica's Diamond 232L Standard core Rev.B (LE).
102
103 config XTENSA_VARIANT_DC233C
104         bool "dc233c - Diamond 233L Standard Core Rev.C (LE)"
105         select MMU
106         select HAVE_XTENSA_GPIO32
107         help
108           This variant refers to Tensilica's Diamond 233L Standard core Rev.C (LE).
109
110 config XTENSA_VARIANT_CUSTOM
111         bool "Custom Xtensa processor configuration"
112         select HAVE_XTENSA_GPIO32
113         help
114           Select this variant to use a custom Xtensa processor configuration.
115           You will be prompted for a processor variant CORENAME.
116 endchoice
117
118 config XTENSA_VARIANT_CUSTOM_NAME
119         string "Xtensa Processor Custom Core Variant Name"
120         depends on XTENSA_VARIANT_CUSTOM
121         help
122           Provide the name of a custom Xtensa processor variant.
123           This CORENAME selects arch/xtensa/variant/CORENAME.
124           Dont forget you have to select MMU if you have one.
125
126 config XTENSA_VARIANT_NAME
127         string
128         default "dc232b"                        if XTENSA_VARIANT_DC232B
129         default "dc233c"                        if XTENSA_VARIANT_DC233C
130         default "fsf"                           if XTENSA_VARIANT_FSF
131         default XTENSA_VARIANT_CUSTOM_NAME      if XTENSA_VARIANT_CUSTOM
132
133 config XTENSA_VARIANT_MMU
134         bool "Core variant has a Full MMU (TLB, Pages, Protection, etc)"
135         depends on XTENSA_VARIANT_CUSTOM
136         default y
137         select MMU
138         help
139           Build a Conventional Kernel with full MMU support,
140           ie: it supports a TLB with auto-loading, page protection.
141
142 config XTENSA_VARIANT_HAVE_PERF_EVENTS
143         bool "Core variant has Performance Monitor Module"
144         depends on XTENSA_VARIANT_CUSTOM
145         default n
146         help
147           Enable if core variant has Performance Monitor Module with
148           External Registers Interface.
149
150           If unsure, say N.
151
152 config XTENSA_FAKE_NMI
153         bool "Treat PMM IRQ as NMI"
154         depends on XTENSA_VARIANT_HAVE_PERF_EVENTS
155         default n
156         help
157           If PMM IRQ is the only IRQ at EXCM level it is safe to
158           treat it as NMI, which improves accuracy of profiling.
159
160           If there are other interrupts at or above PMM IRQ priority level
161           but not above the EXCM level, PMM IRQ still may be treated as NMI,
162           but only if these IRQs are not used. There will be a build warning
163           saying that this is not safe, and a bugcheck if one of these IRQs
164           actually fire.
165
166           If unsure, say N.
167
168 config XTENSA_UNALIGNED_USER
169         bool "Unaligned memory access in user space"
170         help
171           The Xtensa architecture currently does not handle unaligned
172           memory accesses in hardware but through an exception handler.
173           Per default, unaligned memory accesses are disabled in user space.
174
175           Say Y here to enable unaligned memory access in user space.
176
177 config HAVE_SMP
178         bool "System Supports SMP (MX)"
179         depends on XTENSA_VARIANT_CUSTOM
180         select XTENSA_MX
181         help
182           This option is use to indicate that the system-on-a-chip (SOC)
183           supports Multiprocessing. Multiprocessor support implemented above
184           the CPU core definition and currently needs to be selected manually.
185
186           Multiprocessor support in implemented with external cache and
187           interrupt controllers.
188
189           The MX interrupt distributer adds Interprocessor Interrupts
190           and causes the IRQ numbers to be increased by 4 for devices
191           like the open cores ethernet driver and the serial interface.
192
193           You still have to select "Enable SMP" to enable SMP on this SOC.
194
195 config SMP
196         bool "Enable Symmetric multi-processing support"
197         depends on HAVE_SMP
198         select GENERIC_SMP_IDLE_THREAD
199         help
200           Enabled SMP Software; allows more than one CPU/CORE
201           to be activated during startup.
202
203 config NR_CPUS
204         depends on SMP
205         int "Maximum number of CPUs (2-32)"
206         range 2 32
207         default "4"
208
209 config HOTPLUG_CPU
210         bool "Enable CPU hotplug support"
211         depends on SMP
212         help
213           Say Y here to allow turning CPUs off and on. CPUs can be
214           controlled through /sys/devices/system/cpu.
215
216           Say N if you want to disable CPU hotplug.
217
218 config FAST_SYSCALL_XTENSA
219         bool "Enable fast atomic syscalls"
220         default n
221         help
222           fast_syscall_xtensa is a syscall that can make atomic operations
223           on UP kernel when processor has no s32c1i support.
224
225           This syscall is deprecated. It may have issues when called with
226           invalid arguments. It is provided only for backwards compatibility.
227           Only enable it if your userspace software requires it.
228
229           If unsure, say N.
230
231 config FAST_SYSCALL_SPILL_REGISTERS
232         bool "Enable spill registers syscall"
233         default n
234         help
235           fast_syscall_spill_registers is a syscall that spills all active
236           register windows of a calling userspace task onto its stack.
237
238           This syscall is deprecated. It may have issues when called with
239           invalid arguments. It is provided only for backwards compatibility.
240           Only enable it if your userspace software requires it.
241
242           If unsure, say N.
243
244 config USER_ABI_CALL0
245         bool
246
247 choice
248         prompt "Userspace ABI"
249         default USER_ABI_DEFAULT
250         help
251           Select supported userspace ABI.
252
253           If unsure, choose the default ABI.
254
255 config USER_ABI_DEFAULT
256         bool "Default ABI only"
257         help
258           Assume default userspace ABI. For XEA2 cores it is windowed ABI.
259           call0 ABI binaries may be run on such kernel, but signal delivery
260           will not work correctly for them.
261
262 config USER_ABI_CALL0_ONLY
263         bool "Call0 ABI only"
264         select USER_ABI_CALL0
265         help
266           Select this option to support only call0 ABI in userspace.
267           Windowed ABI binaries will crash with a segfault caused by
268           an illegal instruction exception on the first 'entry' opcode.
269
270           Choose this option if you're planning to run only user code
271           built with call0 ABI.
272
273 config USER_ABI_CALL0_PROBE
274         bool "Support both windowed and call0 ABI by probing"
275         select USER_ABI_CALL0
276         help
277           Select this option to support both windowed and call0 userspace
278           ABIs. When enabled all processes are started with PS.WOE disabled
279           and a fast user exception handler for an illegal instruction is
280           used to turn on PS.WOE bit on the first 'entry' opcode executed by
281           the userspace.
282
283           This option should be enabled for the kernel that must support
284           both call0 and windowed ABIs in userspace at the same time.
285
286           Note that Xtensa ISA does not guarantee that entry opcode will
287           raise an illegal instruction exception on cores with XEA2 when
288           PS.WOE is disabled, check whether the target core supports it.
289
290 endchoice
291
292 endmenu
293
294 config XTENSA_CALIBRATE_CCOUNT
295         def_bool n
296         help
297           On some platforms (XT2000, for example), the CPU clock rate can
298           vary.  The frequency can be determined, however, by measuring
299           against a well known, fixed frequency, such as an UART oscillator.
300
301 config SERIAL_CONSOLE
302         def_bool n
303
304 config PLATFORM_HAVE_XIP
305         def_bool n
306
307 menu "Platform options"
308
309 choice
310         prompt "Xtensa System Type"
311         default XTENSA_PLATFORM_ISS
312
313 config XTENSA_PLATFORM_ISS
314         bool "ISS"
315         select XTENSA_CALIBRATE_CCOUNT
316         select SERIAL_CONSOLE
317         help
318           ISS is an acronym for Tensilica's Instruction Set Simulator.
319
320 config XTENSA_PLATFORM_XT2000
321         bool "XT2000"
322         select HAVE_IDE
323         help
324           XT2000 is the name of Tensilica's feature-rich emulation platform.
325           This hardware is capable of running a full Linux distribution.
326
327 config XTENSA_PLATFORM_XTFPGA
328         bool "XTFPGA"
329         select ETHOC if ETHERNET
330         select PLATFORM_WANT_DEFAULT_MEM if !MMU
331         select SERIAL_CONSOLE
332         select XTENSA_CALIBRATE_CCOUNT
333         select PLATFORM_HAVE_XIP
334         help
335           XTFPGA is the name of Tensilica board family (LX60, LX110, LX200, ML605).
336           This hardware is capable of running a full Linux distribution.
337
338 endchoice
339
340 config PLATFORM_NR_IRQS
341         int
342         default 3 if XTENSA_PLATFORM_XT2000
343         default 0
344
345 config XTENSA_CPU_CLOCK
346         int "CPU clock rate [MHz]"
347         depends on !XTENSA_CALIBRATE_CCOUNT
348         default 16
349
350 config GENERIC_CALIBRATE_DELAY
351         bool "Auto calibration of the BogoMIPS value"
352         help
353           The BogoMIPS value can easily be derived from the CPU frequency.
354
355 config CMDLINE_BOOL
356         bool "Default bootloader kernel arguments"
357
358 config CMDLINE
359         string "Initial kernel command string"
360         depends on CMDLINE_BOOL
361         default "console=ttyS0,38400 root=/dev/ram"
362         help
363           On some architectures (EBSA110 and CATS), there is currently no way
364           for the boot loader to pass arguments to the kernel. For these
365           architectures, you should supply some command-line options at build
366           time by entering them here. As a minimum, you should specify the
367           memory size and the root device (e.g., mem=64M root=/dev/nfs).
368
369 config USE_OF
370         bool "Flattened Device Tree support"
371         select OF
372         select OF_EARLY_FLATTREE
373         help
374           Include support for flattened device tree machine descriptions.
375
376 config BUILTIN_DTB_SOURCE
377         string "DTB to build into the kernel image"
378         depends on OF
379
380 config PARSE_BOOTPARAM
381         bool "Parse bootparam block"
382         default y
383         help
384           Parse parameters passed to the kernel from the bootloader. It may
385           be disabled if the kernel is known to run without the bootloader.
386
387           If unsure, say Y.
388
389 config BLK_DEV_SIMDISK
390         tristate "Host file-based simulated block device support"
391         default n
392         depends on XTENSA_PLATFORM_ISS && BLOCK
393         help
394           Create block devices that map to files in the host file system.
395           Device binding to host file may be changed at runtime via proc
396           interface provided the device is not in use.
397
398 config BLK_DEV_SIMDISK_COUNT
399         int "Number of host file-based simulated block devices"
400         range 1 10
401         depends on BLK_DEV_SIMDISK
402         default 2
403         help
404           This is the default minimal number of created block devices.
405           Kernel/module parameter 'simdisk_count' may be used to change this
406           value at runtime. More file names (but no more than 10) may be
407           specified as parameters, simdisk_count grows accordingly.
408
409 config SIMDISK0_FILENAME
410         string "Host filename for the first simulated device"
411         depends on BLK_DEV_SIMDISK = y
412         default ""
413         help
414           Attach a first simdisk to a host file. Conventionally, this file
415           contains a root file system.
416
417 config SIMDISK1_FILENAME
418         string "Host filename for the second simulated device"
419         depends on BLK_DEV_SIMDISK = y && BLK_DEV_SIMDISK_COUNT != 1
420         default ""
421         help
422           Another simulated disk in a host file for a buildroot-independent
423           storage.
424
425 config XTFPGA_LCD
426         bool "Enable XTFPGA LCD driver"
427         depends on XTENSA_PLATFORM_XTFPGA
428         default n
429         help
430           There's a 2x16 LCD on most of XTFPGA boards, kernel may output
431           progress messages there during bootup/shutdown. It may be useful
432           during board bringup.
433
434           If unsure, say N.
435
436 config XTFPGA_LCD_BASE_ADDR
437         hex "XTFPGA LCD base address"
438         depends on XTFPGA_LCD
439         default "0x0d0c0000"
440         help
441           Base address of the LCD controller inside KIO region.
442           Different boards from XTFPGA family have LCD controller at different
443           addresses. Please consult prototyping user guide for your board for
444           the correct address. Wrong address here may lead to hardware lockup.
445
446 config XTFPGA_LCD_8BIT_ACCESS
447         bool "Use 8-bit access to XTFPGA LCD"
448         depends on XTFPGA_LCD
449         default n
450         help
451           LCD may be connected with 4- or 8-bit interface, 8-bit access may
452           only be used with 8-bit interface. Please consult prototyping user
453           guide for your board for the correct interface width.
454
455 comment "Kernel memory layout"
456
457 config INITIALIZE_XTENSA_MMU_INSIDE_VMLINUX
458         bool "Initialize Xtensa MMU inside the Linux kernel code"
459         depends on !XTENSA_VARIANT_FSF && !XTENSA_VARIANT_DC232B
460         default y if XTENSA_VARIANT_DC233C || XTENSA_VARIANT_CUSTOM
461         help
462           Earlier version initialized the MMU in the exception vector
463           before jumping to _startup in head.S and had an advantage that
464           it was possible to place a software breakpoint at 'reset' and
465           then enter your normal kernel breakpoints once the MMU was mapped
466           to the kernel mappings (0XC0000000).
467
468           This unfortunately won't work for U-Boot and likely also wont
469           work for using KEXEC to have a hot kernel ready for doing a
470           KDUMP.
471
472           So now the MMU is initialized in head.S but it's necessary to
473           use hardware breakpoints (gdb 'hbreak' cmd) to break at _startup.
474           xt-gdb can't place a Software Breakpoint in the  0XD region prior
475           to mapping the MMU and after mapping even if the area of low memory
476           was mapped gdb wouldn't remove the breakpoint on hitting it as the
477           PC wouldn't match. Since Hardware Breakpoints are recommended for
478           Linux configurations it seems reasonable to just assume they exist
479           and leave this older mechanism for unfortunate souls that choose
480           not to follow Tensilica's recommendation.
481
482           Selecting this will cause U-Boot to set the KERNEL Load and Entry
483           address at 0x00003000 instead of the mapped std of 0xD0003000.
484
485           If in doubt, say Y.
486
487 config XIP_KERNEL
488         bool "Kernel Execute-In-Place from ROM"
489         depends on PLATFORM_HAVE_XIP
490         help
491           Execute-In-Place allows the kernel to run from non-volatile storage
492           directly addressable by the CPU, such as NOR flash. This saves RAM
493           space since the text section of the kernel is not loaded from flash
494           to RAM. Read-write sections, such as the data section and stack,
495           are still copied to RAM. The XIP kernel is not compressed since
496           it has to run directly from flash, so it will take more space to
497           store it. The flash address used to link the kernel object files,
498           and for storing it, is configuration dependent. Therefore, if you
499           say Y here, you must know the proper physical address where to
500           store the kernel image depending on your own flash memory usage.
501
502           Also note that the make target becomes "make xipImage" rather than
503           "make Image" or "make uImage". The final kernel binary to put in
504           ROM memory will be arch/xtensa/boot/xipImage.
505
506           If unsure, say N.
507
508 config MEMMAP_CACHEATTR
509         hex "Cache attributes for the memory address space"
510         depends on !MMU
511         default 0x22222222
512         help
513           These cache attributes are set up for noMMU systems. Each hex digit
514           specifies cache attributes for the corresponding 512MB memory
515           region: bits 0..3 -- for addresses 0x00000000..0x1fffffff,
516           bits 4..7 -- for addresses 0x20000000..0x3fffffff, and so on.
517
518           Cache attribute values are specific for the MMU type.
519           For region protection MMUs:
520             1: WT cached,
521             2: cache bypass,
522             4: WB cached,
523             f: illegal.
524           For ful MMU:
525             bit 0: executable,
526             bit 1: writable,
527             bits 2..3:
528               0: cache bypass,
529               1: WB cache,
530               2: WT cache,
531               3: special (c and e are illegal, f is reserved).
532           For MPU:
533             0: illegal,
534             1: WB cache,
535             2: WB, no-write-allocate cache,
536             3: WT cache,
537             4: cache bypass.
538
539 config KSEG_PADDR
540         hex "Physical address of the KSEG mapping"
541         depends on INITIALIZE_XTENSA_MMU_INSIDE_VMLINUX && MMU
542         default 0x00000000
543         help
544           This is the physical address where KSEG is mapped. Please refer to
545           the chosen KSEG layout help for the required address alignment.
546           Unpacked kernel image (including vectors) must be located completely
547           within KSEG.
548           Physical memory below this address is not available to linux.
549
550           If unsure, leave the default value here.
551
552 config KERNEL_VIRTUAL_ADDRESS
553         hex "Kernel virtual address"
554         depends on MMU && XIP_KERNEL
555         default 0xd0003000
556         help
557           This is the virtual address where the XIP kernel is mapped.
558           XIP kernel may be mapped into KSEG or KIO region, virtual address
559           provided here must match kernel load address provided in
560           KERNEL_LOAD_ADDRESS.
561
562 config KERNEL_LOAD_ADDRESS
563         hex "Kernel load address"
564         default 0x60003000 if !MMU
565         default 0x00003000 if MMU && INITIALIZE_XTENSA_MMU_INSIDE_VMLINUX
566         default 0xd0003000 if MMU && !INITIALIZE_XTENSA_MMU_INSIDE_VMLINUX
567         help
568           This is the address where the kernel is loaded.
569           It is virtual address for MMUv2 configurations and physical address
570           for all other configurations.
571
572           If unsure, leave the default value here.
573
574 config VECTORS_OFFSET
575         hex "Kernel vectors offset"
576         default 0x00003000
577         depends on !XIP_KERNEL
578         help
579           This is the offset of the kernel image from the relocatable vectors
580           base.
581
582           If unsure, leave the default value here.
583
584 config XIP_DATA_ADDR
585         hex "XIP kernel data virtual address"
586         depends on XIP_KERNEL
587         default 0x00000000
588         help
589           This is the virtual address where XIP kernel data is copied.
590           It must be within KSEG if MMU is used.
591
592 config PLATFORM_WANT_DEFAULT_MEM
593         def_bool n
594
595 config DEFAULT_MEM_START
596         hex
597         prompt "PAGE_OFFSET/PHYS_OFFSET" if !MMU && PLATFORM_WANT_DEFAULT_MEM
598         default 0x60000000 if PLATFORM_WANT_DEFAULT_MEM
599         default 0x00000000
600         help
601           This is the base address used for both PAGE_OFFSET and PHYS_OFFSET
602           in noMMU configurations.
603
604           If unsure, leave the default value here.
605
606 choice
607         prompt "KSEG layout"
608         depends on MMU
609         default XTENSA_KSEG_MMU_V2
610
611 config XTENSA_KSEG_MMU_V2
612         bool "MMUv2: 128MB cached + 128MB uncached"
613         help
614           MMUv2 compatible kernel memory map: TLB way 5 maps 128MB starting
615           at KSEG_PADDR to 0xd0000000 with cache and to 0xd8000000
616           without cache.
617           KSEG_PADDR must be aligned to 128MB.
618
619 config XTENSA_KSEG_256M
620         bool "256MB cached + 256MB uncached"
621         depends on INITIALIZE_XTENSA_MMU_INSIDE_VMLINUX
622         help
623           TLB way 6 maps 256MB starting at KSEG_PADDR to 0xb0000000
624           with cache and to 0xc0000000 without cache.
625           KSEG_PADDR must be aligned to 256MB.
626
627 config XTENSA_KSEG_512M
628         bool "512MB cached + 512MB uncached"
629         depends on INITIALIZE_XTENSA_MMU_INSIDE_VMLINUX
630         help
631           TLB way 6 maps 512MB starting at KSEG_PADDR to 0xa0000000
632           with cache and to 0xc0000000 without cache.
633           KSEG_PADDR must be aligned to 256MB.
634
635 endchoice
636
637 config HIGHMEM
638         bool "High Memory Support"
639         depends on MMU
640         help
641           Linux can use the full amount of RAM in the system by
642           default. However, the default MMUv2 setup only maps the
643           lowermost 128 MB of memory linearly to the areas starting
644           at 0xd0000000 (cached) and 0xd8000000 (uncached).
645           When there are more than 128 MB memory in the system not
646           all of it can be "permanently mapped" by the kernel.
647           The physical memory that's not permanently mapped is called
648           "high memory".
649
650           If you are compiling a kernel which will never run on a
651           machine with more than 128 MB total physical RAM, answer
652           N here.
653
654           If unsure, say Y.
655
656 config FORCE_MAX_ZONEORDER
657         int "Maximum zone order"
658         default "11"
659         help
660           The kernel memory allocator divides physically contiguous memory
661           blocks into "zones", where each zone is a power of two number of
662           pages.  This option selects the largest power of two that the kernel
663           keeps in the memory allocator.  If you need to allocate very large
664           blocks of physically contiguous memory, then you may need to
665           increase this value.
666
667           This config option is actually maximum order plus one. For example,
668           a value of 11 means that the largest free memory block is 2^10 pages.
669
670 endmenu
671
672 menu "Power management options"
673
674 source "kernel/power/Kconfig"
675
676 endmenu