Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1664933
| From | Rob Herring <robh@kernel.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH 1/4] dt-bindings: tps65217: Update binding documentation. |
| Date | 2017-06-13 16:50 +0200 |
| Message-ID | <tRViN-Jw-5@gated-at.bofh.it> (permalink) |
| References | <tPGxz-5qX-1@gated-at.bofh.it> <tQsLW-2vh-61@gated-at.bofh.it> <tQAJs-7ia-25@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On Fri, Jun 9, 2017 at 5:30 PM, Enric Balletbo Serra
<eballetbo@gmail.com> wrote:
> Hello Rob,
>
> 2017-06-09 16:03 GMT+02:00 Rob Herring <robh@kernel.org>:
>> On Wed, Jun 07, 2017 at 12:32:39PM +0200, Enric Balletbo i Serra wrote:
>>> This patch adds a new binding documentation for the TPS65217 MFD and
>>> updates the documentation for all the sub-devices in accordance to get
>>> each individual sub-driver functioning correctly.
>>
>> Explain why breaking compatibility is okay.
>>
>
> We had some discussion in patch 4 that make me rethink a bit all this,
> please let me send a new version and continue the discussion there
> (now I'm not sure if I'll break the compatibility or not)
>
> But let me ask a question. The TPS65217 MFD has different sub-nodes
> (charger, backlight, pwrbutton, regulators) in DT, I suspect the
> answer is no, but is it ok that some of them were not described in the
> DT because there is nothing to configure?
But you are configuring the interrupts. I'm all for not creating nodes
just for the purpose instantiating a driver (DT is not the only way to
create platform devices) when the parent node is sufficient. We see
both models, but we don't really want a mixture of both ways so I'd
stick with the latter here.
> i.e: Have this because the resources of charger and pwrbutton are
> static so can be hard-coded in the driver
>
> &tps {
> compatible = "ti,tps65217";
> interrupt-controller;
> #interrupt-cells = <1>;
>
> regulators {
> #address-cells = <1>;
> #size-cells = <0>;
>
> dcdc1_reg: regulator@0 {
> reg = <0>;
> ...
> };
> };
>
> instead of :
>
> &tps {
> compatible = "ti,tps65217";
> interrupt-controller;
> #interrupt-cells = <1>;
>
> charger {
> compatible = "ti,tps65217-charger";
> interrupts = <0>, <1>;
> interrupt-names = "USB", "AC";
> };
>
> pwrbutton {
> compatible = "ti,tps65217-pwrbutton";
> interrupts = <2>;
> };
>
> regulators {
> #address-cells = <1>;
> #size-cells = <0>;
>
> dcdc1_reg: regulator@0 {
> reg = <0>;
> ...
> };
> };
Back to linux.kernel | Previous | Next — Previous in thread | Find similar | Unroll thread
Re: [PATCH 1/4] dt-bindings: tps65217: Update binding documentation. Rob Herring <robh@kernel.org> - 2017-06-09 16:10 +0200
Re: [PATCH 1/4] dt-bindings: tps65217: Update binding documentation. Enric Balletbo Serra <eballetbo@gmail.com> - 2017-06-10 00:40 +0200
Re: [PATCH 1/4] dt-bindings: tps65217: Update binding documentation. Rob Herring <robh@kernel.org> - 2017-06-13 16:50 +0200
csiph-web