diff mbox series

[v3] video: simplefb: add rotation support

Message ID 20220913093241.14644-1-puhitaku@gmail.com
State Accepted
Delegated to: Anatolij Gustschin
Headers show
Series [v3] video: simplefb: add rotation support | expand

Commit Message

Takumi Sueda Sept. 13, 2022, 9:32 a.m. UTC
It introduces the way to rotate the screen for boards with rotated screen.

Signed-off-by: Takumi Sueda <puhitaku@gmail.com>
---
 drivers/video/simplefb.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

Comments

Anatolij Gustschin Oct. 31, 2022, 1:32 p.m. UTC | #1
On Tue, 13 Sep 2022 18:32:42 +0900
Takumi Sueda puhitaku@gmail.com wrote:

> It introduces the way to rotate the screen for boards with rotated screen.
> 
> Signed-off-by: Takumi Sueda <puhitaku@gmail.com>
> ---
>  drivers/video/simplefb.c | 6 +++++-
>  1 file changed, 5 insertions(+), 1 deletion(-)

Applied to u-boot-video/master, thanks!

--
Anatolij
diff mbox series

Patch

diff --git a/drivers/video/simplefb.c b/drivers/video/simplefb.c
index 2b0d8835e3..235ec761f7 100644
--- a/drivers/video/simplefb.c
+++ b/drivers/video/simplefb.c
@@ -43,7 +43,11 @@  static int simple_video_probe(struct udevice *dev)
 
 	uc_priv->xsize = fdtdec_get_uint(blob, node, "width", 0);
 	uc_priv->ysize = fdtdec_get_uint(blob, node, "height", 0);
-	uc_priv->rot = 0;
+	uc_priv->rot = fdtdec_get_uint(blob, node, "rot", 0);
+	if (uc_priv->rot > 3) {
+		log_debug("%s: invalid rot\n", __func__);
+		return log_msg_ret("rot", -EINVAL);
+	}
 
 	format = fdt_getprop(blob, node, "format", NULL);
 	debug("%s: %dx%d@%s\n", __func__, uc_priv->xsize, uc_priv->ysize, format);