diff options
Diffstat (limited to 'src/mainboard/google/kahlee/Kconfig')
-rw-r--r-- | src/mainboard/google/kahlee/Kconfig | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/mainboard/google/kahlee/Kconfig b/src/mainboard/google/kahlee/Kconfig index 86632db69f..60630fe5c1 100644 --- a/src/mainboard/google/kahlee/Kconfig +++ b/src/mainboard/google/kahlee/Kconfig @@ -172,4 +172,31 @@ config USE_PSPSECUREOS default n if CHROMEOS default y +choice + prompt "UMA Memory Allocation" + default KAHLEE_UMA_SIZE_32MB + help + The amount of system memory allocated for the integrated GPU + +config KAHLEE_UMA_SIZE_32MB + bool "32MB" + +config KAHLEE_UMA_SIZE_64MB + bool "64MB" + +config KAHLEE_UMA_SIZE_128MB + bool "128MB" + +config KAHLEE_UMA_SIZE_256MB + bool "256MB" + +endchoice + +config UMA_SIZE_IN_MB + int + default 32 if KAHLEE_UMA_SIZE_32MB + default 64 if KAHLEE_UMA_SIZE_64MB + default 128 if KAHLEE_UMA_SIZE_128MB + default 256 if KAHLEE_UMA_SIZE_256MB + endif # BOARD_GOOGLE_BASEBOARD_KAHLEE |