blob: 2f1f0df20eb194e557697a9d70761cfda9f7047f [file] [log] [blame]
Simon Glasse7e88232015-04-14 21:03:42 -06001/*
2 * Copyright 2014 Google Inc.
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 *
6 * Extracted from Chromium coreboot commit 3f59b13d
7 */
8
9#include <common.h>
10#include <dm.h>
11#include <edid.h>
12#include <errno.h>
Simon Glass2dcf1432016-01-21 19:45:00 -070013#include <display.h>
Simon Glasse7e88232015-04-14 21:03:42 -060014#include <edid.h>
15#include <fdtdec.h>
16#include <lcd.h>
Simon Glassd7659212016-01-30 16:37:50 -070017#include <video.h>
Simon Glasse7e88232015-04-14 21:03:42 -060018#include <asm/gpio.h>
19#include <asm/io.h>
20#include <asm/arch/clock.h>
21#include <asm/arch/pwm.h>
22#include <asm/arch-tegra/dc.h>
Simon Glassd7659212016-01-30 16:37:50 -070023#include <dm/uclass-internal.h>
Simon Glasse7e88232015-04-14 21:03:42 -060024#include "displayport.h"
25
26DECLARE_GLOBAL_DATA_PTR;
27
28/* return in 1000ths of a Hertz */
29static int tegra_dc_calc_refresh(const struct display_timing *timing)
30{
31 int h_total, v_total, refresh;
32 int pclk = timing->pixelclock.typ;
33
34 h_total = timing->hactive.typ + timing->hfront_porch.typ +
35 timing->hback_porch.typ + timing->hsync_len.typ;
36 v_total = timing->vactive.typ + timing->vfront_porch.typ +
37 timing->vback_porch.typ + timing->vsync_len.typ;
38 if (!pclk || !h_total || !v_total)
39 return 0;
40 refresh = pclk / h_total;
41 refresh *= 1000;
42 refresh /= v_total;
43
44 return refresh;
45}
46
47static void print_mode(const struct display_timing *timing)
48{
49 int refresh = tegra_dc_calc_refresh(timing);
50
51 debug("MODE:%dx%d@%d.%03uHz pclk=%d\n",
52 timing->hactive.typ, timing->vactive.typ, refresh / 1000,
53 refresh % 1000, timing->pixelclock.typ);
54}
55
56static int update_display_mode(struct dc_ctlr *disp_ctrl,
57 const struct display_timing *timing,
58 int href_to_sync, int vref_to_sync)
59{
60 print_mode(timing);
61
62 writel(0x1, &disp_ctrl->disp.disp_timing_opt);
63
64 writel(vref_to_sync << 16 | href_to_sync,
65 &disp_ctrl->disp.ref_to_sync);
66
67 writel(timing->vsync_len.typ << 16 | timing->hsync_len.typ,
68 &disp_ctrl->disp.sync_width);
69
70 writel(((timing->vback_porch.typ - vref_to_sync) << 16) |
71 timing->hback_porch.typ, &disp_ctrl->disp.back_porch);
72
73 writel(((timing->vfront_porch.typ + vref_to_sync) << 16) |
74 timing->hfront_porch.typ, &disp_ctrl->disp.front_porch);
75
76 writel(timing->hactive.typ | (timing->vactive.typ << 16),
77 &disp_ctrl->disp.disp_active);
78
79 /**
80 * We want to use PLLD_out0, which is PLLD / 2:
81 * PixelClock = (PLLD / 2) / ShiftClockDiv / PixelClockDiv.
82 *
83 * Currently most panels work inside clock range 50MHz~100MHz, and PLLD
84 * has some requirements to have VCO in range 500MHz~1000MHz (see
85 * clock.c for more detail). To simplify calculation, we set
86 * PixelClockDiv to 1 and ShiftClockDiv to 1. In future these values
87 * may be calculated by clock_display, to allow wider frequency range.
88 *
89 * Note ShiftClockDiv is a 7.1 format value.
90 */
91 const u32 shift_clock_div = 1;
92 writel((PIXEL_CLK_DIVIDER_PCD1 << PIXEL_CLK_DIVIDER_SHIFT) |
93 ((shift_clock_div - 1) * 2) << SHIFT_CLK_DIVIDER_SHIFT,
94 &disp_ctrl->disp.disp_clk_ctrl);
95 debug("%s: PixelClock=%u, ShiftClockDiv=%u\n", __func__,
96 timing->pixelclock.typ, shift_clock_div);
97 return 0;
98}
99
Simon Glassdedc44b2015-04-14 21:03:44 -0600100static u32 tegra_dc_poll_register(void *reg,
101 u32 mask, u32 exp_val, u32 poll_interval_us, u32 timeout_us)
102{
103 u32 temp = timeout_us;
104 u32 reg_val = 0;
105
106 do {
107 udelay(poll_interval_us);
108 reg_val = readl(reg);
109 if (timeout_us > poll_interval_us)
110 timeout_us -= poll_interval_us;
111 else
112 break;
113 } while ((reg_val & mask) != exp_val);
114
115 if ((reg_val & mask) == exp_val)
116 return 0; /* success */
117
118 return temp;
119}
120
121int tegra_dc_sor_general_act(struct dc_ctlr *disp_ctrl)
122{
123 writel(GENERAL_ACT_REQ, &disp_ctrl->cmd.state_ctrl);
124
125 if (tegra_dc_poll_register(&disp_ctrl->cmd.state_ctrl,
126 GENERAL_ACT_REQ, 0, 100,
127 DC_POLL_TIMEOUT_MS * 1000)) {
128 debug("dc timeout waiting for DC to stop\n");
129 return -ETIMEDOUT;
130 }
131
132 return 0;
133}
134
135static struct display_timing min_mode = {
136 .hsync_len = { .typ = 1 },
137 .vsync_len = { .typ = 1 },
138 .hback_porch = { .typ = 20 },
139 .vback_porch = { .typ = 0 },
140 .hactive = { .typ = 16 },
141 .vactive = { .typ = 16 },
142 .hfront_porch = { .typ = 1 },
143 .vfront_porch = { .typ = 2 },
144};
145
146/* Disable windows and set minimum raster timings */
147void tegra_dc_sor_disable_win_short_raster(struct dc_ctlr *disp_ctrl,
148 int *dc_reg_ctx)
149{
150 const int href_to_sync = 0, vref_to_sync = 1;
151 int selected_windows, i;
152
153 selected_windows = readl(&disp_ctrl->cmd.disp_win_header);
154
155 /* Store and clear window options */
156 for (i = 0; i < DC_N_WINDOWS; ++i) {
157 writel(WINDOW_A_SELECT << i, &disp_ctrl->cmd.disp_win_header);
158 dc_reg_ctx[i] = readl(&disp_ctrl->win.win_opt);
159 writel(0, &disp_ctrl->win.win_opt);
160 writel(WIN_A_ACT_REQ << i, &disp_ctrl->cmd.state_ctrl);
161 }
162
163 writel(selected_windows, &disp_ctrl->cmd.disp_win_header);
164
165 /* Store current raster timings and set minimum timings */
166 dc_reg_ctx[i++] = readl(&disp_ctrl->disp.ref_to_sync);
167 writel(href_to_sync | (vref_to_sync << 16),
168 &disp_ctrl->disp.ref_to_sync);
169
170 dc_reg_ctx[i++] = readl(&disp_ctrl->disp.sync_width);
171 writel(min_mode.hsync_len.typ | (min_mode.vsync_len.typ << 16),
172 &disp_ctrl->disp.sync_width);
173
174 dc_reg_ctx[i++] = readl(&disp_ctrl->disp.back_porch);
175 writel(min_mode.hback_porch.typ | (min_mode.vback_porch.typ << 16),
176 &disp_ctrl->disp.back_porch);
177
178 dc_reg_ctx[i++] = readl(&disp_ctrl->disp.front_porch);
179 writel(min_mode.hfront_porch.typ | (min_mode.vfront_porch.typ << 16),
180 &disp_ctrl->disp.front_porch);
181
182 dc_reg_ctx[i++] = readl(&disp_ctrl->disp.disp_active);
183 writel(min_mode.hactive.typ | (min_mode.vactive.typ << 16),
184 &disp_ctrl->disp.disp_active);
185
186 writel(GENERAL_ACT_REQ, &disp_ctrl->cmd.state_ctrl);
187}
188
189/* Restore previous windows status and raster timings */
190void tegra_dc_sor_restore_win_and_raster(struct dc_ctlr *disp_ctrl,
191 int *dc_reg_ctx)
192{
193 int selected_windows, i;
194
195 selected_windows = readl(&disp_ctrl->cmd.disp_win_header);
196
197 for (i = 0; i < DC_N_WINDOWS; ++i) {
198 writel(WINDOW_A_SELECT << i, &disp_ctrl->cmd.disp_win_header);
199 writel(dc_reg_ctx[i], &disp_ctrl->win.win_opt);
200 writel(WIN_A_ACT_REQ << i, &disp_ctrl->cmd.state_ctrl);
201 }
202
203 writel(selected_windows, &disp_ctrl->cmd.disp_win_header);
204
205 writel(dc_reg_ctx[i++], &disp_ctrl->disp.ref_to_sync);
206 writel(dc_reg_ctx[i++], &disp_ctrl->disp.sync_width);
207 writel(dc_reg_ctx[i++], &disp_ctrl->disp.back_porch);
208 writel(dc_reg_ctx[i++], &disp_ctrl->disp.front_porch);
209 writel(dc_reg_ctx[i++], &disp_ctrl->disp.disp_active);
210
211 writel(GENERAL_UPDATE, &disp_ctrl->cmd.state_ctrl);
212}
213
Simon Glasse7e88232015-04-14 21:03:42 -0600214static int tegra_depth_for_bpp(int bpp)
215{
216 switch (bpp) {
217 case 32:
218 return COLOR_DEPTH_R8G8B8A8;
219 case 16:
220 return COLOR_DEPTH_B5G6R5;
221 default:
222 debug("Unsupported LCD bit depth");
223 return -1;
224 }
225}
226
227static int update_window(struct dc_ctlr *disp_ctrl,
228 u32 frame_buffer, int fb_bits_per_pixel,
229 const struct display_timing *timing)
230{
231 const u32 colour_white = 0xffffff;
232 int colour_depth;
233 u32 val;
234
235 writel(WINDOW_A_SELECT, &disp_ctrl->cmd.disp_win_header);
236
237 writel(((timing->vactive.typ << 16) | timing->hactive.typ),
238 &disp_ctrl->win.size);
239 writel(((timing->vactive.typ << 16) |
240 (timing->hactive.typ * fb_bits_per_pixel / 8)),
241 &disp_ctrl->win.prescaled_size);
242 writel(((timing->hactive.typ * fb_bits_per_pixel / 8 + 31) /
243 32 * 32), &disp_ctrl->win.line_stride);
244
245 colour_depth = tegra_depth_for_bpp(fb_bits_per_pixel);
246 if (colour_depth == -1)
247 return -EINVAL;
248
249 writel(colour_depth, &disp_ctrl->win.color_depth);
250
251 writel(frame_buffer, &disp_ctrl->winbuf.start_addr);
252 writel(0x1000 << V_DDA_INC_SHIFT | 0x1000 << H_DDA_INC_SHIFT,
253 &disp_ctrl->win.dda_increment);
254
255 writel(colour_white, &disp_ctrl->disp.blend_background_color);
256 writel(CTRL_MODE_C_DISPLAY << CTRL_MODE_SHIFT,
257 &disp_ctrl->cmd.disp_cmd);
258
259 writel(WRITE_MUX_ACTIVE, &disp_ctrl->cmd.state_access);
260
261 val = GENERAL_ACT_REQ | WIN_A_ACT_REQ;
262 val |= GENERAL_UPDATE | WIN_A_UPDATE;
263 writel(val, &disp_ctrl->cmd.state_ctrl);
264
265 /* Enable win_a */
266 val = readl(&disp_ctrl->win.win_opt);
267 writel(val | WIN_ENABLE, &disp_ctrl->win.win_opt);
268
269 return 0;
270}
271
272static int tegra_dc_init(struct dc_ctlr *disp_ctrl)
273{
274 /* do not accept interrupts during initialization */
275 writel(0x00000000, &disp_ctrl->cmd.int_mask);
276 writel(WRITE_MUX_ASSEMBLY | READ_MUX_ASSEMBLY,
277 &disp_ctrl->cmd.state_access);
278 writel(WINDOW_A_SELECT, &disp_ctrl->cmd.disp_win_header);
279 writel(0x00000000, &disp_ctrl->win.win_opt);
280 writel(0x00000000, &disp_ctrl->win.byte_swap);
281 writel(0x00000000, &disp_ctrl->win.buffer_ctrl);
282
283 writel(0x00000000, &disp_ctrl->win.pos);
284 writel(0x00000000, &disp_ctrl->win.h_initial_dda);
285 writel(0x00000000, &disp_ctrl->win.v_initial_dda);
286 writel(0x00000000, &disp_ctrl->win.dda_increment);
287 writel(0x00000000, &disp_ctrl->win.dv_ctrl);
288
289 writel(0x01000000, &disp_ctrl->win.blend_layer_ctrl);
290 writel(0x00000000, &disp_ctrl->win.blend_match_select);
291 writel(0x00000000, &disp_ctrl->win.blend_nomatch_select);
292 writel(0x00000000, &disp_ctrl->win.blend_alpha_1bit);
293
294 writel(0x00000000, &disp_ctrl->winbuf.start_addr_hi);
295 writel(0x00000000, &disp_ctrl->winbuf.addr_h_offset);
296 writel(0x00000000, &disp_ctrl->winbuf.addr_v_offset);
297
298 writel(0x00000000, &disp_ctrl->com.crc_checksum);
299 writel(0x00000000, &disp_ctrl->com.pin_output_enb[0]);
300 writel(0x00000000, &disp_ctrl->com.pin_output_enb[1]);
301 writel(0x00000000, &disp_ctrl->com.pin_output_enb[2]);
302 writel(0x00000000, &disp_ctrl->com.pin_output_enb[3]);
303 writel(0x00000000, &disp_ctrl->disp.disp_signal_opt0);
304
305 return 0;
306}
307
308static void dump_config(int panel_bpp, struct display_timing *timing)
309{
310 printf("timing->hactive.typ = %d\n", timing->hactive.typ);
311 printf("timing->vactive.typ = %d\n", timing->vactive.typ);
312 printf("timing->pixelclock.typ = %d\n", timing->pixelclock.typ);
313
314 printf("timing->hfront_porch.typ = %d\n", timing->hfront_porch.typ);
315 printf("timing->hsync_len.typ = %d\n", timing->hsync_len.typ);
316 printf("timing->hback_porch.typ = %d\n", timing->hback_porch.typ);
317
318 printf("timing->vfront_porch.typ %d\n", timing->vfront_porch.typ);
319 printf("timing->vsync_len.typ = %d\n", timing->vsync_len.typ);
320 printf("timing->vback_porch.typ = %d\n", timing->vback_porch.typ);
321
322 printf("panel_bits_per_pixel = %d\n", panel_bpp);
323}
324
325static int display_update_config_from_edid(struct udevice *dp_dev,
326 int *panel_bppp,
327 struct display_timing *timing)
328{
Simon Glass2dcf1432016-01-21 19:45:00 -0700329 int ret;
Simon Glasse7e88232015-04-14 21:03:42 -0600330
Simon Glass2dcf1432016-01-21 19:45:00 -0700331 ret = display_read_timing(dp_dev, timing);
Simon Glasse7e88232015-04-14 21:03:42 -0600332 if (ret)
333 return ret;
334
Simon Glasse7e88232015-04-14 21:03:42 -0600335 return 0;
336}
337
Simon Glassd7659212016-01-30 16:37:50 -0700338static int display_init(struct udevice *dev, void *lcdbase,
339 int fb_bits_per_pixel, struct display_timing *timing)
Simon Glasse7e88232015-04-14 21:03:42 -0600340{
Simon Glassd7659212016-01-30 16:37:50 -0700341 struct display_plat *disp_uc_plat;
Simon Glasse7e88232015-04-14 21:03:42 -0600342 struct dc_ctlr *dc_ctlr;
343 const void *blob = gd->fdt_blob;
344 struct udevice *dp_dev;
345 const int href_to_sync = 1, vref_to_sync = 1;
346 int panel_bpp = 18; /* default 18 bits per pixel */
347 u32 plld_rate;
Simon Glasse7e88232015-04-14 21:03:42 -0600348 int ret;
349
Simon Glassd7659212016-01-30 16:37:50 -0700350 /*
351 * Before we probe the display device (eDP), tell it that this device
352 * is are the source of the display data.
353 */
354 ret = uclass_find_first_device(UCLASS_DISPLAY, &dp_dev);
355 if (ret) {
356 debug("%s: device '%s' display not found (ret=%d)\n", __func__,
357 dev->name, ret);
Simon Glasse7e88232015-04-14 21:03:42 -0600358 return ret;
Simon Glassd7659212016-01-30 16:37:50 -0700359 }
Simon Glasse7e88232015-04-14 21:03:42 -0600360
Simon Glassd7659212016-01-30 16:37:50 -0700361 disp_uc_plat = dev_get_uclass_platdata(dp_dev);
362 debug("Found device '%s', disp_uc_priv=%p\n", dp_dev->name,
363 disp_uc_plat);
364 disp_uc_plat->src_dev = dev;
365
366 ret = uclass_get_device(UCLASS_DISPLAY, 0, &dp_dev);
367 if (ret) {
368 debug("%s: Failed to probe eDP, ret=%d\n", __func__, ret);
369 return ret;
370 }
371
372 dc_ctlr = (struct dc_ctlr *)fdtdec_get_addr(blob, dev->of_offset,
373 "reg");
374 if (fdtdec_decode_display_timing(blob, dev->of_offset, 0, timing)) {
375 debug("%s: Failed to decode display timing\n", __func__);
Simon Glasse7e88232015-04-14 21:03:42 -0600376 return -EINVAL;
Simon Glassd7659212016-01-30 16:37:50 -0700377 }
Simon Glasse7e88232015-04-14 21:03:42 -0600378
379 ret = display_update_config_from_edid(dp_dev, &panel_bpp, timing);
380 if (ret) {
381 debug("%s: Failed to decode EDID, using defaults\n", __func__);
382 dump_config(panel_bpp, timing);
383 }
384
Simon Glasse7e88232015-04-14 21:03:42 -0600385 /*
386 * The plld is programmed with the assumption of the SHIFT_CLK_DIVIDER
387 * and PIXEL_CLK_DIVIDER are zero (divide by 1). See the
388 * update_display_mode() for detail.
389 */
390 plld_rate = clock_set_display_rate(timing->pixelclock.typ * 2);
391 if (plld_rate == 0) {
392 printf("dc: clock init failed\n");
393 return -EIO;
394 } else if (plld_rate != timing->pixelclock.typ * 2) {
395 debug("dc: plld rounded to %u\n", plld_rate);
396 timing->pixelclock.typ = plld_rate / 2;
397 }
398
399 /* Init dc */
400 ret = tegra_dc_init(dc_ctlr);
401 if (ret) {
402 debug("dc: init failed\n");
403 return ret;
404 }
405
406 /* Configure dc mode */
407 ret = update_display_mode(dc_ctlr, timing, href_to_sync, vref_to_sync);
408 if (ret) {
409 debug("dc: failed to configure display mode\n");
410 return ret;
411 }
412
413 /* Enable dp */
Simon Glass2dcf1432016-01-21 19:45:00 -0700414 ret = display_enable(dp_dev, panel_bpp, timing);
Simon Glassd7659212016-01-30 16:37:50 -0700415 if (ret) {
416 debug("dc: failed to enable display: ret=%d\n", ret);
Simon Glasse7e88232015-04-14 21:03:42 -0600417 return ret;
Simon Glassd7659212016-01-30 16:37:50 -0700418 }
Simon Glasse7e88232015-04-14 21:03:42 -0600419
420 ret = update_window(dc_ctlr, (ulong)lcdbase, fb_bits_per_pixel, timing);
Simon Glassd7659212016-01-30 16:37:50 -0700421 if (ret) {
422 debug("dc: failed to update window\n");
Simon Glasse7e88232015-04-14 21:03:42 -0600423 return ret;
Simon Glasse7e88232015-04-14 21:03:42 -0600424 }
425
426 return 0;
427}
Simon Glass4dd81152016-01-30 16:37:47 -0700428
429enum {
430 /* Maximum LCD size we support */
431 LCD_MAX_WIDTH = 1920,
432 LCD_MAX_HEIGHT = 1200,
433 LCD_MAX_LOG2_BPP = 4, /* 2^4 = 16 bpp */
434};
435
Simon Glassd7659212016-01-30 16:37:50 -0700436static int tegra124_lcd_init(struct udevice *dev, void *lcdbase,
437 enum video_log2_bpp l2bpp)
Simon Glass4dd81152016-01-30 16:37:47 -0700438{
Simon Glassd7659212016-01-30 16:37:50 -0700439 struct video_priv *uc_priv = dev_get_uclass_priv(dev);
Simon Glass4dd81152016-01-30 16:37:47 -0700440 struct display_timing timing;
441 int ret;
442
443 clock_set_up_plldp();
444 clock_start_periph_pll(PERIPH_ID_HOST1X, CLOCK_ID_PERIPH, 408000000);
445
446 clock_enable(PERIPH_ID_HOST1X);
447 clock_enable(PERIPH_ID_DISP1);
448 clock_enable(PERIPH_ID_PWM);
449 clock_enable(PERIPH_ID_DPAUX);
450 clock_enable(PERIPH_ID_SOR0);
451 udelay(2);
452
453 reset_set_enable(PERIPH_ID_HOST1X, 0);
454 reset_set_enable(PERIPH_ID_DISP1, 0);
455 reset_set_enable(PERIPH_ID_PWM, 0);
456 reset_set_enable(PERIPH_ID_DPAUX, 0);
457 reset_set_enable(PERIPH_ID_SOR0, 0);
458
Simon Glassd7659212016-01-30 16:37:50 -0700459 ret = display_init(dev, lcdbase, 1 << l2bpp, &timing);
Simon Glass4dd81152016-01-30 16:37:47 -0700460 if (ret)
461 return ret;
462
Simon Glassd7659212016-01-30 16:37:50 -0700463 uc_priv->xsize = roundup(timing.hactive.typ, 16);
464 uc_priv->ysize = timing.vactive.typ;
465 uc_priv->bpix = l2bpp;
Simon Glass4dd81152016-01-30 16:37:47 -0700466
Simon Glassd7659212016-01-30 16:37:50 -0700467 video_set_flush_dcache(dev, 1);
468 debug("%s: done\n", __func__);
Simon Glass4dd81152016-01-30 16:37:47 -0700469
470 return 0;
471}
472
Simon Glassd7659212016-01-30 16:37:50 -0700473static int tegra124_lcd_probe(struct udevice *dev)
Simon Glass4dd81152016-01-30 16:37:47 -0700474{
Simon Glassd7659212016-01-30 16:37:50 -0700475 struct video_uc_platdata *plat = dev_get_uclass_platdata(dev);
Simon Glass4dd81152016-01-30 16:37:47 -0700476 ulong start;
477 int ret;
478
479 start = get_timer(0);
Simon Glassd7659212016-01-30 16:37:50 -0700480 ret = tegra124_lcd_init(dev, (void *)plat->base, VIDEO_BPP16);
Simon Glass4dd81152016-01-30 16:37:47 -0700481 debug("LCD init took %lu ms\n", get_timer(start));
482 if (ret)
483 printf("%s: Error %d\n", __func__, ret);
Simon Glassd7659212016-01-30 16:37:50 -0700484
485 return 0;
Simon Glass4dd81152016-01-30 16:37:47 -0700486}
487
Simon Glassd7659212016-01-30 16:37:50 -0700488static int tegra124_lcd_bind(struct udevice *dev)
Simon Glass4dd81152016-01-30 16:37:47 -0700489{
Simon Glassd7659212016-01-30 16:37:50 -0700490 struct video_uc_platdata *uc_plat = dev_get_uclass_platdata(dev);
491
492 uc_plat->size = LCD_MAX_WIDTH * LCD_MAX_HEIGHT *
493 (1 << VIDEO_BPP16) / 8;
494 debug("%s: Frame buffer size %x\n", __func__, uc_plat->size);
495
496 return 0;
Simon Glass4dd81152016-01-30 16:37:47 -0700497}
Simon Glassd7659212016-01-30 16:37:50 -0700498
499static const struct udevice_id tegra124_lcd_ids[] = {
500 { .compatible = "nvidia,tegra124-dc" },
501 { }
502};
503
504U_BOOT_DRIVER(tegra124_dc) = {
505 .name = "tegra124-dc",
506 .id = UCLASS_VIDEO,
507 .of_match = tegra124_lcd_ids,
508 .bind = tegra124_lcd_bind,
509 .probe = tegra124_lcd_probe,
510};