1 Lantiq XWAY SoC RCU binding
2 ===========================
4 This binding describes the RCU (reset controller unit) multifunction device,
5 where each sub-device has it's own set of registers.
7 The RCU register range is used for multiple purposes. Mostly one device
8 uses one or multiple register exclusively, but for some registers some
9 bits are for one driver and some other bits are for a different driver.
10 With this patch all accesses to the RCU registers will go through
14 -------------------------------------------------------------------------------
16 - compatible : The first and second values must be:
17 "lantiq,xrx200-rcu", "simple-mfd", "syscon"
18 - reg : The address and length of the system control registers
21 -------------------------------------------------------------------------------
22 Example of the RCU bindings on a xRX200 SoC:
24 compatible = "lantiq,xrx200-rcu", "simple-mfd", "syscon";
25 reg = <0x203000 0x100>;
26 ranges = <0x0 0x203000 0x100>;
29 reset0: reset-controller@10 {
30 compatible = "lantiq,xrx200-reset";
31 reg = <0x10 4>, <0x14 4>;
36 reset1: reset-controller@48 {
37 compatible = "lantiq,xrx200-reset";
38 reg = <0x48 4>, <0x24 4>;
43 usb_phy0: usb2-phy@18 {
44 compatible = "lantiq,xrx200-usb2-phy";
45 reg = <0x18 4>, <0x38 4>;
47 resets = <&reset1 4 4>, <&reset0 4 4>;
48 reset-names = "phy", "ctrl";
52 usb_phy1: usb2-phy@34 {
53 compatible = "lantiq,xrx200-usb2-phy";
54 reg = <0x34 4>, <0x3C 4>;
56 resets = <&reset1 5 4>, <&reset0 4 4>;
57 reset-names = "phy", "ctrl";
62 compatible = "syscon-reboot";