Device migrations, drivers and fixes (#571)
Device migrations: - cyd-4848S040c - guition-jc1060p470ciwy - guition-jc2432w328c - guition-jc3248w535c (known issue with display and touch, Shadowtrance will look into it) - guition-jc8048w550c - heltec-wifi-lora-32-v3 - lilygo-tdeck-max (excluding graphics) - lilygo-tdisplay - lilygo-tdisplay-s3 - lilygo-tdongle-s3 - lilygo-tlora-pager Driver migrations: - Implemented haptic driver interface in kernel - AXS15231b - BQ25896 - BQ27220 - CST328 - CST6xx - DRV2605 - JD9165 - Custom LilyGO driver for T-Lora Pager - SSD1306 - ST7701 - ST7735 - SY6970 - TCA8418 Fixes/improvements: - Boot app: support for multiple power devices, improved UI - lvgl_devices and related code: fixes for mapping - Support for arrays in dts parser
This commit is contained in:
committed by
GitHub
parent
3b5a401594
commit
d896657bf9
@@ -9,7 +9,11 @@
|
||||
#include <tactility/bindings/esp32_spi.h>
|
||||
#include <tactility/bindings/esp32_uart.h>
|
||||
#include <tactility/bindings/esp32_sdspi.h>
|
||||
#include <tactility/bindings/esp32_pwm_ledc.h>
|
||||
#include <tactility/bindings/pwm_backlight.h>
|
||||
#include <bindings/dummy_i2s_amp.h>
|
||||
#include <bindings/rgb_display.h>
|
||||
#include <bindings/gt911.h>
|
||||
|
||||
/ {
|
||||
compatible = "root";
|
||||
@@ -36,6 +40,16 @@
|
||||
clock-frequency = <400000>;
|
||||
pin-sda = <&gpio0 19 GPIO_FLAG_NONE>;
|
||||
pin-scl = <&gpio0 20 GPIO_FLAG_NONE>;
|
||||
|
||||
touch0 {
|
||||
// Reset pin 38 and interrupt pin 18 (or INT = NC) exist on the board but are not
|
||||
// wired up here - conflicting schematic info, unverified (matches the original
|
||||
// deprecated-HAL config).
|
||||
compatible = "goodix,gt911";
|
||||
reg = <0x5D>;
|
||||
x-max = <800>;
|
||||
y-max = <480>;
|
||||
};
|
||||
};
|
||||
|
||||
i2c_external: i2c1 {
|
||||
@@ -81,4 +95,58 @@
|
||||
pin-tx = <&gpio0 18 GPIO_FLAG_NONE>;
|
||||
pin-rx = <&gpio0 17 GPIO_FLAG_NONE>;
|
||||
};
|
||||
|
||||
display_backlight_pwm {
|
||||
compatible = "espressif,esp32-pwm-ledc";
|
||||
pin = <&gpio0 2 GPIO_FLAG_NONE>;
|
||||
period-ns = <25000>;
|
||||
ledc-timer = <0>;
|
||||
ledc-channel = <0>;
|
||||
};
|
||||
|
||||
display_backlight {
|
||||
compatible = "pwm-backlight";
|
||||
// Off by default so display power-on won't show the screen from before the last power loss.
|
||||
// The display backlight is turned on during the boot process.
|
||||
status = "disabled";
|
||||
pwm = <&display_backlight_pwm>;
|
||||
};
|
||||
|
||||
display0 {
|
||||
compatible = "espressif,esp32-rgb-display";
|
||||
horizontal-resolution = <800>;
|
||||
vertical-resolution = <480>;
|
||||
pixel-clock-hz = <16000000>;
|
||||
hsync-pulse-width = <4>;
|
||||
hsync-back-porch = <8>;
|
||||
hsync-front-porch = <8>;
|
||||
vsync-pulse-width = <4>;
|
||||
vsync-back-porch = <8>;
|
||||
vsync-front-porch = <8>;
|
||||
pclk-active-neg;
|
||||
num-fbs = <2>;
|
||||
double-fb;
|
||||
bounce-buffer-size-px = <8000>;
|
||||
pin-hsync = <&gpio0 39 GPIO_FLAG_NONE>;
|
||||
pin-vsync = <&gpio0 41 GPIO_FLAG_NONE>;
|
||||
pin-de = <&gpio0 40 GPIO_FLAG_NONE>;
|
||||
pin-pclk = <&gpio0 42 GPIO_FLAG_NONE>;
|
||||
pin-data0 = <&gpio0 8 GPIO_FLAG_NONE>; // B3
|
||||
pin-data1 = <&gpio0 3 GPIO_FLAG_NONE>; // B4
|
||||
pin-data2 = <&gpio0 46 GPIO_FLAG_NONE>; // B5
|
||||
pin-data3 = <&gpio0 9 GPIO_FLAG_NONE>; // B6
|
||||
pin-data4 = <&gpio0 1 GPIO_FLAG_NONE>; // B7
|
||||
pin-data5 = <&gpio0 5 GPIO_FLAG_NONE>; // G2
|
||||
pin-data6 = <&gpio0 6 GPIO_FLAG_NONE>; // G3
|
||||
pin-data7 = <&gpio0 7 GPIO_FLAG_NONE>; // G4
|
||||
pin-data8 = <&gpio0 15 GPIO_FLAG_NONE>; // G5
|
||||
pin-data9 = <&gpio0 16 GPIO_FLAG_NONE>; // G6
|
||||
pin-data10 = <&gpio0 4 GPIO_FLAG_NONE>; // G7
|
||||
pin-data11 = <&gpio0 45 GPIO_FLAG_NONE>; // R3
|
||||
pin-data12 = <&gpio0 48 GPIO_FLAG_NONE>; // R4
|
||||
pin-data13 = <&gpio0 47 GPIO_FLAG_NONE>; // R5
|
||||
pin-data14 = <&gpio0 21 GPIO_FLAG_NONE>; // R6
|
||||
pin-data15 = <&gpio0 14 GPIO_FLAG_NONE>; // R7
|
||||
backlight = <&display_backlight>;
|
||||
};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user