diff options
Diffstat (limited to 'firmware/target/arm/as3525/sansa-fuzev2')
-rw-r--r-- | firmware/target/arm/as3525/sansa-fuzev2/lcd-fuzev2.c | 394 |
1 files changed, 18 insertions, 376 deletions
diff --git a/firmware/target/arm/as3525/sansa-fuzev2/lcd-fuzev2.c b/firmware/target/arm/as3525/sansa-fuzev2/lcd-fuzev2.c index 9797815d23..fd6bcb45fc 100644 --- a/firmware/target/arm/as3525/sansa-fuzev2/lcd-fuzev2.c +++ b/firmware/target/arm/as3525/sansa-fuzev2/lcd-fuzev2.c | |||
@@ -25,82 +25,33 @@ | |||
25 | 25 | ||
26 | #include "cpu.h" | 26 | #include "cpu.h" |
27 | #include "lcd.h" | 27 | #include "lcd.h" |
28 | #include "file.h" | ||
29 | #include "debug.h" | ||
30 | #include "system.h" | 28 | #include "system.h" |
31 | #include "clock-target.h" | 29 | #include "clock-target.h" |
32 | #include "dbop-as3525.h" | 30 | #include "dbop-as3525.h" |
31 | #include "lcd-fuze.h" | ||
33 | 32 | ||
34 | /* The controller is unknown, but some registers appear to be the same as the | 33 | void lcd_write_cmd(int16_t cmd) |
35 | HD66789R */ | 34 | { |
36 | static bool display_on = false; /* is the display turned on? */ | 35 | unsigned short data = swap16(cmd); |
37 | 36 | DBOP_TIMPOL_23 = 0xA12F0036; | |
38 | /* register defines */ | 37 | dbop_write_data(&data, 1); |
39 | #define R_START_OSC 0x00 | ||
40 | #define R_DRV_OUTPUT_CONTROL 0x01 | ||
41 | #define R_DRV_WAVEFORM_CONTROL 0x02 | ||
42 | #define R_ENTRY_MODE 0x03 | ||
43 | #define R_COMPARE_REG1 0x04 | ||
44 | #define R_COMPARE_REG2 0x05 | ||
45 | |||
46 | #define R_DISP_CONTROL1 0x07 | ||
47 | #define R_DISP_CONTROL2 0x08 | ||
48 | #define R_DISP_CONTROL3 0x09 | ||
49 | |||
50 | #define R_FRAME_CYCLE_CONTROL 0x0b | ||
51 | #define R_EXT_DISP_IF_CONTROL 0x0c | ||
52 | |||
53 | #define R_POWER_CONTROL1 0x10 | ||
54 | #define R_POWER_CONTROL2 0x11 | ||
55 | #define R_POWER_CONTROL3 0x12 | ||
56 | #define R_POWER_CONTROL4 0x13 | ||
57 | |||
58 | #define R_RAM_ADDR_SET 0x21 | ||
59 | #define R_WRITE_DATA_2_GRAM 0x22 | ||
60 | |||
61 | #define R_GAMMA_FINE_ADJ_POS1 0x30 | ||
62 | #define R_GAMMA_FINE_ADJ_POS2 0x31 | ||
63 | #define R_GAMMA_FINE_ADJ_POS3 0x32 | ||
64 | #define R_GAMMA_GRAD_ADJ_POS 0x33 | ||
65 | |||
66 | #define R_GAMMA_FINE_ADJ_NEG1 0x34 | ||
67 | #define R_GAMMA_FINE_ADJ_NEG2 0x35 | ||
68 | #define R_GAMMA_FINE_ADJ_NEG3 0x36 | ||
69 | #define R_GAMMA_GRAD_ADJ_NEG 0x37 | ||
70 | |||
71 | #define R_GAMMA_AMP_ADJ_RES_POS 0x38 | ||
72 | #define R_GAMMA_AMP_AVG_ADJ_RES_NEG 0x39 | ||
73 | |||
74 | #define R_GATE_SCAN_POS 0x40 | ||
75 | #define R_VERT_SCROLL_CONTROL 0x41 | ||
76 | #define R_1ST_SCR_DRV_POS 0x42 | ||
77 | #define R_2ND_SCR_DRV_POS 0x43 | ||
78 | #define R_HORIZ_RAM_ADDR_POS 0x44 | ||
79 | #define R_VERT_RAM_ADDR_POS 0x45 | ||
80 | |||
81 | /* Flip Flag */ | ||
82 | #define R_ENTRY_MODE_HORZ_NORMAL 0x7030 | ||
83 | #define R_ENTRY_MODE_HORZ_FLIPPED 0x7000 | ||
84 | static unsigned short r_entry_mode = R_ENTRY_MODE_HORZ_NORMAL; | ||
85 | #define R_ENTRY_MODE_VERT 0x7038 | ||
86 | #define R_ENTRY_MODE_SOLID_VERT 0x1038 | ||
87 | #define R_ENTRY_MODE_VIDEO_NORMAL 0x7038 | ||
88 | #define R_ENTRY_MODE_VIDEO_FLIPPED 0x7018 | ||
89 | 38 | ||
90 | /* Reverse Flag */ | 39 | int delay = 32; |
91 | #define R_DISP_CONTROL_NORMAL 0x0004 | 40 | do { |
92 | #define R_DISP_CONTROL_REV 0x0000 | 41 | nop; |
93 | static unsigned short r_disp_control_rev = R_DISP_CONTROL_NORMAL; | 42 | } while(delay--); |
94 | 43 | ||
95 | static const int xoffset = 20; | 44 | DBOP_TIMPOL_23 = 0xA12FE037; |
45 | } | ||
96 | 46 | ||
97 | static inline void lcd_delay(int x) | 47 | void lcd_write_reg(int reg, int value) |
98 | { | 48 | { |
99 | do { | 49 | int16_t data = swap16(value); |
100 | asm volatile ("nop\n"); | 50 | lcd_write_cmd(reg); |
101 | } while (x--); | 51 | dbop_write_data(&data, 1); |
102 | } | 52 | } |
103 | 53 | ||
54 | |||
104 | static void as3525_dbop_init(void) | 55 | static void as3525_dbop_init(void) |
105 | { | 56 | { |
106 | CCU_IO |= 1<<12; | 57 | CCU_IO |= 1<<12; |
@@ -115,102 +66,6 @@ static void as3525_dbop_init(void) | |||
115 | } | 66 | } |
116 | 67 | ||
117 | 68 | ||
118 | static void lcd_write_cmd(unsigned short cmd) | ||
119 | { | ||
120 | unsigned short data = swap16(cmd); | ||
121 | DBOP_TIMPOL_23 = 0xA12F0036; | ||
122 | dbop_write_data(&data, 1); | ||
123 | lcd_delay(32); | ||
124 | DBOP_TIMPOL_23 = 0xA12FE037; | ||
125 | } | ||
126 | |||
127 | static void lcd_write_reg(int reg, int value) | ||
128 | { | ||
129 | int16_t data = swap16(value); | ||
130 | lcd_write_cmd(reg); | ||
131 | dbop_write_data(&data, 1); | ||
132 | } | ||
133 | |||
134 | /*** hardware configuration ***/ | ||
135 | |||
136 | void lcd_set_contrast(int val) | ||
137 | { | ||
138 | (void)val; | ||
139 | } | ||
140 | |||
141 | void lcd_set_invert_display(bool yesno) | ||
142 | { | ||
143 | r_disp_control_rev = yesno ? R_DISP_CONTROL_REV : | ||
144 | R_DISP_CONTROL_NORMAL; | ||
145 | |||
146 | if (display_on) | ||
147 | { | ||
148 | lcd_write_reg(R_DISP_CONTROL1, 0x0013 | r_disp_control_rev); | ||
149 | } | ||
150 | |||
151 | } | ||
152 | |||
153 | #ifdef HAVE_LCD_FLIP | ||
154 | static bool display_flipped = false; | ||
155 | |||
156 | /* turn the display upside down */ | ||
157 | void lcd_set_flip(bool yesno) | ||
158 | { | ||
159 | display_flipped = yesno; | ||
160 | |||
161 | r_entry_mode = yesno ? R_ENTRY_MODE_HORZ_FLIPPED : | ||
162 | R_ENTRY_MODE_HORZ_NORMAL; | ||
163 | } | ||
164 | #endif | ||
165 | |||
166 | static void _display_on(void) | ||
167 | { | ||
168 | /* Initialise in the same way as the original firmare */ | ||
169 | |||
170 | lcd_write_reg(R_DISP_CONTROL1, 0); | ||
171 | lcd_write_reg(R_POWER_CONTROL4, 0); | ||
172 | |||
173 | lcd_write_reg(R_POWER_CONTROL2, 0x3704); | ||
174 | lcd_write_reg(0x14, 0x1a1b); | ||
175 | lcd_write_reg(R_POWER_CONTROL1, 0x3860); | ||
176 | lcd_write_reg(R_POWER_CONTROL4, 0x40); | ||
177 | |||
178 | lcd_write_reg(R_POWER_CONTROL4, 0x60); | ||
179 | |||
180 | lcd_write_reg(R_POWER_CONTROL4, 0x70); | ||
181 | lcd_write_reg(R_DRV_OUTPUT_CONTROL, 277); | ||
182 | lcd_write_reg(R_DRV_WAVEFORM_CONTROL, (7<<8)); | ||
183 | lcd_write_reg(R_ENTRY_MODE, r_entry_mode); | ||
184 | lcd_write_reg(R_DISP_CONTROL2, 0x01); | ||
185 | lcd_write_reg(R_FRAME_CYCLE_CONTROL, (1<<10)); | ||
186 | lcd_write_reg(R_EXT_DISP_IF_CONTROL, 0); | ||
187 | |||
188 | lcd_write_reg(R_GAMMA_FINE_ADJ_POS1, 0x40); | ||
189 | lcd_write_reg(R_GAMMA_FINE_ADJ_POS2, 0x0687); | ||
190 | lcd_write_reg(R_GAMMA_FINE_ADJ_POS3, 0x0306); | ||
191 | lcd_write_reg(R_GAMMA_GRAD_ADJ_POS, 0x104); | ||
192 | lcd_write_reg(R_GAMMA_FINE_ADJ_NEG1, 0x0585); | ||
193 | lcd_write_reg(R_GAMMA_FINE_ADJ_NEG2, 255+66); | ||
194 | lcd_write_reg(R_GAMMA_FINE_ADJ_NEG3, 0x0687+128); | ||
195 | lcd_write_reg(R_GAMMA_GRAD_ADJ_NEG, 259); | ||
196 | lcd_write_reg(R_GAMMA_AMP_ADJ_RES_POS, 0); | ||
197 | lcd_write_reg(R_GAMMA_AMP_AVG_ADJ_RES_NEG, 0); | ||
198 | |||
199 | lcd_write_reg(R_1ST_SCR_DRV_POS, (LCD_WIDTH - 1)); | ||
200 | lcd_write_reg(R_2ND_SCR_DRV_POS, 0); | ||
201 | lcd_write_reg(R_HORIZ_RAM_ADDR_POS, (LCD_WIDTH - 1)); | ||
202 | lcd_write_reg(R_VERT_RAM_ADDR_POS, 0); | ||
203 | lcd_write_reg(0x46, (((LCD_WIDTH - 1) + xoffset) << 8) | xoffset); | ||
204 | lcd_write_reg(0x47, (LCD_HEIGHT - 1)); | ||
205 | lcd_write_reg(0x48, 0x0); | ||
206 | |||
207 | lcd_write_reg(R_DISP_CONTROL1, 0x11); | ||
208 | lcd_write_reg(R_DISP_CONTROL1, 0x13 | r_disp_control_rev); | ||
209 | |||
210 | display_on = true; /* must be done before calling lcd_update() */ | ||
211 | lcd_update(); | ||
212 | } | ||
213 | |||
214 | void lcd_init_device(void) | 69 | void lcd_init_device(void) |
215 | { | 70 | { |
216 | as3525_dbop_init(); | 71 | as3525_dbop_init(); |
@@ -229,218 +84,5 @@ void lcd_init_device(void) | |||
229 | GPIOA_PIN(4) = 1<<4; | 84 | GPIOA_PIN(4) = 1<<4; |
230 | GPIOA_PIN(5) = 1<<5; | 85 | GPIOA_PIN(5) = 1<<5; |
231 | 86 | ||
232 | _display_on(); | 87 | fuze_display_on(); |
233 | } | ||
234 | |||
235 | #if defined(HAVE_LCD_ENABLE) | ||
236 | void lcd_enable(bool on) | ||
237 | { | ||
238 | if (display_on == on) | ||
239 | return; | ||
240 | |||
241 | if(on) | ||
242 | { | ||
243 | lcd_write_reg(R_START_OSC, 1); | ||
244 | lcd_write_reg(R_POWER_CONTROL1, 0); | ||
245 | lcd_write_reg(R_POWER_CONTROL2, 0x3704); | ||
246 | lcd_write_reg(0x14, 0x1a1b); | ||
247 | lcd_write_reg(R_POWER_CONTROL1, 0x3860); | ||
248 | lcd_write_reg(R_POWER_CONTROL4, 0x40); | ||
249 | lcd_write_reg(R_POWER_CONTROL4, 0x60); | ||
250 | lcd_write_reg(R_POWER_CONTROL4, 112); | ||
251 | lcd_write_reg(R_DISP_CONTROL1, 0x11); | ||
252 | lcd_write_reg(R_DISP_CONTROL1, 0x13 | r_disp_control_rev); | ||
253 | display_on = true; | ||
254 | lcd_update(); /* Resync display */ | ||
255 | send_event(LCD_EVENT_ACTIVATION, NULL); | ||
256 | sleep(0); | ||
257 | |||
258 | } | ||
259 | else | ||
260 | { | ||
261 | lcd_write_reg(R_DISP_CONTROL1, 0x22); | ||
262 | lcd_write_reg(R_DISP_CONTROL1, 0); | ||
263 | lcd_write_reg(R_POWER_CONTROL1, 1); | ||
264 | display_on = false; | ||
265 | } | ||
266 | } | ||
267 | #endif | ||
268 | |||
269 | #if defined(HAVE_LCD_ENABLE) || defined(HAVE_LCD_SLEEP) | ||
270 | bool lcd_active(void) | ||
271 | { | ||
272 | return display_on; | ||
273 | } | ||
274 | #endif | ||
275 | |||
276 | /*** update functions ***/ | ||
277 | |||
278 | /* FIXME : find the datasheet for this RENESAS controller so we identify the | ||
279 | * registers used in windowing code (not present in HD66789R) */ | ||
280 | |||
281 | /* Set horizontal window addresses */ | ||
282 | static void lcd_window_x(int xmin, int xmax) | ||
283 | { | ||
284 | xmin += xoffset; | ||
285 | xmax += xoffset; | ||
286 | lcd_write_reg(R_HORIZ_RAM_ADDR_POS + 2, (xmax << 8) | xmin); | ||
287 | lcd_write_reg(R_RAM_ADDR_SET - 1, xmin); | ||
288 | } | ||
289 | |||
290 | /* Set vertical window addresses */ | ||
291 | static void lcd_window_y(int ymin, int ymax) | ||
292 | { | ||
293 | lcd_write_reg(R_VERT_RAM_ADDR_POS + 2, ymax); | ||
294 | lcd_write_reg(R_VERT_RAM_ADDR_POS + 3, ymin); | ||
295 | lcd_write_reg(R_RAM_ADDR_SET, ymin); | ||
296 | } | ||
297 | |||
298 | static unsigned lcd_yuv_options = 0; | ||
299 | |||
300 | void lcd_yuv_set_options(unsigned options) | ||
301 | { | ||
302 | lcd_yuv_options = options; | ||
303 | } | ||
304 | |||
305 | |||
306 | #ifndef BOOTLOADER | ||
307 | /* Line write helper function for lcd_yuv_blit. Write two lines of yuv420. */ | ||
308 | extern void lcd_write_yuv420_lines(unsigned char const * const src[3], | ||
309 | int width, | ||
310 | int stride); | ||
311 | extern void lcd_write_yuv420_lines_odither(unsigned char const * const src[3], | ||
312 | int width, | ||
313 | int stride, | ||
314 | int x_screen, /* To align dither pattern */ | ||
315 | int y_screen); | ||
316 | |||
317 | /* Performance function to blit a YUV bitmap directly to the LCD | ||
318 | * src_x, src_y, width and height should be even | ||
319 | * x, y, width and height have to be within LCD bounds | ||
320 | */ | ||
321 | void lcd_blit_yuv(unsigned char * const src[3], | ||
322 | int src_x, int src_y, int stride, | ||
323 | int x, int y, int width, int height) | ||
324 | { | ||
325 | unsigned char const * yuv_src[3]; | ||
326 | off_t z; | ||
327 | |||
328 | /* Sorry, but width and height must be >= 2 or else */ | ||
329 | width &= ~1; | ||
330 | height >>= 1; | ||
331 | |||
332 | z = stride*src_y; | ||
333 | yuv_src[0] = src[0] + z + src_x; | ||
334 | yuv_src[1] = src[1] + (z >> 2) + (src_x >> 1); | ||
335 | yuv_src[2] = src[2] + (yuv_src[1] - src[1]); | ||
336 | |||
337 | #ifdef HAVE_LCD_FLIP | ||
338 | lcd_write_reg(R_ENTRY_MODE, | ||
339 | display_flipped ? R_ENTRY_MODE_VIDEO_FLIPPED : R_ENTRY_MODE_VIDEO_NORMAL | ||
340 | ); | ||
341 | #else | ||
342 | lcd_write_reg(R_ENTRY_MODE, R_ENTRY_MODE_VIDEO_NORMAL); | ||
343 | #endif | ||
344 | |||
345 | lcd_window_x(x, x + width - 1); | ||
346 | |||
347 | if (lcd_yuv_options & LCD_YUV_DITHER) | ||
348 | { | ||
349 | do | ||
350 | { | ||
351 | lcd_window_y(y, y + 1); | ||
352 | |||
353 | lcd_write_cmd(R_WRITE_DATA_2_GRAM); | ||
354 | lcd_write_yuv420_lines_odither(yuv_src, width, stride, x, y); | ||
355 | yuv_src[0] += stride << 1; /* Skip down two luma lines */ | ||
356 | yuv_src[1] += stride >> 1; /* Skip down one chroma line */ | ||
357 | yuv_src[2] += stride >> 1; | ||
358 | y += 2; | ||
359 | } | ||
360 | while (--height > 0); | ||
361 | } | ||
362 | else | ||
363 | { | ||
364 | do | ||
365 | { | ||
366 | lcd_window_y(y, y + 1); | ||
367 | |||
368 | lcd_write_cmd(R_WRITE_DATA_2_GRAM); | ||
369 | lcd_write_yuv420_lines(yuv_src, width, stride); | ||
370 | yuv_src[0] += stride << 1; /* Skip down two luma lines */ | ||
371 | yuv_src[1] += stride >> 1; /* Skip down one chroma line */ | ||
372 | yuv_src[2] += stride >> 1; | ||
373 | y += 2; | ||
374 | } | ||
375 | while (--height > 0); | ||
376 | } | ||
377 | } | ||
378 | |||
379 | #endif | ||
380 | |||
381 | |||
382 | /* Update the display. | ||
383 | This must be called after all other LCD functions that change the display. */ | ||
384 | void lcd_update(void) | ||
385 | { | ||
386 | if (!display_on) | ||
387 | return; | ||
388 | |||
389 | lcd_write_reg(R_ENTRY_MODE, r_entry_mode); | ||
390 | |||
391 | lcd_window_x(0, LCD_WIDTH - 1); | ||
392 | lcd_window_y(0, LCD_HEIGHT - 1); | ||
393 | |||
394 | lcd_write_cmd(R_WRITE_DATA_2_GRAM); | ||
395 | |||
396 | lcd_update_rect(0,0, LCD_WIDTH, LCD_HEIGHT); | ||
397 | } | ||
398 | |||
399 | /* Update a fraction of the display. */ | ||
400 | void lcd_update_rect(int x, int y, int width, int height) | ||
401 | { | ||
402 | const fb_data *ptr; | ||
403 | |||
404 | if (!display_on) | ||
405 | return; | ||
406 | |||
407 | /* nothing to draw? */ | ||
408 | if ((width <= 0) || (height <= 0) || (x >= LCD_WIDTH) || | ||
409 | (y >= LCD_HEIGHT) || (x + width <= 0) || (y + height <= 0)) | ||
410 | return; | ||
411 | |||
412 | if (x < 0) | ||
413 | { /* clip left */ | ||
414 | width += x; | ||
415 | x = 0; | ||
416 | } | ||
417 | if (y < 0) | ||
418 | { /* clip top */ | ||
419 | height += y; | ||
420 | y = 0; | ||
421 | } | ||
422 | if (x + width > LCD_WIDTH) | ||
423 | width = LCD_WIDTH - x; /* clip right */ | ||
424 | if (y + height > LCD_HEIGHT) | ||
425 | height = LCD_HEIGHT - y; /* clip bottom */ | ||
426 | |||
427 | lcd_write_reg(R_ENTRY_MODE, r_entry_mode); | ||
428 | |||
429 | /* we need to make x and width even to enable 32bit transfers */ | ||
430 | width = (width + (x & 1) + 1) & ~1; | ||
431 | x &= ~1; | ||
432 | |||
433 | lcd_window_x(x, x + width - 1); | ||
434 | lcd_window_y(y, y + height -1); | ||
435 | |||
436 | lcd_write_cmd(R_WRITE_DATA_2_GRAM); | ||
437 | |||
438 | ptr = &lcd_framebuffer[y][x]; | ||
439 | |||
440 | do | ||
441 | { | ||
442 | dbop_write_data(ptr, width); | ||
443 | ptr += LCD_WIDTH; | ||
444 | } | ||
445 | while (--height > 0); | ||
446 | } | 88 | } |