Merge ath-next from git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
[sfrench/cifs-2.6.git] / Documentation / devicetree / bindings / soc / mediatek / pwrap.txt
1 MediaTek PMIC Wrapper Driver
2
3 This document describes the binding for the MediaTek PMIC wrapper.
4
5 On MediaTek SoCs the PMIC is connected via SPI. The SPI master interface
6 is not directly visible to the CPU, but only through the PMIC wrapper
7 inside the SoC. The communication between the SoC and the PMIC can
8 optionally be encrypted. Also a non standard Dual IO SPI mode can be
9 used to increase speed.
10
11 IP Pairing
12
13 on MT8135 the pins of some SoC internal peripherals can be on the PMIC.
14 The signals of these pins are routed over the SPI bus using the pwrap
15 bridge. In the binding description below the properties needed for bridging
16 are marked with "IP Pairing". These are optional on SoCs which do not support
17 IP Pairing
18
19 Required properties in pwrap device node.
20 - compatible:
21         "mediatek,mt2701-pwrap" for MT2701/7623 SoCs
22         "mediatek,mt6797-pwrap" for MT6797 SoCs
23         "mediatek,mt7622-pwrap" for MT7622 SoCs
24         "mediatek,mt8135-pwrap" for MT8135 SoCs
25         "mediatek,mt8173-pwrap" for MT8173 SoCs
26 - interrupts: IRQ for pwrap in SOC
27 - reg-names: Must include the following entries:
28   "pwrap": Main registers base
29   "pwrap-bridge": bridge base (IP Pairing)
30 - reg: Must contain an entry for each entry in reg-names.
31 - reset-names: Must include the following entries:
32   "pwrap"
33   "pwrap-bridge" (IP Pairing)
34 - resets: Must contain an entry for each entry in reset-names.
35 - clock-names: Must include the following entries:
36   "spi": SPI bus clock
37   "wrap": Main module clock
38 - clocks: Must contain an entry for each entry in clock-names.
39
40 Optional properities:
41 - pmic: Using either MediaTek PMIC MFD as the child device of pwrap
42   See the following for child node definitions:
43   Documentation/devicetree/bindings/mfd/mt6397.txt
44   or the regulator-only device as the child device of pwrap, such as MT6380.
45   See the following definitions for such kinds of devices.
46   Documentation/devicetree/bindings/regulator/mt6380-regulator.txt
47
48 Example:
49         pwrap: pwrap@1000f000 {
50                 compatible = "mediatek,mt8135-pwrap";
51                 reg = <0 0x1000f000 0 0x1000>,
52                         <0 0x11017000 0 0x1000>;
53                 reg-names = "pwrap", "pwrap-bridge";
54                 interrupts = <GIC_SPI 128 IRQ_TYPE_LEVEL_HIGH>;
55                 resets = <&infracfg MT8135_INFRA_PMIC_WRAP_RST>,
56                                 <&pericfg MT8135_PERI_PWRAP_BRIDGE_SW_RST>;
57                 reset-names = "pwrap", "pwrap-bridge";
58                 clocks = <&clk26m>, <&clk26m>;
59                 clock-names = "spi", "wrap";
60
61                 pmic {
62                         compatible = "mediatek,mt6397";
63                 };
64         };