diff options
author | Olof Johansson <olof@lixom.net> | 2015-08-13 06:10:09 -0400 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2015-08-13 06:10:09 -0400 |
commit | ab39aab323a38a3fb079651952b13ba1868f90fd (patch) | |
tree | a5769d384e03ac9518dcd319bae7460cb4fb8a46 | |
parent | bcfff4d961fb71c6bea0424a84aaef115b7edaee (diff) | |
parent | b6e1f7f966e6d929b24f4318c717bb832afce8c7 (diff) |
Merge tag 'v4.2-next-arm64-2' of https://github.com/mbgg/linux-mediatek into next/arm64
Add SMP support for mt6795 SoC.
* tag 'v4.2-next-arm64-2' of https://github.com/mbgg/linux-mediatek:
ARM64: dts: mt6795: enable basic SMP bringup for MT6795
Signed-off-by: Olof Johansson <olof@lixom.net>
-rw-r--r-- | arch/arm64/boot/dts/mediatek/mt6795.dtsi | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/arch/arm64/boot/dts/mediatek/mt6795.dtsi b/arch/arm64/boot/dts/mediatek/mt6795.dtsi index da200e788936..c85659d0ff5d 100644 --- a/arch/arm64/boot/dts/mediatek/mt6795.dtsi +++ b/arch/arm64/boot/dts/mediatek/mt6795.dtsi | |||
@@ -20,6 +20,11 @@ | |||
20 | #address-cells = <2>; | 20 | #address-cells = <2>; |
21 | #size-cells = <2>; | 21 | #size-cells = <2>; |
22 | 22 | ||
23 | psci { | ||
24 | compatible = "arm,psci-0.2"; | ||
25 | method = "smc"; | ||
26 | }; | ||
27 | |||
23 | cpus { | 28 | cpus { |
24 | #address-cells = <1>; | 29 | #address-cells = <1>; |
25 | #size-cells = <0>; | 30 | #size-cells = <0>; |
@@ -27,48 +32,56 @@ | |||
27 | cpu0: cpu@0 { | 32 | cpu0: cpu@0 { |
28 | device_type = "cpu"; | 33 | device_type = "cpu"; |
29 | compatible = "arm,cortex-a53"; | 34 | compatible = "arm,cortex-a53"; |
35 | enable-method = "psci"; | ||
30 | reg = <0x000>; | 36 | reg = <0x000>; |
31 | }; | 37 | }; |
32 | 38 | ||
33 | cpu1: cpu@1 { | 39 | cpu1: cpu@1 { |
34 | device_type = "cpu"; | 40 | device_type = "cpu"; |
35 | compatible = "arm,cortex-a53"; | 41 | compatible = "arm,cortex-a53"; |
42 | enable-method = "psci"; | ||
36 | reg = <0x001>; | 43 | reg = <0x001>; |
37 | }; | 44 | }; |
38 | 45 | ||
39 | cpu2: cpu@2 { | 46 | cpu2: cpu@2 { |
40 | device_type = "cpu"; | 47 | device_type = "cpu"; |
41 | compatible = "arm,cortex-a53"; | 48 | compatible = "arm,cortex-a53"; |
49 | enable-method = "psci"; | ||
42 | reg = <0x002>; | 50 | reg = <0x002>; |
43 | }; | 51 | }; |
44 | 52 | ||
45 | cpu3: cpu@3 { | 53 | cpu3: cpu@3 { |
46 | device_type = "cpu"; | 54 | device_type = "cpu"; |
47 | compatible = "arm,cortex-a53"; | 55 | compatible = "arm,cortex-a53"; |
56 | enable-method = "psci"; | ||
48 | reg = <0x003>; | 57 | reg = <0x003>; |
49 | }; | 58 | }; |
50 | 59 | ||
51 | cpu4: cpu@100 { | 60 | cpu4: cpu@100 { |
52 | device_type = "cpu"; | 61 | device_type = "cpu"; |
53 | compatible = "arm,cortex-a53"; | 62 | compatible = "arm,cortex-a53"; |
63 | enable-method = "psci"; | ||
54 | reg = <0x100>; | 64 | reg = <0x100>; |
55 | }; | 65 | }; |
56 | 66 | ||
57 | cpu5: cpu@101 { | 67 | cpu5: cpu@101 { |
58 | device_type = "cpu"; | 68 | device_type = "cpu"; |
59 | compatible = "arm,cortex-a53"; | 69 | compatible = "arm,cortex-a53"; |
70 | enable-method = "psci"; | ||
60 | reg = <0x101>; | 71 | reg = <0x101>; |
61 | }; | 72 | }; |
62 | 73 | ||
63 | cpu6: cpu@102 { | 74 | cpu6: cpu@102 { |
64 | device_type = "cpu"; | 75 | device_type = "cpu"; |
65 | compatible = "arm,cortex-a53"; | 76 | compatible = "arm,cortex-a53"; |
77 | enable-method = "psci"; | ||
66 | reg = <0x102>; | 78 | reg = <0x102>; |
67 | }; | 79 | }; |
68 | 80 | ||
69 | cpu7: cpu@103 { | 81 | cpu7: cpu@103 { |
70 | device_type = "cpu"; | 82 | device_type = "cpu"; |
71 | compatible = "arm,cortex-a53"; | 83 | compatible = "arm,cortex-a53"; |
84 | enable-method = "psci"; | ||
72 | reg = <0x103>; | 85 | reg = <0x103>; |
73 | }; | 86 | }; |
74 | }; | 87 | }; |