Kconfig (4bfab2034bab9374eba1921cf7bd51fd8d48661b) | Kconfig (19accfd373847ac3d10623c5d20f948846299741) |
---|---|
1config ARM 2 bool 3 default y 4 select ARCH_BINFMT_ELF_RANDOMIZE_PIE 5 select ARCH_HAS_ATOMIC64_DEC_IF_POSITIVE 6 select ARCH_HAVE_CUSTOM_GPIO_H 7 select ARCH_HAS_TICK_BROADCAST if GENERIC_CLOCKEVENTS_BROADCAST 8 select ARCH_WANT_IPC_PARSE_VERSION --- 204 unchanged lines hidden (view full) --- 213 bool 214 215config VECTORS_BASE 216 hex 217 default 0xffff0000 if MMU || CPU_HIGH_VECTOR 218 default DRAM_BASE if REMAP_VECTORS_TO_RAM 219 default 0x00000000 220 help | 1config ARM 2 bool 3 default y 4 select ARCH_BINFMT_ELF_RANDOMIZE_PIE 5 select ARCH_HAS_ATOMIC64_DEC_IF_POSITIVE 6 select ARCH_HAVE_CUSTOM_GPIO_H 7 select ARCH_HAS_TICK_BROADCAST if GENERIC_CLOCKEVENTS_BROADCAST 8 select ARCH_WANT_IPC_PARSE_VERSION --- 204 unchanged lines hidden (view full) --- 213 bool 214 215config VECTORS_BASE 216 hex 217 default 0xffff0000 if MMU || CPU_HIGH_VECTOR 218 default DRAM_BASE if REMAP_VECTORS_TO_RAM 219 default 0x00000000 220 help |
221 The base address of exception vectors. | 221 The base address of exception vectors. This must be two pages 222 in size. |
222 223config ARM_PATCH_PHYS_VIRT 224 bool "Patch physical to virtual translations at runtime" if EMBEDDED 225 default y 226 depends on !XIP_KERNEL && MMU 227 depends on !ARCH_REALVIEW || !SPARSEMEM 228 help 229 Patch phys-to-virt and virt-to-phys translation functions at --- 1379 unchanged lines hidden (view full) --- 1609 default 0 1610 help 1611 Maximum number of GPIOs in the system. 1612 1613 If unsure, leave the default value. 1614 1615source kernel/Kconfig.preempt 1616 | 223 224config ARM_PATCH_PHYS_VIRT 225 bool "Patch physical to virtual translations at runtime" if EMBEDDED 226 default y 227 depends on !XIP_KERNEL && MMU 228 depends on !ARCH_REALVIEW || !SPARSEMEM 229 help 230 Patch phys-to-virt and virt-to-phys translation functions at --- 1379 unchanged lines hidden (view full) --- 1610 default 0 1611 help 1612 Maximum number of GPIOs in the system. 1613 1614 If unsure, leave the default value. 1615 1616source kernel/Kconfig.preempt 1617 |
1617config HZ_FIXED | 1618config HZ |
1618 int 1619 default 200 if ARCH_EBSA110 || ARCH_S3C24XX || ARCH_S5P64X0 || \ 1620 ARCH_S5PV210 || ARCH_EXYNOS4 1621 default AT91_TIMER_HZ if ARCH_AT91 1622 default SHMOBILE_TIMER_HZ if ARCH_SHMOBILE | 1619 int 1620 default 200 if ARCH_EBSA110 || ARCH_S3C24XX || ARCH_S5P64X0 || \ 1621 ARCH_S5PV210 || ARCH_EXYNOS4 1622 default AT91_TIMER_HZ if ARCH_AT91 1623 default SHMOBILE_TIMER_HZ if ARCH_SHMOBILE |
1624 default 100 |
|
1623 | 1625 |
1624choice 1625 depends on !HZ_FIXED 1626 prompt "Timer frequency" 1627 1628config HZ_100 1629 bool "100 Hz" 1630 1631config HZ_200 1632 bool "200 Hz" 1633 1634config HZ_250 1635 bool "250 Hz" 1636 1637config HZ_300 1638 bool "300 Hz" 1639 1640config HZ_500 1641 bool "500 Hz" 1642 1643config HZ_1000 1644 bool "1000 Hz" 1645 1646endchoice 1647 1648config HZ 1649 int 1650 default HZ_FIXED if HZ_FIXED 1651 default 100 if HZ_100 1652 default 200 if HZ_200 1653 default 250 if HZ_250 1654 default 300 if HZ_300 1655 default 500 if HZ_500 1656 default 1000 1657 | |
1658config SCHED_HRTICK 1659 def_bool HIGH_RES_TIMERS 1660 | 1626config SCHED_HRTICK 1627 def_bool HIGH_RES_TIMERS 1628 |
1661config SCHED_HRTICK 1662 def_bool HIGH_RES_TIMERS 1663 | |
1664config THUMB2_KERNEL 1665 bool "Compile the kernel in Thumb-2 mode" if !CPU_THUMBONLY 1666 depends on (CPU_V7 || CPU_V7M) && !CPU_V6 && !CPU_V6K 1667 default y if CPU_THUMBONLY 1668 select AEABI 1669 select ARM_ASM_UNIFIED 1670 select ARM_UNWIND 1671 help --- 116 unchanged lines hidden (view full) --- 1788config SYS_SUPPORTS_HUGETLBFS 1789 def_bool y 1790 depends on ARM_LPAE 1791 1792config HAVE_ARCH_TRANSPARENT_HUGEPAGE 1793 def_bool y 1794 depends on ARM_LPAE 1795 | 1629config THUMB2_KERNEL 1630 bool "Compile the kernel in Thumb-2 mode" if !CPU_THUMBONLY 1631 depends on (CPU_V7 || CPU_V7M) && !CPU_V6 && !CPU_V6K 1632 default y if CPU_THUMBONLY 1633 select AEABI 1634 select ARM_ASM_UNIFIED 1635 select ARM_UNWIND 1636 help --- 116 unchanged lines hidden (view full) --- 1753config SYS_SUPPORTS_HUGETLBFS 1754 def_bool y 1755 depends on ARM_LPAE 1756 1757config HAVE_ARCH_TRANSPARENT_HUGEPAGE 1758 def_bool y 1759 depends on ARM_LPAE 1760 |
1796config ARCH_WANT_GENERAL_HUGETLB 1797 def_bool y 1798 | |
1799source "mm/Kconfig" 1800 1801config FORCE_MAX_ZONEORDER 1802 int "Maximum zone order" if ARCH_SHMOBILE 1803 range 11 64 if ARCH_SHMOBILE 1804 default "12" if SOC_AM33XX 1805 default "9" if SA1111 1806 default "11" --- 459 unchanged lines hidden --- | 1761source "mm/Kconfig" 1762 1763config FORCE_MAX_ZONEORDER 1764 int "Maximum zone order" if ARCH_SHMOBILE 1765 range 11 64 if ARCH_SHMOBILE 1766 default "12" if SOC_AM33XX 1767 default "9" if SA1111 1768 default "11" --- 459 unchanged lines hidden --- |