Staging
v0.7.0
https://github.com/torvalds/linux
Raw File
Tip revision: 9ebcfadb0610322ac537dd7aa5d9cbc2b2894c68 authored by Linus Torvalds on 28 June 2020, 22:00:24 UTC
Linux 5.8-rc3
Tip revision: 9ebcfad
berlin,reset.txt
Marvell Berlin reset controller
===============================

Please also refer to reset.txt in this directory for common reset
controller binding usage.

The reset controller node must be a sub-node of the chip controller
node on Berlin SoCs.

Required properties:
- compatible: should be "marvell,berlin2-reset"
- #reset-cells: must be set to 2

Example:

chip_rst: reset {
	compatible = "marvell,berlin2-reset";
	#reset-cells = <2>;
};

&usb_phy0 {
	resets = <&chip_rst 0x104 12>;
};
back to top