Commit 3f3b9861 authored by Tomi Valkeinen's avatar Tomi Valkeinen Committed by Laurent Pinchart

drm: rcar-du: dsi: Add r8A779g0 support

Add DSI support for r8a779g0. The main differences to r8a779a0 are in
the PLL and PHTW setups.
Signed-off-by: default avatarTomi Valkeinen <tomi.valkeinen+renesas@ideasonboard.com>
Reviewed-by: default avatarLaurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Reviewed-by: default avatarKieran Bingham <kieran.bingham+renesas@ideasonboard.com>
Signed-off-by: default avatarLaurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
parent 03bbfe42
This diff is collapsed.
...@@ -122,7 +122,8 @@ ...@@ -122,7 +122,8 @@
#define VCLKSET_CKEN (1 << 16) #define VCLKSET_CKEN (1 << 16)
#define VCLKSET_COLOR_RGB (0 << 8) #define VCLKSET_COLOR_RGB (0 << 8)
#define VCLKSET_COLOR_YCC (1 << 8) #define VCLKSET_COLOR_YCC (1 << 8)
#define VCLKSET_DIV(x) (((x) & 0x3) << 4) #define VCLKSET_DIV_V3U(x) (((x) & 0x3) << 4)
#define VCLKSET_DIV_V4H(x) (((x) & 0x7) << 4)
#define VCLKSET_BPP_16 (0 << 2) #define VCLKSET_BPP_16 (0 << 2)
#define VCLKSET_BPP_18 (1 << 2) #define VCLKSET_BPP_18 (1 << 2)
#define VCLKSET_BPP_18L (2 << 2) #define VCLKSET_BPP_18L (2 << 2)
...@@ -166,6 +167,9 @@ ...@@ -166,6 +167,9 @@
#define PHTW_CWEN (1 << 8) #define PHTW_CWEN (1 << 8)
#define PHTW_TESTDIN_CODE(x) (((x) & 0xff) << 0) #define PHTW_TESTDIN_CODE(x) (((x) & 0xff) << 0)
#define PHTR 0x1038
#define PHTR_TEST (1 << 16)
#define PHTC 0x103c #define PHTC 0x103c
#define PHTC_TESTCLR (1 << 0) #define PHTC_TESTCLR (1 << 0)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment