diff options
| author | Koji Matsuoka <[email protected]> | 2020-07-16 12:11:16 +0900 |
|---|---|---|
| committer | Marek Vasut <[email protected]> | 2021-06-24 20:22:18 +0200 |
| commit | cdaa69c46eee3c75cca2f72296044d2bd1405343 (patch) | |
| tree | c08ca8d2d90e5ef29ac75c918e172250c86db10e /include | |
| parent | b3494132f068906a73e86826ffb7b19f4ad5ec5f (diff) | |
ARM: renesas: Add GICv3 initialization for V3U Falcon
Init GICv3 for V3U Falcon in early phase
Signed-off-by: Koji Matsuoka <[email protected]>
Signed-off-by: Hai Pham <[email protected]>
Signed-off-by: Marek Vasut <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/configs/falcon.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/configs/falcon.h b/include/configs/falcon.h index b9c82a7674d..5ecbd1d3edd 100644 --- a/include/configs/falcon.h +++ b/include/configs/falcon.h @@ -11,6 +11,17 @@ #include "rcar-gen3-common.h" +/* Generic Interrupt Controller Definitions */ +#ifdef CONFIG_GICV2 +#undef CONFIG_GICV2 +#undef GICD_BASE +#undef GICC_BASE +#undef GICR_BASE +#endif +#define CONFIG_GICV3 +#define GICD_BASE 0xF1000000 +#define GICR_BASE 0xF1060000 + /* Ethernet RAVB */ #define CONFIG_BITBANGMII #define CONFIG_BITBANGMII_MULTI |
