- Documentation and gui/tooling to set off-screens for the panel (tooling is there - needs polishing)
- Tooling to regenerate the u-boot logo partition with updated images
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/drivers/gpu/drm/rockchip/rockchip_ebc.c b/drivers/gpu/drm/rockchip/rockchip_ebc.c | |
@@ -242,6 +248,10 @@ static int ioctl_trigger_global_refresh(struct drm_device *dev, void *data, | |
ebc->do_one_full_refresh = true; | |
spin_unlock(&ebc->refresh_once_lock); | |
// try to trigger the refresh immediately | |
+ /* if (ebc->refresh_thread->is_parked) */ | |
+ /* printk(KERN_INFO "[rockchip_ebc] thread parked"); */ | |
+ | |
+ kthread_unpark(ebc->refresh_thread); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/arch/arm64/boot/dts/rockchip/rk356x.dtsi b/arch/arm64/boot/dts/rockchip/rk356x.dtsi | |
index 194f6141997d..1ec932c5293d 100644 | |
--- a/arch/arm64/boot/dts/rockchip/rk356x.dtsi | |
+++ b/arch/arm64/boot/dts/rockchip/rk356x.dtsi | |
@@ -593,6 +593,23 @@ gpu: gpu@fde60000 { | |
status = "disabled"; | |
}; | |
+ rk_rga: rk_rga@fdeb0000 { | |
+ compatible = "rockchip,rga2"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Pinenote bluetooth connection to Logitech K480 keyboard | |
* System: Debian sid | |
* Kernel: pinenote-next from smaeul with a few minor additions: | |
* Modules hidp and uhid compiled as modules. | |
* cyttsp5 touchscreen driver from pgwipeout | |
root@pinenote:~# dmesg | grep Bluetooth | |
[ 3.580865] Bluetooth: Core ver 2.22 | |
[ 3.581852] Bluetooth: HCI device and connection manager initialized |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""Convert jupyter notebook to sphinx gallery notebook styled examples. | |
Usage: python ipynb_to_gallery.py <notebook.ipynb> | |
Dependencies: | |
pypandoc: install using `pip install pypandoc` | |
""" | |
import pypandoc as pdoc | |
import json |