diff options
author | Chris Morgan <macromorgan@hotmail.com> | 2024-02-05 12:58:53 -0600 |
---|---|---|
committer | Kever Yang <kever.yang@rock-chips.com> | 2024-03-14 18:19:28 +0800 |
commit | b7202ebcebe1d70de522831a5b6c8ce063629d90 (patch) | |
tree | 7e674472c444644c689e8f1ed5e361ab8f8b885b /board | |
parent | c8545d2bba368feaf317d17df08ab5d780b27326 (diff) | |
download | u-boot-b7202ebcebe1d70de522831a5b6c8ce063629d90.tar.gz u-boot-b7202ebcebe1d70de522831a5b6c8ce063629d90.tar.bz2 u-boot-b7202ebcebe1d70de522831a5b6c8ce063629d90.zip |
board: rockchip: Add support for Powkiddy RGB10MAX3
Add support to the RGxx3 device for the Powkiddy RGB10MAX3. This device
is extremely similar to all the other devices and can use the same
bootloader with the same detection logic.
Signed-off-by: Chris Morgan <macromorgan@hotmail.com>
Reviewed-by: Kever Yang <kever.yang@rock-chips.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/anbernic/rgxx3_rk3566/rgxx3-rk3566.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/board/anbernic/rgxx3_rk3566/rgxx3-rk3566.c b/board/anbernic/rgxx3_rk3566/rgxx3-rk3566.c index d05502f67a..5c57b902d1 100644 --- a/board/anbernic/rgxx3_rk3566/rgxx3-rk3566.c +++ b/board/anbernic/rgxx3_rk3566/rgxx3-rk3566.c @@ -50,6 +50,7 @@ enum rgxx3_device_id { RGB30, RK2023, RGARCD, + RGB10MAX3, /* Devices with duplicate ADC value */ RG353PS, RG353VS, @@ -107,6 +108,13 @@ static const struct rg3xx_model rg3xx_model_details[] = { .fdtfile = DTB_DIR "rk3566-anbernic-rg-arc-d.dtb", .detect_panel = 0, }, + [RGB10MAX3] = { + .adc_value = 765, /* Observed average from device */ + .board = "rk3566-powkiddy-rgb10max3", + .board_name = "Powkiddy RGB10MAX3", + .fdtfile = DTB_DIR "rk3566-powkiddy-rgb10max3.dtb", + .detect_panel = 0, + }, /* Devices with duplicate ADC value */ [RG353PS] = { .adc_value = 860, /* Observed average from device */ |