rv1108.c 309 B

123456789101112131415
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /*
  3. * (C) Copyright 2016 Rockchip Electronics Co., Ltd
  4. * Author: Andy Yan <andy.yan@rock-chips.com>
  5. */
  6. #include <common.h>
  7. #ifndef CONFIG_SYS_DCACHE_OFF
  8. void enable_caches(void)
  9. {
  10. /* Enable D-cache. I-cache is already enabled in start.S */
  11. dcache_enable();
  12. }
  13. #endif