hwinit-common.c 282 B

12345678910111213141516
  1. /*
  2. * Copyright 2013 Broadcom Corporation.
  3. *
  4. * SPDX-License-Identifier: GPL-2.0+
  5. */
  6. #include <common.h>
  7. #include <asm/sizes.h>
  8. #ifndef CONFIG_SYS_DCACHE_OFF
  9. void enable_caches(void)
  10. {
  11. /* Enable D-cache. I-cache is already enabled in start.S */
  12. dcache_enable();
  13. }
  14. #endif