On Tue, Apr 10, 2018 at 11:32:03AM -0700, Jae Hyun Yoo wrote: > This commit adds documents of generic PECI bus, adapter and client drivers.
"dt-bindings: ..." for the subject prefix please. > > Signed-off-by: Jae Hyun Yoo <[email protected]> > Reviewed-by: Haiyue Wang <[email protected]> > Reviewed-by: James Feist <[email protected]> > Reviewed-by: Vernon Mauery <[email protected]> > Cc: Alan Cox <[email protected]> > Cc: Andrew Jeffery <[email protected]> > Cc: Andrew Lunn <[email protected]> > Cc: Andy Shevchenko <[email protected]> > Cc: Arnd Bergmann <[email protected]> > Cc: Benjamin Herrenschmidt <[email protected]> > Cc: Fengguang Wu <[email protected]> > Cc: Greg KH <[email protected]> > Cc: Guenter Roeck <[email protected]> > Cc: Jason M Biils <[email protected]> > Cc: Jean Delvare <[email protected]> > Cc: Joel Stanley <[email protected]> > Cc: Julia Cartwright <[email protected]> > Cc: Miguel Ojeda <[email protected]> > Cc: Milton Miller II <[email protected]> > Cc: Pavel Machek <[email protected]> > Cc: Randy Dunlap <[email protected]> > Cc: Stef van Os <[email protected]> > Cc: Sumeet R Pawnikar <[email protected]> > --- > .../devicetree/bindings/peci/peci-adapter.txt | 23 ++++++++++++++++++++ > .../devicetree/bindings/peci/peci-bus.txt | 15 +++++++++++++ > .../devicetree/bindings/peci/peci-client.txt | 25 > ++++++++++++++++++++++ This should be all one document. > 3 files changed, 63 insertions(+) > create mode 100644 Documentation/devicetree/bindings/peci/peci-adapter.txt > create mode 100644 Documentation/devicetree/bindings/peci/peci-bus.txt > create mode 100644 Documentation/devicetree/bindings/peci/peci-client.txt > > diff --git a/Documentation/devicetree/bindings/peci/peci-adapter.txt > b/Documentation/devicetree/bindings/peci/peci-adapter.txt > new file mode 100644 > index 000000000000..9221374f6b11 > --- /dev/null > +++ b/Documentation/devicetree/bindings/peci/peci-adapter.txt > @@ -0,0 +1,23 @@ > +Generic device tree configuration for PECI adapters. > + > +Required properties: > +- compatible : Should contain hardware specific definition strings that > can > + match an adapter driver implementation. > +- reg : Should contain PECI controller registers location and > length. No need for these 2 here. > +- #address-cells : Should be <1>. > +- #size-cells : Should be <0>. Some details on the addressing for PECI would be good. > + > +Example: > + peci: peci@10000000 { > + compatible = "simple-bus"; > + #address-cells = <1>; > + #size-cells = <1>; > + ranges = <0x0 0x10000000 0x1000>; > + This part of the example is not relevant. Just start with the adapter node. > + peci0: peci-bus@0 { > + compatible = "soc,soc-peci"; > + reg = <0x0 0x1000>; > + #address-cells = <1>; > + #size-cells = <0>; > + }; > + }; > diff --git a/Documentation/devicetree/bindings/peci/peci-bus.txt > b/Documentation/devicetree/bindings/peci/peci-bus.txt > new file mode 100644 > index 000000000000..90bcc791ccb0 > --- /dev/null > +++ b/Documentation/devicetree/bindings/peci/peci-bus.txt > @@ -0,0 +1,15 @@ > +Generic device tree configuration for PECI buses. > + > +Required properties: > +- compatible : Should be "simple-bus". I don't understand what this has to do with PECI? "simple-bus" already has a defined meaning. > +- #address-cells : Should be <1>. > +- #size-cells : Should be <1>. > +- ranges : Should contain PECI controller registers ranges. > + > +Example: > + peci: peci@10000000 { > + compatible = "simple-bus"; > + #address-cells = <1>; > + #size-cells = <1>; > + ranges = <0x0 0x10000000 0x1000>; > + }; > diff --git a/Documentation/devicetree/bindings/peci/peci-client.txt > b/Documentation/devicetree/bindings/peci/peci-client.txt > new file mode 100644 > index 000000000000..8e2bfd8532f6 > --- /dev/null > +++ b/Documentation/devicetree/bindings/peci/peci-client.txt > @@ -0,0 +1,25 @@ > +Generic device tree configuration for PECI clients. > + > +Required properties: > +- compatible : Should contain target device specific definition strings that > can > + match a client driver implementation. Bindings are for h/w, not client drivers. How are PECI devices defined? > +- reg : Should contain address of a client CPU. Address range of CPU > + clients is starting from 0x30 based on PECI specification. > + <0x30> .. <0x37> (depends on the PECI_OFFSET_MAX definition) 8 devices should be enough for anyone... Where is PECI_OFFSET_MAX defined? > + > +Example: > + peci-bus@0 { > + #address-cells = <1>; > + #size-cells = <0>; > + < more properties > > + > + function@cpu0 { Not a valid node name. "function@30" is what it probably should be. For a new bus you can define unit-address format you like, but it must be based on the contents of reg. However, it doesn't look like you should create anything special here. > + compatible = "device,function"; > + reg = <0x30>; > + }; > + > + function@cpu1 { > + compatible = "device,function"; > + reg = <0x31>; > + }; > + }; > -- > 2.16.2 > > > _______________________________________________ > linux-arm-kernel mailing list > [email protected] > http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

