diff options
author | Evgeny Voevodin <e.voevodin@samsung.com> | 2012-04-13 11:39:06 +0000 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2012-04-13 11:39:06 +0000 |
commit | 3f088e36de5a72a69e530d4bbf1fabaa507da0db (patch) | |
tree | 29971aefa7c2fec7ca7fe1571b885d52d1721a05 /hw/exynos4210_gic.c | |
parent | b85f62d7811c80646065f8f96c2248ea86cfd911 (diff) |
ARM: Exynos4210: Drop gic_cpu_write() after initialization.
Remove gic_cpu_write() call after initialization that was emulating
functionality of earliest SOC bootloader which enables external
GIC CPU1 interface. Instead introduce Exynos4210-specific secondary
CPU bootloader, which enables both Internal and External GIC CPU1
interfaces.
Signed-off-by: Evgeny Voevodin <e.voevodin@samsung.com>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'hw/exynos4210_gic.c')
-rw-r--r-- | hw/exynos4210_gic.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/hw/exynos4210_gic.c b/hw/exynos4210_gic.c index ec13140f9f..3ba9063f3c 100644 --- a/hw/exynos4210_gic.c +++ b/hw/exynos4210_gic.c @@ -321,8 +321,6 @@ static int exynos4210_gic_init(SysBusDevice *dev) sysbus_init_mmio(dev, &s->cpu_container); sysbus_init_mmio(dev, &s->dist_container); - gic_cpu_write(&s->gic, 1, 0, 1); - return 0; } |