blob: 523d8a8d98334fc7ab49a8c3c6bef47026574027 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Marek Vasutfb8ddc22013-04-28 09:20:03 +00002/*
3 * Freescale i.MX23/i.MX28 LCDIF driver
4 *
5 * Copyright (C) 2011-2013 Marek Vasut <marex@denx.de>
Marek Vasutfb8ddc22013-04-28 09:20:03 +00006 */
7#include <common.h>
Giulio Benetticeb4ffc2020-04-08 17:10:13 +02008#include <clk.h>
Igor Opaniuk8c1df092019-06-04 00:05:59 +03009#include <dm.h>
Simon Glass7b51b572019-08-01 09:46:52 -060010#include <env.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060011#include <log.h>
Simon Glass90526e92020-05-10 11:39:56 -060012#include <asm/cache.h>
Simon Glass336d4612020-02-03 07:36:16 -070013#include <dm/device_compat.h>
Simon Glassc05ed002020-05-10 11:40:11 -060014#include <linux/delay.h>
Igor Opaniuk23816322019-06-04 00:05:57 +030015#include <linux/errno.h>
Marek Vasutfb8ddc22013-04-28 09:20:03 +000016#include <malloc.h>
Igor Opaniuk8c1df092019-06-04 00:05:59 +030017#include <video.h>
Marek Vasutfb8ddc22013-04-28 09:20:03 +000018#include <video_fb.h>
19
Marek Vasutfb8ddc22013-04-28 09:20:03 +000020#include <asm/arch/clock.h>
Igor Opaniuk23816322019-06-04 00:05:57 +030021#include <asm/arch/imx-regs.h>
Marek Vasutfb8ddc22013-04-28 09:20:03 +000022#include <asm/arch/sys_proto.h>
Simon Glass401d1c42020-10-30 21:38:53 -060023#include <asm/global_data.h>
Stefano Babic552a8482017-06-29 10:16:06 +020024#include <asm/mach-imx/dma.h>
Igor Opaniuk23816322019-06-04 00:05:57 +030025#include <asm/io.h>
Marek Vasut84f957f2013-07-30 23:37:54 +020026
Marek Vasutfb8ddc22013-04-28 09:20:03 +000027#include "videomodes.h"
28
29#define PS2KHZ(ps) (1000000000UL / (ps))
Igor Opaniuk8c1df092019-06-04 00:05:59 +030030#define HZ2PS(hz) (1000000000UL / ((hz) / 1000))
Marek Vasutfb8ddc22013-04-28 09:20:03 +000031
Igor Opaniuk8c1df092019-06-04 00:05:59 +030032#define BITS_PP 18
33#define BYTES_PP 4
34
Marek Vasut84f957f2013-07-30 23:37:54 +020035struct mxs_dma_desc desc;
Marek Vasutfb8ddc22013-04-28 09:20:03 +000036
Marek Vasut9de4b722013-07-30 23:37:53 +020037/**
38 * mxsfb_system_setup() - Fine-tune LCDIF configuration
39 *
40 * This function is used to adjust the LCDIF configuration. This is usually
41 * needed when driving the controller in System-Mode to operate an 8080 or
42 * 6800 connected SmartLCD.
43 */
44__weak void mxsfb_system_setup(void)
45{
46}
47
Marek Vasutfb8ddc22013-04-28 09:20:03 +000048/*
Marek Vasutfcea4802017-04-05 13:31:01 +020049 * ARIES M28EVK:
Marek Vasutfb8ddc22013-04-28 09:20:03 +000050 * setenv videomode
51 * video=ctfb:x:800,y:480,depth:18,mode:0,pclk:30066,
52 * le:0,ri:256,up:0,lo:45,hs:1,vs:1,sync:100663296,vmode:0
Fabio Estevam11f98d12013-05-10 09:14:11 +000053 *
54 * Freescale mx23evk/mx28evk with a Seiko 4.3'' WVGA panel:
55 * setenv videomode
56 * video=ctfb:x:800,y:480,depth:24,mode:0,pclk:29851,
57 * le:89,ri:164,up:23,lo:10,hs:10,vs:10,sync:0,vmode:0
Marek Vasutfb8ddc22013-04-28 09:20:03 +000058 */
59
Giulio Benetticeb4ffc2020-04-08 17:10:13 +020060static void mxs_lcd_init(struct udevice *dev, u32 fb_addr,
Giulio Benettiabda0a52020-04-08 17:10:15 +020061 struct display_timing *timings, int bpp)
Marek Vasutfb8ddc22013-04-28 09:20:03 +000062{
63 struct mxs_lcdif_regs *regs = (struct mxs_lcdif_regs *)MXS_LCDIF_BASE;
Giulio Benettie121e002020-04-08 17:10:16 +020064 const enum display_flags flags = timings->flags;
Marek Vasutfb8ddc22013-04-28 09:20:03 +000065 uint32_t word_len = 0, bus_width = 0;
66 uint8_t valid_data = 0;
Giulio Benettie121e002020-04-08 17:10:16 +020067 uint32_t vdctrl0;
Marek Vasutfb8ddc22013-04-28 09:20:03 +000068
Giulio Benetticeb4ffc2020-04-08 17:10:13 +020069#if CONFIG_IS_ENABLED(CLK)
Giulio Benettiee62a052021-05-13 12:18:46 +020070 struct clk clk;
Giulio Benetticeb4ffc2020-04-08 17:10:13 +020071 int ret;
72
Giulio Benettiee62a052021-05-13 12:18:46 +020073 ret = clk_get_by_name(dev, "pix", &clk);
Giulio Benetticeb4ffc2020-04-08 17:10:13 +020074 if (ret) {
Giulio Benettiee62a052021-05-13 12:18:46 +020075 dev_err(dev, "Failed to get mxs pix clk: %d\n", ret);
Giulio Benetticeb4ffc2020-04-08 17:10:13 +020076 return;
77 }
78
Giulio Benettiee62a052021-05-13 12:18:46 +020079 ret = clk_set_rate(&clk, timings->pixelclock.typ);
Giulio Benetticeb4ffc2020-04-08 17:10:13 +020080 if (ret < 0) {
Giulio Benettiee62a052021-05-13 12:18:46 +020081 dev_err(dev, "Failed to set mxs pix clk: %d\n", ret);
Giulio Benetticeb4ffc2020-04-08 17:10:13 +020082 return;
83 }
Giulio Benetti72fef432020-04-27 17:53:05 +020084
Giulio Benettiee62a052021-05-13 12:18:46 +020085 ret = clk_enable(&clk);
Giulio Benetti72fef432020-04-27 17:53:05 +020086 if (ret < 0) {
Giulio Benettiee62a052021-05-13 12:18:46 +020087 dev_err(dev, "Failed to enable mxs pix clk: %d\n", ret);
Giulio Benetti72fef432020-04-27 17:53:05 +020088 return;
89 }
Giulio Benettiee62a052021-05-13 12:18:46 +020090
91 ret = clk_get_by_name(dev, "axi", &clk);
92 if (!ret) {
93 debug("%s: Failed to get mxs axi clk: %d\n", __func__, ret);
94 } else {
95 ret = clk_enable(&clk);
96 if (ret < 0) {
97 dev_err(dev, "Failed to enable mxs axi clk: %d\n", ret);
98 return;
99 }
100 }
Giulio Benetti006f0df2021-05-13 12:18:47 +0200101
102 ret = clk_get_by_name(dev, "disp_axi", &clk);
103 if (!ret) {
104 debug("%s: Failed to get mxs disp_axi clk: %d\n", __func__, ret);
105 } else {
106 ret = clk_enable(&clk);
107 if (ret < 0) {
108 dev_err(dev, "Failed to enable mxs disp_axi clk: %d\n", ret);
109 return;
110 }
111 }
Giulio Benetticeb4ffc2020-04-08 17:10:13 +0200112#else
Fabio Estevambeeb57f2019-11-24 17:37:52 -0300113 /* Kick in the LCDIF clock */
Giulio Benettiabda0a52020-04-08 17:10:15 +0200114 mxs_set_lcdclk(MXS_LCDIF_BASE, timings->pixelclock.typ / 1000);
Giulio Benetticeb4ffc2020-04-08 17:10:13 +0200115#endif
Fabio Estevambeeb57f2019-11-24 17:37:52 -0300116
Marek Vasutfb8ddc22013-04-28 09:20:03 +0000117 /* Restart the LCDIF block */
118 mxs_reset_block(&regs->hw_lcdif_ctrl_reg);
119
120 switch (bpp) {
121 case 24:
122 word_len = LCDIF_CTRL_WORD_LENGTH_24BIT;
123 bus_width = LCDIF_CTRL_LCD_DATABUS_WIDTH_24BIT;
124 valid_data = 0x7;
125 break;
126 case 18:
127 word_len = LCDIF_CTRL_WORD_LENGTH_24BIT;
128 bus_width = LCDIF_CTRL_LCD_DATABUS_WIDTH_18BIT;
129 valid_data = 0x7;
130 break;
131 case 16:
132 word_len = LCDIF_CTRL_WORD_LENGTH_16BIT;
133 bus_width = LCDIF_CTRL_LCD_DATABUS_WIDTH_16BIT;
134 valid_data = 0xf;
135 break;
136 case 8:
137 word_len = LCDIF_CTRL_WORD_LENGTH_8BIT;
138 bus_width = LCDIF_CTRL_LCD_DATABUS_WIDTH_8BIT;
139 valid_data = 0xf;
140 break;
141 }
142
143 writel(bus_width | word_len | LCDIF_CTRL_DOTCLK_MODE |
144 LCDIF_CTRL_BYPASS_COUNT | LCDIF_CTRL_LCDIF_MASTER,
145 &regs->hw_lcdif_ctrl);
146
147 writel(valid_data << LCDIF_CTRL1_BYTE_PACKING_FORMAT_OFFSET,
148 &regs->hw_lcdif_ctrl1);
Marek Vasut9de4b722013-07-30 23:37:53 +0200149
150 mxsfb_system_setup();
151
Giulio Benettiabda0a52020-04-08 17:10:15 +0200152 writel((timings->vactive.typ << LCDIF_TRANSFER_COUNT_V_COUNT_OFFSET) |
153 timings->hactive.typ, &regs->hw_lcdif_transfer_count);
Marek Vasutfb8ddc22013-04-28 09:20:03 +0000154
Giulio Benettie121e002020-04-08 17:10:16 +0200155 vdctrl0 = LCDIF_VDCTRL0_ENABLE_PRESENT | LCDIF_VDCTRL0_ENABLE_POL |
156 LCDIF_VDCTRL0_VSYNC_PERIOD_UNIT |
157 LCDIF_VDCTRL0_VSYNC_PULSE_WIDTH_UNIT |
158 timings->vsync_len.typ;
159
160 if(flags & DISPLAY_FLAGS_HSYNC_HIGH)
161 vdctrl0 |= LCDIF_VDCTRL0_HSYNC_POL;
Giulio Benetti606668a2020-04-08 17:10:17 +0200162 if(flags & DISPLAY_FLAGS_VSYNC_HIGH)
163 vdctrl0 |= LCDIF_VDCTRL0_VSYNC_POL;
Giulio Benetti7c30d762020-04-08 17:10:18 +0200164 if(flags & DISPLAY_FLAGS_PIXDATA_NEGEDGE)
165 vdctrl0 |= LCDIF_VDCTRL0_DOTCLK_POL;
Giulio Benetti76f6bcd2020-04-08 17:10:19 +0200166 if(flags & DISPLAY_FLAGS_DE_HIGH)
167 vdctrl0 |= LCDIF_VDCTRL0_ENABLE_POL;
168
Giulio Benettie121e002020-04-08 17:10:16 +0200169 writel(vdctrl0, &regs->hw_lcdif_vdctrl0);
Giulio Benettiabda0a52020-04-08 17:10:15 +0200170 writel(timings->vback_porch.typ + timings->vfront_porch.typ +
171 timings->vsync_len.typ + timings->vactive.typ,
Marek Vasutfb8ddc22013-04-28 09:20:03 +0000172 &regs->hw_lcdif_vdctrl1);
Giulio Benettiabda0a52020-04-08 17:10:15 +0200173 writel((timings->hsync_len.typ << LCDIF_VDCTRL2_HSYNC_PULSE_WIDTH_OFFSET) |
174 (timings->hback_porch.typ + timings->hfront_porch.typ +
175 timings->hsync_len.typ + timings->hactive.typ),
Marek Vasutfb8ddc22013-04-28 09:20:03 +0000176 &regs->hw_lcdif_vdctrl2);
Giulio Benettiabda0a52020-04-08 17:10:15 +0200177 writel(((timings->hback_porch.typ + timings->hsync_len.typ) <<
Marek Vasutfb8ddc22013-04-28 09:20:03 +0000178 LCDIF_VDCTRL3_HORIZONTAL_WAIT_CNT_OFFSET) |
Giulio Benettiabda0a52020-04-08 17:10:15 +0200179 (timings->vback_porch.typ + timings->vsync_len.typ),
Marek Vasutfb8ddc22013-04-28 09:20:03 +0000180 &regs->hw_lcdif_vdctrl3);
Giulio Benettiabda0a52020-04-08 17:10:15 +0200181 writel((0 << LCDIF_VDCTRL4_DOTCLK_DLY_SEL_OFFSET) | timings->hactive.typ,
Marek Vasutfb8ddc22013-04-28 09:20:03 +0000182 &regs->hw_lcdif_vdctrl4);
183
Igor Opaniukdcd91a62019-06-04 00:05:56 +0300184 writel(fb_addr, &regs->hw_lcdif_cur_buf);
185 writel(fb_addr, &regs->hw_lcdif_next_buf);
Marek Vasutfb8ddc22013-04-28 09:20:03 +0000186
187 /* Flush FIFO first */
188 writel(LCDIF_CTRL1_FIFO_CLEAR, &regs->hw_lcdif_ctrl1_set);
189
Marek Vasut9de4b722013-07-30 23:37:53 +0200190#ifndef CONFIG_VIDEO_MXS_MODE_SYSTEM
Marek Vasutfb8ddc22013-04-28 09:20:03 +0000191 /* Sync signals ON */
192 setbits_le32(&regs->hw_lcdif_vdctrl4, LCDIF_VDCTRL4_SYNC_SIGNALS_ON);
Marek Vasut9de4b722013-07-30 23:37:53 +0200193#endif
Marek Vasutfb8ddc22013-04-28 09:20:03 +0000194
195 /* FIFO cleared */
196 writel(LCDIF_CTRL1_FIFO_CLEAR, &regs->hw_lcdif_ctrl1_clr);
197
198 /* RUN! */
199 writel(LCDIF_CTRL_RUN, &regs->hw_lcdif_ctrl_set);
200}
201
Giulio Benettiabda0a52020-04-08 17:10:15 +0200202static int mxs_probe_common(struct udevice *dev, struct display_timing *timings,
Giulio Benetticeb4ffc2020-04-08 17:10:13 +0200203 int bpp, u32 fb)
Igor Opaniuk9a672052019-06-04 00:05:58 +0300204{
205 /* Start framebuffer */
Giulio Benettiabda0a52020-04-08 17:10:15 +0200206 mxs_lcd_init(dev, fb, timings, bpp);
Igor Opaniuk9a672052019-06-04 00:05:58 +0300207
208#ifdef CONFIG_VIDEO_MXS_MODE_SYSTEM
209 /*
210 * If the LCD runs in system mode, the LCD refresh has to be triggered
211 * manually by setting the RUN bit in HW_LCDIF_CTRL register. To avoid
212 * having to set this bit manually after every single change in the
213 * framebuffer memory, we set up specially crafted circular DMA, which
214 * sets the RUN bit, then waits until it gets cleared and repeats this
215 * infinitelly. This way, we get smooth continuous updates of the LCD.
216 */
217 struct mxs_lcdif_regs *regs = (struct mxs_lcdif_regs *)MXS_LCDIF_BASE;
218
219 memset(&desc, 0, sizeof(struct mxs_dma_desc));
220 desc.address = (dma_addr_t)&desc;
221 desc.cmd.data = MXS_DMA_DESC_COMMAND_NO_DMAXFER | MXS_DMA_DESC_CHAIN |
222 MXS_DMA_DESC_WAIT4END |
223 (1 << MXS_DMA_DESC_PIO_WORDS_OFFSET);
224 desc.cmd.pio_words[0] = readl(&regs->hw_lcdif_ctrl) | LCDIF_CTRL_RUN;
225 desc.cmd.next = (uint32_t)&desc.cmd;
226
227 /* Execute the DMA chain. */
228 mxs_dma_circ_start(MXS_DMA_CHANNEL_AHB_APBH_LCDIF, &desc);
229#endif
230
231 return 0;
232}
233
Igor Opaniuk8c1df092019-06-04 00:05:59 +0300234static int mxs_remove_common(u32 fb)
Peng Fana3c252d2015-10-29 15:54:49 +0800235{
236 struct mxs_lcdif_regs *regs = (struct mxs_lcdif_regs *)MXS_LCDIF_BASE;
237 int timeout = 1000000;
238
Igor Opaniuk8c1df092019-06-04 00:05:59 +0300239 if (!fb)
240 return -EINVAL;
Fabio Estevamb24cf852017-02-22 10:40:22 -0300241
Igor Opaniuk8c1df092019-06-04 00:05:59 +0300242 writel(fb, &regs->hw_lcdif_cur_buf_reg);
243 writel(fb, &regs->hw_lcdif_next_buf_reg);
Peng Fana3c252d2015-10-29 15:54:49 +0800244 writel(LCDIF_CTRL1_VSYNC_EDGE_IRQ, &regs->hw_lcdif_ctrl1_clr);
245 while (--timeout) {
246 if (readl(&regs->hw_lcdif_ctrl1_reg) &
247 LCDIF_CTRL1_VSYNC_EDGE_IRQ)
248 break;
249 udelay(1);
250 }
251 mxs_reset_block((struct mxs_register_32 *)&regs->hw_lcdif_ctrl_reg);
Igor Opaniuk8c1df092019-06-04 00:05:59 +0300252
253 return 0;
254}
255
256#ifndef CONFIG_DM_VIDEO
257
258static GraphicDevice panel;
259
260void lcdif_power_down(void)
261{
262 mxs_remove_common(panel.frameAdrs);
Peng Fana3c252d2015-10-29 15:54:49 +0800263}
264
Marek Vasutfb8ddc22013-04-28 09:20:03 +0000265void *video_hw_init(void)
266{
267 int bpp = -1;
Igor Opaniuk9a672052019-06-04 00:05:58 +0300268 int ret = 0;
Marek Vasutfb8ddc22013-04-28 09:20:03 +0000269 char *penv;
Igor Opaniuk9a672052019-06-04 00:05:58 +0300270 void *fb = NULL;
Marek Vasutfb8ddc22013-04-28 09:20:03 +0000271 struct ctfb_res_modes mode;
Giulio Benettiabda0a52020-04-08 17:10:15 +0200272 struct display_timing timings;
Marek Vasutfb8ddc22013-04-28 09:20:03 +0000273
274 puts("Video: ");
275
276 /* Suck display configuration from "videomode" variable */
Simon Glass00caae62017-08-03 12:22:12 -0600277 penv = env_get("videomode");
Marek Vasutfb8ddc22013-04-28 09:20:03 +0000278 if (!penv) {
Fabio Estevam620ca1c2013-06-26 16:08:13 -0300279 puts("MXSFB: 'videomode' variable not set!\n");
Marek Vasutfb8ddc22013-04-28 09:20:03 +0000280 return NULL;
281 }
282
283 bpp = video_get_params(&mode, penv);
284
285 /* fill in Graphic device struct */
Igor Opaniuk9a672052019-06-04 00:05:58 +0300286 sprintf(panel.modeIdent, "%dx%dx%d", mode.xres, mode.yres, bpp);
Marek Vasutfb8ddc22013-04-28 09:20:03 +0000287
288 panel.winSizeX = mode.xres;
289 panel.winSizeY = mode.yres;
290 panel.plnSizeX = mode.xres;
291 panel.plnSizeY = mode.yres;
292
293 switch (bpp) {
294 case 24:
295 case 18:
296 panel.gdfBytesPP = 4;
297 panel.gdfIndex = GDF_32BIT_X888RGB;
298 break;
299 case 16:
300 panel.gdfBytesPP = 2;
301 panel.gdfIndex = GDF_16BIT_565RGB;
302 break;
303 case 8:
304 panel.gdfBytesPP = 1;
305 panel.gdfIndex = GDF__8BIT_INDEX;
306 break;
307 default:
308 printf("MXSFB: Invalid BPP specified! (bpp = %i)\n", bpp);
309 return NULL;
310 }
311
312 panel.memSize = mode.xres * mode.yres * panel.gdfBytesPP;
313
314 /* Allocate framebuffer */
Marek Vasute57baf52013-07-30 23:37:52 +0200315 fb = memalign(ARCH_DMA_MINALIGN,
316 roundup(panel.memSize, ARCH_DMA_MINALIGN));
Marek Vasutfb8ddc22013-04-28 09:20:03 +0000317 if (!fb) {
318 printf("MXSFB: Error allocating framebuffer!\n");
319 return NULL;
320 }
321
322 /* Wipe framebuffer */
323 memset(fb, 0, panel.memSize);
324
325 panel.frameAdrs = (u32)fb;
326
327 printf("%s\n", panel.modeIdent);
328
Giulio Benettiabda0a52020-04-08 17:10:15 +0200329 video_ctfb_mode_to_display_timing(&mode, &timings);
330
331 ret = mxs_probe_common(NULL, &timings, bpp, (u32)fb);
Igor Opaniuk9a672052019-06-04 00:05:58 +0300332 if (ret)
333 goto dealloc_fb;
Marek Vasut84f957f2013-07-30 23:37:54 +0200334
Marek Vasutfb8ddc22013-04-28 09:20:03 +0000335 return (void *)&panel;
Igor Opaniuk9a672052019-06-04 00:05:58 +0300336
337dealloc_fb:
338 free(fb);
339
340 return NULL;
Marek Vasutfb8ddc22013-04-28 09:20:03 +0000341}
Igor Opaniuk8c1df092019-06-04 00:05:59 +0300342#else /* ifndef CONFIG_DM_VIDEO */
343
Igor Opaniuke19441e2019-06-19 11:47:05 +0300344static int mxs_of_get_timings(struct udevice *dev,
345 struct display_timing *timings,
346 u32 *bpp)
347{
348 int ret = 0;
349 u32 display_phandle;
350 ofnode display_node;
351
352 ret = ofnode_read_u32(dev_ofnode(dev), "display", &display_phandle);
353 if (ret) {
354 dev_err(dev, "required display property isn't provided\n");
355 return -EINVAL;
356 }
357
358 display_node = ofnode_get_by_phandle(display_phandle);
359 if (!ofnode_valid(display_node)) {
360 dev_err(dev, "failed to find display subnode\n");
361 return -EINVAL;
362 }
363
364 ret = ofnode_read_u32(display_node, "bits-per-pixel", bpp);
365 if (ret) {
366 dev_err(dev,
367 "required bits-per-pixel property isn't provided\n");
368 return -EINVAL;
369 }
370
371 ret = ofnode_decode_display_timing(display_node, 0, timings);
372 if (ret) {
373 dev_err(dev, "failed to get any display timings\n");
374 return -EINVAL;
375 }
376
377 return ret;
378}
379
Igor Opaniuk8c1df092019-06-04 00:05:59 +0300380static int mxs_video_probe(struct udevice *dev)
381{
Simon Glass8a8d24b2020-12-03 16:55:23 -0700382 struct video_uc_plat *plat = dev_get_uclass_plat(dev);
Igor Opaniuk8c1df092019-06-04 00:05:59 +0300383 struct video_priv *uc_priv = dev_get_uclass_priv(dev);
384
Igor Opaniuk8c1df092019-06-04 00:05:59 +0300385 struct display_timing timings;
Igor Opaniuke19441e2019-06-19 11:47:05 +0300386 u32 bpp = 0;
Igor Opaniuk8c1df092019-06-04 00:05:59 +0300387 u32 fb_start, fb_end;
388 int ret;
389
390 debug("%s() plat: base 0x%lx, size 0x%x\n",
391 __func__, plat->base, plat->size);
392
Igor Opaniuke19441e2019-06-19 11:47:05 +0300393 ret = mxs_of_get_timings(dev, &timings, &bpp);
394 if (ret)
395 return ret;
Igor Opaniuk8c1df092019-06-04 00:05:59 +0300396
Giulio Benettiabda0a52020-04-08 17:10:15 +0200397 ret = mxs_probe_common(dev, &timings, bpp, plat->base);
Igor Opaniuk8c1df092019-06-04 00:05:59 +0300398 if (ret)
399 return ret;
400
401 switch (bpp) {
Igor Opaniuke19441e2019-06-19 11:47:05 +0300402 case 32:
Igor Opaniuk8c1df092019-06-04 00:05:59 +0300403 case 24:
404 case 18:
405 uc_priv->bpix = VIDEO_BPP32;
406 break;
407 case 16:
408 uc_priv->bpix = VIDEO_BPP16;
409 break;
410 case 8:
411 uc_priv->bpix = VIDEO_BPP8;
412 break;
413 default:
414 dev_err(dev, "invalid bpp specified (bpp = %i)\n", bpp);
415 return -EINVAL;
416 }
417
Giulio Benettiabda0a52020-04-08 17:10:15 +0200418 uc_priv->xsize = timings.hactive.typ;
419 uc_priv->ysize = timings.vactive.typ;
Igor Opaniuk8c1df092019-06-04 00:05:59 +0300420
421 /* Enable dcache for the frame buffer */
422 fb_start = plat->base & ~(MMU_SECTION_SIZE - 1);
423 fb_end = plat->base + plat->size;
424 fb_end = ALIGN(fb_end, 1 << MMU_SECTION_SHIFT);
425 mmu_set_region_dcache_behaviour(fb_start, fb_end - fb_start,
426 DCACHE_WRITEBACK);
427 video_set_flush_dcache(dev, true);
Sébastien Szymanskicde421c2019-10-21 15:33:04 +0200428 gd->fb_base = plat->base;
Igor Opaniuk8c1df092019-06-04 00:05:59 +0300429
430 return ret;
431}
432
433static int mxs_video_bind(struct udevice *dev)
434{
Simon Glass8a8d24b2020-12-03 16:55:23 -0700435 struct video_uc_plat *plat = dev_get_uclass_plat(dev);
Igor Opaniuk8c1df092019-06-04 00:05:59 +0300436 struct display_timing timings;
Igor Opaniuke19441e2019-06-19 11:47:05 +0300437 u32 bpp = 0;
438 u32 bytes_pp = 0;
Igor Opaniuk8c1df092019-06-04 00:05:59 +0300439 int ret;
440
Igor Opaniuke19441e2019-06-19 11:47:05 +0300441 ret = mxs_of_get_timings(dev, &timings, &bpp);
442 if (ret)
443 return ret;
444
445 switch (bpp) {
446 case 32:
447 case 24:
448 case 18:
449 bytes_pp = 4;
450 break;
451 case 16:
452 bytes_pp = 2;
453 break;
454 case 8:
455 bytes_pp = 1;
456 break;
457 default:
458 dev_err(dev, "invalid bpp specified (bpp = %i)\n", bpp);
Igor Opaniuk8c1df092019-06-04 00:05:59 +0300459 return -EINVAL;
460 }
461
Igor Opaniuke19441e2019-06-19 11:47:05 +0300462 plat->size = timings.hactive.typ * timings.vactive.typ * bytes_pp;
Igor Opaniuk8c1df092019-06-04 00:05:59 +0300463
464 return 0;
465}
466
467static int mxs_video_remove(struct udevice *dev)
468{
Simon Glass8a8d24b2020-12-03 16:55:23 -0700469 struct video_uc_plat *plat = dev_get_uclass_plat(dev);
Igor Opaniuk8c1df092019-06-04 00:05:59 +0300470
471 mxs_remove_common(plat->base);
472
473 return 0;
474}
475
476static const struct udevice_id mxs_video_ids[] = {
477 { .compatible = "fsl,imx23-lcdif" },
478 { .compatible = "fsl,imx28-lcdif" },
479 { .compatible = "fsl,imx7ulp-lcdif" },
Giulio Benettiaa045702020-04-08 17:10:14 +0200480 { .compatible = "fsl,imxrt-lcdif" },
Igor Opaniuk8c1df092019-06-04 00:05:59 +0300481 { /* sentinel */ }
482};
483
484U_BOOT_DRIVER(mxs_video) = {
485 .name = "mxs_video",
486 .id = UCLASS_VIDEO,
487 .of_match = mxs_video_ids,
488 .bind = mxs_video_bind,
489 .probe = mxs_video_probe,
490 .remove = mxs_video_remove,
Anatolij Gustschin8382b102020-01-25 23:44:56 +0100491 .flags = DM_FLAG_PRE_RELOC | DM_FLAG_OS_PREPARE,
Igor Opaniuk8c1df092019-06-04 00:05:59 +0300492};
493#endif /* ifndef CONFIG_DM_VIDEO */