diff options
author | Thierry Reding <treding@nvidia.com> | 2014-12-09 22:25:15 -0700 |
---|---|---|
committer | Tom Warren <twarren@nvidia.com> | 2014-12-18 13:19:21 -0700 |
commit | cd998761208f408dea678ae0f11c18f270cf9e71 (patch) | |
tree | 3d84819fc3e9376c68cc9030a078c85f19fc210a /arch | |
parent | 7dd8738f08144b01d91185f250af9ce2648cb25f (diff) | |
download | u-boot-imx-cd998761208f408dea678ae0f11c18f270cf9e71.zip u-boot-imx-cd998761208f408dea678ae0f11c18f270cf9e71.tar.gz u-boot-imx-cd998761208f408dea678ae0f11c18f270cf9e71.tar.bz2 |
ARM: tegra: Add GIC for Tegra30
Add a device tree node for the GIC found on Tegra30. U-Boot doesn't use
it directly but subsequent patches will add device tree nodes that
reference it by phandle.
Signed-off-by: Thierry Reding <treding@nvidia.com>
Signed-off-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Tom Warren <twarren@nvidia.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/dts/tegra30.dtsi | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/arm/dts/tegra30.dtsi b/arch/arm/dts/tegra30.dtsi index fb92a0f..1db334a 100644 --- a/arch/arm/dts/tegra30.dtsi +++ b/arch/arm/dts/tegra30.dtsi @@ -6,6 +6,15 @@ / { compatible = "nvidia,tegra30"; + interrupt-parent = <&intc>; + + intc: interrupt-controller@50041000 { + compatible = "arm,cortex-a9-gic"; + reg = <0x50041000 0x1000 + 0x50040100 0x0100>; + interrupt-controller; + #interrupt-cells = <3>; + }; tegra_car: clock { compatible = "nvidia,tegra30-car"; |