On Thu, Mar 2, 2017 at 3:44 AM, Hoegeun Kwon <hoegeun.k...@samsung.com> wrote: > On 02/28/2017 06:58 PM, Krzysztof Kozlowski wrote: >> Discussions in previous thread lead us to bisectability problem. >> Bisectability in regular driver changes is one thing but in case of >> driver + DTS the gap is much bigger. DTS will go through separate tree >> and branches. How do you want to solve the problem? > > > Sorry for the delay in reply, Mar 1st was the holiday. > I thought of two solutions. > > 1. squash the patches in a single patch
No, for the same reason. DTS code/patches have to go through arm-soc DTS branch without mixing with any driver changes. Otherwise arm-soc guys are angry. > 2. split the dts related patches so that the first part adds the: > + samsung,burst-clock-frequency = <512000000>; > + samsung,esc-clock-frequency = <16000000>; > > and the second part at the end removes the 'port' node > So it consists of 6 patches in total. That's a solution. The remaining DTS patches would go in next release... Another solution would be for this release cycle: if (of_property_does_not_exist(node, "samsung,burst-clock-frequency") { // Fallback to old parsing mode node = of_graph_get_endpoint_by_regs(node, DSI_PORT_OUT, 0); if (!node) { dev_err(dev, "no burst-clock-frequency nor output port with endpoint specified\n"); return -EINVAL; } } ret = exynos_dsi_of_read_u32(node, "samsung,burst-clock-frequency", &dsi->burst_clk_rate); ... ...and in next release the DTS patches would go in. This would give you also DTB backward compatibility. However still DTS could be applied later, after driver changes gets into mainline. Personally I would prefer your solution #2 (with separate DTS patch adding new properties). Does it sound reasonable for Inki? Thanks for looking into this problem. Best regards, Krzysztof _______________________________________________ dri-devel mailing list dri-devel@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/dri-devel