soc.c 852 B

123456789101112131415161718192021222324252627282930313233343536
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /*
  3. * Copyright (c) 2010 Samsung Electronics.
  4. * Minkyu Kang <mk7.kang@samsung.com>
  5. */
  6. #include <common.h>
  7. #include <cpu_func.h>
  8. #include <asm/cache.h>
  9. #include <asm/io.h>
  10. #include <asm/system.h>
  11. #ifdef CONFIG_TARGET_ESPRESSO7420
  12. /*
  13. * Exynos7420 uses CPU0 of Cluster-1 as boot CPU. Due to this, branch_if_master
  14. * fails to identify as the boot CPU as the master CPU. As temporary workaround,
  15. * setup the slave CPU boot address as "_main".
  16. */
  17. extern void _main(void);
  18. void *secondary_boot_addr = (void *)_main;
  19. #endif /* CONFIG_TARGET_ESPRESSO7420 */
  20. void reset_cpu(ulong addr)
  21. {
  22. #ifdef CONFIG_CPU_V7A
  23. writel(0x1, samsung_get_base_swreset());
  24. #endif
  25. }
  26. #if !CONFIG_IS_ENABLED(SYS_DCACHE_OFF)
  27. void enable_caches(void)
  28. {
  29. /* Enable D-cache. I-cache is already enabled in start.S */
  30. dcache_enable();
  31. }
  32. #endif