video: mxsfb: change mxs_lcd_init signature
[oweals/u-boot.git] / drivers / video / mxsfb.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Freescale i.MX23/i.MX28 LCDIF driver
4  *
5  * Copyright (C) 2011-2013 Marek Vasut <marex@denx.de>
6  */
7 #include <common.h>
8 #include <malloc.h>
9 #include <video_fb.h>
10
11 #include <asm/arch/imx-regs.h>
12 #include <asm/arch/clock.h>
13 #include <asm/arch/sys_proto.h>
14 #include <linux/errno.h>
15 #include <asm/io.h>
16
17 #include <asm/mach-imx/dma.h>
18
19 #include "videomodes.h"
20
21 #define PS2KHZ(ps)      (1000000000UL / (ps))
22
23 static GraphicDevice panel;
24 struct mxs_dma_desc desc;
25
26 /**
27  * mxsfb_system_setup() - Fine-tune LCDIF configuration
28  *
29  * This function is used to adjust the LCDIF configuration. This is usually
30  * needed when driving the controller in System-Mode to operate an 8080 or
31  * 6800 connected SmartLCD.
32  */
33 __weak void mxsfb_system_setup(void)
34 {
35 }
36
37 /*
38  * ARIES M28EVK:
39  * setenv videomode
40  * video=ctfb:x:800,y:480,depth:18,mode:0,pclk:30066,
41  *       le:0,ri:256,up:0,lo:45,hs:1,vs:1,sync:100663296,vmode:0
42  *
43  * Freescale mx23evk/mx28evk with a Seiko 4.3'' WVGA panel:
44  * setenv videomode
45  * video=ctfb:x:800,y:480,depth:24,mode:0,pclk:29851,
46  *       le:89,ri:164,up:23,lo:10,hs:10,vs:10,sync:0,vmode:0
47  */
48
49 static void mxs_lcd_init(u32 fb_addr, struct ctfb_res_modes *mode, int bpp)
50 {
51         struct mxs_lcdif_regs *regs = (struct mxs_lcdif_regs *)MXS_LCDIF_BASE;
52         uint32_t word_len = 0, bus_width = 0;
53         uint8_t valid_data = 0;
54
55         /* Kick in the LCDIF clock */
56         mxs_set_lcdclk(MXS_LCDIF_BASE, PS2KHZ(mode->pixclock));
57
58         /* Restart the LCDIF block */
59         mxs_reset_block(&regs->hw_lcdif_ctrl_reg);
60
61         switch (bpp) {
62         case 24:
63                 word_len = LCDIF_CTRL_WORD_LENGTH_24BIT;
64                 bus_width = LCDIF_CTRL_LCD_DATABUS_WIDTH_24BIT;
65                 valid_data = 0x7;
66                 break;
67         case 18:
68                 word_len = LCDIF_CTRL_WORD_LENGTH_24BIT;
69                 bus_width = LCDIF_CTRL_LCD_DATABUS_WIDTH_18BIT;
70                 valid_data = 0x7;
71                 break;
72         case 16:
73                 word_len = LCDIF_CTRL_WORD_LENGTH_16BIT;
74                 bus_width = LCDIF_CTRL_LCD_DATABUS_WIDTH_16BIT;
75                 valid_data = 0xf;
76                 break;
77         case 8:
78                 word_len = LCDIF_CTRL_WORD_LENGTH_8BIT;
79                 bus_width = LCDIF_CTRL_LCD_DATABUS_WIDTH_8BIT;
80                 valid_data = 0xf;
81                 break;
82         }
83
84         writel(bus_width | word_len | LCDIF_CTRL_DOTCLK_MODE |
85                 LCDIF_CTRL_BYPASS_COUNT | LCDIF_CTRL_LCDIF_MASTER,
86                 &regs->hw_lcdif_ctrl);
87
88         writel(valid_data << LCDIF_CTRL1_BYTE_PACKING_FORMAT_OFFSET,
89                 &regs->hw_lcdif_ctrl1);
90
91         mxsfb_system_setup();
92
93         writel((mode->yres << LCDIF_TRANSFER_COUNT_V_COUNT_OFFSET) | mode->xres,
94                 &regs->hw_lcdif_transfer_count);
95
96         writel(LCDIF_VDCTRL0_ENABLE_PRESENT | LCDIF_VDCTRL0_ENABLE_POL |
97                 LCDIF_VDCTRL0_VSYNC_PERIOD_UNIT |
98                 LCDIF_VDCTRL0_VSYNC_PULSE_WIDTH_UNIT |
99                 mode->vsync_len, &regs->hw_lcdif_vdctrl0);
100         writel(mode->upper_margin + mode->lower_margin +
101                 mode->vsync_len + mode->yres,
102                 &regs->hw_lcdif_vdctrl1);
103         writel((mode->hsync_len << LCDIF_VDCTRL2_HSYNC_PULSE_WIDTH_OFFSET) |
104                 (mode->left_margin + mode->right_margin +
105                 mode->hsync_len + mode->xres),
106                 &regs->hw_lcdif_vdctrl2);
107         writel(((mode->left_margin + mode->hsync_len) <<
108                 LCDIF_VDCTRL3_HORIZONTAL_WAIT_CNT_OFFSET) |
109                 (mode->upper_margin + mode->vsync_len),
110                 &regs->hw_lcdif_vdctrl3);
111         writel((0 << LCDIF_VDCTRL4_DOTCLK_DLY_SEL_OFFSET) | mode->xres,
112                 &regs->hw_lcdif_vdctrl4);
113
114         writel(fb_addr, &regs->hw_lcdif_cur_buf);
115         writel(fb_addr, &regs->hw_lcdif_next_buf);
116
117         /* Flush FIFO first */
118         writel(LCDIF_CTRL1_FIFO_CLEAR, &regs->hw_lcdif_ctrl1_set);
119
120 #ifndef CONFIG_VIDEO_MXS_MODE_SYSTEM
121         /* Sync signals ON */
122         setbits_le32(&regs->hw_lcdif_vdctrl4, LCDIF_VDCTRL4_SYNC_SIGNALS_ON);
123 #endif
124
125         /* FIFO cleared */
126         writel(LCDIF_CTRL1_FIFO_CLEAR, &regs->hw_lcdif_ctrl1_clr);
127
128         /* RUN! */
129         writel(LCDIF_CTRL_RUN, &regs->hw_lcdif_ctrl_set);
130 }
131
132 void lcdif_power_down(void)
133 {
134         struct mxs_lcdif_regs *regs = (struct mxs_lcdif_regs *)MXS_LCDIF_BASE;
135         int timeout = 1000000;
136
137         if (!panel.frameAdrs)
138                 return;
139
140         writel(panel.frameAdrs, &regs->hw_lcdif_cur_buf_reg);
141         writel(panel.frameAdrs, &regs->hw_lcdif_next_buf_reg);
142         writel(LCDIF_CTRL1_VSYNC_EDGE_IRQ, &regs->hw_lcdif_ctrl1_clr);
143         while (--timeout) {
144                 if (readl(&regs->hw_lcdif_ctrl1_reg) &
145                     LCDIF_CTRL1_VSYNC_EDGE_IRQ)
146                         break;
147                 udelay(1);
148         }
149         mxs_reset_block((struct mxs_register_32 *)&regs->hw_lcdif_ctrl_reg);
150 }
151
152 void *video_hw_init(void)
153 {
154         int bpp = -1;
155         char *penv;
156         void *fb;
157         struct ctfb_res_modes mode;
158
159         puts("Video: ");
160
161         /* Suck display configuration from "videomode" variable */
162         penv = env_get("videomode");
163         if (!penv) {
164                 puts("MXSFB: 'videomode' variable not set!\n");
165                 return NULL;
166         }
167
168         bpp = video_get_params(&mode, penv);
169
170         /* fill in Graphic device struct */
171         sprintf(panel.modeIdent, "%dx%dx%d",
172                         mode.xres, mode.yres, bpp);
173
174         panel.winSizeX = mode.xres;
175         panel.winSizeY = mode.yres;
176         panel.plnSizeX = mode.xres;
177         panel.plnSizeY = mode.yres;
178
179         switch (bpp) {
180         case 24:
181         case 18:
182                 panel.gdfBytesPP = 4;
183                 panel.gdfIndex = GDF_32BIT_X888RGB;
184                 break;
185         case 16:
186                 panel.gdfBytesPP = 2;
187                 panel.gdfIndex = GDF_16BIT_565RGB;
188                 break;
189         case 8:
190                 panel.gdfBytesPP = 1;
191                 panel.gdfIndex = GDF__8BIT_INDEX;
192                 break;
193         default:
194                 printf("MXSFB: Invalid BPP specified! (bpp = %i)\n", bpp);
195                 return NULL;
196         }
197
198         panel.memSize = mode.xres * mode.yres * panel.gdfBytesPP;
199
200         /* Allocate framebuffer */
201         fb = memalign(ARCH_DMA_MINALIGN,
202                       roundup(panel.memSize, ARCH_DMA_MINALIGN));
203         if (!fb) {
204                 printf("MXSFB: Error allocating framebuffer!\n");
205                 return NULL;
206         }
207
208         /* Wipe framebuffer */
209         memset(fb, 0, panel.memSize);
210
211         panel.frameAdrs = (u32)fb;
212
213         printf("%s\n", panel.modeIdent);
214
215         /* Start framebuffer */
216         mxs_lcd_init(panel.frameAdrs, &mode, bpp);
217
218 #ifdef CONFIG_VIDEO_MXS_MODE_SYSTEM
219         /*
220          * If the LCD runs in system mode, the LCD refresh has to be triggered
221          * manually by setting the RUN bit in HW_LCDIF_CTRL register. To avoid
222          * having to set this bit manually after every single change in the
223          * framebuffer memory, we set up specially crafted circular DMA, which
224          * sets the RUN bit, then waits until it gets cleared and repeats this
225          * infinitelly. This way, we get smooth continuous updates of the LCD.
226          */
227         struct mxs_lcdif_regs *regs = (struct mxs_lcdif_regs *)MXS_LCDIF_BASE;
228
229         memset(&desc, 0, sizeof(struct mxs_dma_desc));
230         desc.address = (dma_addr_t)&desc;
231         desc.cmd.data = MXS_DMA_DESC_COMMAND_NO_DMAXFER | MXS_DMA_DESC_CHAIN |
232                         MXS_DMA_DESC_WAIT4END |
233                         (1 << MXS_DMA_DESC_PIO_WORDS_OFFSET);
234         desc.cmd.pio_words[0] = readl(&regs->hw_lcdif_ctrl) | LCDIF_CTRL_RUN;
235         desc.cmd.next = (uint32_t)&desc.cmd;
236
237         /* Execute the DMA chain. */
238         mxs_dma_circ_start(MXS_DMA_CHANNEL_AHB_APBH_LCDIF, &desc);
239 #endif
240
241         return (void *)&panel;
242 }