diff options
author | Martin Blumenstingl <martin.blumenstingl@googlemail.com> | 2017-09-23 17:14:03 +0300 |
---|---|---|
committer | Kevin Hilman <khilman@baylibre.com> | 2017-10-07 01:37:01 +0300 |
commit | bd835d53f505d3b4f8b19bc8f7ea28eb3cab7391 (patch) | |
tree | d131dfaca40e2e6961994615d434a750d103c0ae /arch/arm/boot/dts/meson.dtsi | |
parent | aee2828ccb3444ad1551e8528a868ab49ef447de (diff) | |
download | linux-bd835d53f505d3b4f8b19bc8f7ea28eb3cab7391.tar.xz |
ARM: dts: meson: add SoC information nodes
The SoC type and version information is encoded in different register
blocks.
The SoC type information is part of the "assist" registers.
The misc version information is part of the "bootrom" registers.
On Meson8, Meson8b and Meson8m2 there is additionally information about
the minor version. This information is stored in the "analog top"
registers.
Add the nodes for these register blocks so we can decode the SoC type
and version information.
Signed-off-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
Signed-off-by: Kevin Hilman <khilman@baylibre.com>
Diffstat (limited to 'arch/arm/boot/dts/meson.dtsi')
-rw-r--r-- | arch/arm/boot/dts/meson.dtsi | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/meson.dtsi b/arch/arm/boot/dts/meson.dtsi index bf270806a688..7ae30e780506 100644 --- a/arch/arm/boot/dts/meson.dtsi +++ b/arch/arm/boot/dts/meson.dtsi @@ -80,6 +80,11 @@ #size-cells = <1>; ranges = <0x0 0xc1100000 0x200000>; + assist: assist@7c00 { + compatible = "amlogic,meson-mx-assist", "syscon"; + reg = <0x7c00 0x200>; + }; + hwrng: rng@8100 { compatible = "amlogic,meson-rng"; reg = <0x8100 0x8>; @@ -252,5 +257,10 @@ #size-cells = <1>; ranges = <0 0xd9000000 0x20000>; }; + + bootrom: bootrom@d9040000 { + compatible = "amlogic,meson-mx-bootrom", "syscon"; + reg = <0xd9040000 0x10000>; + }; }; }; /* end of / */ |