[PATCH v3 3/6] dt-bindings: clock: imx8mp: Add reset-controller sub-node
Conor Dooley
conor at kernel.org
Fri May 17 09:21:32 PDT 2024
On Thu, May 16, 2024 at 11:56:27PM -0400, Frank Li wrote:
> Look like it is easy to register auxdev "reset" devices. But I have a
> problem. How to use it by DT phandle? "reset" devices is service provider.
> Some client will use it.
>
> Generally, reset node will used by other devices nodes. like
>
> ABC: reset {
> compatible="simple-reset";
> ...
> }
>
> other node will use "reset = <&ABC 0>". If use auxdev, how to get &ABC
> in dts file.
Whether or not you use auxdev or any other method etc, does not matter
in a DT system, the consumer will always have a phandle to the provider
node:
ABC: whatever {
compatible = "whatever";
#clock-cells = <...>;
#reset-cells = <...>;
}
something-else {
clocks = <&ABC ...>;
resets = <&ABC ...>;
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 228 bytes
Desc: not available
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20240517/4f6a8446/attachment.sig>
More information about the linux-arm-kernel
mailing list