blob: 1650615cdb9f0494b70a4d9df2c7c08c0c16040f [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Nikita Kiryanov033167c2015-02-03 13:32:31 +02002/*
3 * Simplefb device tree support
4 *
5 * (C) Copyright 2015
6 * Stephen Warren <swarren@wwwdotorg.org>
Nikita Kiryanov033167c2015-02-03 13:32:31 +02007 */
8
9#include <common.h>
Simon Glassd08e42a2017-04-05 16:23:43 -060010#include <dm.h>
Nikita Kiryanov033167c2015-02-03 13:32:31 +020011#include <lcd.h>
12#include <fdt_support.h>
Simon Glass401d1c42020-10-30 21:38:53 -060013#include <asm/global_data.h>
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090014#include <linux/libfdt.h>
Simon Glassd08e42a2017-04-05 16:23:43 -060015#include <video.h>
Nikita Kiryanov033167c2015-02-03 13:32:31 +020016
17DECLARE_GLOBAL_DATA_PTR;
18
19static int lcd_dt_simplefb_configure_node(void *blob, int off)
20{
Simon Glass45261452017-04-05 16:23:42 -060021 int xsize, ysize;
22 int bpix; /* log2 of bits per pixel */
23 const char *name;
24 ulong fb_base;
Simon Glassd08e42a2017-04-05 16:23:43 -060025#ifdef CONFIG_DM_VIDEO
Simon Glass8a8d24b2020-12-03 16:55:23 -070026 struct video_uc_plat *plat;
Simon Glassd08e42a2017-04-05 16:23:43 -060027 struct video_priv *uc_priv;
28 struct udevice *dev;
29 int ret;
Simon Glass45261452017-04-05 16:23:42 -060030
Simon Glassd08e42a2017-04-05 16:23:43 -060031 ret = uclass_first_device_err(UCLASS_VIDEO, &dev);
32 if (ret)
33 return ret;
34 uc_priv = dev_get_uclass_priv(dev);
Simon Glasscaa4daa2020-12-03 16:55:18 -070035 plat = dev_get_uclass_plat(dev);
Simon Glassd08e42a2017-04-05 16:23:43 -060036 xsize = uc_priv->xsize;
37 ysize = uc_priv->ysize;
38 bpix = uc_priv->bpix;
39 fb_base = plat->base;
40#else
Simon Glass45261452017-04-05 16:23:42 -060041 xsize = lcd_get_pixel_width();
42 ysize = lcd_get_pixel_height();
43 bpix = LCD_BPP;
44 fb_base = gd->fb_base;
Simon Glassd08e42a2017-04-05 16:23:43 -060045#endif
Simon Glass45261452017-04-05 16:23:42 -060046 switch (bpix) {
47 case 4: /* VIDEO_BPP16 */
48 name = "r5g6b5";
49 break;
50 case 5: /* VIDEO_BPP32 */
51 name = "a8r8g8b8";
52 break;
53 default:
54 return -EINVAL;
55 }
56
57 return fdt_setup_simplefb_node(blob, off, fb_base, xsize, ysize,
58 xsize * (1 << bpix) / 8, name);
Nikita Kiryanov033167c2015-02-03 13:32:31 +020059}
60
61int lcd_dt_simplefb_add_node(void *blob)
62{
63 static const char compat[] = "simple-framebuffer";
64 static const char disabled[] = "disabled";
65 int off, ret;
66
67 off = fdt_add_subnode(blob, 0, "framebuffer");
68 if (off < 0)
69 return -1;
70
71 ret = fdt_setprop(blob, off, "status", disabled, sizeof(disabled));
72 if (ret < 0)
73 return -1;
74
75 ret = fdt_setprop(blob, off, "compatible", compat, sizeof(compat));
76 if (ret < 0)
77 return -1;
78
79 return lcd_dt_simplefb_configure_node(blob, off);
80}
81
82int lcd_dt_simplefb_enable_existing_node(void *blob)
83{
84 int off;
85
86 off = fdt_node_offset_by_compatible(blob, -1, "simple-framebuffer");
87 if (off < 0)
88 return -1;
89
90 return lcd_dt_simplefb_configure_node(blob, off);
91}