Searched refs:cache (Results 1 - 25 of 359) sorted by relevance

1234567891011>>

/u-boot/arch/arm/mach-tegra/tegra186/
H A DMakefile5 obj-y += cache.o
/u-boot/drivers/cache/
H A DMakefile2 obj-$(CONFIG_$(SPL_TPL_)CACHE) += cache-uclass.o
4 obj-$(CONFIG_L2X0_CACHE) += cache-l2x0.o
5 obj-$(CONFIG_NCORE_CACHE) += cache-ncore.o
6 obj-$(CONFIG_ANDES_L2_CACHE) += cache-andes-l2.o
7 obj-$(CONFIG_SIFIVE_CCACHE) += cache-sifive-ccache.o
8 obj-$(CONFIG_SIFIVE_PL2) += cache-sifive-pl2.o
/u-boot/arch/riscv/cpu/fu540/
H A Dcpu.c7 #include <asm/cache.h>
/u-boot/arch/riscv/cpu/fu740/
H A Dcpu.c7 #include <asm/cache.h>
/u-boot/arch/riscv/cpu/jh7110/
H A Dcpu.c7 #include <asm/cache.h>
/u-boot/arch/riscv/cpu/generic/
H A Dcpu.c7 #include <asm/cache.h>
/u-boot/arch/arc/lib/
H A Dinit_helpers.c7 #include <asm/cache.h>
/u-boot/arch/arm/mach-u8500/
H A DMakefile3 obj-y += cache.o
/u-boot/arch/arm/mach-k3/arm64/
H A DMakefile6 obj-y += cache.o
/u-boot/arch/sh/cpu/sh4/
H A DMakefile9 obj-y = cpu.o interrupts.o watchdog.o cache.o
/u-boot/arch/arm/cpu/armv7/iproc-common/
H A Dhwinit-common.c8 #include <asm/cache.h>
13 /* Enable D-cache. I-cache is already enabled in start.S */
/u-boot/arch/x86/lib/
H A Dmrccache.c35 struct mrc_data_container *cache)
38 u8 *region_ptr = (u8 *)cache;
40 region_ptr += mrc_block_size(cache->data_size);
45 static int is_mrc_cache(struct mrc_data_container *cache) argument
47 return cache && (cache->signature == MRC_DATA_SIGNATURE);
52 struct mrc_data_container *cache, *next; local
58 cache = NULL;
64 cache = next;
71 debug("%s: No valid MRC cache foun
34 next_mrc_block( struct mrc_data_container *cache) argument
103 struct mrc_data_container *cache; local
141 struct mrc_data_container *cache; local
196 struct mrc_data_container *cache = data; local
299 struct mrc_data_container *cache; local
[all...]
/u-boot/arch/riscv/cpu/andes/
H A DMakefile7 obj-y += cache.o
/u-boot/arch/riscv/cpu/cv1800b/
H A DMakefile7 obj-y += cache.o
/u-boot/arch/nios2/lib/
H A DMakefile6 obj-y += cache.o
/u-boot/arch/xtensa/lib/
H A DMakefile8 obj-y += cache.o misc.o relocate.o time.o
/u-boot/arch/x86/lib/fsp1/
H A Dfsp_common.c27 struct mrc_data_container *cache; local
35 cache = mrccache_find_current(&entry);
36 if (!cache)
39 debug("%s: mrc cache at %p, size %x checksum %04x\n", __func__,
40 cache->data, cache->data_size, cache->checksum);
42 return cache->data;
66 /* If waking from S3 and no cache then */
67 debug("No MRC cache foun
[all...]
/u-boot/fs/ext4/
H A Dext4fs.c70 struct ext_block_cache cache; local
72 ext_cache_init(&cache);
79 ext_cache_fini(&cache);
90 blknr = read_allocated_block(&node->inode, i, &cache);
92 ext_cache_fini(&cache);
125 ext_cache_fini(&cache);
155 ext_cache_fini(&cache);
175 ext_cache_fini(&cache);
182 ext_cache_fini(&cache);
280 void ext_cache_init(struct ext_block_cache *cache) argument
285 ext_cache_fini(struct ext_block_cache *cache) argument
291 ext_cache_read(struct ext_block_cache *cache, lbaint_t block, int size) argument
[all...]
/u-boot/arch/arm/cpu/armv7m/
H A DMakefile7 obj-y += cpu.o cache.o
/u-boot/arch/arm/mach-s5pc1xx/
H A DMakefile9 obj-y = cache.o
H A Dcache.c7 * based on arch/arm/cpu/armv7/omap3/cache.S
12 #include <asm/cache.h>
/u-boot/arch/arm/mach-kirkwood/
H A Dcache.c8 #include <asm/cache.h>
/u-boot/board/ge/common/
H A Dvpd_reader.h14 * cache: structure used by process block to store VPD information
19 int read_i2c_vpd(struct vpd_cache *cache,
29 * cache: structure used by process block to store VPD information
35 int vpd_reader(size_t size, u8 *data, struct vpd_cache *cache,
/u-boot/arch/x86/lib/fsp2/
H A Dfsp_meminit.c25 struct mrc_data_container *cache; local
32 cache = mrccache_find_current(&entry);
33 if (!cache)
36 log_debug("MRC at %x, size %x\n", (uint)cache->data, cache->data_size);
37 *cachep = cache;
44 struct mrc_data_container *cache; local
47 ret = prepare_mrc_cache_type(MRC_TYPE_NORMAL, &cache);
49 return log_msg_ret("Cannot get normal cache", ret);
50 upd->arch.nvs_buffer_ptr = cache
[all...]
/u-boot/arch/x86/cpu/quark/
H A Ddram.c13 #include <asm/cache.h>
26 struct mrc_data_container *cache; local
34 cache = mrccache_find_current(&entry);
35 if (!cache)
38 debug("%s: mrc cache at %p, size %x checksum %04x\n", __func__,
39 cache->data, cache->data_size, cache->checksum);
41 /* copy mrc cache to the mrc_params */
42 memcpy(&mrc_params->timings, cache
132 char *cache; local
[all...]

Completed in 184 milliseconds

1234567891011>>