Message ID | 20231222-pinetab2-v1-0-e148a7f61bd1@mecka.net |
---|---|
Headers | show |
Series | arm64: rockchip: Pine64 pinetab2 support | expand |
On Fri, Dec 22, 2023 at 05:51:41PM +0100, Diederik de Haas wrote: > On Friday, 22 December 2023 12:05:40 CET Manuel Traut wrote: > > [3] > > https://salsa.debian.org/Mobian-team/devices/kernels/rockchip-linux/-/blob/ > > mobian-6.6/debian/patches/display/0018-drm-panel-add-BOE-TH101MB31IG002-28A- > > driver.patch?ref_type=heads > > [4] > > https://salsa.debian.org/Mobian-team/devices/kernels/rockchip-linux/-/blob/ > > mobian-6.6/debian/patches/device-tree/0134-arch-arm64-add-Pine64-PineTab2-de > > vice-trees.patch?ref_type=heads > > FWIW I believe the actual sources are from > https://github.com/TuxThePenguin0/linux/commits/device/pine64-pinetab2_stable Thanks for pointing this out, there are also some other relevant changes. I will take care on this and Krzysztofs review and post a v2 later. Thanks Manuel
Hi Manuel, On Saturday, 23 December 2023 14:59:34 CET Manuel Traut wrote: > On Fri, Dec 22, 2023 at 06:01:54PM +0100, Diederik de Haas wrote: > > On Friday, 22 December 2023 12:05:44 CET Manuel Traut wrote: > > > + > > > +&cru { > > > + assigned-clocks = <&cru PLL_GPLL>, <&pmucru PLL_PPLL>, <&cru > > > PLL_VPLL>; + assigned-clock-rates = <1200000000>, <200000000>, > > > <500000000>; +}; > > > > Attachment seem to work and for this I also have the attached patch in my > > patch set. > > IIRC without it you get an error in dmesg immediately at boot up which is > > visible on the PT2 *if* you have immediate visual output (which is not > > (yet?) the case in my image/kernel). > > you can see the message also by calling "dmesg --level err". > I could verify that your patch removes the error message. As I have been using that patch for a while, I couldn't verify it myself anymore ;-) If you use the (default) danctnix image, then you see it immediately at boot up (at least the last time I tried it). With my (WIP) image, I only get visual output after 5-7 seconds, so you'll likely miss that visual error if the image you use also has a delay before outputting things on the screen. But indeed, it would still show up in dmesg (without the patch). > I will pick the change for v2. Great :-)
This adds support for the BOE TH101MB31IG002 LCD Panel used in Pinetab2 [1] and Pinetab-V [2] as well as the devictrees for the Pinetab2 v0.1 and v2.0. The BOE LCD Panel patch was retrieved from [3]. The function-name prefix has been adapted and the LCD init section was simplified. The Pinetab2 devicetree patch was retrieved from [4]. Some renaming was needed to pass the dtb-checks, the brightness-levels are specified as range and steps instead of a list of values. The last to patches fix some dtb-checker warnings that showed up with the new device-trees. [1] https://wiki.pine64.org/wiki/PineTab2 [2] https://wiki.pine64.org/wiki/PineTab-V [3] https://salsa.debian.org/Mobian-team/devices/kernels/rockchip-linux/-/blob/mobian-6.6/debian/patches/display/0018-drm-panel-add-BOE-TH101MB31IG002-28A-driver.patch?ref_type=heads [4] https://salsa.debian.org/Mobian-team/devices/kernels/rockchip-linux/-/blob/mobian-6.6/debian/patches/device-tree/0134-arch-arm64-add-Pine64-PineTab2-device-trees.patch?ref_type=heads Signed-off-by: Manuel Traut <manut@mecka.net> --- Manuel Traut (4): dt-bindings: display: panel: Add BOE TH101MB31IG002-28A panel dt-bindings: arm64: rockchip: Add Pine64 Pinetab2 arm64: dts: rockchip: Fix some dtb-check warnings dt-bindings: display: rockchip: dw-hdmi: Add missing sound-dai-cells property Segfault (2): drm/panel: Add driver for BOE TH101MB31IG002-28A panel arm64: dts: rockchip: Add devicetree for Pine64 Pinetab2 .../devicetree/bindings/arm/rockchip.yaml | 8 + .../display/panel/boe,th101mb31ig002-28a.yaml | 73 ++ .../display/rockchip/rockchip,dw-hdmi.yaml | 4 + arch/arm64/boot/dts/rockchip/Makefile | 2 + .../boot/dts/rockchip/rk3566-pinetab2-v0.1.dts | 26 + .../boot/dts/rockchip/rk3566-pinetab2-v2.0.dts | 46 + arch/arm64/boot/dts/rockchip/rk3566-pinetab2.dtsi | 1032 ++++++++++++++++++++ arch/arm64/boot/dts/rockchip/rk356x.dtsi | 5 +- drivers/gpu/drm/panel/Kconfig | 11 + drivers/gpu/drm/panel/Makefile | 1 + .../gpu/drm/panel/panel-boe-th101mb31ig002-28a.c | 307 ++++++ 11 files changed, 1513 insertions(+), 2 deletions(-) --- base-commit: 24e0d2e527a39f64caeb2e6be39ad5396fb2da5e change-id: 20231222-pinetab2-faa77e01db6f Best regards,