Path: blob/master/Documentation/devicetree/bindings/arm/bcm/brcm,bcm63138.txt
26309 views
Broadcom BCM63138 DSL System-on-a-Chip device tree bindings1-----------------------------------------------------------23Boards compatible with the BCM63138 DSL System-on-a-Chip should have the4following properties:56Required root node property:78compatible: should be "brcm,bcm63138"910An optional Boot lookup table Device Tree node is required for secondary CPU11initialization as well as a 'resets' phandle to the correct PMB controller as12defined in reset/brcm,bcm63138-pmb.txt for this secondary CPU, and an13'enable-method' property.1415Required properties for the Boot lookup table node:16- compatible: should be "brcm,bcm63138-bootlut"17- reg: register base address and length for the Boot Lookup table1819Optional properties for the primary CPU node:20- enable-method: should be "brcm,bcm63138"2122Optional properties for the secondary CPU node:23- enable-method: should be "brcm,bcm63138"24- resets: phandle to the relevant PMB controller, one integer indicating the internal25bus number, and a second integer indicating the address of the CPU in the PMB26internal bus number.2728Example:2930cpus {31cpu@0 {32compatible = "arm,cortex-a9";33reg = <0>;34...35enable-method = "brcm,bcm63138";36};3738cpu@1 {39compatible = "arm,cortex-a9";40reg = <1>;41...42enable-method = "brcm,bcm63138";43resets = <&pmb0 4 1>;44};45};4647bootlut: bootlut@8000 {48compatible = "brcm,bcm63138-bootlut";49reg = <0x8000 0x50>;50};5152=======53reboot54------55Two nodes are required for software reboot: a timer node and a syscon-reboot node.5657Timer node:5859- compatible: Must be "brcm,bcm6328-timer", "syscon"60- reg: Register base address and length6162Syscon reboot node:6364See Documentation/devicetree/bindings/power/reset/syscon-reboot.yaml for the65detailed list of properties, the two values defined below are specific to the66BCM6328-style timer:6768- offset: Should be 0x34 to denote the offset of the TIMER_WD_TIMER_RESET register69from the beginning of the TIMER block70- mask: Should be 1 for the SoftRst bit.7172Example:7374timer: timer@80 {75compatible = "brcm,bcm6328-timer", "syscon";76reg = <0x80 0x3c>;77};7879reboot {80compatible = "syscon-reboot";81regmap = <&timer>;82offset = <0x34>;83mask = <0x1>;84};858687