/external/coreboot/src/lib/ |
D | cbfs.c | 24 struct mem_pool cbfs_cache = MEM_POOL_INIT(NULL, 0, 0); variable 27 struct mem_pool cbfs_cache = variable 30 struct mem_pool cbfs_cache = variable 31 MEM_POOL_INIT(_cbfs_cache, REGION_SIZE(cbfs_cache), CONFIG_CBFS_CACHE_ALIGN); 37 mem_pool_init(&cbfs_cache, _postram_cbfs_cache, REGION_SIZE(postram_cbfs_cache), in switch_to_postram_cache() 103 mem_pool_free(&cbfs_cache, mapping); in cbfs_unmap() 295 context = mem_pool_alloc(&cbfs_cache, size); in alloc_cbfs_preload_context() 314 mem_pool_free(&cbfs_cache, context); in free_cbfs_preload_context() 357 context->buffer = mem_pool_alloc(&cbfs_cache, size); in cbfs_preload() 373 mem_pool_free(&cbfs_cache, context->buffer); in cbfs_preload() [all …]
|
D | Kconfig | 130 Sets the alignment of the buffers returned by the cbfs_cache. 137 cbfs_cache. This helps reduce boot time by loading the files
|
/external/coreboot/src/include/ |
D | memlayout.h | 76 REGION(cbfs_cache, addr, size, 4) \ 77 ALIAS_REGION(cbfs_cache, preram_cbfs_cache) \ 78 ALIAS_REGION(cbfs_cache, postram_cbfs_cache) 91 ALIAS_REGION(preram_cbfs_cache, cbfs_cache) 99 ALIAS_REGION(postram_cbfs_cache, cbfs_cache)
|
D | symbols.h | 37 DECLARE_OPTIONAL_REGION(cbfs_cache) in DECLARE_OPTIONAL_REGION()
|
D | cbfs.h | 159 extern struct mem_pool cbfs_cache;
|
/external/coreboot/src/soc/samsung/exynos5250/ |
D | alternate_cbfs.c | 76 const u32 count = REGION_SIZE(cbfs_cache) / 512; in sdmmc_cbfs_open() 96 MEM_REGION_DEV_RO_INIT(_cbfs_cache, REGION_SIZE(cbfs_cache));
|
D | spi.c | 165 MMAP_HELPER_DEV_INIT(&exynos_spi_ops, 0, CONFIG_ROM_SIZE, &cbfs_cache);
|
/external/coreboot/src/soc/samsung/exynos5420/ |
D | alternate_cbfs.c | 80 const u32 count = REGION_SIZE(cbfs_cache) / 512; in sdmmc_cbfs_open() 103 MEM_REGION_DEV_RO_INIT(_cbfs_cache, REGION_SIZE(cbfs_cache));
|
D | spi.c | 272 MMAP_HELPER_DEV_INIT(&exynos_spi_ops, 0, CONFIG_ROM_SIZE, &cbfs_cache);
|
/external/coreboot/src/soc/amd/common/block/lpc/ |
D | spi_dma.c | 221 mapping = mem_pool_alloc(&cbfs_cache, size); in spi_dma_mmap() 231 mem_pool_free(&cbfs_cache, mapping); in spi_dma_mmap() 242 mem_pool_free(&cbfs_cache, mapping); in spi_dma_munmap()
|
/external/coreboot/src/mainboard/sifive/hifive-unmatched/ |
D | cbfs_spi.c | 107 MMAP_HELPER_DEV_INIT(&spi_ops, 0, CONFIG_ROM_SIZE, &cbfs_cache); 110 MMAP_HELPER_DEV_INIT(&sd_ops, 0, CONFIG_ROM_SIZE, &cbfs_cache);
|
/external/coreboot/src/mainboard/sifive/hifive-unleashed/ |
D | media.c | 46 MMAP_HELPER_DEV_INIT(&unleashed_sd_ops, 0, CONFIG_ROM_SIZE, &cbfs_cache);
|
/external/coreboot/src/drivers/spi/ |
D | cbfs_spi.c | 80 MMAP_HELPER_DEV_INIT(&spi_ops, 0, CONFIG_ROM_SIZE, &cbfs_cache);
|
/external/coreboot/tests/mock/ |
D | cbfs_file_mock.c | 5 TEST_REGION(cbfs_cache, TEST_CBFS_CACHE_SIZE);
|
/external/coreboot/src/mainboard/ti/beaglebone/ |
D | sd_media.c | 97 &cbfs_cache);
|
/external/coreboot/src/soc/amd/common/block/cpu/noncar/ |
D | memlayout_x86.ld | 28 * | cbfs_cache (if reqd) |
|
/external/coreboot/src/soc/amd/common/block/cpu/ |
D | Kconfig | 37 The size of the cbfs_cache region.
|
/external/coreboot/tests/lib/ |
D | cbfs-lookup-test.c | 104 assert_ptr_equal(mp, &cbfs_cache); in mem_pool_alloc() 113 assert_ptr_equal(mp, &cbfs_cache); in mem_pool_free()
|
/external/coreboot/Documentation/releases/ |
D | coreboot-4.22-relnotes.md | 119 the `cbfs_cache` global variable (cf. src/lib/cbfs.c).
|