hwinit-common.c 251 B

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