diff options
author | Olof Johansson | 2019-07-04 16:05:21 +0200 |
---|---|---|
committer | Olof Johansson | 2019-07-04 16:05:23 +0200 |
commit | 8c0993621c3e5fa52e5425ef2a0f67a0cde07092 (patch) | |
tree | 71dadce38706db47681ec07ac93785935e28118e /Documentation/devicetree | |
parent | Merge tag 'reset-fixes-for-v5.2' of git://git.pengutronix.de/git/pza/linux in... (diff) | |
parent | dt-bindings: reset: imx7: Fix the spelling of 'indices' (diff) | |
download | kernel-qcow2-linux-8c0993621c3e5fa52e5425ef2a0f67a0cde07092.tar.gz kernel-qcow2-linux-8c0993621c3e5fa52e5425ef2a0f67a0cde07092.tar.xz kernel-qcow2-linux-8c0993621c3e5fa52e5425ef2a0f67a0cde07092.zip |
Merge tag 'reset-for-v5.3' of git://git.pengutronix.de/git/pza/linux into arm/drivers
Reset controller changes for v5.3
This tag adds support for the Bitmain BM1880 reset controller to the
reset-simple driver and fixes a spelling mistake in the i.MX7 reset
controller binding document.
* tag 'reset-for-v5.3' of git://git.pengutronix.de/git/pza/linux:
dt-bindings: reset: imx7: Fix the spelling of 'indices'
reset: Add reset controller support for BM1880 SoC
dt-bindings: reset: Add devicetree binding for BM1880 reset controller
Link: https://lore.kernel.org/r/1562236632.6641.14.camel@pengutronix.de
Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'Documentation/devicetree')
-rw-r--r-- | Documentation/devicetree/bindings/reset/bitmain,bm1880-reset.txt | 18 | ||||
-rw-r--r-- | Documentation/devicetree/bindings/reset/fsl,imx7-src.txt | 2 |
2 files changed, 19 insertions, 1 deletions
diff --git a/Documentation/devicetree/bindings/reset/bitmain,bm1880-reset.txt b/Documentation/devicetree/bindings/reset/bitmain,bm1880-reset.txt new file mode 100644 index 000000000000..a6f8455ae6c4 --- /dev/null +++ b/Documentation/devicetree/bindings/reset/bitmain,bm1880-reset.txt @@ -0,0 +1,18 @@ +Bitmain BM1880 SoC Reset Controller +=================================== + +Please also refer to reset.txt in this directory for common reset +controller binding usage. + +Required properties: +- compatible: Should be "bitmain,bm1880-reset" +- reg: Offset and length of reset controller space in SCTRL. +- #reset-cells: Must be 1. + +Example: + + rst: reset-controller@c00 { + compatible = "bitmain,bm1880-reset"; + reg = <0xc00 0x8>; + #reset-cells = <1>; + }; diff --git a/Documentation/devicetree/bindings/reset/fsl,imx7-src.txt b/Documentation/devicetree/bindings/reset/fsl,imx7-src.txt index 2ecf33815d18..13e095182db4 100644 --- a/Documentation/devicetree/bindings/reset/fsl,imx7-src.txt +++ b/Documentation/devicetree/bindings/reset/fsl,imx7-src.txt @@ -45,6 +45,6 @@ Example: }; -For list of all valid reset indicies see +For list of all valid reset indices see <dt-bindings/reset/imx7-reset.h> for i.MX7 and <dt-bindings/reset/imx8mq-reset.h> for i.MX8MQ |