blob: e004ee362f6a32eff77b775033d87ad5f7bae17b [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass0be8f202012-10-17 13:24:51 +00002/*
3 * Copyright (c) 2011 The Chromium OS Authors.
Simon Glass0be8f202012-10-17 13:24:51 +00004 */
Simon Glassf20b2c02016-01-30 16:37:57 -07005
Simon Glass0be8f202012-10-17 13:24:51 +00006#include <common.h>
Simon Glass9e6866d2016-01-30 16:37:56 -07007#include <dm.h>
Simon Glass0be8f202012-10-17 13:24:51 +00008#include <fdtdec.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -06009#include <log.h>
Simon Glassec550772016-05-08 16:55:20 -060010#include <panel.h>
Simon Glasse6f6f9e2020-05-10 11:39:58 -060011#include <part.h>
Simon Glass91c08af2016-01-30 16:38:01 -070012#include <pwm.h>
Simon Glass9e6866d2016-01-30 16:37:56 -070013#include <video.h>
Simon Glass90526e92020-05-10 11:39:56 -060014#include <asm/cache.h>
Simon Glass401d1c42020-10-30 21:38:53 -060015#include <asm/global_data.h>
Simon Glass0be8f202012-10-17 13:24:51 +000016#include <asm/system.h>
17#include <asm/gpio.h>
Simon Glass71cafc32016-01-30 16:37:53 -070018#include <asm/io.h>
Simon Glass0be8f202012-10-17 13:24:51 +000019
20#include <asm/arch/clock.h>
21#include <asm/arch/funcmux.h>
22#include <asm/arch/pinmux.h>
23#include <asm/arch/pwm.h>
24#include <asm/arch/display.h>
25#include <asm/arch-tegra/timer.h>
26
27DECLARE_GLOBAL_DATA_PTR;
28
Simon Glassce0c4742016-01-30 16:37:55 -070029/* Information about the display controller */
30struct tegra_lcd_priv {
Simon Glassce0c4742016-01-30 16:37:55 -070031 int width; /* width in pixels */
32 int height; /* height in pixels */
Simon Glassec550772016-05-08 16:55:20 -060033 enum video_log2_bpp log2_bpp; /* colour depth */
34 struct display_timing timing;
35 struct udevice *panel;
Svyatoslav Ryhel098dbcb2023-03-27 11:11:44 +030036 struct dc_ctlr *dc; /* Display controller regmap */
Simon Glassce0c4742016-01-30 16:37:55 -070037 fdt_addr_t frame_buffer; /* Address of frame buffer */
38 unsigned pixel_clock; /* Pixel clock in Hz */
Svyatoslav Ryhele114f502023-03-27 11:11:42 +030039 int dc_clk[2]; /* Contains clk and its parent */
Simon Glassce0c4742016-01-30 16:37:55 -070040};
41
Simon Glass0be8f202012-10-17 13:24:51 +000042enum {
43 /* Maximum LCD size we support */
Marcel Ziswiler8dfeee62023-03-27 11:11:40 +030044 LCD_MAX_WIDTH = 1920,
45 LCD_MAX_HEIGHT = 1200,
Simon Glass9e6866d2016-01-30 16:37:56 -070046 LCD_MAX_LOG2_BPP = VIDEO_BPP16,
Simon Glass0be8f202012-10-17 13:24:51 +000047};
48
Simon Glass71cafc32016-01-30 16:37:53 -070049static void update_window(struct dc_ctlr *dc, struct disp_ctl_win *win)
50{
51 unsigned h_dda, v_dda;
52 unsigned long val;
53
54 val = readl(&dc->cmd.disp_win_header);
55 val |= WINDOW_A_SELECT;
56 writel(val, &dc->cmd.disp_win_header);
57
58 writel(win->fmt, &dc->win.color_depth);
59
60 clrsetbits_le32(&dc->win.byte_swap, BYTE_SWAP_MASK,
61 BYTE_SWAP_NOSWAP << BYTE_SWAP_SHIFT);
62
63 val = win->out_x << H_POSITION_SHIFT;
64 val |= win->out_y << V_POSITION_SHIFT;
65 writel(val, &dc->win.pos);
66
67 val = win->out_w << H_SIZE_SHIFT;
68 val |= win->out_h << V_SIZE_SHIFT;
69 writel(val, &dc->win.size);
70
71 val = (win->w * win->bpp / 8) << H_PRESCALED_SIZE_SHIFT;
72 val |= win->h << V_PRESCALED_SIZE_SHIFT;
73 writel(val, &dc->win.prescaled_size);
74
75 writel(0, &dc->win.h_initial_dda);
76 writel(0, &dc->win.v_initial_dda);
77
78 h_dda = (win->w * 0x1000) / max(win->out_w - 1, 1U);
79 v_dda = (win->h * 0x1000) / max(win->out_h - 1, 1U);
80
81 val = h_dda << H_DDA_INC_SHIFT;
82 val |= v_dda << V_DDA_INC_SHIFT;
83 writel(val, &dc->win.dda_increment);
84
85 writel(win->stride, &dc->win.line_stride);
86 writel(0, &dc->win.buf_stride);
87
88 val = WIN_ENABLE;
89 if (win->bpp < 24)
90 val |= COLOR_EXPAND;
91 writel(val, &dc->win.win_opt);
92
93 writel((unsigned long)win->phys_addr, &dc->winbuf.start_addr);
94 writel(win->x, &dc->winbuf.addr_h_offset);
95 writel(win->y, &dc->winbuf.addr_v_offset);
96
97 writel(0xff00, &dc->win.blend_nokey);
98 writel(0xff00, &dc->win.blend_1win);
99
100 val = GENERAL_ACT_REQ | WIN_A_ACT_REQ;
101 val |= GENERAL_UPDATE | WIN_A_UPDATE;
102 writel(val, &dc->cmd.state_ctrl);
103}
104
Simon Glass71cafc32016-01-30 16:37:53 -0700105static int update_display_mode(struct dc_disp_reg *disp,
Simon Glass9e6866d2016-01-30 16:37:56 -0700106 struct tegra_lcd_priv *priv)
Simon Glass71cafc32016-01-30 16:37:53 -0700107{
Simon Glassec550772016-05-08 16:55:20 -0600108 struct display_timing *dt = &priv->timing;
Simon Glass71cafc32016-01-30 16:37:53 -0700109 unsigned long val;
110 unsigned long rate;
111 unsigned long div;
112
113 writel(0x0, &disp->disp_timing_opt);
Simon Glass71cafc32016-01-30 16:37:53 -0700114
Simon Glassec550772016-05-08 16:55:20 -0600115 writel(1 | 1 << 16, &disp->ref_to_sync);
116 writel(dt->hsync_len.typ | dt->vsync_len.typ << 16, &disp->sync_width);
117 writel(dt->hback_porch.typ | dt->vback_porch.typ << 16,
118 &disp->back_porch);
119 writel((dt->hfront_porch.typ - 1) | (dt->vfront_porch.typ - 1) << 16,
120 &disp->front_porch);
121 writel(dt->hactive.typ | (dt->vactive.typ << 16), &disp->disp_active);
Simon Glass71cafc32016-01-30 16:37:53 -0700122
123 val = DE_SELECT_ACTIVE << DE_SELECT_SHIFT;
124 val |= DE_CONTROL_NORMAL << DE_CONTROL_SHIFT;
125 writel(val, &disp->data_enable_opt);
126
127 val = DATA_FORMAT_DF1P1C << DATA_FORMAT_SHIFT;
128 val |= DATA_ALIGNMENT_MSB << DATA_ALIGNMENT_SHIFT;
129 val |= DATA_ORDER_RED_BLUE << DATA_ORDER_SHIFT;
130 writel(val, &disp->disp_interface_ctrl);
131
132 /*
133 * The pixel clock divider is in 7.1 format (where the bottom bit
134 * represents 0.5). Here we calculate the divider needed to get from
135 * the display clock (typically 600MHz) to the pixel clock. We round
136 * up or down as requried.
137 */
Svyatoslav Ryhele114f502023-03-27 11:11:42 +0300138 rate = clock_get_periph_rate(priv->dc_clk[0], priv->dc_clk[1]);
Simon Glass9e6866d2016-01-30 16:37:56 -0700139 div = ((rate * 2 + priv->pixel_clock / 2) / priv->pixel_clock) - 2;
Simon Glass71cafc32016-01-30 16:37:53 -0700140 debug("Display clock %lu, divider %lu\n", rate, div);
141
142 writel(0x00010001, &disp->shift_clk_opt);
143
144 val = PIXEL_CLK_DIVIDER_PCD1 << PIXEL_CLK_DIVIDER_SHIFT;
145 val |= div << SHIFT_CLK_DIVIDER_SHIFT;
146 writel(val, &disp->disp_clk_ctrl);
147
148 return 0;
149}
150
151/* Start up the display and turn on power to PWMs */
152static void basic_init(struct dc_cmd_reg *cmd)
153{
154 u32 val;
155
156 writel(0x00000100, &cmd->gen_incr_syncpt_ctrl);
157 writel(0x0000011a, &cmd->cont_syncpt_vsync);
158 writel(0x00000000, &cmd->int_type);
159 writel(0x00000000, &cmd->int_polarity);
160 writel(0x00000000, &cmd->int_mask);
161 writel(0x00000000, &cmd->int_enb);
162
163 val = PW0_ENABLE | PW1_ENABLE | PW2_ENABLE;
164 val |= PW3_ENABLE | PW4_ENABLE | PM0_ENABLE;
165 val |= PM1_ENABLE;
166 writel(val, &cmd->disp_pow_ctrl);
167
168 val = readl(&cmd->disp_cmd);
169 val |= CTRL_MODE_C_DISPLAY << CTRL_MODE_SHIFT;
170 writel(val, &cmd->disp_cmd);
171}
172
173static void basic_init_timer(struct dc_disp_reg *disp)
174{
175 writel(0x00000020, &disp->mem_high_pri);
176 writel(0x00000001, &disp->mem_high_pri_timer);
177}
178
179static const u32 rgb_enb_tab[PIN_REG_COUNT] = {
180 0x00000000,
181 0x00000000,
182 0x00000000,
183 0x00000000,
184};
185
186static const u32 rgb_polarity_tab[PIN_REG_COUNT] = {
187 0x00000000,
188 0x01000000,
189 0x00000000,
190 0x00000000,
191};
192
193static const u32 rgb_data_tab[PIN_REG_COUNT] = {
194 0x00000000,
195 0x00000000,
196 0x00000000,
197 0x00000000,
198};
199
200static const u32 rgb_sel_tab[PIN_OUTPUT_SEL_COUNT] = {
201 0x00000000,
202 0x00000000,
203 0x00000000,
204 0x00000000,
205 0x00210222,
206 0x00002200,
207 0x00020000,
208};
209
210static void rgb_enable(struct dc_com_reg *com)
211{
212 int i;
213
214 for (i = 0; i < PIN_REG_COUNT; i++) {
215 writel(rgb_enb_tab[i], &com->pin_output_enb[i]);
216 writel(rgb_polarity_tab[i], &com->pin_output_polarity[i]);
217 writel(rgb_data_tab[i], &com->pin_output_data[i]);
218 }
219
220 for (i = 0; i < PIN_OUTPUT_SEL_COUNT; i++)
221 writel(rgb_sel_tab[i], &com->pin_output_sel[i]);
222}
223
224static int setup_window(struct disp_ctl_win *win,
Simon Glass9e6866d2016-01-30 16:37:56 -0700225 struct tegra_lcd_priv *priv)
Simon Glass71cafc32016-01-30 16:37:53 -0700226{
227 win->x = 0;
228 win->y = 0;
Simon Glass9e6866d2016-01-30 16:37:56 -0700229 win->w = priv->width;
230 win->h = priv->height;
Simon Glass71cafc32016-01-30 16:37:53 -0700231 win->out_x = 0;
232 win->out_y = 0;
Simon Glass9e6866d2016-01-30 16:37:56 -0700233 win->out_w = priv->width;
234 win->out_h = priv->height;
235 win->phys_addr = priv->frame_buffer;
236 win->stride = priv->width * (1 << priv->log2_bpp) / 8;
237 debug("%s: depth = %d\n", __func__, priv->log2_bpp);
238 switch (priv->log2_bpp) {
Simon Glassec550772016-05-08 16:55:20 -0600239 case VIDEO_BPP32:
Simon Glass71cafc32016-01-30 16:37:53 -0700240 win->fmt = COLOR_DEPTH_R8G8B8A8;
241 win->bpp = 32;
242 break;
Simon Glassec550772016-05-08 16:55:20 -0600243 case VIDEO_BPP16:
Simon Glass71cafc32016-01-30 16:37:53 -0700244 win->fmt = COLOR_DEPTH_B5G6R5;
245 win->bpp = 16;
246 break;
247
248 default:
249 debug("Unsupported LCD bit depth");
250 return -1;
251 }
252
253 return 0;
254}
255
Simon Glass71cafc32016-01-30 16:37:53 -0700256/**
Simon Glass71cafc32016-01-30 16:37:53 -0700257 * Register a new display based on device tree configuration.
258 *
Robert P. J. Day62a3b7d2016-07-15 13:44:45 -0400259 * The frame buffer can be positioned by U-Boot or overridden by the fdt.
Simon Glass71cafc32016-01-30 16:37:53 -0700260 * You should pass in the U-Boot address here, and check the contents of
Simon Glassce0c4742016-01-30 16:37:55 -0700261 * struct tegra_lcd_priv to see what was actually chosen.
Simon Glass71cafc32016-01-30 16:37:53 -0700262 *
263 * @param blob Device tree blob
Simon Glass9e6866d2016-01-30 16:37:56 -0700264 * @param priv Driver's private data
Simon Glass71cafc32016-01-30 16:37:53 -0700265 * @param default_lcd_base Default address of LCD frame buffer
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100266 * Return: 0 if ok, -1 on error (unsupported bits per pixel)
Simon Glass71cafc32016-01-30 16:37:53 -0700267 */
Simon Glass9e6866d2016-01-30 16:37:56 -0700268static int tegra_display_probe(const void *blob, struct tegra_lcd_priv *priv,
269 void *default_lcd_base)
Simon Glass71cafc32016-01-30 16:37:53 -0700270{
271 struct disp_ctl_win window;
Svyatoslav Ryhele114f502023-03-27 11:11:42 +0300272 unsigned long rate = clock_get_rate(priv->dc_clk[1]);
Simon Glass71cafc32016-01-30 16:37:53 -0700273
Simon Glass9e6866d2016-01-30 16:37:56 -0700274 priv->frame_buffer = (u32)default_lcd_base;
Simon Glass71cafc32016-01-30 16:37:53 -0700275
Simon Glass71cafc32016-01-30 16:37:53 -0700276 /*
Svyatoslav Ryhele114f502023-03-27 11:11:42 +0300277 * We halve the rate if DISP1 paret is PLLD, since actual parent
278 * is plld_out0 which is PLLD divided by 2.
Simon Glass71cafc32016-01-30 16:37:53 -0700279 */
Svyatoslav Ryhele114f502023-03-27 11:11:42 +0300280 if (priv->dc_clk[1] == CLOCK_ID_DISPLAY)
281 rate /= 2;
282
283 /*
284 * HOST1X is init by default at 150MHz with PLLC as parent
285 */
286 clock_start_periph_pll(PERIPH_ID_HOST1X, CLOCK_ID_CGENERAL,
287 150 * 1000000);
288 clock_start_periph_pll(priv->dc_clk[0], priv->dc_clk[1],
289 rate);
290
Svyatoslav Ryhel098dbcb2023-03-27 11:11:44 +0300291 basic_init(&priv->dc->cmd);
292 basic_init_timer(&priv->dc->disp);
293 rgb_enable(&priv->dc->com);
Simon Glass71cafc32016-01-30 16:37:53 -0700294
Simon Glass9e6866d2016-01-30 16:37:56 -0700295 if (priv->pixel_clock)
Svyatoslav Ryhel098dbcb2023-03-27 11:11:44 +0300296 update_display_mode(&priv->dc->disp, priv);
Simon Glass71cafc32016-01-30 16:37:53 -0700297
Simon Glass9e6866d2016-01-30 16:37:56 -0700298 if (setup_window(&window, priv))
Simon Glass71cafc32016-01-30 16:37:53 -0700299 return -1;
300
Svyatoslav Ryhel098dbcb2023-03-27 11:11:44 +0300301 update_window(priv->dc, &window);
Simon Glass71cafc32016-01-30 16:37:53 -0700302
303 return 0;
304}
305
Simon Glass9e6866d2016-01-30 16:37:56 -0700306static int tegra_lcd_probe(struct udevice *dev)
Simon Glass0be8f202012-10-17 13:24:51 +0000307{
Simon Glass8a8d24b2020-12-03 16:55:23 -0700308 struct video_uc_plat *plat = dev_get_uclass_plat(dev);
Simon Glass9e6866d2016-01-30 16:37:56 -0700309 struct video_priv *uc_priv = dev_get_uclass_priv(dev);
310 struct tegra_lcd_priv *priv = dev_get_priv(dev);
311 const void *blob = gd->fdt_blob;
Simon Glassec550772016-05-08 16:55:20 -0600312 int ret;
Simon Glass9e6866d2016-01-30 16:37:56 -0700313
Simon Glass9e6866d2016-01-30 16:37:56 -0700314 /* Initialize the Tegra display controller */
Marcel Ziswiler8dfeee62023-03-27 11:11:40 +0300315#ifdef CONFIG_TEGRA20
Simon Glassec550772016-05-08 16:55:20 -0600316 funcmux_select(PERIPH_ID_DISP1, FUNCMUX_DEFAULT);
Marcel Ziswiler8dfeee62023-03-27 11:11:40 +0300317#endif
318
Simon Glass9e6866d2016-01-30 16:37:56 -0700319 if (tegra_display_probe(blob, priv, (void *)plat->base)) {
320 printf("%s: Failed to probe display driver\n", __func__);
321 return -1;
322 }
323
Marcel Ziswiler8dfeee62023-03-27 11:11:40 +0300324#ifdef CONFIG_TEGRA20
Simon Glassec550772016-05-08 16:55:20 -0600325 pinmux_set_func(PMUX_PINGRP_GPU, PMUX_FUNC_PWM);
326 pinmux_tristate_disable(PMUX_PINGRP_GPU);
Marcel Ziswiler8dfeee62023-03-27 11:11:40 +0300327#endif
Simon Glassec550772016-05-08 16:55:20 -0600328
329 ret = panel_enable_backlight(priv->panel);
330 if (ret) {
331 debug("%s: Cannot enable backlight, ret=%d\n", __func__, ret);
332 return ret;
333 }
Simon Glass9e6866d2016-01-30 16:37:56 -0700334
Simon Glass8d374832016-05-08 16:55:21 -0600335 mmu_set_region_dcache_behaviour(priv->frame_buffer, plat->size,
336 DCACHE_WRITETHROUGH);
Simon Glass9e6866d2016-01-30 16:37:56 -0700337
338 /* Enable flushing after LCD writes if requested */
Simon Glass8d374832016-05-08 16:55:21 -0600339 video_set_flush_dcache(dev, true);
Simon Glass9e6866d2016-01-30 16:37:56 -0700340
341 uc_priv->xsize = priv->width;
342 uc_priv->ysize = priv->height;
343 uc_priv->bpix = priv->log2_bpp;
344 debug("LCD frame buffer at %pa, size %x\n", &priv->frame_buffer,
345 plat->size);
346
347 return 0;
Simon Glass0be8f202012-10-17 13:24:51 +0000348}
Simon Glass9e6866d2016-01-30 16:37:56 -0700349
Simon Glassd1998a92020-12-03 16:55:21 -0700350static int tegra_lcd_of_to_plat(struct udevice *dev)
Simon Glassf5acf912016-01-30 16:37:59 -0700351{
352 struct tegra_lcd_priv *priv = dev_get_priv(dev);
353 const void *blob = gd->fdt_blob;
Simon Glassec550772016-05-08 16:55:20 -0600354 struct display_timing *timing;
Simon Glasse160f7d2017-01-17 16:52:55 -0700355 int node = dev_of_offset(dev);
Simon Glassf5acf912016-01-30 16:37:59 -0700356 int panel_node;
357 int rgb;
Simon Glass91c08af2016-01-30 16:38:01 -0700358 int ret;
Simon Glassf5acf912016-01-30 16:37:59 -0700359
Svyatoslav Ryhel098dbcb2023-03-27 11:11:44 +0300360 priv->dc = (struct dc_ctlr *)dev_read_addr_ptr(dev);
361 if (!priv->dc) {
Simon Glassf5acf912016-01-30 16:37:59 -0700362 debug("%s: No display controller address\n", __func__);
363 return -EINVAL;
364 }
365
Svyatoslav Ryhele114f502023-03-27 11:11:42 +0300366 ret = clock_decode_pair(dev, priv->dc_clk);
367 if (ret < 0) {
368 debug("%s: Cannot decode clocks for '%s' (ret = %d)\n",
369 __func__, dev->name, ret);
370 return -EINVAL;
371 }
372
Simon Glassf5acf912016-01-30 16:37:59 -0700373 rgb = fdt_subnode_offset(blob, node, "rgb");
Simon Glassec550772016-05-08 16:55:20 -0600374 if (rgb < 0) {
375 debug("%s: Cannot find rgb subnode for '%s' (ret=%d)\n",
376 __func__, dev->name, rgb);
377 return -EINVAL;
378 }
Simon Glassf5acf912016-01-30 16:37:59 -0700379
Simon Glassec550772016-05-08 16:55:20 -0600380 /*
381 * Sadly the panel phandle is in an rgb subnode so we cannot use
382 * uclass_get_device_by_phandle().
383 */
Simon Glassf5acf912016-01-30 16:37:59 -0700384 panel_node = fdtdec_lookup_phandle(blob, rgb, "nvidia,panel");
385 if (panel_node < 0) {
386 debug("%s: Cannot find panel information\n", __func__);
387 return -EINVAL;
388 }
Svyatoslav Ryhelf67f23c2023-03-27 11:11:43 +0300389
Simon Glassec550772016-05-08 16:55:20 -0600390 ret = uclass_get_device_by_of_offset(UCLASS_PANEL, panel_node,
391 &priv->panel);
Simon Glass91c08af2016-01-30 16:38:01 -0700392 if (ret) {
Simon Glassec550772016-05-08 16:55:20 -0600393 debug("%s: Cannot find panel for '%s' (ret=%d)\n", __func__,
394 dev->name, ret);
395 return ret;
Simon Glass91c08af2016-01-30 16:38:01 -0700396 }
Simon Glassf5acf912016-01-30 16:37:59 -0700397
Svyatoslav Ryhelf67f23c2023-03-27 11:11:43 +0300398 ret = panel_get_display_timing(priv->panel, &priv->timing);
399 if (ret) {
400 ret = fdtdec_decode_display_timing(blob, rgb, 0, &priv->timing);
401 if (ret) {
402 debug("%s: Cannot read display timing for '%s' (ret=%d)\n",
403 __func__, dev->name, ret);
404 return -EINVAL;
405 }
406 }
407
408 timing = &priv->timing;
409 priv->width = timing->hactive.typ;
410 priv->height = timing->vactive.typ;
411 priv->pixel_clock = timing->pixelclock.typ;
412 priv->log2_bpp = VIDEO_BPP16;
413
Simon Glassf5acf912016-01-30 16:37:59 -0700414 return 0;
415}
416
Simon Glass9e6866d2016-01-30 16:37:56 -0700417static int tegra_lcd_bind(struct udevice *dev)
418{
Simon Glass8a8d24b2020-12-03 16:55:23 -0700419 struct video_uc_plat *plat = dev_get_uclass_plat(dev);
Stephen Warren54693cb2016-04-19 16:19:30 -0600420 const void *blob = gd->fdt_blob;
Simon Glasse160f7d2017-01-17 16:52:55 -0700421 int node = dev_of_offset(dev);
Stephen Warren54693cb2016-04-19 16:19:30 -0600422 int rgb;
423
424 rgb = fdt_subnode_offset(blob, node, "rgb");
425 if ((rgb < 0) || !fdtdec_get_is_enabled(blob, rgb))
426 return -ENODEV;
Simon Glass9e6866d2016-01-30 16:37:56 -0700427
428 plat->size = LCD_MAX_WIDTH * LCD_MAX_HEIGHT *
429 (1 << LCD_MAX_LOG2_BPP) / 8;
430
431 return 0;
432}
433
434static const struct video_ops tegra_lcd_ops = {
435};
436
437static const struct udevice_id tegra_lcd_ids[] = {
438 { .compatible = "nvidia,tegra20-dc" },
Marcel Ziswiler8dfeee62023-03-27 11:11:40 +0300439 { .compatible = "nvidia,tegra30-dc" },
Simon Glass9e6866d2016-01-30 16:37:56 -0700440 { }
441};
442
443U_BOOT_DRIVER(tegra_lcd) = {
444 .name = "tegra_lcd",
445 .id = UCLASS_VIDEO,
446 .of_match = tegra_lcd_ids,
447 .ops = &tegra_lcd_ops,
448 .bind = tegra_lcd_bind,
449 .probe = tegra_lcd_probe,
Simon Glassd1998a92020-12-03 16:55:21 -0700450 .of_to_plat = tegra_lcd_of_to_plat,
Simon Glass41575d82020-12-03 16:55:17 -0700451 .priv_auto = sizeof(struct tegra_lcd_priv),
Simon Glass9e6866d2016-01-30 16:37:56 -0700452};