diff options
Diffstat (limited to 'arch/powerpc/Kconfig')
-rw-r--r-- | arch/powerpc/Kconfig | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/arch/powerpc/Kconfig b/arch/powerpc/Kconfig index a0d1146a0578..3bb43adce44d 100644 --- a/arch/powerpc/Kconfig +++ b/arch/powerpc/Kconfig | |||
@@ -868,6 +868,31 @@ config TASK_SIZE | |||
868 | default "0x80000000" if PPC_PREP || PPC_8xx | 868 | default "0x80000000" if PPC_PREP || PPC_8xx |
869 | default "0xc0000000" | 869 | default "0xc0000000" |
870 | 870 | ||
871 | config CONSISTENT_START_BOOL | ||
872 | bool "Set custom consistent memory pool address" | ||
873 | depends on ADVANCED_OPTIONS && NOT_COHERENT_CACHE | ||
874 | help | ||
875 | This option allows you to set the base virtual address | ||
876 | of the consistent memory pool. This pool of virtual | ||
877 | memory is used to make consistent memory allocations. | ||
878 | |||
879 | config CONSISTENT_START | ||
880 | hex "Base virtual address of consistent memory pool" if CONSISTENT_START_BOOL | ||
881 | default "0xfd000000" if (NOT_COHERENT_CACHE && 8xx) | ||
882 | default "0xff100000" if NOT_COHERENT_CACHE | ||
883 | |||
884 | config CONSISTENT_SIZE_BOOL | ||
885 | bool "Set custom consistent memory pool size" | ||
886 | depends on ADVANCED_OPTIONS && NOT_COHERENT_CACHE | ||
887 | help | ||
888 | This option allows you to set the size of the | ||
889 | consistent memory pool. This pool of virtual memory | ||
890 | is used to make consistent memory allocations. | ||
891 | |||
892 | config CONSISTENT_SIZE | ||
893 | hex "Size of consistent memory pool" if CONSISTENT_SIZE_BOOL | ||
894 | default "0x00200000" if NOT_COHERENT_CACHE | ||
895 | |||
871 | config PIN_TLB | 896 | config PIN_TLB |
872 | bool "Pinned Kernel TLBs (860 ONLY)" | 897 | bool "Pinned Kernel TLBs (860 ONLY)" |
873 | depends on ADVANCED_OPTIONS && 8xx | 898 | depends on ADVANCED_OPTIONS && 8xx |