Kconfig (66dfe18114839a7297f56f43f03125f4121de79b) | Kconfig (82cb1f6fb3f69518eaa4ab9c0fa7eabc253ad26f) |
---|---|
1menu "Memory management options" 2 3config QUICKLIST 4 def_bool y 5 6config MMU 7 bool "Support for memory management hardware" 8 depends on !CPU_SH2 --- 156 unchanged lines hidden (view full) --- 165 bool "64kB" 166 depends on !MMU || CPU_SH4 || CPU_SH5 167 help 168 This enables support for 64kB pages, possible on all SH-4 169 CPUs and later. 170 171endchoice 172 | 1menu "Memory management options" 2 3config QUICKLIST 4 def_bool y 5 6config MMU 7 bool "Support for memory management hardware" 8 depends on !CPU_SH2 --- 156 unchanged lines hidden (view full) --- 165 bool "64kB" 166 depends on !MMU || CPU_SH4 || CPU_SH5 167 help 168 This enables support for 64kB pages, possible on all SH-4 169 CPUs and later. 170 171endchoice 172 |
173config ENTRY_OFFSET 174 hex 175 default "0x00001000" if PAGE_SIZE_4KB 176 default "0x00002000" if PAGE_SIZE_8KB 177 default "0x00004000" if PAGE_SIZE_16KB 178 default "0x00010000" if PAGE_SIZE_64KB 179 default "0x00000000" 180 |
|
173choice 174 prompt "HugeTLB page size" 175 depends on HUGETLB_PAGE && (CPU_SH4 || CPU_SH5) && MMU 176 default HUGETLB_PAGE_SIZE_64K 177 178config HUGETLB_PAGE_SIZE_64K 179 bool "64kB" 180 --- 71 unchanged lines hidden --- | 181choice 182 prompt "HugeTLB page size" 183 depends on HUGETLB_PAGE && (CPU_SH4 || CPU_SH5) && MMU 184 default HUGETLB_PAGE_SIZE_64K 185 186config HUGETLB_PAGE_SIZE_64K 187 bool "64kB" 188 --- 71 unchanged lines hidden --- |