blob: 9f1ea9c356453185debe3c2b7617774a2520e782 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Stefan Roeseab91fd52016-01-20 08:13:28 +01002/*
3 * Video driver for Marvell Armada XP SoC
4 *
5 * Initialization of LCD interface and setup of SPLASH screen image
Stefan Roeseab91fd52016-01-20 08:13:28 +01006 */
7
Stefan Roeseee4f68b2019-01-30 08:54:11 +01008#include <dm.h>
Simon Glass655306c2020-05-10 11:39:58 -06009#include <part.h>
Stefan Roeseee4f68b2019-01-30 08:54:11 +010010#include <video.h>
Simon Glass274e0b02020-05-10 11:39:56 -060011#include <asm/cache.h>
Simon Glass9bc15642020-02-03 07:36:16 -070012#include <dm/device_compat.h>
Simon Glassdbd79542020-05-10 11:40:11 -060013#include <linux/delay.h>
Stefan Roeseab91fd52016-01-20 08:13:28 +010014#include <linux/mbus.h>
15#include <asm/io.h>
16#include <asm/arch/cpu.h>
17#include <asm/arch/soc.h>
18
Stefan Roeseee4f68b2019-01-30 08:54:11 +010019#define MVEBU_LCD_WIN_CONTROL(w) (0xf000 + ((w) << 4))
20#define MVEBU_LCD_WIN_BASE(w) (0xf004 + ((w) << 4))
21#define MVEBU_LCD_WIN_REMAP(w) (0xf00c + ((w) << 4))
Stefan Roeseab91fd52016-01-20 08:13:28 +010022
Stefan Roeseee4f68b2019-01-30 08:54:11 +010023#define MVEBU_LCD_CFG_DMA_START_ADDR_0 0x00cc
24#define MVEBU_LCD_CFG_DMA_START_ADDR_1 0x00dc
Stefan Roeseab91fd52016-01-20 08:13:28 +010025
Stefan Roeseee4f68b2019-01-30 08:54:11 +010026#define MVEBU_LCD_CFG_GRA_START_ADDR0 0x00f4
27#define MVEBU_LCD_CFG_GRA_START_ADDR1 0x00f8
28#define MVEBU_LCD_CFG_GRA_PITCH 0x00fc
29#define MVEBU_LCD_SPU_GRA_OVSA_HPXL_VLN 0x0100
30#define MVEBU_LCD_SPU_GRA_HPXL_VLN 0x0104
31#define MVEBU_LCD_SPU_GZM_HPXL_VLN 0x0108
32#define MVEBU_LCD_SPU_HWC_OVSA_HPXL_VLN 0x010c
33#define MVEBU_LCD_SPU_HWC_HPXL_VLN 0x0110
34#define MVEBU_LCD_SPUT_V_H_TOTAL 0x0114
35#define MVEBU_LCD_SPU_V_H_ACTIVE 0x0118
36#define MVEBU_LCD_SPU_H_PORCH 0x011c
37#define MVEBU_LCD_SPU_V_PORCH 0x0120
38#define MVEBU_LCD_SPU_BLANKCOLOR 0x0124
39#define MVEBU_LCD_SPU_ALPHA_COLOR1 0x0128
40#define MVEBU_LCD_SPU_ALPHA_COLOR2 0x012c
41#define MVEBU_LCD_SPU_COLORKEY_Y 0x0130
42#define MVEBU_LCD_SPU_COLORKEY_U 0x0134
43#define MVEBU_LCD_SPU_COLORKEY_V 0x0138
44#define MVEBU_LCD_CFG_RDREG4F 0x013c
45#define MVEBU_LCD_SPU_SPI_RXDATA 0x0140
46#define MVEBU_LCD_SPU_ISA_RXDATA 0x0144
47#define MVEBU_LCD_SPU_DBG_ISA 0x0148
Stefan Roeseab91fd52016-01-20 08:13:28 +010048
Stefan Roeseee4f68b2019-01-30 08:54:11 +010049#define MVEBU_LCD_SPU_HWC_RDDAT 0x0158
50#define MVEBU_LCD_SPU_GAMMA_RDDAT 0x015c
51#define MVEBU_LCD_SPU_PALETTE_RDDAT 0x0160
52#define MVEBU_LCD_SPU_IOPAD_IN 0x0178
53#define MVEBU_LCD_FRAME_COUNT 0x017c
54#define MVEBU_LCD_SPU_DMA_CTRL0 0x0190
55#define MVEBU_LCD_SPU_DMA_CTRL1 0x0194
56#define MVEBU_LCD_SPU_SRAM_CTRL 0x0198
57#define MVEBU_LCD_SPU_SRAM_WRDAT 0x019c
58#define MVEBU_LCD_SPU_SRAM_PARA0 0x01a0
59#define MVEBU_LCD_SPU_SRAM_PARA1 0x01a4
60#define MVEBU_LCD_CFG_SCLK_DIV 0x01a8
61#define MVEBU_LCD_SPU_CONTRAST 0x01ac
62#define MVEBU_LCD_SPU_SATURATION 0x01b0
63#define MVEBU_LCD_SPU_CBSH_HUE 0x01b4
64#define MVEBU_LCD_SPU_DUMB_CTRL 0x01b8
65#define MVEBU_LCD_SPU_IOPAD_CONTROL 0x01bc
66#define MVEBU_LCD_SPU_IRQ_ENA_2 0x01d8
67#define MVEBU_LCD_SPU_IRQ_ISR_2 0x01dc
68#define MVEBU_LCD_SPU_IRQ_ENA 0x01c0
69#define MVEBU_LCD_SPU_IRQ_ISR 0x01c4
70#define MVEBU_LCD_ADLL_CTRL 0x01c8
71#define MVEBU_LCD_CLK_DIS 0x01cc
72#define MVEBU_LCD_VGA_HVSYNC_DELAY 0x01d4
73#define MVEBU_LCD_CLK_CFG_0 0xf0a0
74#define MVEBU_LCD_CLK_CFG_1 0xf0a4
75#define MVEBU_LCD_LVDS_CLK_CFG 0xf0ac
Stefan Roeseab91fd52016-01-20 08:13:28 +010076
77#define MVEBU_LVDS_PADS_REG (MVEBU_SYSTEM_REG_BASE + 0xf0)
78
Stefan Roeseee4f68b2019-01-30 08:54:11 +010079enum {
80 /* Maximum LCD size we support */
81 LCD_MAX_WIDTH = 640,
82 LCD_MAX_HEIGHT = 480,
83 LCD_MAX_LOG2_BPP = VIDEO_BPP16,
84};
85
86struct mvebu_lcd_info {
87 u32 fb_base;
88 int x_res;
89 int y_res;
90 int x_fp;
91 int y_fp;
92 int x_bp;
93 int y_bp;
94};
95
96struct mvebu_video_priv {
97 uintptr_t regs;
98};
99
Stefan Roeseab91fd52016-01-20 08:13:28 +0100100/* Setup Mbus Bridge Windows for LCD */
Stefan Roeseee4f68b2019-01-30 08:54:11 +0100101static void mvebu_lcd_conf_mbus_registers(uintptr_t regs)
Stefan Roeseab91fd52016-01-20 08:13:28 +0100102{
103 const struct mbus_dram_target_info *dram;
104 int i;
105
106 dram = mvebu_mbus_dram_info();
107
108 /* Disable windows, set size/base/remap to 0 */
109 for (i = 0; i < 6; i++) {
Stefan Roeseee4f68b2019-01-30 08:54:11 +0100110 writel(0, regs + MVEBU_LCD_WIN_CONTROL(i));
111 writel(0, regs + MVEBU_LCD_WIN_BASE(i));
112 writel(0, regs + MVEBU_LCD_WIN_REMAP(i));
Stefan Roeseab91fd52016-01-20 08:13:28 +0100113 }
114
115 /* Write LCD bridge window registers */
116 for (i = 0; i < dram->num_cs; i++) {
117 const struct mbus_dram_window *cs = dram->cs + i;
118 writel(((cs->size - 1) & 0xffff0000) | (cs->mbus_attr << 8) |
119 (dram->mbus_dram_target_id << 4) | 1,
Stefan Roeseee4f68b2019-01-30 08:54:11 +0100120 regs + MVEBU_LCD_WIN_CONTROL(i));
Stefan Roeseab91fd52016-01-20 08:13:28 +0100121
Stefan Roeseee4f68b2019-01-30 08:54:11 +0100122 writel(cs->base & 0xffff0000, regs + MVEBU_LCD_WIN_BASE(i));
Stefan Roeseab91fd52016-01-20 08:13:28 +0100123 }
124}
125
126/* Initialize LCD registers */
Stefan Roeseee4f68b2019-01-30 08:54:11 +0100127static void mvebu_lcd_register_init(struct mvebu_lcd_info *lcd_info,
128 uintptr_t regs)
Stefan Roeseab91fd52016-01-20 08:13:28 +0100129{
130 /* Local variable for easier handling */
131 int x = lcd_info->x_res;
132 int y = lcd_info->y_res;
133 u32 val;
134
135 /* Setup Mbus Bridge Windows */
Stefan Roeseee4f68b2019-01-30 08:54:11 +0100136 mvebu_lcd_conf_mbus_registers(regs);
Stefan Roeseab91fd52016-01-20 08:13:28 +0100137
138 /*
139 * Set LVDS Pads Control Register
140 * wr 0 182F0 FFE00000
141 */
142 clrbits_le32(MVEBU_LVDS_PADS_REG, 0x1f << 16);
143
144 /*
145 * Set the LCD_CFG_GRA_START_ADDR0/1 Registers
146 * This is supposed to point to the "physical" memory at memory
147 * end (currently 1GB-64MB but also may be 2GB-64MB).
148 * See also the Window 0 settings!
149 */
Stefan Roeseee4f68b2019-01-30 08:54:11 +0100150 writel(lcd_info->fb_base, regs + MVEBU_LCD_CFG_GRA_START_ADDR0);
151 writel(lcd_info->fb_base, regs + MVEBU_LCD_CFG_GRA_START_ADDR1);
Stefan Roeseab91fd52016-01-20 08:13:28 +0100152
153 /*
154 * Set the LCD_CFG_GRA_PITCH Register
155 * Bits 31-28: Duty Cycle of Backlight. value/16=High (0x8=Mid Setting)
156 * Bits 25-16: Backlight divider from 32kHz Clock
157 * (here 16=0x10 for 1kHz)
158 * Bits 15-00: Line Length in Bytes
159 * 240*2 (for RGB1555)=480=0x1E0
160 */
Stefan Roeseee4f68b2019-01-30 08:54:11 +0100161 writel(0x80100000 + 2 * x, regs + MVEBU_LCD_CFG_GRA_PITCH);
Stefan Roeseab91fd52016-01-20 08:13:28 +0100162
163 /*
164 * Set the LCD_SPU_GRA_OVSA_HPXL_VLN Register
165 * Bits 31-16: Vertical start of graphical overlay on screen
166 * Bits 15-00: Horizontal start of graphical overlay on screen
167 */
Stefan Roeseee4f68b2019-01-30 08:54:11 +0100168 writel(0x00000000, regs + MVEBU_LCD_SPU_GRA_OVSA_HPXL_VLN);
Stefan Roeseab91fd52016-01-20 08:13:28 +0100169
170 /*
171 * Set the LCD_SPU_GRA_HPXL_VLN Register
172 * Bits 31-16: Vertical size of graphical overlay 320=0x140
173 * Bits 15-00: Horizontal size of graphical overlay 240=0xF0
174 * Values before zooming
175 */
Stefan Roeseee4f68b2019-01-30 08:54:11 +0100176 writel((y << 16) | x, regs + MVEBU_LCD_SPU_GRA_HPXL_VLN);
Stefan Roeseab91fd52016-01-20 08:13:28 +0100177
178 /*
179 * Set the LCD_SPU_GZM_HPXL_VLN Register
180 * Bits 31-16: Vertical size of graphical overlay 320=0x140
181 * Bits 15-00: Horizontal size of graphical overlay 240=0xF0
182 * Values after zooming
183 */
Stefan Roeseee4f68b2019-01-30 08:54:11 +0100184 writel((y << 16) | x, regs + MVEBU_LCD_SPU_GZM_HPXL_VLN);
Stefan Roeseab91fd52016-01-20 08:13:28 +0100185
186 /*
187 * Set the LCD_SPU_HWC_OVSA_HPXL_VLN Register
188 * Bits 31-16: Vertical position of HW Cursor 320=0x140
189 * Bits 15-00: Horizontal position of HW Cursor 240=0xF0
190 */
Stefan Roeseee4f68b2019-01-30 08:54:11 +0100191 writel((y << 16) | x, regs + MVEBU_LCD_SPU_HWC_OVSA_HPXL_VLN);
Stefan Roeseab91fd52016-01-20 08:13:28 +0100192
193 /*
194 * Set the LCD_SPU_HWC_OVSA_HPXL_VLN Register
195 * Bits 31-16: Vertical size of HW Cursor
196 * Bits 15-00: Horizontal size of HW Cursor
197 */
Stefan Roeseee4f68b2019-01-30 08:54:11 +0100198 writel(0x00000000, regs + MVEBU_LCD_SPU_HWC_HPXL_VLN);
Stefan Roeseab91fd52016-01-20 08:13:28 +0100199
200 /*
201 * Set the LCD_SPU_HWC_OVSA_HPXL_VLN Register
202 * Bits 31-16: Screen total vertical lines:
203 * VSYNC = 1
204 * Vertical Front Porch = 2
205 * Vertical Lines = 320
206 * Vertical Back Porch = 2
207 * SUM = 325 = 0x0145
208 * Bits 15-00: Screen total horizontal pixels:
209 * HSYNC = 1
210 * Horizontal Front Porch = 44
211 * Horizontal Lines = 240
212 * Horizontal Back Porch = 2
213 * SUM = 287 = 0x011F
214 * Note: For the display the backporch is between SYNC and
215 * the start of the pixels.
216 * This is not certain for the Marvell (!?)
217 */
218 val = ((y + lcd_info->y_fp + lcd_info->y_bp + 1) << 16) |
219 (x + lcd_info->x_fp + lcd_info->x_bp + 1);
Stefan Roeseee4f68b2019-01-30 08:54:11 +0100220 writel(val, regs + MVEBU_LCD_SPUT_V_H_TOTAL);
Stefan Roeseab91fd52016-01-20 08:13:28 +0100221
222 /*
223 * Set the LCD_SPU_V_H_ACTIVE Register
224 * Bits 31-16: Screen active vertical lines 320=0x140
225 * Bits 15-00: Screen active horizontakl pixels 240=0x00F0
226 */
Stefan Roeseee4f68b2019-01-30 08:54:11 +0100227 writel((y << 16) | x, regs + MVEBU_LCD_SPU_V_H_ACTIVE);
Stefan Roeseab91fd52016-01-20 08:13:28 +0100228
229 /*
230 * Set the LCD_SPU_H_PORCH Register
231 * Bits 31-16: Screen horizontal backporch 44=0x2c
232 * Bits 15-00: Screen horizontal frontporch 2=0x02
233 * Note: The terms "front" and "back" for the Marvell seem to be
234 * exactly opposite to the display.
235 */
Stefan Roeseee4f68b2019-01-30 08:54:11 +0100236 writel((lcd_info->x_fp << 16) | lcd_info->x_bp,
237 regs + MVEBU_LCD_SPU_H_PORCH);
Stefan Roeseab91fd52016-01-20 08:13:28 +0100238
239 /*
240 * Set the LCD_SPU_V_PORCH Register
241 * Bits 31-16: Screen vertical backporch 2=0x02
242 * Bits 15-00: Screen vertical frontporch 2=0x02
243 * Note: The terms "front" and "back" for the Marvell seem to be exactly
244 * opposite to the display.
245 */
Stefan Roeseee4f68b2019-01-30 08:54:11 +0100246 writel((lcd_info->y_fp << 16) | lcd_info->y_bp,
247 regs + MVEBU_LCD_SPU_V_PORCH);
Stefan Roeseab91fd52016-01-20 08:13:28 +0100248
249 /*
250 * Set the LCD_SPU_BLANKCOLOR Register
251 * This should be black = 0
252 * For tests this is magenta=00FF00FF
253 */
Stefan Roeseee4f68b2019-01-30 08:54:11 +0100254 writel(0x00FF00FF, regs + MVEBU_LCD_SPU_BLANKCOLOR);
Stefan Roeseab91fd52016-01-20 08:13:28 +0100255
256 /*
257 * Registers in the range of 0x0128 to 0x012C are colors for the cursor
258 * Registers in the range of 0x0130 to 0x0138 are colors for video
259 * color keying
260 */
261
262 /*
263 * Set the LCD_SPU_RDREG4F Register
264 * Bits 31-12: Reservd
265 * Bit 11: SRAM Wait
266 * Bit 10: Smart display fast TX (must be 1)
267 * Bit 9: DMA Arbitration Video/Graphics overlay: 0=interleaved
268 * Bit 8: FIFO watermark for DMA: 0=disable
269 * Bits 07-00: Empty 8B FIFO entries to trigger DMA, default=0x80
270 */
Stefan Roeseee4f68b2019-01-30 08:54:11 +0100271 writel(0x00000780, regs + MVEBU_LCD_CFG_RDREG4F);
Stefan Roeseab91fd52016-01-20 08:13:28 +0100272
273 /*
274 * Set the LCD_SPU_DMACTRL 0 Register
275 * Bit 31: Disable overlay blending 1=disable
276 * Bit 30: Gamma correction enable, 0=disable
277 * Bit 29: Video Contrast/Saturation/Hue Adjust enable, 0=disable
278 * Bit 28: Color palette enable, 0=disable
279 * Bit 27: DMA AXI Arbiter, 1=default
280 * Bit 26: HW Cursor 1-bit mode
281 * Bit 25: HW Cursor or 1- or 2-bit mode
282 * Bit 24: HW Cursor enabled, 0=disable
283 * Bits 23-20: Graphics Memory Color Format: 0x1=RGB1555
284 * Bits 19-16: Video Memory Color Format: 0x1=RGB1555
285 * Bit 15: Memory Toggle between frame 0 and 1: 0=disable
286 * Bit 14: Graphics horizontal scaling enable: 0=disable
287 * Bit 13: Graphics test mode: 0=disable
288 * Bit 12: Graphics SWAP R and B: 0=disable
289 * Bit 11: Graphics SWAP U and V: 0=disable
290 * Bit 10: Graphics SWAP Y and U/V: 0=disable
291 * Bit 09: Graphic YUV to RGB Conversion: 0=disable
292 * Bit 08: Graphic Transfer: 1=enable
293 * Bit 07: Memory Toggle: 0=disable
294 * Bit 06: Video horizontal scaling enable: 0=disable
295 * Bit 05: Video test mode: 0=disable
296 * Bit 04: Video SWAP R and B: 0=disable
297 * Bit 03: Video SWAP U and V: 0=disable
298 * Bit 02: Video SWAP Y and U/V: 0=disable
299 * Bit 01: Video YUV to RGB Conversion: 0=disable
300 * Bit 00: Video Transfer: 0=disable
301 */
Stefan Roeseee4f68b2019-01-30 08:54:11 +0100302 writel(0x88111100, regs + MVEBU_LCD_SPU_DMA_CTRL0);
Stefan Roeseab91fd52016-01-20 08:13:28 +0100303
304 /*
305 * Set the LCD_SPU_DMA_CTRL1 Register
306 * Bit 31: Manual DMA Trigger = 0
307 * Bits 30-28: DMA Trigger Source: 0x2 VSYNC
308 * Bit 28: VSYNC_INV: 0=Rising Edge, 1=Falling Edge
309 * Bits 26-24: Color Key Mode: 0=disable
310 * Bit 23: Fill low bits: 0=fill with zeroes
311 * Bit 22: Reserved
312 * Bit 21: Gated Clock: 0=disable
313 * Bit 20: Power Save enable: 0=disable
314 * Bits 19-18: Reserved
315 * Bits 17-16: Configure Video/Graphic Path: 0x1: Graphic path alpha.
316 * Bits 15-08: Configure Alpha: 0x00.
317 * Bits 07-00: Reserved.
318 */
Stefan Roeseee4f68b2019-01-30 08:54:11 +0100319 writel(0x20010000, regs + MVEBU_LCD_SPU_DMA_CTRL1);
Stefan Roeseab91fd52016-01-20 08:13:28 +0100320
321 /*
322 * Set the LCD_SPU_SRAM_CTRL Register
323 * Reset to default = 0000C000
324 * Bits 15-14: SRAM control: init=0x3, Read=0, Write=2
325 * Bits 11-08: SRAM address ID: 0=gamma_yr, 1=gammy_ug, 2=gamma_vb,
326 * 3=palette, 15=cursor
327 */
Stefan Roeseee4f68b2019-01-30 08:54:11 +0100328 writel(0x0000C000, regs + MVEBU_LCD_SPU_SRAM_CTRL);
Stefan Roeseab91fd52016-01-20 08:13:28 +0100329
330 /*
331 * LCD_SPU_SRAM_WRDAT register: 019C
332 * LCD_SPU_SRAM_PARA0 register: 01A0
333 * LCD_SPU_SRAM_PARA1 register: 01A4 - Cursor control/Power settings
334 */
Stefan Roeseee4f68b2019-01-30 08:54:11 +0100335 writel(0x00000000, regs + MVEBU_LCD_SPU_SRAM_PARA1);
Stefan Roeseab91fd52016-01-20 08:13:28 +0100336
Stefan Roeseab91fd52016-01-20 08:13:28 +0100337 /* Clock settings in the at 01A8 and in the range F0A0 see below */
338
339 /*
340 * Set LCD_SPU_CONTRAST
341 * Bits 31-16: Brightness sign ext. 8-bit value +255 to -255: default=0
342 * Bits 15-00: Contrast sign ext. 8-bit value +255 to -255: default=0
343 */
Stefan Roeseee4f68b2019-01-30 08:54:11 +0100344 writel(0x00000000, regs + MVEBU_LCD_SPU_CONTRAST);
Stefan Roeseab91fd52016-01-20 08:13:28 +0100345
346 /*
347 * Set LCD_SPU_SATURATION
348 * Bits 31-16: Multiplier signed 4.12 fixed point value
349 * Bits 15-00: Saturation signed 4.12 fixed point value
350 */
Stefan Roeseee4f68b2019-01-30 08:54:11 +0100351 writel(0x10001000, regs + MVEBU_LCD_SPU_SATURATION);
Stefan Roeseab91fd52016-01-20 08:13:28 +0100352
353 /*
354 * Set LCD_SPU_HUE
355 * Bits 31-16: Sine signed 2.14 fixed point value
356 * Bits 15-00: Cosine signed 2.14 fixed point value
357 */
Stefan Roeseee4f68b2019-01-30 08:54:11 +0100358 writel(0x00000000, regs + MVEBU_LCD_SPU_CBSH_HUE);
Stefan Roeseab91fd52016-01-20 08:13:28 +0100359
360 /*
361 * Set LCD_SPU_DUMB_CTRL
362 * Bits 31-28: LCD Type: 3=18 bit RGB | 6=24 bit RGB888
363 * Bits 27-12: Reserved
364 * Bit 11: LCD DMA Pipeline Enable: 1=Enable
365 * Bits 10-09: Reserved
366 * Bit 8: LCD GPIO pin (??)
367 * Bit 7: Reverse RGB
368 * Bit 6: Invert composite blank signal DE/EN (??)
369 * Bit 5: Invert composite sync signal
370 * Bit 4: Invert Pixel Valid Enable DE/EN (??)
371 * Bit 3: Invert VSYNC
372 * Bit 2: Invert HSYNC
373 * Bit 1: Invert Pixel Clock
374 * Bit 0: Enable LCD Panel: 1=Enable
375 * Question: Do we have to disable Smart and Dumb LCD
376 * and separately enable LVDS?
377 */
Stefan Roeseee4f68b2019-01-30 08:54:11 +0100378 writel(0x6000080F, regs + MVEBU_LCD_SPU_DUMB_CTRL);
Stefan Roeseab91fd52016-01-20 08:13:28 +0100379
380 /*
381 * Set LCD_SPU_IOPAD_CTRL
382 * Bits 31-20: Reserved
383 * Bits 19-18: Vertical Interpolation: 0=Disable
384 * Bits 17-16: Reserved
385 * Bit 15: Graphics Vertical Mirror enable: 0=disable
386 * Bit 14: Reserved
387 * Bit 13: Video Vertical Mirror enable: 0=disable
388 * Bit 12: Reserved
389 * Bit 11: Command Vertical Mirror enable: 0=disable
390 * Bit 10: Reserved
391 * Bits 09-08: YUV to RGB Color space conversion: 0 (Not used)
392 * Bits 07-04: AXI Bus Master: 0x4: no crossing of 4k boundary,
393 * 128 Bytes burst
394 * Bits 03-00: LCD pins: ??? 0=24-bit Dump panel ??
395 */
Stefan Roeseee4f68b2019-01-30 08:54:11 +0100396 writel(0x000000C0, regs + MVEBU_LCD_SPU_IOPAD_CONTROL);
Stefan Roeseab91fd52016-01-20 08:13:28 +0100397
398 /*
399 * Set SUP_IRQ_ENA_2: Disable all interrupts
400 */
Stefan Roeseee4f68b2019-01-30 08:54:11 +0100401 writel(0x00000000, regs + MVEBU_LCD_SPU_IRQ_ENA_2);
Stefan Roeseab91fd52016-01-20 08:13:28 +0100402
403 /*
404 * Set SUP_IRQ_ENA: Disable all interrupts.
405 */
Stefan Roeseee4f68b2019-01-30 08:54:11 +0100406 writel(0x00000000, regs + MVEBU_LCD_SPU_IRQ_ENA);
Stefan Roeseab91fd52016-01-20 08:13:28 +0100407
408 /*
409 * Set up ADDL Control Register
410 * Bits 31-29: 0x0 = Fastest Delay Line (default)
411 * 0x3 = Slowest Delay Line (default)
412 * Bit 28: Calibration done status.
413 * Bit 27: Reserved
414 * Bit 26: Set Pixel Clock to ADDL output
415 * Bit 25: Reduce CAL Enable
416 * Bits 24-22: Manual calibration value.
417 * Bit 21: Manual calibration enable.
418 * Bit 20: Restart Auto Cal
419 * Bits 19-16: Calibration Threshold voltage, default= 0x2
420 * Bite 15-14: Reserved
421 * Bits 13-11: Divisor for ADDL Clock: 0x1=/2, 0x3=/8, 0x5=/16
422 * Bit 10: Power Down ADDL module, default = 1!
423 * Bits 09-08: Test point configuration: 0x2=Bias, 0x3=High-z
424 * Bit 07: Reset ADDL
425 * Bit 06: Invert ADLL Clock
426 * Bits 05-00: Delay taps, 0x3F=Half Cycle, 0x00=No delay
427 * Note: ADLL is used for a VGA interface with DAC - not used here
428 */
Stefan Roeseee4f68b2019-01-30 08:54:11 +0100429 writel(0x00000000, regs + MVEBU_LCD_ADLL_CTRL);
Stefan Roeseab91fd52016-01-20 08:13:28 +0100430
431 /*
432 * Set the LCD_CLK_DIS Register:
433 * Bits 3 and 4 must be 1
434 */
Stefan Roeseee4f68b2019-01-30 08:54:11 +0100435 writel(0x00000018, regs + MVEBU_LCD_CLK_DIS);
Stefan Roeseab91fd52016-01-20 08:13:28 +0100436
437 /*
438 * Set the LCD_VGA_HSYNC/VSYNC Delay Register:
439 * Bits 03-00: Sets the delay for the HSYNC and VSYNC signals
440 */
Stefan Roeseee4f68b2019-01-30 08:54:11 +0100441 writel(0x00000000, regs + MVEBU_LCD_VGA_HVSYNC_DELAY);
Stefan Roeseab91fd52016-01-20 08:13:28 +0100442
443 /*
444 * Clock registers
445 * See page 475 in the functional spec.
446 */
447
448 /* Step 1 and 2: Disable the PLL */
449
450 /*
451 * Disable PLL, see "LCD Clock Configuration 1 Register" below
452 */
Stefan Roeseee4f68b2019-01-30 08:54:11 +0100453 writel(0x8FF40007, regs + MVEBU_LCD_CLK_CFG_1);
Stefan Roeseab91fd52016-01-20 08:13:28 +0100454
455 /*
456 * Powerdown, see "LCD Clock Configuration 0 Register" below
457 */
Stefan Roeseee4f68b2019-01-30 08:54:11 +0100458 writel(0x94000174, regs + MVEBU_LCD_CLK_CFG_0);
Stefan Roeseab91fd52016-01-20 08:13:28 +0100459
460 /*
461 * Set the LCD_CFG_SCLK_DIV Register
462 * This is set fix to 0x40000001 for the LVDS output:
463 * Bits 31-30: SCLCK Source: 0=AXIBus, 1=AHBus, 2=PLLDivider0
464 * Bits 15-01: Clock Divider: Bypass for LVDS=0x0001
465 * See page 475 in section 28.5.
466 */
Stefan Roeseee4f68b2019-01-30 08:54:11 +0100467 writel(0x80000001, regs + MVEBU_LCD_CFG_SCLK_DIV);
Stefan Roeseab91fd52016-01-20 08:13:28 +0100468
469 /*
470 * Set the LCD Clock Configuration 0 Register:
471 * Bit 31: Powerdown: 0=Power up
472 * Bits 30-29: Reserved
473 * Bits 28-26: PLL_KDIV: This encodes K
474 * K=16 => 0x5
475 * Bits 25-17: PLL_MDIV: This is M-1:
476 * M=1 => 0x0
477 * Bits 16-13: VCO band: 0x1 for 700-920MHz
478 * Bits 12-04: PLL_NDIV: This is N-1 and corresponds to R1_CTRL!
479 * N=28=0x1C => 0x1B
480 * Bits 03-00: R1_CTRL (for N=28 => 0x4)
481 */
Stefan Roeseee4f68b2019-01-30 08:54:11 +0100482 writel(0x940021B4, regs + MVEBU_LCD_CLK_CFG_0);
Stefan Roeseab91fd52016-01-20 08:13:28 +0100483
484 /*
485 * Set the LCD Clock Configuration 1 Register:
486 * Bits 31-19: Reserved
487 * Bit 18: Select PLL: Core PLL, 1=Dedicated PPL
488 * Bit 17: Clock Output Enable: 0=disable, 1=enable
489 * Bit 16: Select RefClk: 0=RefClk (25MHz), 1=External
490 * Bit 15: Half-Div, Device Clock by DIV+0.5*Half-Dev
491 * Bits 14-13: Reserved
492 * Bits 12-00: PLL Full Divider [Note: Assumed to be the Post-Divider
493 * M' for LVDS=7!]
494 */
Stefan Roeseee4f68b2019-01-30 08:54:11 +0100495 writel(0x8FF40007, regs + MVEBU_LCD_CLK_CFG_1);
Stefan Roeseab91fd52016-01-20 08:13:28 +0100496
497 /*
498 * Set the LVDS Clock Configuration Register:
499 * Bit 31: Clock Gating for the input clock to the LVDS
500 * Bit 30: LVDS Serializer enable: 1=Enabled
501 * Bits 29-11: Reserved
502 * Bit 11-08: LVDS Clock delay: 0x02 (default): by 2 pixel clock/7
503 * Bits 07-02: Reserved
504 * Bit 01: 24bbp Option: 0=Option_1,1=Option2
505 * Bit 00: 1=24bbp Panel: 0=18bpp Panel
506 * Note: Bits 0 and must be verified with the help of the
507 * Interface/display
508 */
Stefan Roeseee4f68b2019-01-30 08:54:11 +0100509 writel(0xC0000201, regs + MVEBU_LCD_LVDS_CLK_CFG);
Stefan Roeseab91fd52016-01-20 08:13:28 +0100510
511 /*
512 * Power up PLL (Clock Config 0)
513 */
Stefan Roeseee4f68b2019-01-30 08:54:11 +0100514 writel(0x140021B4, regs + MVEBU_LCD_CLK_CFG_0);
Stefan Roeseab91fd52016-01-20 08:13:28 +0100515
516 /* wait 10 ms */
517 mdelay(10);
518
519 /*
520 * Enable PLL (Clock Config 1)
521 */
Stefan Roeseee4f68b2019-01-30 08:54:11 +0100522 writel(0x8FF60007, regs + MVEBU_LCD_CLK_CFG_1);
Stefan Roeseab91fd52016-01-20 08:13:28 +0100523}
524
Stefan Roeseee4f68b2019-01-30 08:54:11 +0100525static int mvebu_video_probe(struct udevice *dev)
Stefan Roeseab91fd52016-01-20 08:13:28 +0100526{
Simon Glassb75b15b2020-12-03 16:55:23 -0700527 struct video_uc_plat *plat = dev_get_uclass_plat(dev);
Stefan Roeseee4f68b2019-01-30 08:54:11 +0100528 struct video_priv *uc_priv = dev_get_uclass_priv(dev);
529 struct mvebu_video_priv *priv = dev_get_priv(dev);
530 struct mvebu_lcd_info lcd_info;
531 struct display_timing timings;
532 u32 fb_start, fb_end;
533 int ret;
534
535 priv->regs = dev_read_addr(dev);
536 if (priv->regs == FDT_ADDR_T_NONE) {
537 dev_err(dev, "failed to get LCD address\n");
538 return -ENXIO;
539 }
540
541 ret = ofnode_decode_display_timing(dev_ofnode(dev), 0, &timings);
542 if (ret) {
543 dev_err(dev, "failed to get any display timings\n");
544 return -EINVAL;
545 }
546
547 /* Use DT timing (resolution) in internal info struct */
548 lcd_info.fb_base = plat->base;
549 lcd_info.x_res = timings.hactive.typ;
550 lcd_info.x_fp = timings.hfront_porch.typ;
551 lcd_info.x_bp = timings.hback_porch.typ;
552 lcd_info.y_res = timings.vactive.typ;
553 lcd_info.y_fp = timings.vfront_porch.typ;
554 lcd_info.y_bp = timings.vback_porch.typ;
555
556 /* Initialize the LCD controller */
557 mvebu_lcd_register_init(&lcd_info, priv->regs);
558
559 /* Enable dcache for the frame buffer */
560 fb_start = plat->base & ~(MMU_SECTION_SIZE - 1);
561 fb_end = plat->base + plat->size;
562 fb_end = ALIGN(fb_end, 1 << MMU_SECTION_SHIFT);
563 mmu_set_region_dcache_behaviour(fb_start, fb_end - fb_start,
564 DCACHE_WRITEBACK);
565 video_set_flush_dcache(dev, true);
566
567 uc_priv->xsize = lcd_info.x_res;
568 uc_priv->ysize = lcd_info.y_res;
569 uc_priv->bpix = VIDEO_BPP16; /* Uses RGB555 format */
570
571 return 0;
Stefan Roeseab91fd52016-01-20 08:13:28 +0100572}
573
Stefan Roeseee4f68b2019-01-30 08:54:11 +0100574static int mvebu_video_bind(struct udevice *dev)
Stefan Roeseab91fd52016-01-20 08:13:28 +0100575{
Simon Glassb75b15b2020-12-03 16:55:23 -0700576 struct video_uc_plat *plat = dev_get_uclass_plat(dev);
Stefan Roeseab91fd52016-01-20 08:13:28 +0100577
Stefan Roeseee4f68b2019-01-30 08:54:11 +0100578 plat->size = LCD_MAX_WIDTH * LCD_MAX_HEIGHT *
579 (1 << LCD_MAX_LOG2_BPP) / 8;
Stefan Roeseab91fd52016-01-20 08:13:28 +0100580
Stefan Roeseee4f68b2019-01-30 08:54:11 +0100581 return 0;
582}
Stefan Roeseab91fd52016-01-20 08:13:28 +0100583
Stefan Roeseee4f68b2019-01-30 08:54:11 +0100584static const struct udevice_id mvebu_video_ids[] = {
585 { .compatible = "marvell,armada-xp-lcd" },
586 { }
587};
Stefan Roeseab91fd52016-01-20 08:13:28 +0100588
Stefan Roeseee4f68b2019-01-30 08:54:11 +0100589U_BOOT_DRIVER(mvebu_video) = {
590 .name = "mvebu_video",
591 .id = UCLASS_VIDEO,
592 .of_match = mvebu_video_ids,
593 .bind = mvebu_video_bind,
594 .probe = mvebu_video_probe,
Simon Glass8a2b47f2020-12-03 16:55:17 -0700595 .priv_auto = sizeof(struct mvebu_video_priv),
Stefan Roeseee4f68b2019-01-30 08:54:11 +0100596};