- [-] Simple gui for pen buttons/configurations (kernel stuff will be handled by the dbus service for non-root usage)
- -> not required for batch 2
- How to boot into maskrom from linux
- Documentation/gui on how to configure Suspend-on-cover close/resume
- kexec (won't work on that before batch 2)
- [-] kexec can be used to reboot into another kernel
This file contains 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 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 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 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 |