Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1481225 > unrolled thread
| Started by | Linus Walleij <linus.walleij@linaro.org> |
|---|---|
| First post | 2016-09-12 14:50 +0200 |
| Last post | 2016-09-14 05:00 +0200 |
| Articles | 4 — 3 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: [PATCH v2 3/4] ARM: dts: Add NextThing GR8 dtsi Linus Walleij <linus.walleij@linaro.org> - 2016-09-12 14:50 +0200
Re: [PATCH v2 3/4] ARM: dts: Add NextThing GR8 dtsi Laurent Pinchart <laurent.pinchart@ideasonboard.com> - 2016-09-12 14:50 +0200
Re: [PATCH v2 3/4] ARM: dts: Add NextThing GR8 dtsi Linus Walleij <linus.walleij@linaro.org> - 2016-09-13 11:20 +0200
Re: [PATCH v2 3/4] ARM: dts: Add NextThing GR8 dtsi Chen-Yu Tsai <wens@csie.org> - 2016-09-14 05:00 +0200
| From | Linus Walleij <linus.walleij@linaro.org> |
|---|---|
| Date | 2016-09-12 14:50 +0200 |
| Subject | Re: [PATCH v2 3/4] ARM: dts: Add NextThing GR8 dtsi |
| Message-ID | <sgyQp-3n9-9@gated-at.bofh.it> |
On Thu, Sep 8, 2016 at 9:37 AM, Maxime Ripard <maxime.ripard@free-electrons.com> wrote: > On Thu, Sep 08, 2016 at 12:46:14PM +0800, Chen-Yu Tsai wrote: >> Also, I think we are needlessly using pin groups, 1 pin per group. >> Can pinconf/pinctrl work without them? Would there be any harm >> converting the sunxi driver to work directly with pins? This would >> make it match generic pinconf parsing, and make it easier to get >> both working together. > > I think it comes from a requirement that you had to have groups at > some point (I don't know if it's still the case), which is why we > ended up with single-pin groups, because we can mux each pins entirely > separately. > > If it's not required anymore, then yes, it makes total sense to remove > it. The groups vs individual pins is an eternal debate that has been going on since the inception of pinctrl. If you see it from the point of the programmer, you may just see a register for each pin and they seem all independent. This is why pinctrl-single exist, and that driver is for this purpose: one register per pin, software-wise independent. HOWEVER it often turns out that while you can programmatically and individually set pins to any function (and biasing etc), the person designing the hardware was not thinking that you should be able to do whatever you like, e.g. even if it is possible to take two pins and use one of them for half an SPI bus and the other for half an I2C bus, that doesn't mean that this is useful or makes any kind of electronic sense, it just makes "software sense". So for a deeper understanding, several SoCs (amongst them my own and Qualcomm etc) define groups that are not really about software restrictions for what you can do with the pins, but about usecase and electronic restrictions for what can be done with the pins. E.g. it makes *sense* to have a group for muxing I2C on two pins, and not allow one of them to be muxed to I2C and the other not, because it does not make electronic sense. One-group-per-pin groups is usually coming from a failure or inability to identify these electronically sound and usecase oriented pingroups. Some (like pinctrl-single) say they don't care, and wish to see things as the world is just software and one register per pin, removing those electric usecase restrictions, and only keeping the muxing restrictions to e.g. the four different functions that can be muxed on that pin, disregarding the bigger picture. I don't know about this driver or the pins it manages, I seldom have time or brains to dive in and review things deeply enough :( Yours, Linus Walleij
[toc] | [next] | [standalone]
| From | Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
|---|---|
| Date | 2016-09-12 14:50 +0200 |
| Message-ID | <sgyQp-3n9-11@gated-at.bofh.it> |
| In reply to | #1481225 |
Hi Linus, On Monday 12 Sep 2016 14:40:15 Linus Walleij wrote: > On Thu, Sep 8, 2016 at 9:37 AM, Maxime Ripard wrote: > > On Thu, Sep 08, 2016 at 12:46:14PM +0800, Chen-Yu Tsai wrote: > >> Also, I think we are needlessly using pin groups, 1 pin per group. > >> Can pinconf/pinctrl work without them? Would there be any harm > >> converting the sunxi driver to work directly with pins? This would > >> make it match generic pinconf parsing, and make it easier to get > >> both working together. > > > > I think it comes from a requirement that you had to have groups at > > some point (I don't know if it's still the case), which is why we > > ended up with single-pin groups, because we can mux each pins entirely > > separately. > > > > If it's not required anymore, then yes, it makes total sense to remove > > it. > > The groups vs individual pins is an eternal debate that has > been going on since the inception of pinctrl. > > If you see it from the point of the programmer, you may just see > a register for each pin and they seem all independent. This is > why pinctrl-single exist, and that driver is for this purpose: one > register per pin, software-wise independent. > > HOWEVER it often turns out that while you can programmatically > and individually set pins to any function (and biasing etc), the > person designing the hardware was not thinking that you should > be able to do whatever you like, e.g. even if it is possible to > take two pins and use one of them for half an SPI bus and the > other for half an I2C bus, that doesn't mean that this is useful > or makes any kind of electronic sense, it just makes "software > sense". > > So for a deeper understanding, several SoCs (amongst them > my own and Qualcomm etc) define groups that are not really > about software restrictions for what you can do with the pins, but > about usecase and electronic restrictions for what can be done > with the pins. > > E.g. it makes *sense* to have a group for muxing I2C on two > pins, and not allow one of them to be muxed to I2C and the other > not, because it does not make electronic sense. > > One-group-per-pin groups is usually coming from a failure or > inability to identify these electronically sound and usecase > oriented pingroups. I'd argue that you would find out about lots of clever/insane use cases that don't fit this model if you looked at all the hardware available out there, especially non-phone devices. Your SPI example is a good one, I've seen SPI being used in unidirectional mode only, with only MISO or MOSI mattering. In that case the other pin could be used as a GPIO for a totally unrelated purpose when the design is short on GPIOs or when GPIOs have been allocated without any knowledge of the Linux pinctrl subsystem. Looking at the sh-pfc driver, I wish the hardware had followed the pinctrl- single model. sh-pfc is a good example of how bloated a pinctrl driver can become when there is no choice but model all the relationships betweens pins and functions in C code. > Some (like pinctrl-single) say they don't care, and wish to > see things as the world is just software and one register per > pin, removing those electric usecase restrictions, and only > keeping the muxing restrictions to e.g. the four different functions > that can be muxed on that pin, disregarding the bigger picture. > > I don't know about this driver or the pins it manages, > I seldom have time or brains to dive in and review things > deeply enough :( -- Regards, Laurent Pinchart
[toc] | [prev] | [next] | [standalone]
| From | Linus Walleij <linus.walleij@linaro.org> |
|---|---|
| Date | 2016-09-13 11:20 +0200 |
| Message-ID | <sgS2J-8jW-13@gated-at.bofh.it> |
| In reply to | #1481228 |
On Mon, Sep 12, 2016 at 2:47 PM, Laurent Pinchart <laurent.pinchart@ideasonboard.com> wrote: > On Monday 12 Sep 2016 14:40:15 Linus Walleij wrote: >> HOWEVER it often turns out that while you can programmatically >> and individually set pins to any function (and biasing etc), the >> person designing the hardware was not thinking that you should >> be able to do whatever you like, e.g. even if it is possible to >> take two pins and use one of them for half an SPI bus and the >> other for half an I2C bus, that doesn't mean that this is useful >> or makes any kind of electronic sense, it just makes "software >> sense". (...) > I'd argue that you would find out about lots of clever/insane use cases that > don't fit this model if you looked at all the hardware available out there, > especially non-phone devices. Your SPI example is a good one, I've seen SPI > being used in unidirectional mode only, with only MISO or MOSI mattering. In > that case the other pin could be used as a GPIO for a totally unrelated > purpose when the design is short on GPIOs or when GPIOs have been allocated > without any knowledge of the Linux pinctrl subsystem. That is true sometimes. It is a tradeoff, I can also imagine actually driving an I2C bus just to use the SCL line as a clock for something, constantly feeding nonsense data through the I2C block and ignoring SDA and reusing that pin as GPIO. (And a lot of other theoretical usecases.) Some pin controller hardware helpully only let you select groups and makes such hacks impossible. Also I guess the target audience of the SoC will affect the hackishness of the usecases, and affect what they might attempt to shoehorn into the design. So model on whatever makes most sense, is usually how I think about it. Or as the IETF says "rough consensus and running code". I guess it is a bit of grayzone, and that is why both solutions coexist. > Looking at the sh-pfc driver, I wish the hardware had followed the pinctrl- > single model. sh-pfc is a good example of how bloated a pinctrl driver can > become when there is no choice but model all the relationships betweens pins > and functions in C code. It might be true, there are so many variables to the equation that I cannot tell. Debuggability and readability of code and device trees and different groups of people reading code vs device trees is another factor. Scaringly, what is best for me as subsystem maintainer (that all drivers look identical) is not always best for the users. Yours, Linus Walleij
[toc] | [prev] | [next] | [standalone]
| From | Chen-Yu Tsai <wens@csie.org> |
|---|---|
| Date | 2016-09-14 05:00 +0200 |
| Message-ID | <sh8Ax-2s2-1@gated-at.bofh.it> |
| In reply to | #1481225 |
Hi Linus, On Mon, Sep 12, 2016 at 8:40 PM, Linus Walleij <linus.walleij@linaro.org> wrote: > On Thu, Sep 8, 2016 at 9:37 AM, Maxime Ripard > <maxime.ripard@free-electrons.com> wrote: >> On Thu, Sep 08, 2016 at 12:46:14PM +0800, Chen-Yu Tsai wrote: > >>> Also, I think we are needlessly using pin groups, 1 pin per group. >>> Can pinconf/pinctrl work without them? Would there be any harm >>> converting the sunxi driver to work directly with pins? This would >>> make it match generic pinconf parsing, and make it easier to get >>> both working together. >> >> I think it comes from a requirement that you had to have groups at >> some point (I don't know if it's still the case), which is why we >> ended up with single-pin groups, because we can mux each pins entirely >> separately. >> >> If it's not required anymore, then yes, it makes total sense to remove >> it. > > The groups vs individual pins is an eternal debate that has > been going on since the inception of pinctrl. > > If you see it from the point of the programmer, you may just see > a register for each pin and they seem all independent. This is > why pinctrl-single exist, and that driver is for this purpose: one > register per pin, software-wise independent. > > HOWEVER it often turns out that while you can programmatically > and individually set pins to any function (and biasing etc), the > person designing the hardware was not thinking that you should > be able to do whatever you like, e.g. even if it is possible to > take two pins and use one of them for half an SPI bus and the > other for half an I2C bus, that doesn't mean that this is useful > or makes any kind of electronic sense, it just makes "software > sense". > > So for a deeper understanding, several SoCs (amongst them > my own and Qualcomm etc) define groups that are not really > about software restrictions for what you can do with the pins, but > about usecase and electronic restrictions for what can be done > with the pins. > > E.g. it makes *sense* to have a group for muxing I2C on two > pins, and not allow one of them to be muxed to I2C and the other > not, because it does not make electronic sense. > > One-group-per-pin groups is usually coming from a failure or > inability to identify these electronically sound and usecase > oriented pingroups. > > Some (like pinctrl-single) say they don't care, and wish to > see things as the world is just software and one register per > pin, removing those electric usecase restrictions, and only > keeping the muxing restrictions to e.g. the four different functions > that can be muxed on that pin, disregarding the bigger picture. > > I don't know about this driver or the pins it manages, > I seldom have time or brains to dive in and review things > deeply enough :( Thanks for the explanation. I suppose sunxi falls into the "don't care" group. We mainly enforce proper use cases through the DT pinmux settings. Of course this doesn't prevent the user from using weird settings out of tree, but then again what's preventing them from hacking the kernel anyway. Back to my original question: is it possible to drop the pin group support completely? Looking at struct pinctrl_ops the answer seems to be no. Regards ChenYu
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web