blob: 07d6ac9d718cc0b1f878150473434ecb8d585e3e [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glasse161ccf2012-10-17 13:24:51 +00002/*
3 * Copyright (c) 2011 The Chromium OS Authors.
Simon Glasse161ccf2012-10-17 13:24:51 +00004 */
Simon Glassb1c50fb2016-01-30 16:37:57 -07005
Svyatoslav Ryhel7673aba2023-03-27 11:11:46 +03006#include <backlight.h>
Simon Glasse865ef32016-01-30 16:37:56 -07007#include <dm.h>
Simon Glasse161ccf2012-10-17 13:24:51 +00008#include <fdtdec.h>
Simon Glass0f2af882020-05-10 11:40:05 -06009#include <log.h>
Simon Glass44fe9e42016-05-08 16:55:20 -060010#include <panel.h>
Simon Glass655306c2020-05-10 11:39:58 -060011#include <part.h>
Simon Glassd8af3c92016-01-30 16:38:01 -070012#include <pwm.h>
Simon Glasse865ef32016-01-30 16:37:56 -070013#include <video.h>
Simon Glass274e0b02020-05-10 11:39:56 -060014#include <asm/cache.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060015#include <asm/global_data.h>
Simon Glasse161ccf2012-10-17 13:24:51 +000016#include <asm/system.h>
17#include <asm/gpio.h>
Simon Glassd8fc3c52016-01-30 16:37:53 -070018#include <asm/io.h>
Simon Glasse161ccf2012-10-17 13:24:51 +000019
20#include <asm/arch/clock.h>
21#include <asm/arch/funcmux.h>
22#include <asm/arch/pinmux.h>
Svyatoslav Ryhel1b0789b2024-01-23 19:16:22 +020023#include <asm/arch/powergate.h>
Simon Glasse161ccf2012-10-17 13:24:51 +000024#include <asm/arch/pwm.h>
Svyatoslav Ryhel75fec412024-01-23 19:16:18 +020025
26#include "tegra-dc.h"
Simon Glasse161ccf2012-10-17 13:24:51 +000027
28DECLARE_GLOBAL_DATA_PTR;
29
Svyatoslav Ryhel9d53a7b2024-01-23 19:16:16 +020030/* Holder of Tegra per-SOC DC differences */
31struct tegra_dc_soc_info {
32 bool has_timer;
33 bool has_rgb;
Svyatoslav Ryhel1b0789b2024-01-23 19:16:22 +020034 bool has_pgate;
Svyatoslav Ryhel9d53a7b2024-01-23 19:16:16 +020035};
36
Simon Glass923128f2016-01-30 16:37:55 -070037/* Information about the display controller */
38struct tegra_lcd_priv {
Simon Glass923128f2016-01-30 16:37:55 -070039 int width; /* width in pixels */
40 int height; /* height in pixels */
Simon Glass44fe9e42016-05-08 16:55:20 -060041 enum video_log2_bpp log2_bpp; /* colour depth */
42 struct display_timing timing;
43 struct udevice *panel;
Svyatoslav Ryhel9716fe52023-03-27 11:11:44 +030044 struct dc_ctlr *dc; /* Display controller regmap */
Svyatoslav Ryhel9d53a7b2024-01-23 19:16:16 +020045 const struct tegra_dc_soc_info *soc;
Simon Glass923128f2016-01-30 16:37:55 -070046 fdt_addr_t frame_buffer; /* Address of frame buffer */
47 unsigned pixel_clock; /* Pixel clock in Hz */
Svyatoslav Ryhelc1f260a2023-03-27 11:11:42 +030048 int dc_clk[2]; /* Contains clk and its parent */
Svyatoslav Ryheld16c1052024-01-23 19:16:23 +020049 ulong scdiv; /* Clock divider used by disp_clk_ctrl */
Svyatoslav Ryhel4f5b79b2023-03-27 11:11:45 +030050 bool rotation; /* 180 degree panel turn */
Svyatoslav Ryhelbae46f32024-01-23 19:16:19 +020051 bool pipe; /* DC controller: 0 for A, 1 for B */
Simon Glass923128f2016-01-30 16:37:55 -070052};
53
Simon Glasse161ccf2012-10-17 13:24:51 +000054enum {
55 /* Maximum LCD size we support */
Svyatoslav Ryhel9d53a7b2024-01-23 19:16:16 +020056 LCD_MAX_WIDTH = 2560,
57 LCD_MAX_HEIGHT = 1600,
Simon Glasse865ef32016-01-30 16:37:56 -070058 LCD_MAX_LOG2_BPP = VIDEO_BPP16,
Simon Glasse161ccf2012-10-17 13:24:51 +000059};
60
Svyatoslav Ryhel4f5b79b2023-03-27 11:11:45 +030061static void update_window(struct tegra_lcd_priv *priv,
62 struct disp_ctl_win *win)
Simon Glassd8fc3c52016-01-30 16:37:53 -070063{
Svyatoslav Ryhel4f5b79b2023-03-27 11:11:45 +030064 struct dc_ctlr *dc = priv->dc;
Simon Glassd8fc3c52016-01-30 16:37:53 -070065 unsigned h_dda, v_dda;
66 unsigned long val;
67
68 val = readl(&dc->cmd.disp_win_header);
69 val |= WINDOW_A_SELECT;
70 writel(val, &dc->cmd.disp_win_header);
71
72 writel(win->fmt, &dc->win.color_depth);
73
74 clrsetbits_le32(&dc->win.byte_swap, BYTE_SWAP_MASK,
75 BYTE_SWAP_NOSWAP << BYTE_SWAP_SHIFT);
76
77 val = win->out_x << H_POSITION_SHIFT;
78 val |= win->out_y << V_POSITION_SHIFT;
79 writel(val, &dc->win.pos);
80
81 val = win->out_w << H_SIZE_SHIFT;
82 val |= win->out_h << V_SIZE_SHIFT;
83 writel(val, &dc->win.size);
84
85 val = (win->w * win->bpp / 8) << H_PRESCALED_SIZE_SHIFT;
86 val |= win->h << V_PRESCALED_SIZE_SHIFT;
87 writel(val, &dc->win.prescaled_size);
88
89 writel(0, &dc->win.h_initial_dda);
90 writel(0, &dc->win.v_initial_dda);
91
92 h_dda = (win->w * 0x1000) / max(win->out_w - 1, 1U);
93 v_dda = (win->h * 0x1000) / max(win->out_h - 1, 1U);
94
95 val = h_dda << H_DDA_INC_SHIFT;
96 val |= v_dda << V_DDA_INC_SHIFT;
97 writel(val, &dc->win.dda_increment);
98
99 writel(win->stride, &dc->win.line_stride);
100 writel(0, &dc->win.buf_stride);
101
102 val = WIN_ENABLE;
103 if (win->bpp < 24)
104 val |= COLOR_EXPAND;
Svyatoslav Ryhel4f5b79b2023-03-27 11:11:45 +0300105
106 if (priv->rotation)
107 val |= H_DIRECTION | V_DIRECTION;
108
Simon Glassd8fc3c52016-01-30 16:37:53 -0700109 writel(val, &dc->win.win_opt);
110
111 writel((unsigned long)win->phys_addr, &dc->winbuf.start_addr);
112 writel(win->x, &dc->winbuf.addr_h_offset);
113 writel(win->y, &dc->winbuf.addr_v_offset);
114
115 writel(0xff00, &dc->win.blend_nokey);
116 writel(0xff00, &dc->win.blend_1win);
117
118 val = GENERAL_ACT_REQ | WIN_A_ACT_REQ;
119 val |= GENERAL_UPDATE | WIN_A_UPDATE;
120 writel(val, &dc->cmd.state_ctrl);
121}
122
Svyatoslav Ryhel9d53a7b2024-01-23 19:16:16 +0200123static int update_display_mode(struct tegra_lcd_priv *priv)
Simon Glassd8fc3c52016-01-30 16:37:53 -0700124{
Svyatoslav Ryhel9d53a7b2024-01-23 19:16:16 +0200125 struct dc_disp_reg *disp = &priv->dc->disp;
Simon Glass44fe9e42016-05-08 16:55:20 -0600126 struct display_timing *dt = &priv->timing;
Simon Glassd8fc3c52016-01-30 16:37:53 -0700127 unsigned long val;
Simon Glassd8fc3c52016-01-30 16:37:53 -0700128
129 writel(0x0, &disp->disp_timing_opt);
Simon Glassd8fc3c52016-01-30 16:37:53 -0700130
Simon Glass44fe9e42016-05-08 16:55:20 -0600131 writel(1 | 1 << 16, &disp->ref_to_sync);
132 writel(dt->hsync_len.typ | dt->vsync_len.typ << 16, &disp->sync_width);
133 writel(dt->hback_porch.typ | dt->vback_porch.typ << 16,
134 &disp->back_porch);
135 writel((dt->hfront_porch.typ - 1) | (dt->vfront_porch.typ - 1) << 16,
136 &disp->front_porch);
137 writel(dt->hactive.typ | (dt->vactive.typ << 16), &disp->disp_active);
Simon Glassd8fc3c52016-01-30 16:37:53 -0700138
Svyatoslav Ryhel9d53a7b2024-01-23 19:16:16 +0200139 if (priv->soc->has_rgb) {
140 val = DE_SELECT_ACTIVE << DE_SELECT_SHIFT;
141 val |= DE_CONTROL_NORMAL << DE_CONTROL_SHIFT;
142 writel(val, &disp->data_enable_opt);
Simon Glassd8fc3c52016-01-30 16:37:53 -0700143
Svyatoslav Ryhel9d53a7b2024-01-23 19:16:16 +0200144 val = DATA_FORMAT_DF1P1C << DATA_FORMAT_SHIFT;
145 val |= DATA_ALIGNMENT_MSB << DATA_ALIGNMENT_SHIFT;
146 val |= DATA_ORDER_RED_BLUE << DATA_ORDER_SHIFT;
147 writel(val, &disp->disp_interface_ctrl);
148 }
Simon Glassd8fc3c52016-01-30 16:37:53 -0700149
Svyatoslav Ryhel9d53a7b2024-01-23 19:16:16 +0200150 if (priv->soc->has_rgb)
151 writel(0x00010001, &disp->shift_clk_opt);
Simon Glassd8fc3c52016-01-30 16:37:53 -0700152
153 val = PIXEL_CLK_DIVIDER_PCD1 << PIXEL_CLK_DIVIDER_SHIFT;
Svyatoslav Ryheld16c1052024-01-23 19:16:23 +0200154 val |= priv->scdiv << SHIFT_CLK_DIVIDER_SHIFT;
Simon Glassd8fc3c52016-01-30 16:37:53 -0700155 writel(val, &disp->disp_clk_ctrl);
156
157 return 0;
158}
159
160/* Start up the display and turn on power to PWMs */
161static void basic_init(struct dc_cmd_reg *cmd)
162{
163 u32 val;
164
165 writel(0x00000100, &cmd->gen_incr_syncpt_ctrl);
166 writel(0x0000011a, &cmd->cont_syncpt_vsync);
167 writel(0x00000000, &cmd->int_type);
168 writel(0x00000000, &cmd->int_polarity);
169 writel(0x00000000, &cmd->int_mask);
170 writel(0x00000000, &cmd->int_enb);
171
172 val = PW0_ENABLE | PW1_ENABLE | PW2_ENABLE;
173 val |= PW3_ENABLE | PW4_ENABLE | PM0_ENABLE;
174 val |= PM1_ENABLE;
175 writel(val, &cmd->disp_pow_ctrl);
176
177 val = readl(&cmd->disp_cmd);
Svyatoslav Ryhel9d53a7b2024-01-23 19:16:16 +0200178 val &= ~CTRL_MODE_MASK;
Simon Glassd8fc3c52016-01-30 16:37:53 -0700179 val |= CTRL_MODE_C_DISPLAY << CTRL_MODE_SHIFT;
180 writel(val, &cmd->disp_cmd);
181}
182
183static void basic_init_timer(struct dc_disp_reg *disp)
184{
185 writel(0x00000020, &disp->mem_high_pri);
186 writel(0x00000001, &disp->mem_high_pri_timer);
187}
188
189static const u32 rgb_enb_tab[PIN_REG_COUNT] = {
190 0x00000000,
191 0x00000000,
192 0x00000000,
193 0x00000000,
194};
195
196static const u32 rgb_polarity_tab[PIN_REG_COUNT] = {
197 0x00000000,
198 0x01000000,
199 0x00000000,
200 0x00000000,
201};
202
203static const u32 rgb_data_tab[PIN_REG_COUNT] = {
204 0x00000000,
205 0x00000000,
206 0x00000000,
207 0x00000000,
208};
209
210static const u32 rgb_sel_tab[PIN_OUTPUT_SEL_COUNT] = {
211 0x00000000,
212 0x00000000,
213 0x00000000,
214 0x00000000,
215 0x00210222,
216 0x00002200,
217 0x00020000,
218};
219
220static void rgb_enable(struct dc_com_reg *com)
221{
222 int i;
223
224 for (i = 0; i < PIN_REG_COUNT; i++) {
225 writel(rgb_enb_tab[i], &com->pin_output_enb[i]);
226 writel(rgb_polarity_tab[i], &com->pin_output_polarity[i]);
227 writel(rgb_data_tab[i], &com->pin_output_data[i]);
228 }
229
230 for (i = 0; i < PIN_OUTPUT_SEL_COUNT; i++)
231 writel(rgb_sel_tab[i], &com->pin_output_sel[i]);
232}
233
Svyatoslav Ryhel9d53a7b2024-01-23 19:16:16 +0200234static int setup_window(struct tegra_lcd_priv *priv,
235 struct disp_ctl_win *win)
Simon Glassd8fc3c52016-01-30 16:37:53 -0700236{
Svyatoslav Ryhel4f5b79b2023-03-27 11:11:45 +0300237 if (priv->rotation) {
Svyatoslav Ryhel597eecb2024-01-23 19:16:17 +0200238 win->x = priv->width * 2 - 1;
239 win->y = priv->height - 1;
Svyatoslav Ryhel4f5b79b2023-03-27 11:11:45 +0300240 } else {
241 win->x = 0;
242 win->y = 0;
243 }
244
Simon Glasse865ef32016-01-30 16:37:56 -0700245 win->w = priv->width;
246 win->h = priv->height;
Simon Glassd8fc3c52016-01-30 16:37:53 -0700247 win->out_x = 0;
248 win->out_y = 0;
Simon Glasse865ef32016-01-30 16:37:56 -0700249 win->out_w = priv->width;
250 win->out_h = priv->height;
251 win->phys_addr = priv->frame_buffer;
252 win->stride = priv->width * (1 << priv->log2_bpp) / 8;
253 debug("%s: depth = %d\n", __func__, priv->log2_bpp);
254 switch (priv->log2_bpp) {
Simon Glass44fe9e42016-05-08 16:55:20 -0600255 case VIDEO_BPP32:
Simon Glassd8fc3c52016-01-30 16:37:53 -0700256 win->fmt = COLOR_DEPTH_R8G8B8A8;
257 win->bpp = 32;
258 break;
Simon Glass44fe9e42016-05-08 16:55:20 -0600259 case VIDEO_BPP16:
Simon Glassd8fc3c52016-01-30 16:37:53 -0700260 win->fmt = COLOR_DEPTH_B5G6R5;
261 win->bpp = 16;
262 break;
263
264 default:
265 debug("Unsupported LCD bit depth");
266 return -1;
267 }
268
269 return 0;
270}
271
Simon Glassd8fc3c52016-01-30 16:37:53 -0700272/**
Simon Glassd8fc3c52016-01-30 16:37:53 -0700273 * Register a new display based on device tree configuration.
274 *
Robert P. J. Day8d56db92016-07-15 13:44:45 -0400275 * The frame buffer can be positioned by U-Boot or overridden by the fdt.
Simon Glassd8fc3c52016-01-30 16:37:53 -0700276 * You should pass in the U-Boot address here, and check the contents of
Simon Glass923128f2016-01-30 16:37:55 -0700277 * struct tegra_lcd_priv to see what was actually chosen.
Simon Glassd8fc3c52016-01-30 16:37:53 -0700278 *
Simon Glasse865ef32016-01-30 16:37:56 -0700279 * @param priv Driver's private data
Simon Glassd8fc3c52016-01-30 16:37:53 -0700280 * @param default_lcd_base Default address of LCD frame buffer
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100281 * Return: 0 if ok, -1 on error (unsupported bits per pixel)
Simon Glassd8fc3c52016-01-30 16:37:53 -0700282 */
Svyatoslav Ryhel9d53a7b2024-01-23 19:16:16 +0200283static int tegra_display_probe(struct tegra_lcd_priv *priv,
Simon Glasse865ef32016-01-30 16:37:56 -0700284 void *default_lcd_base)
Simon Glassd8fc3c52016-01-30 16:37:53 -0700285{
286 struct disp_ctl_win window;
Svyatoslav Ryhelc1f260a2023-03-27 11:11:42 +0300287 unsigned long rate = clock_get_rate(priv->dc_clk[1]);
Simon Glassd8fc3c52016-01-30 16:37:53 -0700288
Simon Glasse865ef32016-01-30 16:37:56 -0700289 priv->frame_buffer = (u32)default_lcd_base;
Simon Glassd8fc3c52016-01-30 16:37:53 -0700290
Simon Glassd8fc3c52016-01-30 16:37:53 -0700291 /*
Svyatoslav Ryhel9d53a7b2024-01-23 19:16:16 +0200292 * We halve the rate if DISP1 parent is PLLD, since actual parent
Svyatoslav Ryhelc1f260a2023-03-27 11:11:42 +0300293 * is plld_out0 which is PLLD divided by 2.
Simon Glassd8fc3c52016-01-30 16:37:53 -0700294 */
Svyatoslav Ryhelc1f260a2023-03-27 11:11:42 +0300295 if (priv->dc_clk[1] == CLOCK_ID_DISPLAY)
296 rate /= 2;
297
Svyatoslav Ryhele38ac622024-01-23 19:16:20 +0200298#ifndef CONFIG_TEGRA20
299 /* PLLD2 obeys same rules as PLLD but it is present only on T30+ */
300 if (priv->dc_clk[1] == CLOCK_ID_DISPLAY2)
301 rate /= 2;
302#endif
303
Svyatoslav Ryhelc1f260a2023-03-27 11:11:42 +0300304 /*
Svyatoslav Ryheld16c1052024-01-23 19:16:23 +0200305 * The pixel clock divider is in 7.1 format (where the bottom bit
306 * represents 0.5). Here we calculate the divider needed to get from
307 * the display clock (typically 600MHz) to the pixel clock. We round
308 * up or down as required.
309 */
310 if (!priv->scdiv)
311 priv->scdiv = ((rate * 2 + priv->pixel_clock / 2)
312 / priv->pixel_clock) - 2;
313 debug("Display clock %lu, divider %lu\n", rate, priv->scdiv);
314
315 /*
Svyatoslav Ryhelc1f260a2023-03-27 11:11:42 +0300316 * HOST1X is init by default at 150MHz with PLLC as parent
317 */
318 clock_start_periph_pll(PERIPH_ID_HOST1X, CLOCK_ID_CGENERAL,
319 150 * 1000000);
320 clock_start_periph_pll(priv->dc_clk[0], priv->dc_clk[1],
321 rate);
322
Svyatoslav Ryhel9716fe52023-03-27 11:11:44 +0300323 basic_init(&priv->dc->cmd);
Svyatoslav Ryhel9d53a7b2024-01-23 19:16:16 +0200324
325 if (priv->soc->has_timer)
326 basic_init_timer(&priv->dc->disp);
327
328 if (priv->soc->has_rgb)
329 rgb_enable(&priv->dc->com);
Simon Glassd8fc3c52016-01-30 16:37:53 -0700330
Simon Glasse865ef32016-01-30 16:37:56 -0700331 if (priv->pixel_clock)
Svyatoslav Ryhel9d53a7b2024-01-23 19:16:16 +0200332 update_display_mode(priv);
Simon Glassd8fc3c52016-01-30 16:37:53 -0700333
Svyatoslav Ryhel9d53a7b2024-01-23 19:16:16 +0200334 if (setup_window(priv, &window))
Simon Glassd8fc3c52016-01-30 16:37:53 -0700335 return -1;
336
Svyatoslav Ryhel4f5b79b2023-03-27 11:11:45 +0300337 update_window(priv, &window);
Simon Glassd8fc3c52016-01-30 16:37:53 -0700338
339 return 0;
340}
341
Simon Glasse865ef32016-01-30 16:37:56 -0700342static int tegra_lcd_probe(struct udevice *dev)
Simon Glasse161ccf2012-10-17 13:24:51 +0000343{
Simon Glassb75b15b2020-12-03 16:55:23 -0700344 struct video_uc_plat *plat = dev_get_uclass_plat(dev);
Simon Glasse865ef32016-01-30 16:37:56 -0700345 struct video_priv *uc_priv = dev_get_uclass_priv(dev);
346 struct tegra_lcd_priv *priv = dev_get_priv(dev);
Simon Glass44fe9e42016-05-08 16:55:20 -0600347 int ret;
Simon Glasse865ef32016-01-30 16:37:56 -0700348
Simon Glasse865ef32016-01-30 16:37:56 -0700349 /* Initialize the Tegra display controller */
Marcel Ziswilercad56712023-03-27 11:11:40 +0300350#ifdef CONFIG_TEGRA20
Simon Glass44fe9e42016-05-08 16:55:20 -0600351 funcmux_select(PERIPH_ID_DISP1, FUNCMUX_DEFAULT);
Marcel Ziswilercad56712023-03-27 11:11:40 +0300352#endif
353
Svyatoslav Ryhel1b0789b2024-01-23 19:16:22 +0200354 if (priv->soc->has_pgate) {
355 uint powergate;
356
357 if (priv->pipe)
358 powergate = TEGRA_POWERGATE_DISB;
359 else
360 powergate = TEGRA_POWERGATE_DIS;
361
362 ret = tegra_powergate_power_off(powergate);
363 if (ret < 0) {
364 log_err("failed to power off DISP gate: %d", ret);
365 return ret;
366 }
367
368 ret = tegra_powergate_sequence_power_up(powergate,
369 priv->dc_clk[0]);
370 if (ret < 0) {
371 log_err("failed to power up DISP gate: %d", ret);
372 return ret;
373 }
374 }
375
Svyatoslav Ryheld16c1052024-01-23 19:16:23 +0200376 /* Get shift clock divider from Tegra DSI if used */
377 if (!strcmp(priv->panel->name, TEGRA_DSI_A) ||
378 !strcmp(priv->panel->name, TEGRA_DSI_B)) {
379 struct tegra_dc_plat *dc_plat = dev_get_plat(priv->panel);
380
381 priv->scdiv = dc_plat->scdiv;
382 }
383
Svyatoslav Ryhel9d53a7b2024-01-23 19:16:16 +0200384 if (tegra_display_probe(priv, (void *)plat->base)) {
385 debug("%s: Failed to probe display driver\n", __func__);
Simon Glasse865ef32016-01-30 16:37:56 -0700386 return -1;
Simon Glasse161ccf2012-10-17 13:24:51 +0000387 }
Simon Glasse865ef32016-01-30 16:37:56 -0700388
Marcel Ziswilercad56712023-03-27 11:11:40 +0300389#ifdef CONFIG_TEGRA20
Simon Glass44fe9e42016-05-08 16:55:20 -0600390 pinmux_set_func(PMUX_PINGRP_GPU, PMUX_FUNC_PWM);
391 pinmux_tristate_disable(PMUX_PINGRP_GPU);
Marcel Ziswilercad56712023-03-27 11:11:40 +0300392#endif
Simon Glass44fe9e42016-05-08 16:55:20 -0600393
394 ret = panel_enable_backlight(priv->panel);
395 if (ret) {
396 debug("%s: Cannot enable backlight, ret=%d\n", __func__, ret);
397 return ret;
398 }
Simon Glasse865ef32016-01-30 16:37:56 -0700399
Simon Glassbbdae4b2016-05-08 16:55:21 -0600400 mmu_set_region_dcache_behaviour(priv->frame_buffer, plat->size,
401 DCACHE_WRITETHROUGH);
Simon Glasse865ef32016-01-30 16:37:56 -0700402
403 /* Enable flushing after LCD writes if requested */
Simon Glassbbdae4b2016-05-08 16:55:21 -0600404 video_set_flush_dcache(dev, true);
Simon Glasse865ef32016-01-30 16:37:56 -0700405
406 uc_priv->xsize = priv->width;
407 uc_priv->ysize = priv->height;
408 uc_priv->bpix = priv->log2_bpp;
Jonas Schwöbel3acb4262024-01-23 19:16:24 +0200409 debug("LCD frame buffer at %08x, size %x\n", priv->frame_buffer,
Simon Glasse865ef32016-01-30 16:37:56 -0700410 plat->size);
411
Jonas Schwöbel146ce492024-01-23 19:16:25 +0200412 return panel_set_backlight(priv->panel, BACKLIGHT_DEFAULT);
Simon Glasse865ef32016-01-30 16:37:56 -0700413}
414
Simon Glassaad29ae2020-12-03 16:55:21 -0700415static int tegra_lcd_of_to_plat(struct udevice *dev)
Simon Glass60740e72016-01-30 16:37:59 -0700416{
417 struct tegra_lcd_priv *priv = dev_get_priv(dev);
418 const void *blob = gd->fdt_blob;
Simon Glass44fe9e42016-05-08 16:55:20 -0600419 struct display_timing *timing;
Simon Glassdd79d6e2017-01-17 16:52:55 -0700420 int node = dev_of_offset(dev);
Simon Glass60740e72016-01-30 16:37:59 -0700421 int panel_node;
422 int rgb;
Simon Glassd8af3c92016-01-30 16:38:01 -0700423 int ret;
Simon Glass60740e72016-01-30 16:37:59 -0700424
Svyatoslav Ryhel9716fe52023-03-27 11:11:44 +0300425 priv->dc = (struct dc_ctlr *)dev_read_addr_ptr(dev);
426 if (!priv->dc) {
Simon Glass60740e72016-01-30 16:37:59 -0700427 debug("%s: No display controller address\n", __func__);
428 return -EINVAL;
429 }
430
Svyatoslav Ryhel9d53a7b2024-01-23 19:16:16 +0200431 priv->soc = (struct tegra_dc_soc_info *)dev_get_driver_data(dev);
432
Svyatoslav Ryhelc1f260a2023-03-27 11:11:42 +0300433 ret = clock_decode_pair(dev, priv->dc_clk);
434 if (ret < 0) {
435 debug("%s: Cannot decode clocks for '%s' (ret = %d)\n",
436 __func__, dev->name, ret);
437 return -EINVAL;
438 }
439
Svyatoslav Ryhel4f5b79b2023-03-27 11:11:45 +0300440 priv->rotation = dev_read_bool(dev, "nvidia,180-rotation");
441
Svyatoslav Ryhelbae46f32024-01-23 19:16:19 +0200442 if (!strcmp(dev->name, TEGRA_DC_B))
443 priv->pipe = 1;
444
Simon Glass60740e72016-01-30 16:37:59 -0700445 rgb = fdt_subnode_offset(blob, node, "rgb");
Simon Glass44fe9e42016-05-08 16:55:20 -0600446 if (rgb < 0) {
447 debug("%s: Cannot find rgb subnode for '%s' (ret=%d)\n",
448 __func__, dev->name, rgb);
Simon Glass60740e72016-01-30 16:37:59 -0700449 return -EINVAL;
450 }
451
Simon Glass44fe9e42016-05-08 16:55:20 -0600452 /*
453 * Sadly the panel phandle is in an rgb subnode so we cannot use
454 * uclass_get_device_by_phandle().
455 */
456 panel_node = fdtdec_lookup_phandle(blob, rgb, "nvidia,panel");
457 if (panel_node < 0) {
458 debug("%s: Cannot find panel information\n", __func__);
Simon Glass60740e72016-01-30 16:37:59 -0700459 return -EINVAL;
460 }
Svyatoslav Ryheld8806292023-03-27 11:11:43 +0300461
Simon Glass44fe9e42016-05-08 16:55:20 -0600462 ret = uclass_get_device_by_of_offset(UCLASS_PANEL, panel_node,
463 &priv->panel);
Simon Glassd8af3c92016-01-30 16:38:01 -0700464 if (ret) {
Simon Glass44fe9e42016-05-08 16:55:20 -0600465 debug("%s: Cannot find panel for '%s' (ret=%d)\n", __func__,
466 dev->name, ret);
467 return ret;
Simon Glassd8af3c92016-01-30 16:38:01 -0700468 }
Simon Glass60740e72016-01-30 16:37:59 -0700469
Svyatoslav Ryhelbae46f32024-01-23 19:16:19 +0200470 /* Fill the platform data for internal devices */
Svyatoslav Ryhel0c8aa5e2023-03-27 11:11:47 +0300471 if (!strcmp(priv->panel->name, TEGRA_DSI_A) ||
472 !strcmp(priv->panel->name, TEGRA_DSI_B)) {
473 struct tegra_dc_plat *dc_plat = dev_get_plat(priv->panel);
474
475 dc_plat->dev = dev;
476 dc_plat->dc = priv->dc;
Svyatoslav Ryhelbae46f32024-01-23 19:16:19 +0200477 dc_plat->pipe = priv->pipe;
Svyatoslav Ryhel0c8aa5e2023-03-27 11:11:47 +0300478 }
479
Svyatoslav Ryheld8806292023-03-27 11:11:43 +0300480 ret = panel_get_display_timing(priv->panel, &priv->timing);
481 if (ret) {
482 ret = fdtdec_decode_display_timing(blob, rgb, 0, &priv->timing);
483 if (ret) {
484 debug("%s: Cannot read display timing for '%s' (ret=%d)\n",
485 __func__, dev->name, ret);
486 return -EINVAL;
487 }
488 }
489
490 timing = &priv->timing;
491 priv->width = timing->hactive.typ;
492 priv->height = timing->vactive.typ;
493 priv->pixel_clock = timing->pixelclock.typ;
494 priv->log2_bpp = VIDEO_BPP16;
495
Simon Glass60740e72016-01-30 16:37:59 -0700496 return 0;
497}
498
Simon Glasse865ef32016-01-30 16:37:56 -0700499static int tegra_lcd_bind(struct udevice *dev)
500{
Simon Glassb75b15b2020-12-03 16:55:23 -0700501 struct video_uc_plat *plat = dev_get_uclass_plat(dev);
Stephen Warren225da8b2016-04-19 16:19:30 -0600502 const void *blob = gd->fdt_blob;
Simon Glassdd79d6e2017-01-17 16:52:55 -0700503 int node = dev_of_offset(dev);
Stephen Warren225da8b2016-04-19 16:19:30 -0600504 int rgb;
505
506 rgb = fdt_subnode_offset(blob, node, "rgb");
507 if ((rgb < 0) || !fdtdec_get_is_enabled(blob, rgb))
508 return -ENODEV;
Simon Glasse865ef32016-01-30 16:37:56 -0700509
510 plat->size = LCD_MAX_WIDTH * LCD_MAX_HEIGHT *
511 (1 << LCD_MAX_LOG2_BPP) / 8;
512
513 return 0;
Simon Glasse161ccf2012-10-17 13:24:51 +0000514}
Simon Glasse865ef32016-01-30 16:37:56 -0700515
516static const struct video_ops tegra_lcd_ops = {
517};
518
Svyatoslav Ryhel9d53a7b2024-01-23 19:16:16 +0200519static const struct tegra_dc_soc_info tegra20_dc_soc_info = {
520 .has_timer = true,
521 .has_rgb = true,
Svyatoslav Ryhel1b0789b2024-01-23 19:16:22 +0200522 .has_pgate = false,
Svyatoslav Ryhel9d53a7b2024-01-23 19:16:16 +0200523};
524
525static const struct tegra_dc_soc_info tegra30_dc_soc_info = {
526 .has_timer = false,
527 .has_rgb = true,
Svyatoslav Ryhel1b0789b2024-01-23 19:16:22 +0200528 .has_pgate = false,
Svyatoslav Ryhel9d53a7b2024-01-23 19:16:16 +0200529};
530
531static const struct tegra_dc_soc_info tegra114_dc_soc_info = {
532 .has_timer = false,
533 .has_rgb = false,
Svyatoslav Ryhel1b0789b2024-01-23 19:16:22 +0200534 .has_pgate = true,
Svyatoslav Ryhel9d53a7b2024-01-23 19:16:16 +0200535};
536
Simon Glasse865ef32016-01-30 16:37:56 -0700537static const struct udevice_id tegra_lcd_ids[] = {
Svyatoslav Ryhel9d53a7b2024-01-23 19:16:16 +0200538 {
539 .compatible = "nvidia,tegra20-dc",
540 .data = (ulong)&tegra20_dc_soc_info
541 }, {
542 .compatible = "nvidia,tegra30-dc",
543 .data = (ulong)&tegra30_dc_soc_info
544 }, {
545 .compatible = "nvidia,tegra114-dc",
546 .data = (ulong)&tegra114_dc_soc_info
547 }, {
548 /* sentinel */
549 }
Simon Glasse865ef32016-01-30 16:37:56 -0700550};
551
552U_BOOT_DRIVER(tegra_lcd) = {
Svyatoslav Ryhel9d53a7b2024-01-23 19:16:16 +0200553 .name = "tegra_lcd",
554 .id = UCLASS_VIDEO,
555 .of_match = tegra_lcd_ids,
556 .ops = &tegra_lcd_ops,
557 .bind = tegra_lcd_bind,
558 .probe = tegra_lcd_probe,
Simon Glassaad29ae2020-12-03 16:55:21 -0700559 .of_to_plat = tegra_lcd_of_to_plat,
Simon Glass8a2b47f2020-12-03 16:55:17 -0700560 .priv_auto = sizeof(struct tegra_lcd_priv),
Simon Glasse865ef32016-01-30 16:37:56 -0700561};