summaryrefslogtreecommitdiff
path: root/firmware/target/arm/lcd-c200_c200v2.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/arm/lcd-c200_c200v2.c')
-rw-r--r--firmware/target/arm/lcd-c200_c200v2.c77
1 files changed, 77 insertions, 0 deletions
diff --git a/firmware/target/arm/lcd-c200_c200v2.c b/firmware/target/arm/lcd-c200_c200v2.c
index 665c82f292..38877ccac9 100644
--- a/firmware/target/arm/lcd-c200_c200v2.c
+++ b/firmware/target/arm/lcd-c200_c200v2.c
@@ -30,6 +30,9 @@
30#endif 30#endif
31 31
32/* Display status */ 32/* Display status */
33#if MEMORYSIZE > 2
34static unsigned lcd_yuv_options SHAREDBSS_ATTR = 0;
35#endif
33static bool is_lcd_enabled = true; 36static bool is_lcd_enabled = true;
34 37
35/* LCD command set for Samsung S6B33B2 */ 38/* LCD command set for Samsung S6B33B2 */
@@ -298,6 +301,80 @@ void lcd_set_flip(bool yesno)
298 301
299/*** update functions ***/ 302/*** update functions ***/
300 303
304#if MEMORYSIZE > 2 /* not for C200V2 */
305void lcd_yuv_set_options(unsigned options)
306{
307 lcd_yuv_options = options;
308}
309
310/* Line write helper function for lcd_yuv_blit. Write two lines of yuv420. */
311extern void lcd_write_yuv420_lines(unsigned char const * const src[3],
312 int width,
313 int stride);
314extern void lcd_write_yuv420_lines_odither(unsigned char const * const src[3],
315 int width,
316 int stride,
317 int x_screen, /* To align dither pattern */
318 int y_screen);
319/* Performance function to blit a YUV bitmap directly to the LCD */
320void lcd_blit_yuv(unsigned char * const src[3],
321 int src_x, int src_y, int stride,
322 int x, int y, int width, int height)
323{
324 unsigned char const * yuv_src[3];
325 off_t z;
326
327 /* Sorry, but width and height must be >= 2 or else */
328 width &= ~1;
329 height >>= 1;
330
331 y += 0x1a;
332
333 z = stride*src_y;
334 yuv_src[0] = src[0] + z + src_x;
335 yuv_src[1] = src[1] + (z >> 2) + (src_x >> 1);
336 yuv_src[2] = src[2] + (yuv_src[1] - src[1]);
337
338 lcd_send_command(R_ENTRY_MODE, 0x80);
339
340 lcd_send_command(R_X_ADDR_AREA, x);
341 lcd_send_command(x + width - 1, 0);
342
343 if (lcd_yuv_options & LCD_YUV_DITHER)
344 {
345 do
346 {
347 lcd_send_command(R_Y_ADDR_AREA, y);
348 lcd_send_command(y + 1, 0);
349
350 lcd_write_yuv420_lines_odither(yuv_src, width, stride, x, y);
351
352 yuv_src[0] += stride << 1; /* Skip down two luma lines */
353 yuv_src[1] += stride >> 1; /* Skip down one chroma line */
354 yuv_src[2] += stride >> 1;
355 y += 2;
356 }
357 while (--height > 0);
358 }
359 else
360 {
361 do
362 {
363 lcd_send_command(R_Y_ADDR_AREA, y);
364 lcd_send_command(y + 1, 0);
365
366 lcd_write_yuv420_lines(yuv_src, width, stride);
367
368 yuv_src[0] += stride << 1; /* Skip down two luma lines */
369 yuv_src[1] += stride >> 1; /* Skip down one chroma line */
370 yuv_src[2] += stride >> 1;
371 y += 2;
372 }
373 while (--height > 0);
374 }
375}
376#endif /* MEMORYSIZE > 2 */
377
301/* Update the display. 378/* Update the display.
302 This must be called after all other LCD functions that change the display. */ 379 This must be called after all other LCD functions that change the display. */
303void lcd_update(void) 380void lcd_update(void)