~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/Documentation/devicetree/bindings/arm/bcm/brcm,bcm63138.txt

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 Broadcom BCM63138 DSL System-on-a-Chip device tree bindings
  2 -----------------------------------------------------------
  3 
  4 Boards compatible with the BCM63138 DSL System-on-a-Chip should have the
  5 following properties:
  6 
  7 Required root node property:
  8 
  9 compatible: should be "brcm,bcm63138"
 10 
 11 An optional Boot lookup table Device Tree node is required for secondary CPU
 12 initialization as well as a 'resets' phandle to the correct PMB controller as
 13 defined in reset/brcm,bcm63138-pmb.txt for this secondary CPU, and an
 14 'enable-method' property.
 15 
 16 Required 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 
 20 Optional properties for the primary CPU node:
 21 - enable-method: should be "brcm,bcm63138"
 22 
 23 Optional 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 
 29 Example:
 30 
 31         cpus {
 32                 cpu@0 {
 33                         compatible = "arm,cortex-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         };
 52 
 53 =======
 54 reboot
 55 ------
 56 Two nodes are required for software reboot: a timer node and a syscon-reboot node.
 57 
 58 Timer node:
 59 
 60 - compatible: Must be "brcm,bcm6328-timer", "syscon"
 61 - reg: Register base address and length
 62 
 63 Syscon reboot node:
 64 
 65 See Documentation/devicetree/bindings/power/reset/syscon-reboot.yaml for the
 66 detailed list of properties, the two values defined below are specific to the
 67 BCM6328-style timer:
 68 
 69 - offset: Should be 0x34 to denote the offset of the TIMER_WD_TIMER_RESET register
 70   from the beginning of the TIMER block
 71 - mask: Should be 1 for the SoftRst bit.
 72 
 73 Example:
 74 
 75         timer: timer@80 {
 76                 compatible = "brcm,bcm6328-timer", "syscon";
 77                 reg = <0x80 0x3c>;
 78         };
 79 
 80         reboot {
 81                 compatible = "syscon-reboot";
 82                 regmap = <&timer>;
 83                 offset = <0x34>;
 84                 mask = <0x1>;
 85         };

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php