]> Git Repo - u-boot.git/blobdiff - board/renesas/falcon/falcon.c
global: Make <asm/global_data.h> include <asm/u-boot.h>
[u-boot.git] / board / renesas / falcon / falcon.c
index c3241bc21d2178b0d4e45e93b1db78ab3e201ee9..c88257d96772d7cf2eb8d6d3e75086fdcb15d92c 100644 (file)
@@ -6,14 +6,14 @@
  * Copyright (C) 2020 Renesas Electronics Corp.
  */
 
-#include <common.h>
-#include <asm/arch/rmobile.h>
+#include <asm/arch/renesas.h>
 #include <asm/arch/sys_proto.h>
 #include <asm/global_data.h>
 #include <asm/io.h>
 #include <asm/mach-types.h>
 #include <asm/processor.h>
 #include <linux/errno.h>
+#include <asm/system.h>
 
 DECLARE_GLOBAL_DATA_PTR;
 
@@ -40,9 +40,37 @@ static void init_generic_timer(void)
        setbits_le32(CNTCR_BASE, CNTCR_EN);
 }
 
+/* Distributor Registers */
+#define GICD_BASE      0xF1000000
+
+/* ReDistributor Registers for Control and Physical LPIs */
+#define GICR_LPI_BASE  0xF1060000
+#define GICR_WAKER     0x0014
+#define GICR_PWRR      0x0024
+#define GICR_LPI_WAKER (GICR_LPI_BASE + GICR_WAKER)
+#define GICR_LPI_PWRR  (GICR_LPI_BASE + GICR_PWRR)
+
+/* ReDistributor Registers for SGIs and PPIs */
+#define GICR_SGI_BASE  0xF1070000
+#define GICR_IGROUPR0  0x0080
+
+static void init_gic_v3(void)
+{
+        /* GIC v3 power on */
+       writel(0x00000002, (GICR_LPI_PWRR));
+
+       /* Wait till the WAKER_CA_BIT changes to 0 */
+       writel(readl(GICR_LPI_WAKER) & ~0x00000002, (GICR_LPI_WAKER));
+       while (readl(GICR_LPI_WAKER) & 0x00000004)
+               ;
+
+       writel(0xffffffff, GICR_SGI_BASE + GICR_IGROUPR0);
+}
+
 void s_init(void)
 {
-       init_generic_timer();
+       if (current_el() == 3)
+               init_generic_timer();
 }
 
 int board_early_init_f(void)
@@ -54,19 +82,21 @@ int board_early_init_f(void)
        return 0;
 }
 
+#define RST_BASE       0xE6160000 /* Domain0 */
+#define RST_WDTRSTCR   (RST_BASE + 0x10)
+#define RST_RWDT       0xA55A8002
+
 int board_init(void)
 {
        /* address of boot parameters */
-       gd->bd->bi_boot_params = CONFIG_SYS_TEXT_BASE + 0x50000;
+       gd->bd->bi_boot_params = CONFIG_TEXT_BASE + 0x50000;
 
-       return 0;
-}
+       if (current_el() == 3) {
+               init_gic_v3();
 
-#define RST_BASE       0xE6160000 /* Domain0 */
-#define RST_SRESCR0    (RST_BASE + 0x18)
-#define RST_SPRES      0x5AA58000
+               /* Enable RWDT reset */
+               writel(RST_RWDT, RST_WDTRSTCR);
+       }
 
-void reset_cpu(void)
-{
-       writel(RST_SPRES, RST_SRESCR0);
+       return 0;
 }
This page took 0.027753 seconds and 4 git commands to generate.