On Mon, Nov 13, 2017 at 2:25 AM, Andre Przywara <andre.przywara@xxxxxxx> wrote: > so far the pinctrl driver for supporting a particular Allwinner SoC requires > a hardcoded table in the kernel code. (...) > This series here moves the data encoded in the table so far into the DT itself, > removing the need for a hardcoded table in the kernel. (...) The DT maintainers have been pretty clear on that they don't like using the the DT as a generic fit-all information dump. They prefer to look up hardware data from per-soc compatible strings. I have been sceptic about it too, on the grounds that I think it make configuration and multiplatform kernels easy, while making debugging and reading code+device tree hard, also affecting maintenance cost. I'd like to have Maxime's buy-in before we progress and also some discussion on these themes in general. > The approach taken here is to parse the DT and generate the table with > the help of additional properties, then hand this table over to the existing > driver. This is covered by three basic extensions to the DT binding: I adressed this in the bindings patch. > The benefit of this series is two-fold: > - Future SoCs don't need an in-kernel table anymore. They can describe > everything in the DT, It can be debated whether that is really a good thing or actually a bad thing for the reasons stated above. Also an additional bad thing is inconsistency between different SoCs. What we have in the kernel for all-DT is pinctrl-single.c. This exists for the case where there is exactly one register per pin and all you have is strange macro files from the ASIC people that noone understands. OMAP and HiSilicon is using this. It's a compromise, I'm not super-happy with that driver at all times but it is for a very strongly specified case. Would it be possible for you guys to simply use/embrace/extend pinctrl-single.c if you want to go this route? Any higher order of complexity than "one register per pin" I think is better handled by open coding it than trying to push things into the device tree, because of readability, debuggability and maintenance issues. Yours, Linus Walleij -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html