]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - Documentation/devicetree/bindings/arm/bcm/brcm,bcm63138.txt
Documentation: DT: Document SMP DT nodes and properties for BCM63138
[mirror_ubuntu-zesty-kernel.git] / Documentation / devicetree / bindings / arm / bcm / brcm,bcm63138.txt
CommitLineData
dc6aec60
FF
1Broadcom BCM63138 DSL System-on-a-Chip device tree bindings
2-----------------------------------------------------------
3
4Boards compatible with the BCM63138 DSL System-on-a-Chip should have the
5following properties:
6
7Required root node property:
8
9compatible: should be "brcm,bcm63138"
a4cdbb96
FF
10
11An optional Boot lookup table Device Tree node is required for secondary CPU
12initialization as well as a 'resets' phandle to the correct PMB controller as
13defined in reset/brcm,bcm63138-pmb.txt for this secondary CPU, and an
14'enable-method' property.
15
16Required properties for the Boot lookup table node:
17- compatible: should be "brcm,bcm63138-bootlut"
18- reg: register base address and length for the Boot Lookup table
19
20Optional properties for the primary CPU node:
21- enable-method: should be "brcm,bcm63138"
22
23Optional properties for the secondary CPU node:
24- enable-method: should be "brcm,bcm63138"
25- resets: phandle to the relevant PMB controller, one integer indicating the internal
26 bus number, and a second integer indicating the address of the CPU in the PMB
27 internal bus number.
28
29Example:
30
31 cpus {
32 cpu@0 {
33 compatible = "arm,cotex-a9";
34 reg = <0>;
35 ...
36 enable-method = "brcm,bcm63138";
37 };
38
39 cpu@1 {
40 compatible = "arm,cortex-a9";
41 reg = <1>;
42 ...
43 enable-method = "brcm,bcm63138";
44 resets = <&pmb0 4 1>;
45 };
46 };
47
48 bootlut: bootlut@8000 {
49 compatible = "brcm,bcm63138-bootlut";
50 reg = <0x8000 0x50>;
51 };