Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | 0be8f20 | 2012-10-17 13:24:51 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2011 The Chromium OS Authors. |
Simon Glass | 0be8f20 | 2012-10-17 13:24:51 +0000 | [diff] [blame] | 4 | */ |
Simon Glass | f20b2c0 | 2016-01-30 16:37:57 -0700 | [diff] [blame] | 5 | |
Simon Glass | 0be8f20 | 2012-10-17 13:24:51 +0000 | [diff] [blame] | 6 | #include <common.h> |
Simon Glass | 9e6866d | 2016-01-30 16:37:56 -0700 | [diff] [blame] | 7 | #include <dm.h> |
Simon Glass | 0be8f20 | 2012-10-17 13:24:51 +0000 | [diff] [blame] | 8 | #include <fdtdec.h> |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 9 | #include <log.h> |
Simon Glass | ec55077 | 2016-05-08 16:55:20 -0600 | [diff] [blame] | 10 | #include <panel.h> |
Simon Glass | e6f6f9e | 2020-05-10 11:39:58 -0600 | [diff] [blame] | 11 | #include <part.h> |
Simon Glass | 91c08af | 2016-01-30 16:38:01 -0700 | [diff] [blame] | 12 | #include <pwm.h> |
Simon Glass | 9e6866d | 2016-01-30 16:37:56 -0700 | [diff] [blame] | 13 | #include <video.h> |
Simon Glass | 90526e9 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 14 | #include <asm/cache.h> |
Simon Glass | 401d1c4 | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 15 | #include <asm/global_data.h> |
Simon Glass | 0be8f20 | 2012-10-17 13:24:51 +0000 | [diff] [blame] | 16 | #include <asm/system.h> |
| 17 | #include <asm/gpio.h> |
Simon Glass | 71cafc3 | 2016-01-30 16:37:53 -0700 | [diff] [blame] | 18 | #include <asm/io.h> |
Simon Glass | 0be8f20 | 2012-10-17 13:24:51 +0000 | [diff] [blame] | 19 | |
| 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 | |
| 27 | DECLARE_GLOBAL_DATA_PTR; |
| 28 | |
Simon Glass | ce0c474 | 2016-01-30 16:37:55 -0700 | [diff] [blame] | 29 | /* Information about the display controller */ |
| 30 | struct tegra_lcd_priv { |
Simon Glass | ce0c474 | 2016-01-30 16:37:55 -0700 | [diff] [blame] | 31 | int width; /* width in pixels */ |
| 32 | int height; /* height in pixels */ |
Simon Glass | ec55077 | 2016-05-08 16:55:20 -0600 | [diff] [blame] | 33 | enum video_log2_bpp log2_bpp; /* colour depth */ |
| 34 | struct display_timing timing; |
| 35 | struct udevice *panel; |
Simon Glass | ce0c474 | 2016-01-30 16:37:55 -0700 | [diff] [blame] | 36 | struct disp_ctlr *disp; /* Display controller to use */ |
| 37 | fdt_addr_t frame_buffer; /* Address of frame buffer */ |
| 38 | unsigned pixel_clock; /* Pixel clock in Hz */ |
Simon Glass | ce0c474 | 2016-01-30 16:37:55 -0700 | [diff] [blame] | 39 | }; |
| 40 | |
Simon Glass | 0be8f20 | 2012-10-17 13:24:51 +0000 | [diff] [blame] | 41 | enum { |
| 42 | /* Maximum LCD size we support */ |
| 43 | LCD_MAX_WIDTH = 1366, |
| 44 | LCD_MAX_HEIGHT = 768, |
Simon Glass | 9e6866d | 2016-01-30 16:37:56 -0700 | [diff] [blame] | 45 | LCD_MAX_LOG2_BPP = VIDEO_BPP16, |
Simon Glass | 0be8f20 | 2012-10-17 13:24:51 +0000 | [diff] [blame] | 46 | }; |
| 47 | |
Simon Glass | 71cafc3 | 2016-01-30 16:37:53 -0700 | [diff] [blame] | 48 | static void update_window(struct dc_ctlr *dc, struct disp_ctl_win *win) |
| 49 | { |
| 50 | unsigned h_dda, v_dda; |
| 51 | unsigned long val; |
| 52 | |
| 53 | val = readl(&dc->cmd.disp_win_header); |
| 54 | val |= WINDOW_A_SELECT; |
| 55 | writel(val, &dc->cmd.disp_win_header); |
| 56 | |
| 57 | writel(win->fmt, &dc->win.color_depth); |
| 58 | |
| 59 | clrsetbits_le32(&dc->win.byte_swap, BYTE_SWAP_MASK, |
| 60 | BYTE_SWAP_NOSWAP << BYTE_SWAP_SHIFT); |
| 61 | |
| 62 | val = win->out_x << H_POSITION_SHIFT; |
| 63 | val |= win->out_y << V_POSITION_SHIFT; |
| 64 | writel(val, &dc->win.pos); |
| 65 | |
| 66 | val = win->out_w << H_SIZE_SHIFT; |
| 67 | val |= win->out_h << V_SIZE_SHIFT; |
| 68 | writel(val, &dc->win.size); |
| 69 | |
| 70 | val = (win->w * win->bpp / 8) << H_PRESCALED_SIZE_SHIFT; |
| 71 | val |= win->h << V_PRESCALED_SIZE_SHIFT; |
| 72 | writel(val, &dc->win.prescaled_size); |
| 73 | |
| 74 | writel(0, &dc->win.h_initial_dda); |
| 75 | writel(0, &dc->win.v_initial_dda); |
| 76 | |
| 77 | h_dda = (win->w * 0x1000) / max(win->out_w - 1, 1U); |
| 78 | v_dda = (win->h * 0x1000) / max(win->out_h - 1, 1U); |
| 79 | |
| 80 | val = h_dda << H_DDA_INC_SHIFT; |
| 81 | val |= v_dda << V_DDA_INC_SHIFT; |
| 82 | writel(val, &dc->win.dda_increment); |
| 83 | |
| 84 | writel(win->stride, &dc->win.line_stride); |
| 85 | writel(0, &dc->win.buf_stride); |
| 86 | |
| 87 | val = WIN_ENABLE; |
| 88 | if (win->bpp < 24) |
| 89 | val |= COLOR_EXPAND; |
| 90 | writel(val, &dc->win.win_opt); |
| 91 | |
| 92 | writel((unsigned long)win->phys_addr, &dc->winbuf.start_addr); |
| 93 | writel(win->x, &dc->winbuf.addr_h_offset); |
| 94 | writel(win->y, &dc->winbuf.addr_v_offset); |
| 95 | |
| 96 | writel(0xff00, &dc->win.blend_nokey); |
| 97 | writel(0xff00, &dc->win.blend_1win); |
| 98 | |
| 99 | val = GENERAL_ACT_REQ | WIN_A_ACT_REQ; |
| 100 | val |= GENERAL_UPDATE | WIN_A_UPDATE; |
| 101 | writel(val, &dc->cmd.state_ctrl); |
| 102 | } |
| 103 | |
Simon Glass | 71cafc3 | 2016-01-30 16:37:53 -0700 | [diff] [blame] | 104 | static int update_display_mode(struct dc_disp_reg *disp, |
Simon Glass | 9e6866d | 2016-01-30 16:37:56 -0700 | [diff] [blame] | 105 | struct tegra_lcd_priv *priv) |
Simon Glass | 71cafc3 | 2016-01-30 16:37:53 -0700 | [diff] [blame] | 106 | { |
Simon Glass | ec55077 | 2016-05-08 16:55:20 -0600 | [diff] [blame] | 107 | struct display_timing *dt = &priv->timing; |
Simon Glass | 71cafc3 | 2016-01-30 16:37:53 -0700 | [diff] [blame] | 108 | unsigned long val; |
| 109 | unsigned long rate; |
| 110 | unsigned long div; |
| 111 | |
| 112 | writel(0x0, &disp->disp_timing_opt); |
Simon Glass | 71cafc3 | 2016-01-30 16:37:53 -0700 | [diff] [blame] | 113 | |
Simon Glass | ec55077 | 2016-05-08 16:55:20 -0600 | [diff] [blame] | 114 | writel(1 | 1 << 16, &disp->ref_to_sync); |
| 115 | writel(dt->hsync_len.typ | dt->vsync_len.typ << 16, &disp->sync_width); |
| 116 | writel(dt->hback_porch.typ | dt->vback_porch.typ << 16, |
| 117 | &disp->back_porch); |
| 118 | writel((dt->hfront_porch.typ - 1) | (dt->vfront_porch.typ - 1) << 16, |
| 119 | &disp->front_porch); |
| 120 | writel(dt->hactive.typ | (dt->vactive.typ << 16), &disp->disp_active); |
Simon Glass | 71cafc3 | 2016-01-30 16:37:53 -0700 | [diff] [blame] | 121 | |
| 122 | val = DE_SELECT_ACTIVE << DE_SELECT_SHIFT; |
| 123 | val |= DE_CONTROL_NORMAL << DE_CONTROL_SHIFT; |
| 124 | writel(val, &disp->data_enable_opt); |
| 125 | |
| 126 | val = DATA_FORMAT_DF1P1C << DATA_FORMAT_SHIFT; |
| 127 | val |= DATA_ALIGNMENT_MSB << DATA_ALIGNMENT_SHIFT; |
| 128 | val |= DATA_ORDER_RED_BLUE << DATA_ORDER_SHIFT; |
| 129 | writel(val, &disp->disp_interface_ctrl); |
| 130 | |
| 131 | /* |
| 132 | * The pixel clock divider is in 7.1 format (where the bottom bit |
| 133 | * represents 0.5). Here we calculate the divider needed to get from |
| 134 | * the display clock (typically 600MHz) to the pixel clock. We round |
| 135 | * up or down as requried. |
| 136 | */ |
| 137 | rate = clock_get_periph_rate(PERIPH_ID_DISP1, CLOCK_ID_CGENERAL); |
Simon Glass | 9e6866d | 2016-01-30 16:37:56 -0700 | [diff] [blame] | 138 | div = ((rate * 2 + priv->pixel_clock / 2) / priv->pixel_clock) - 2; |
Simon Glass | 71cafc3 | 2016-01-30 16:37:53 -0700 | [diff] [blame] | 139 | debug("Display clock %lu, divider %lu\n", rate, div); |
| 140 | |
| 141 | writel(0x00010001, &disp->shift_clk_opt); |
| 142 | |
| 143 | val = PIXEL_CLK_DIVIDER_PCD1 << PIXEL_CLK_DIVIDER_SHIFT; |
| 144 | val |= div << SHIFT_CLK_DIVIDER_SHIFT; |
| 145 | writel(val, &disp->disp_clk_ctrl); |
| 146 | |
| 147 | return 0; |
| 148 | } |
| 149 | |
| 150 | /* Start up the display and turn on power to PWMs */ |
| 151 | static void basic_init(struct dc_cmd_reg *cmd) |
| 152 | { |
| 153 | u32 val; |
| 154 | |
| 155 | writel(0x00000100, &cmd->gen_incr_syncpt_ctrl); |
| 156 | writel(0x0000011a, &cmd->cont_syncpt_vsync); |
| 157 | writel(0x00000000, &cmd->int_type); |
| 158 | writel(0x00000000, &cmd->int_polarity); |
| 159 | writel(0x00000000, &cmd->int_mask); |
| 160 | writel(0x00000000, &cmd->int_enb); |
| 161 | |
| 162 | val = PW0_ENABLE | PW1_ENABLE | PW2_ENABLE; |
| 163 | val |= PW3_ENABLE | PW4_ENABLE | PM0_ENABLE; |
| 164 | val |= PM1_ENABLE; |
| 165 | writel(val, &cmd->disp_pow_ctrl); |
| 166 | |
| 167 | val = readl(&cmd->disp_cmd); |
| 168 | val |= CTRL_MODE_C_DISPLAY << CTRL_MODE_SHIFT; |
| 169 | writel(val, &cmd->disp_cmd); |
| 170 | } |
| 171 | |
| 172 | static void basic_init_timer(struct dc_disp_reg *disp) |
| 173 | { |
| 174 | writel(0x00000020, &disp->mem_high_pri); |
| 175 | writel(0x00000001, &disp->mem_high_pri_timer); |
| 176 | } |
| 177 | |
| 178 | static const u32 rgb_enb_tab[PIN_REG_COUNT] = { |
| 179 | 0x00000000, |
| 180 | 0x00000000, |
| 181 | 0x00000000, |
| 182 | 0x00000000, |
| 183 | }; |
| 184 | |
| 185 | static const u32 rgb_polarity_tab[PIN_REG_COUNT] = { |
| 186 | 0x00000000, |
| 187 | 0x01000000, |
| 188 | 0x00000000, |
| 189 | 0x00000000, |
| 190 | }; |
| 191 | |
| 192 | static const u32 rgb_data_tab[PIN_REG_COUNT] = { |
| 193 | 0x00000000, |
| 194 | 0x00000000, |
| 195 | 0x00000000, |
| 196 | 0x00000000, |
| 197 | }; |
| 198 | |
| 199 | static const u32 rgb_sel_tab[PIN_OUTPUT_SEL_COUNT] = { |
| 200 | 0x00000000, |
| 201 | 0x00000000, |
| 202 | 0x00000000, |
| 203 | 0x00000000, |
| 204 | 0x00210222, |
| 205 | 0x00002200, |
| 206 | 0x00020000, |
| 207 | }; |
| 208 | |
| 209 | static void rgb_enable(struct dc_com_reg *com) |
| 210 | { |
| 211 | int i; |
| 212 | |
| 213 | for (i = 0; i < PIN_REG_COUNT; i++) { |
| 214 | writel(rgb_enb_tab[i], &com->pin_output_enb[i]); |
| 215 | writel(rgb_polarity_tab[i], &com->pin_output_polarity[i]); |
| 216 | writel(rgb_data_tab[i], &com->pin_output_data[i]); |
| 217 | } |
| 218 | |
| 219 | for (i = 0; i < PIN_OUTPUT_SEL_COUNT; i++) |
| 220 | writel(rgb_sel_tab[i], &com->pin_output_sel[i]); |
| 221 | } |
| 222 | |
| 223 | static int setup_window(struct disp_ctl_win *win, |
Simon Glass | 9e6866d | 2016-01-30 16:37:56 -0700 | [diff] [blame] | 224 | struct tegra_lcd_priv *priv) |
Simon Glass | 71cafc3 | 2016-01-30 16:37:53 -0700 | [diff] [blame] | 225 | { |
| 226 | win->x = 0; |
| 227 | win->y = 0; |
Simon Glass | 9e6866d | 2016-01-30 16:37:56 -0700 | [diff] [blame] | 228 | win->w = priv->width; |
| 229 | win->h = priv->height; |
Simon Glass | 71cafc3 | 2016-01-30 16:37:53 -0700 | [diff] [blame] | 230 | win->out_x = 0; |
| 231 | win->out_y = 0; |
Simon Glass | 9e6866d | 2016-01-30 16:37:56 -0700 | [diff] [blame] | 232 | win->out_w = priv->width; |
| 233 | win->out_h = priv->height; |
| 234 | win->phys_addr = priv->frame_buffer; |
| 235 | win->stride = priv->width * (1 << priv->log2_bpp) / 8; |
| 236 | debug("%s: depth = %d\n", __func__, priv->log2_bpp); |
| 237 | switch (priv->log2_bpp) { |
Simon Glass | ec55077 | 2016-05-08 16:55:20 -0600 | [diff] [blame] | 238 | case VIDEO_BPP32: |
Simon Glass | 71cafc3 | 2016-01-30 16:37:53 -0700 | [diff] [blame] | 239 | win->fmt = COLOR_DEPTH_R8G8B8A8; |
| 240 | win->bpp = 32; |
| 241 | break; |
Simon Glass | ec55077 | 2016-05-08 16:55:20 -0600 | [diff] [blame] | 242 | case VIDEO_BPP16: |
Simon Glass | 71cafc3 | 2016-01-30 16:37:53 -0700 | [diff] [blame] | 243 | win->fmt = COLOR_DEPTH_B5G6R5; |
| 244 | win->bpp = 16; |
| 245 | break; |
| 246 | |
| 247 | default: |
| 248 | debug("Unsupported LCD bit depth"); |
| 249 | return -1; |
| 250 | } |
| 251 | |
| 252 | return 0; |
| 253 | } |
| 254 | |
Simon Glass | 71cafc3 | 2016-01-30 16:37:53 -0700 | [diff] [blame] | 255 | /** |
Simon Glass | 71cafc3 | 2016-01-30 16:37:53 -0700 | [diff] [blame] | 256 | * Register a new display based on device tree configuration. |
| 257 | * |
Robert P. J. Day | 62a3b7d | 2016-07-15 13:44:45 -0400 | [diff] [blame] | 258 | * The frame buffer can be positioned by U-Boot or overridden by the fdt. |
Simon Glass | 71cafc3 | 2016-01-30 16:37:53 -0700 | [diff] [blame] | 259 | * You should pass in the U-Boot address here, and check the contents of |
Simon Glass | ce0c474 | 2016-01-30 16:37:55 -0700 | [diff] [blame] | 260 | * struct tegra_lcd_priv to see what was actually chosen. |
Simon Glass | 71cafc3 | 2016-01-30 16:37:53 -0700 | [diff] [blame] | 261 | * |
| 262 | * @param blob Device tree blob |
Simon Glass | 9e6866d | 2016-01-30 16:37:56 -0700 | [diff] [blame] | 263 | * @param priv Driver's private data |
Simon Glass | 71cafc3 | 2016-01-30 16:37:53 -0700 | [diff] [blame] | 264 | * @param default_lcd_base Default address of LCD frame buffer |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 265 | * Return: 0 if ok, -1 on error (unsupported bits per pixel) |
Simon Glass | 71cafc3 | 2016-01-30 16:37:53 -0700 | [diff] [blame] | 266 | */ |
Simon Glass | 9e6866d | 2016-01-30 16:37:56 -0700 | [diff] [blame] | 267 | static int tegra_display_probe(const void *blob, struct tegra_lcd_priv *priv, |
| 268 | void *default_lcd_base) |
Simon Glass | 71cafc3 | 2016-01-30 16:37:53 -0700 | [diff] [blame] | 269 | { |
| 270 | struct disp_ctl_win window; |
| 271 | struct dc_ctlr *dc; |
| 272 | |
Simon Glass | 9e6866d | 2016-01-30 16:37:56 -0700 | [diff] [blame] | 273 | priv->frame_buffer = (u32)default_lcd_base; |
Simon Glass | 71cafc3 | 2016-01-30 16:37:53 -0700 | [diff] [blame] | 274 | |
Simon Glass | 9e6866d | 2016-01-30 16:37:56 -0700 | [diff] [blame] | 275 | dc = (struct dc_ctlr *)priv->disp; |
Simon Glass | 71cafc3 | 2016-01-30 16:37:53 -0700 | [diff] [blame] | 276 | |
| 277 | /* |
| 278 | * A header file for clock constants was NAKed upstream. |
| 279 | * TODO: Put this into the FDT and fdt_lcd struct when we have clock |
| 280 | * support there |
| 281 | */ |
| 282 | clock_start_periph_pll(PERIPH_ID_HOST1X, CLOCK_ID_PERIPH, |
| 283 | 144 * 1000000); |
| 284 | clock_start_periph_pll(PERIPH_ID_DISP1, CLOCK_ID_CGENERAL, |
| 285 | 600 * 1000000); |
| 286 | basic_init(&dc->cmd); |
| 287 | basic_init_timer(&dc->disp); |
| 288 | rgb_enable(&dc->com); |
| 289 | |
Simon Glass | 9e6866d | 2016-01-30 16:37:56 -0700 | [diff] [blame] | 290 | if (priv->pixel_clock) |
| 291 | update_display_mode(&dc->disp, priv); |
Simon Glass | 71cafc3 | 2016-01-30 16:37:53 -0700 | [diff] [blame] | 292 | |
Simon Glass | 9e6866d | 2016-01-30 16:37:56 -0700 | [diff] [blame] | 293 | if (setup_window(&window, priv)) |
Simon Glass | 71cafc3 | 2016-01-30 16:37:53 -0700 | [diff] [blame] | 294 | return -1; |
| 295 | |
| 296 | update_window(dc, &window); |
| 297 | |
| 298 | return 0; |
| 299 | } |
| 300 | |
Simon Glass | 9e6866d | 2016-01-30 16:37:56 -0700 | [diff] [blame] | 301 | static int tegra_lcd_probe(struct udevice *dev) |
Simon Glass | 0be8f20 | 2012-10-17 13:24:51 +0000 | [diff] [blame] | 302 | { |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 303 | struct video_uc_plat *plat = dev_get_uclass_plat(dev); |
Simon Glass | 9e6866d | 2016-01-30 16:37:56 -0700 | [diff] [blame] | 304 | struct video_priv *uc_priv = dev_get_uclass_priv(dev); |
| 305 | struct tegra_lcd_priv *priv = dev_get_priv(dev); |
| 306 | const void *blob = gd->fdt_blob; |
Simon Glass | ec55077 | 2016-05-08 16:55:20 -0600 | [diff] [blame] | 307 | int ret; |
Simon Glass | 9e6866d | 2016-01-30 16:37:56 -0700 | [diff] [blame] | 308 | |
Simon Glass | 9e6866d | 2016-01-30 16:37:56 -0700 | [diff] [blame] | 309 | /* Initialize the Tegra display controller */ |
Simon Glass | ec55077 | 2016-05-08 16:55:20 -0600 | [diff] [blame] | 310 | funcmux_select(PERIPH_ID_DISP1, FUNCMUX_DEFAULT); |
Simon Glass | 9e6866d | 2016-01-30 16:37:56 -0700 | [diff] [blame] | 311 | if (tegra_display_probe(blob, priv, (void *)plat->base)) { |
| 312 | printf("%s: Failed to probe display driver\n", __func__); |
| 313 | return -1; |
| 314 | } |
| 315 | |
Simon Glass | ec55077 | 2016-05-08 16:55:20 -0600 | [diff] [blame] | 316 | pinmux_set_func(PMUX_PINGRP_GPU, PMUX_FUNC_PWM); |
| 317 | pinmux_tristate_disable(PMUX_PINGRP_GPU); |
| 318 | |
| 319 | ret = panel_enable_backlight(priv->panel); |
| 320 | if (ret) { |
| 321 | debug("%s: Cannot enable backlight, ret=%d\n", __func__, ret); |
| 322 | return ret; |
| 323 | } |
Simon Glass | 9e6866d | 2016-01-30 16:37:56 -0700 | [diff] [blame] | 324 | |
Simon Glass | 8d37483 | 2016-05-08 16:55:21 -0600 | [diff] [blame] | 325 | mmu_set_region_dcache_behaviour(priv->frame_buffer, plat->size, |
| 326 | DCACHE_WRITETHROUGH); |
Simon Glass | 9e6866d | 2016-01-30 16:37:56 -0700 | [diff] [blame] | 327 | |
| 328 | /* Enable flushing after LCD writes if requested */ |
Simon Glass | 8d37483 | 2016-05-08 16:55:21 -0600 | [diff] [blame] | 329 | video_set_flush_dcache(dev, true); |
Simon Glass | 9e6866d | 2016-01-30 16:37:56 -0700 | [diff] [blame] | 330 | |
| 331 | uc_priv->xsize = priv->width; |
| 332 | uc_priv->ysize = priv->height; |
| 333 | uc_priv->bpix = priv->log2_bpp; |
| 334 | debug("LCD frame buffer at %pa, size %x\n", &priv->frame_buffer, |
| 335 | plat->size); |
| 336 | |
| 337 | return 0; |
Simon Glass | 0be8f20 | 2012-10-17 13:24:51 +0000 | [diff] [blame] | 338 | } |
Simon Glass | 9e6866d | 2016-01-30 16:37:56 -0700 | [diff] [blame] | 339 | |
Simon Glass | d1998a9 | 2020-12-03 16:55:21 -0700 | [diff] [blame] | 340 | static int tegra_lcd_of_to_plat(struct udevice *dev) |
Simon Glass | f5acf91 | 2016-01-30 16:37:59 -0700 | [diff] [blame] | 341 | { |
| 342 | struct tegra_lcd_priv *priv = dev_get_priv(dev); |
| 343 | const void *blob = gd->fdt_blob; |
Simon Glass | ec55077 | 2016-05-08 16:55:20 -0600 | [diff] [blame] | 344 | struct display_timing *timing; |
Simon Glass | e160f7d | 2017-01-17 16:52:55 -0700 | [diff] [blame] | 345 | int node = dev_of_offset(dev); |
Simon Glass | f5acf91 | 2016-01-30 16:37:59 -0700 | [diff] [blame] | 346 | int panel_node; |
| 347 | int rgb; |
Simon Glass | 91c08af | 2016-01-30 16:38:01 -0700 | [diff] [blame] | 348 | int ret; |
Simon Glass | f5acf91 | 2016-01-30 16:37:59 -0700 | [diff] [blame] | 349 | |
Masahiro Yamada | 8613c8d | 2020-07-17 14:36:46 +0900 | [diff] [blame] | 350 | priv->disp = dev_read_addr_ptr(dev); |
Simon Glass | f5acf91 | 2016-01-30 16:37:59 -0700 | [diff] [blame] | 351 | if (!priv->disp) { |
| 352 | debug("%s: No display controller address\n", __func__); |
| 353 | return -EINVAL; |
| 354 | } |
| 355 | |
| 356 | rgb = fdt_subnode_offset(blob, node, "rgb"); |
Simon Glass | ec55077 | 2016-05-08 16:55:20 -0600 | [diff] [blame] | 357 | if (rgb < 0) { |
| 358 | debug("%s: Cannot find rgb subnode for '%s' (ret=%d)\n", |
| 359 | __func__, dev->name, rgb); |
| 360 | return -EINVAL; |
| 361 | } |
Simon Glass | f5acf91 | 2016-01-30 16:37:59 -0700 | [diff] [blame] | 362 | |
Simon Glass | ec55077 | 2016-05-08 16:55:20 -0600 | [diff] [blame] | 363 | ret = fdtdec_decode_display_timing(blob, rgb, 0, &priv->timing); |
| 364 | if (ret) { |
| 365 | debug("%s: Cannot read display timing for '%s' (ret=%d)\n", |
| 366 | __func__, dev->name, ret); |
| 367 | return -EINVAL; |
| 368 | } |
| 369 | timing = &priv->timing; |
| 370 | priv->width = timing->hactive.typ; |
| 371 | priv->height = timing->vactive.typ; |
| 372 | priv->pixel_clock = timing->pixelclock.typ; |
| 373 | priv->log2_bpp = VIDEO_BPP16; |
| 374 | |
| 375 | /* |
| 376 | * Sadly the panel phandle is in an rgb subnode so we cannot use |
| 377 | * uclass_get_device_by_phandle(). |
| 378 | */ |
Simon Glass | f5acf91 | 2016-01-30 16:37:59 -0700 | [diff] [blame] | 379 | panel_node = fdtdec_lookup_phandle(blob, rgb, "nvidia,panel"); |
| 380 | if (panel_node < 0) { |
| 381 | debug("%s: Cannot find panel information\n", __func__); |
| 382 | return -EINVAL; |
| 383 | } |
Simon Glass | ec55077 | 2016-05-08 16:55:20 -0600 | [diff] [blame] | 384 | ret = uclass_get_device_by_of_offset(UCLASS_PANEL, panel_node, |
| 385 | &priv->panel); |
Simon Glass | 91c08af | 2016-01-30 16:38:01 -0700 | [diff] [blame] | 386 | if (ret) { |
Simon Glass | ec55077 | 2016-05-08 16:55:20 -0600 | [diff] [blame] | 387 | debug("%s: Cannot find panel for '%s' (ret=%d)\n", __func__, |
| 388 | dev->name, ret); |
| 389 | return ret; |
Simon Glass | 91c08af | 2016-01-30 16:38:01 -0700 | [diff] [blame] | 390 | } |
Simon Glass | f5acf91 | 2016-01-30 16:37:59 -0700 | [diff] [blame] | 391 | |
| 392 | return 0; |
| 393 | } |
| 394 | |
Simon Glass | 9e6866d | 2016-01-30 16:37:56 -0700 | [diff] [blame] | 395 | static int tegra_lcd_bind(struct udevice *dev) |
| 396 | { |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 397 | struct video_uc_plat *plat = dev_get_uclass_plat(dev); |
Stephen Warren | 54693cb | 2016-04-19 16:19:30 -0600 | [diff] [blame] | 398 | const void *blob = gd->fdt_blob; |
Simon Glass | e160f7d | 2017-01-17 16:52:55 -0700 | [diff] [blame] | 399 | int node = dev_of_offset(dev); |
Stephen Warren | 54693cb | 2016-04-19 16:19:30 -0600 | [diff] [blame] | 400 | int rgb; |
| 401 | |
| 402 | rgb = fdt_subnode_offset(blob, node, "rgb"); |
| 403 | if ((rgb < 0) || !fdtdec_get_is_enabled(blob, rgb)) |
| 404 | return -ENODEV; |
Simon Glass | 9e6866d | 2016-01-30 16:37:56 -0700 | [diff] [blame] | 405 | |
| 406 | plat->size = LCD_MAX_WIDTH * LCD_MAX_HEIGHT * |
| 407 | (1 << LCD_MAX_LOG2_BPP) / 8; |
| 408 | |
| 409 | return 0; |
| 410 | } |
| 411 | |
| 412 | static const struct video_ops tegra_lcd_ops = { |
| 413 | }; |
| 414 | |
| 415 | static const struct udevice_id tegra_lcd_ids[] = { |
| 416 | { .compatible = "nvidia,tegra20-dc" }, |
| 417 | { } |
| 418 | }; |
| 419 | |
| 420 | U_BOOT_DRIVER(tegra_lcd) = { |
| 421 | .name = "tegra_lcd", |
| 422 | .id = UCLASS_VIDEO, |
| 423 | .of_match = tegra_lcd_ids, |
| 424 | .ops = &tegra_lcd_ops, |
| 425 | .bind = tegra_lcd_bind, |
| 426 | .probe = tegra_lcd_probe, |
Simon Glass | d1998a9 | 2020-12-03 16:55:21 -0700 | [diff] [blame] | 427 | .of_to_plat = tegra_lcd_of_to_plat, |
Simon Glass | 41575d8 | 2020-12-03 16:55:17 -0700 | [diff] [blame] | 428 | .priv_auto = sizeof(struct tegra_lcd_priv), |
Simon Glass | 9e6866d | 2016-01-30 16:37:56 -0700 | [diff] [blame] | 429 | }; |