condor.c 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /*
  3. * board/renesas/condor/condor.c
  4. * This file is Condor board support.
  5. *
  6. * Copyright (C) 2019 Marek Vasut <marek.vasut+renesas@gmail.com>
  7. */
  8. #include <common.h>
  9. #include <cpu_func.h>
  10. #include <hang.h>
  11. #include <asm/processor.h>
  12. #include <asm/mach-types.h>
  13. #include <asm/io.h>
  14. #include <linux/errno.h>
  15. #include <asm/arch/sys_proto.h>
  16. DECLARE_GLOBAL_DATA_PTR;
  17. void s_init(void)
  18. {
  19. }
  20. int board_early_init_f(void)
  21. {
  22. return 0;
  23. }
  24. int board_init(void)
  25. {
  26. /* adress of boot parameters */
  27. gd->bd->bi_boot_params = CONFIG_SYS_TEXT_BASE + 0x50000;
  28. return 0;
  29. }
  30. #define RST_BASE 0xE6160000
  31. #define RST_CA57RESCNT (RST_BASE + 0x40)
  32. #define RST_CA53RESCNT (RST_BASE + 0x44)
  33. #define RST_RSTOUTCR (RST_BASE + 0x58)
  34. #define RST_CA57_CODE 0xA5A5000F
  35. #define RST_CA53_CODE 0x5A5A000F
  36. void reset_cpu(ulong addr)
  37. {
  38. unsigned long midr, cputype;
  39. asm volatile("mrs %0, midr_el1" : "=r" (midr));
  40. cputype = (midr >> 4) & 0xfff;
  41. if (cputype == 0xd03)
  42. writel(RST_CA53_CODE, RST_CA53RESCNT);
  43. else if (cputype == 0xd07)
  44. writel(RST_CA57_CODE, RST_CA57RESCNT);
  45. else
  46. hang();
  47. }