Re: [PATCH v2 2/3] ARM: dts: sun8i: Add Allwinner A83T dtsi
From: Chen-Yu Tsai <hidden>
Date: 2015-10-26 02:22:07
Also in:
linux-arm-kernel, linux-gpio, lkml
On Fri, Oct 23, 2015 at 7:46 AM, Vishnu Patekar [off-list ref] wrote:
quoted hunk ↗ jump to hunk
Allwinner A83T is new octa-core cortex-a7 SOC. This adds the basic dtsi, the clocks differs from earlier sun8i SOCs. Signed-off-by: Vishnu Patekar <redacted> --- arch/arm/boot/dts/sun8i-a83t.dtsi | 247 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 247 insertions(+) create mode 100644 arch/arm/boot/dts/sun8i-a83t.dtsidiff --git a/arch/arm/boot/dts/sun8i-a83t.dtsi b/arch/arm/boot/dts/sun8i-a83t.dtsi new file mode 100644 index 0000000..e85995f --- /dev/null +++ b/arch/arm/boot/dts/sun8i-a83t.dtsi@@ -0,0 +1,247 @@ + cpu@100 { + compatible = "arm,cortex-a7"; + device_type = "cpu"; + reg = <4>; + }; + + cpu@101 { + compatible = "arm,cortex-a7"; + device_type = "cpu"; + reg = <5>; + }; + cpu@102 { + compatible = "arm,cortex-a7"; + device_type = "cpu"; + reg = <6>; + }; + + cpu@103 { + compatible = "arm,cortex-a7"; + device_type = "cpu"; + reg = <7>; + };
The reg values are still wrong for the second cluster. ChenYu