diff options
author | Emanuele Ghidoli <emanuele.ghidoli@toradex.com> | 2023-05-30 15:33:26 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-06-21 16:54:25 -0400 |
commit | a1e225b814d969aac313d3543be75ae3e7275e1d (patch) | |
tree | 0ad20af8284f608cebbc090e967b0b634c0ab4bf /arch/sandbox/cpu/cpu.c | |
parent | 43dc016497ff9fd39139833852b0214f625fa4ca (diff) |
sandbox: Add a dummy dcache_status() function
This adds dcache_status() so that code using it can build
without error on sandbox. This is required in preparation
of adding cache handling into get_ram_size function.
Signed-off-by: Emanuele Ghidoli <emanuele.ghidoli@toradex.com>
Signed-off-by: Francesco Dolcini <francesco.dolcini@toradex.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/sandbox/cpu/cpu.c')
-rw-r--r-- | arch/sandbox/cpu/cpu.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/sandbox/cpu/cpu.c b/arch/sandbox/cpu/cpu.c index 51496338ad6..a1c5c7c4311 100644 --- a/arch/sandbox/cpu/cpu.c +++ b/arch/sandbox/cpu/cpu.c @@ -286,6 +286,11 @@ void sandbox_set_enable_pci_map(int enable) enable_pci_map = enable; } +int dcache_status(void) +{ + return 1; +} + void flush_dcache_range(unsigned long start, unsigned long stop) { } |