x86: Add pre-memory stages CBFS cache scratchpad support
Having a CBFS cache scratchpad offers a generic way to decompress CBFS files through the cbfs_map() function without having to reserve a per-file specific memory region. This commit introduces the x86 `PRERAM_CBFS_CACHE_SIZE' Kconfig to set the pre-memory stages CBFS cache size. A cache size of zero disables the CBFS cache feature. The default value is 16 KB which seems a reasonable minimal value enough to satisfy basic needs such as the decompression of a small configuration file. This setting can be adjusted depending on the platform needs and capabilities. We have set this size to zero for all the platforms without enough space in Cache-As-RAM to accommodate the default size. TEST=Decompression of vbt.bin in romstage on rex using cbfs_map() Change-Id: Iee493f9947fddcc57576f04c3d6a2d58c7368e09 Signed-off-by: Jeremy Compostella <jeremy.compostella@intel.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/77290 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
This commit is contained in:
parent
621ccf8a97
commit
052fb7c451
|
@ -153,6 +153,13 @@ config CBFS_MCACHE_SIZE
|
|||
Increase this value if you see CBFS mcache overflow warnings. Do NOT
|
||||
change this value for vboot RW updates!
|
||||
|
||||
config PRERAM_CBFS_CACHE_SIZE
|
||||
hex
|
||||
default 0x4000
|
||||
help
|
||||
Define the size of the Pre-RAM stages CBFS cache. A size of
|
||||
zero disables the CBFS cache feature in pre-memory stages.
|
||||
|
||||
config PC80_SYSTEM
|
||||
bool
|
||||
default y if ARCH_X86
|
||||
|
|
|
@ -51,6 +51,9 @@
|
|||
FMAP_CACHE(., FMAP_SIZE)
|
||||
#endif
|
||||
|
||||
. = ALIGN(CONFIG_CBFS_CACHE_ALIGN);
|
||||
CBFS_CACHE(., CONFIG_PRERAM_CBFS_CACHE_SIZE)
|
||||
|
||||
/* Reserve sizeof(struct ehci_dbg_info). */
|
||||
REGION(car_ehci_dbg_info, ., 80, 1)
|
||||
|
||||
|
|
|
@ -24,6 +24,9 @@ config DCACHE_RAM_SIZE
|
|||
hex
|
||||
default 0x02000
|
||||
|
||||
config PRERAM_CBFS_CACHE_SIZE
|
||||
default 0x0
|
||||
|
||||
config DCACHE_BSP_STACK_SIZE
|
||||
hex
|
||||
default 0x1000
|
||||
|
|
|
@ -13,6 +13,9 @@ config DCACHE_RAM_SIZE
|
|||
hex
|
||||
default 0x8000
|
||||
|
||||
config PRERAM_CBFS_CACHE_SIZE
|
||||
default 0x0
|
||||
|
||||
config DCACHE_BSP_STACK_SIZE
|
||||
hex
|
||||
default 0x2000
|
||||
|
|
|
@ -12,6 +12,9 @@ config DCACHE_RAM_SIZE
|
|||
hex
|
||||
default 0x10000
|
||||
|
||||
config PRERAM_CBFS_CACHE_SIZE
|
||||
default 0x0
|
||||
|
||||
config DCACHE_BSP_STACK_SIZE
|
||||
hex
|
||||
default 0x2000
|
||||
|
|
|
@ -15,6 +15,9 @@ config DCACHE_RAM_SIZE
|
|||
hex
|
||||
default 0x8000
|
||||
|
||||
config PRERAM_CBFS_CACHE_SIZE
|
||||
default 0x0
|
||||
|
||||
config DCACHE_BSP_STACK_SIZE
|
||||
hex
|
||||
default 0x2000
|
||||
|
|
|
@ -12,6 +12,9 @@ config DCACHE_RAM_SIZE
|
|||
hex
|
||||
default 0x8000 # 32 kB
|
||||
|
||||
config PRERAM_CBFS_CACHE_SIZE
|
||||
default 0x0
|
||||
|
||||
config DCACHE_BSP_STACK_SIZE
|
||||
hex
|
||||
default 0x2000
|
||||
|
|
|
@ -13,6 +13,9 @@ config DCACHE_RAM_SIZE
|
|||
hex
|
||||
default 0x8000
|
||||
|
||||
config PRERAM_CBFS_CACHE_SIZE
|
||||
default 0x0
|
||||
|
||||
config DCACHE_BSP_STACK_SIZE
|
||||
hex
|
||||
default 0x2000
|
||||
|
|
|
@ -17,6 +17,9 @@ config DCACHE_RAM_SIZE
|
|||
hex
|
||||
default 0x4000
|
||||
|
||||
config PRERAM_CBFS_CACHE_SIZE
|
||||
default 0x0
|
||||
|
||||
config DCACHE_BSP_STACK_SIZE
|
||||
hex
|
||||
default 0x2000
|
||||
|
|
|
@ -172,4 +172,7 @@ config FIXED_DMIBAR_MMIO_BASE
|
|||
config FIXED_EPBAR_MMIO_BASE
|
||||
default 0xfed19000
|
||||
|
||||
config PRERAM_CBFS_CACHE_SIZE
|
||||
default 0x0
|
||||
|
||||
endif
|
||||
|
|
|
@ -103,6 +103,9 @@ config DCACHE_RAM_SIZE
|
|||
hex
|
||||
default 0x10000
|
||||
|
||||
config PRERAM_CBFS_CACHE_SIZE
|
||||
default 0x0
|
||||
|
||||
config DCACHE_BSP_STACK_SIZE
|
||||
hex
|
||||
default 0x4000
|
||||
|
|
|
@ -110,6 +110,9 @@ config DCACHE_RAM_SIZE
|
|||
and/or romstage. Note DCACHE_RAM_SIZE and DCACHE_RAM_MRC_VAR_SIZE
|
||||
must add up to a power of 2.
|
||||
|
||||
config PRERAM_CBFS_CACHE_SIZE
|
||||
default 0x0
|
||||
|
||||
config DCACHE_RAM_MRC_VAR_SIZE
|
||||
hex
|
||||
default 0x8000
|
||||
|
|
|
@ -97,6 +97,9 @@ config DCACHE_RAM_SIZE
|
|||
and/or romstage. Note DCACHE_RAM_SIZE and DCACHE_RAM_MRC_VAR_SIZE
|
||||
must add up to a power of 2.
|
||||
|
||||
config PRERAM_CBFS_CACHE_SIZE
|
||||
default 0x0
|
||||
|
||||
config ENABLE_BUILTIN_COM1
|
||||
bool "Enable builtin COM1 Serial Port"
|
||||
default n
|
||||
|
|
Loading…
Reference in New Issue