2008-10-19 14:11:01 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2004 by Linus Nielsen Feltzing
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include "cpu.h"
|
|
|
|
#include "lcd.h"
|
|
|
|
#include "file.h"
|
|
|
|
#include "debug.h"
|
|
|
|
#include "system.h"
|
2008-12-04 20:04:31 +00:00
|
|
|
#include "clock-target.h"
|
2010-01-06 23:41:36 +00:00
|
|
|
#include "dbop-as3525.h"
|
2008-10-19 14:11:01 +00:00
|
|
|
|
2010-01-04 21:35:31 +00:00
|
|
|
/* The controller is unknown, but some registers appear to be the same as the
|
|
|
|
HD66789R */
|
2008-10-19 14:11:01 +00:00
|
|
|
static bool display_on = false; /* is the display turned on? */
|
|
|
|
|
|
|
|
/* register defines */
|
|
|
|
#define R_START_OSC 0x00
|
|
|
|
#define R_DRV_OUTPUT_CONTROL 0x01
|
|
|
|
#define R_DRV_WAVEFORM_CONTROL 0x02
|
|
|
|
#define R_ENTRY_MODE 0x03
|
|
|
|
#define R_COMPARE_REG1 0x04
|
|
|
|
#define R_COMPARE_REG2 0x05
|
|
|
|
|
|
|
|
#define R_DISP_CONTROL1 0x07
|
|
|
|
#define R_DISP_CONTROL2 0x08
|
|
|
|
#define R_DISP_CONTROL3 0x09
|
|
|
|
|
|
|
|
#define R_FRAME_CYCLE_CONTROL 0x0b
|
|
|
|
#define R_EXT_DISP_IF_CONTROL 0x0c
|
|
|
|
|
|
|
|
#define R_POWER_CONTROL1 0x10
|
|
|
|
#define R_POWER_CONTROL2 0x11
|
|
|
|
#define R_POWER_CONTROL3 0x12
|
|
|
|
#define R_POWER_CONTROL4 0x13
|
|
|
|
|
|
|
|
#define R_RAM_ADDR_SET 0x21
|
|
|
|
#define R_WRITE_DATA_2_GRAM 0x22
|
|
|
|
|
|
|
|
#define R_GAMMA_FINE_ADJ_POS1 0x30
|
|
|
|
#define R_GAMMA_FINE_ADJ_POS2 0x31
|
|
|
|
#define R_GAMMA_FINE_ADJ_POS3 0x32
|
|
|
|
#define R_GAMMA_GRAD_ADJ_POS 0x33
|
|
|
|
|
|
|
|
#define R_GAMMA_FINE_ADJ_NEG1 0x34
|
|
|
|
#define R_GAMMA_FINE_ADJ_NEG2 0x35
|
|
|
|
#define R_GAMMA_FINE_ADJ_NEG3 0x36
|
|
|
|
#define R_GAMMA_GRAD_ADJ_NEG 0x37
|
|
|
|
|
|
|
|
#define R_GAMMA_AMP_ADJ_RES_POS 0x38
|
2009-05-12 13:22:39 +00:00
|
|
|
#define R_GAMMA_AMP_AVG_ADJ_RES_NEG 0x39
|
2008-10-19 14:11:01 +00:00
|
|
|
|
|
|
|
#define R_GATE_SCAN_POS 0x40
|
|
|
|
#define R_VERT_SCROLL_CONTROL 0x41
|
|
|
|
#define R_1ST_SCR_DRV_POS 0x42
|
|
|
|
#define R_2ND_SCR_DRV_POS 0x43
|
|
|
|
#define R_HORIZ_RAM_ADDR_POS 0x44
|
|
|
|
#define R_VERT_RAM_ADDR_POS 0x45
|
|
|
|
|
2010-06-20 18:10:15 +00:00
|
|
|
/* Flip Flag */
|
2009-04-10 01:44:05 +00:00
|
|
|
#define R_ENTRY_MODE_HORZ_NORMAL 0x7030
|
2010-06-20 18:10:15 +00:00
|
|
|
#define R_ENTRY_MODE_HORZ_FLIPPED 0x7000
|
|
|
|
static unsigned short r_entry_mode = R_ENTRY_MODE_HORZ_NORMAL;
|
2008-10-19 14:11:01 +00:00
|
|
|
#define R_ENTRY_MODE_VERT 0x7038
|
2008-10-25 23:22:02 +00:00
|
|
|
#define R_ENTRY_MODE_SOLID_VERT 0x1038
|
2010-06-20 18:10:15 +00:00
|
|
|
#define R_ENTRY_MODE_VIDEO_NORMAL 0x7020
|
|
|
|
#define R_ENTRY_MODE_VIDEO_FLIPPED 0x7010
|
|
|
|
|
2009-04-10 01:44:05 +00:00
|
|
|
|
2010-05-29 14:24:10 +00:00
|
|
|
/* Reverse Flag */
|
|
|
|
#define R_DISP_CONTROL_NORMAL 0x0004
|
|
|
|
#define R_DISP_CONTROL_REV 0x0000
|
|
|
|
static unsigned short r_disp_control_rev = R_DISP_CONTROL_NORMAL;
|
|
|
|
|
2009-09-30 18:54:42 +00:00
|
|
|
static inline void lcd_delay(int x)
|
2008-10-19 14:11:01 +00:00
|
|
|
{
|
2009-09-30 18:54:42 +00:00
|
|
|
do {
|
|
|
|
asm volatile ("nop\n");
|
|
|
|
} while (x--);
|
2008-10-19 14:11:01 +00:00
|
|
|
}
|
|
|
|
|
2010-01-04 21:35:31 +00:00
|
|
|
static void as3525_dbop_init(void)
|
2008-10-19 14:11:01 +00:00
|
|
|
{
|
2009-05-26 18:44:02 +00:00
|
|
|
CGU_DBOP = (1<<3) | AS3525_DBOP_DIV;
|
2008-10-19 14:11:01 +00:00
|
|
|
|
|
|
|
DBOP_TIMPOL_01 = 0xe167e167;
|
|
|
|
DBOP_TIMPOL_23 = 0xe167006e;
|
2010-01-04 21:35:31 +00:00
|
|
|
|
|
|
|
/* short count: 16 | output data width: 16 | readstrobe line */
|
|
|
|
DBOP_CTRL = (1<<18|1<<12|1<<3);
|
2008-10-19 14:11:01 +00:00
|
|
|
|
|
|
|
GPIOB_AFSEL = 0xfc;
|
|
|
|
GPIOC_AFSEL = 0xff;
|
|
|
|
|
|
|
|
DBOP_TIMPOL_23 = 0x6000e;
|
2010-01-04 21:35:31 +00:00
|
|
|
|
|
|
|
/* short count: 16|enable write|output data width: 16|read strobe line */
|
|
|
|
DBOP_CTRL = (1<<18|1<<16|1<<12|1<<3);
|
2008-10-19 14:11:01 +00:00
|
|
|
DBOP_TIMPOL_01 = 0x6e167;
|
|
|
|
DBOP_TIMPOL_23 = 0xa167e06f;
|
|
|
|
|
2008-10-25 23:22:02 +00:00
|
|
|
/* TODO: The OF calls some other functions here, but maybe not important */
|
2008-10-19 14:11:01 +00:00
|
|
|
}
|
|
|
|
|
2010-01-07 22:21:41 +00:00
|
|
|
static void lcd_write_cmd(short cmd)
|
2008-10-19 14:11:01 +00:00
|
|
|
{
|
2008-10-25 23:22:02 +00:00
|
|
|
/* Write register */
|
2008-10-19 14:11:01 +00:00
|
|
|
DBOP_TIMPOL_23 = 0xa167006e;
|
2010-01-07 22:21:41 +00:00
|
|
|
dbop_write_data(&cmd, 1);
|
2008-10-19 14:11:01 +00:00
|
|
|
|
|
|
|
/* Wait for fifo to empty */
|
|
|
|
while ((DBOP_STAT & (1<<10)) == 0);
|
|
|
|
|
2009-06-03 13:11:21 +00:00
|
|
|
/* Fuze OF has this loop and it seems to help us now also */
|
2010-01-04 21:35:31 +00:00
|
|
|
int delay = 8;
|
2009-06-03 13:11:21 +00:00
|
|
|
while(delay--);
|
|
|
|
|
2008-10-19 14:11:01 +00:00
|
|
|
DBOP_TIMPOL_23 = 0xa167e06f;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-10-25 23:22:02 +00:00
|
|
|
static void lcd_write_reg(int reg, int value)
|
|
|
|
{
|
2010-01-07 22:21:41 +00:00
|
|
|
unsigned short data = value;
|
2008-10-25 23:22:02 +00:00
|
|
|
|
|
|
|
lcd_write_cmd(reg);
|
2010-01-07 22:21:41 +00:00
|
|
|
dbop_write_data(&data, 1);
|
2008-10-25 23:22:02 +00:00
|
|
|
}
|
2008-10-19 14:11:01 +00:00
|
|
|
|
|
|
|
/*** hardware configuration ***/
|
|
|
|
|
|
|
|
void lcd_set_invert_display(bool yesno)
|
|
|
|
{
|
2010-05-29 14:24:10 +00:00
|
|
|
r_disp_control_rev = yesno ? R_DISP_CONTROL_REV :
|
|
|
|
R_DISP_CONTROL_NORMAL;
|
|
|
|
|
2009-04-10 01:44:05 +00:00
|
|
|
if (display_on)
|
|
|
|
{
|
2010-05-29 14:24:10 +00:00
|
|
|
lcd_write_reg(R_DISP_CONTROL1, 0x0033 | r_disp_control_rev);
|
2009-04-10 01:44:05 +00:00
|
|
|
}
|
2008-10-19 14:11:01 +00:00
|
|
|
|
2009-04-10 01:44:05 +00:00
|
|
|
}
|
2008-10-19 14:11:01 +00:00
|
|
|
|
2010-06-20 18:10:15 +00:00
|
|
|
static bool display_flipped = false;
|
|
|
|
|
2009-04-26 11:14:19 +00:00
|
|
|
/* turn the display upside down */
|
2008-10-19 14:11:01 +00:00
|
|
|
void lcd_set_flip(bool yesno)
|
|
|
|
{
|
2010-06-20 18:10:15 +00:00
|
|
|
display_flipped = yesno;
|
|
|
|
|
|
|
|
r_entry_mode = yesno ? R_ENTRY_MODE_HORZ_FLIPPED :
|
|
|
|
R_ENTRY_MODE_HORZ_NORMAL;
|
2008-10-19 14:11:01 +00:00
|
|
|
}
|
|
|
|
|
2009-02-20 15:10:49 +00:00
|
|
|
static void lcd_window(int xmin, int ymin, int xmax, int ymax)
|
|
|
|
{
|
2010-06-20 18:10:15 +00:00
|
|
|
if (!display_flipped)
|
|
|
|
{
|
|
|
|
lcd_write_reg(R_HORIZ_RAM_ADDR_POS, (xmax << 8) | xmin);
|
|
|
|
lcd_write_reg(R_VERT_RAM_ADDR_POS, (ymax << 8) | ymin);
|
|
|
|
lcd_write_reg(R_RAM_ADDR_SET, (ymin << 8) | xmin);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
lcd_write_reg(R_HORIZ_RAM_ADDR_POS,
|
|
|
|
((LCD_WIDTH-1 - xmin) << 8) | (LCD_WIDTH-1 - xmax));
|
|
|
|
lcd_write_reg(R_VERT_RAM_ADDR_POS,
|
|
|
|
((LCD_HEIGHT-1 - ymin) << 8) | (LCD_HEIGHT-1 - ymax));
|
|
|
|
lcd_write_reg(R_RAM_ADDR_SET,
|
|
|
|
((LCD_HEIGHT-1 - ymin) << 8) | (LCD_WIDTH-1 - xmin));
|
|
|
|
}
|
2009-02-20 15:10:49 +00:00
|
|
|
}
|
|
|
|
|
2008-10-19 14:11:01 +00:00
|
|
|
static void _display_on(void)
|
|
|
|
{
|
|
|
|
/* Initialisation the display the same way as the original firmware */
|
|
|
|
|
|
|
|
lcd_write_reg(R_START_OSC, 0x0001); /* Start Oscilation */
|
|
|
|
|
|
|
|
lcd_write_reg(R_DRV_OUTPUT_CONTROL, 0x011b); /* 220 lines, GS=0, SS=1 */
|
|
|
|
|
|
|
|
/* B/C = 1: n-line inversion form
|
|
|
|
* EOR = 1: polarity inversion occurs by applying an EOR to odd/even
|
|
|
|
* frame select signal and an n-line inversion signal.
|
|
|
|
* FLD = 01b: 1 field interlaced scan, external display iface */
|
|
|
|
lcd_write_reg(R_DRV_WAVEFORM_CONTROL, 0x0700);
|
|
|
|
|
|
|
|
/* Address counter updated in horizontal direction; left to right;
|
|
|
|
* vertical increment horizontal increment.
|
|
|
|
* data format for 8bit transfer or spi = 65k (5,6,5) */
|
2010-06-20 18:10:15 +00:00
|
|
|
lcd_write_reg(R_ENTRY_MODE, r_entry_mode);
|
2008-10-19 14:11:01 +00:00
|
|
|
|
|
|
|
/* Replace data on writing to GRAM */
|
|
|
|
lcd_write_reg(R_COMPARE_REG1, 0);
|
|
|
|
lcd_write_reg(R_COMPARE_REG2, 0);
|
|
|
|
|
2009-08-08 14:37:42 +00:00
|
|
|
/* GON = 0, DTE = 0, D1-0 = 00b */
|
2010-05-29 14:24:10 +00:00
|
|
|
lcd_write_reg(R_DISP_CONTROL1, 0x0000 | r_disp_control_rev);
|
2008-10-19 14:11:01 +00:00
|
|
|
|
|
|
|
/* Front porch lines: 2; Back porch lines: 2; */
|
|
|
|
lcd_write_reg(R_DISP_CONTROL2, 0x0203);
|
|
|
|
|
|
|
|
/* Scan cycle = 0 frames */
|
|
|
|
lcd_write_reg(R_DISP_CONTROL3, 0x0000);
|
|
|
|
|
|
|
|
/* 16 clocks */
|
|
|
|
lcd_write_reg(R_FRAME_CYCLE_CONTROL, 0x0000);
|
|
|
|
|
|
|
|
/* 18-bit RGB interface (one transfer/pixel)
|
|
|
|
* internal clock operation;
|
|
|
|
* System interface/VSYNC interface */
|
|
|
|
lcd_write_reg(R_EXT_DISP_IF_CONTROL, 0x0000);
|
|
|
|
|
|
|
|
|
|
|
|
/* zero everything*/
|
|
|
|
lcd_write_reg(R_POWER_CONTROL1, 0x0000); /* STB = 0, SLP = 0 */
|
|
|
|
|
|
|
|
lcd_delay(10);
|
|
|
|
|
|
|
|
/* initialise power supply */
|
|
|
|
|
|
|
|
/* DC12-10 = 000b: Step-up1 = clock/8,
|
|
|
|
* DC02-00 = 000b: Step-up2 = clock/16,
|
|
|
|
* VC2-0 = 010b: VciOUT = 0.87 * VciLVL */
|
2009-05-12 13:22:39 +00:00
|
|
|
lcd_write_reg(R_POWER_CONTROL2, 0x0002);
|
2008-10-19 14:11:01 +00:00
|
|
|
|
|
|
|
/* VRH3-0 = 1000b: Vreg1OUT = REGP * 1.90 */
|
|
|
|
lcd_write_reg(R_POWER_CONTROL3, 0x0008);
|
|
|
|
|
|
|
|
lcd_delay(40);
|
2009-05-12 13:22:39 +00:00
|
|
|
|
2008-10-19 14:11:01 +00:00
|
|
|
lcd_write_reg(R_POWER_CONTROL4, 0x0000); /* VCOMG = 0 */
|
|
|
|
|
|
|
|
/* This register is unknown */
|
|
|
|
lcd_write_reg(0x56, 0x80f);
|
|
|
|
|
|
|
|
|
|
|
|
lcd_write_reg(R_POWER_CONTROL1, 0x4140);
|
|
|
|
|
|
|
|
lcd_delay(10);
|
|
|
|
|
2009-05-12 13:22:39 +00:00
|
|
|
lcd_write_reg(R_POWER_CONTROL2, 0x0000);
|
|
|
|
lcd_write_reg(R_POWER_CONTROL3, 0x0013);
|
2008-10-19 14:11:01 +00:00
|
|
|
|
|
|
|
lcd_delay(20);
|
|
|
|
|
|
|
|
lcd_write_reg(R_POWER_CONTROL4, 0x6d0e);
|
|
|
|
|
|
|
|
lcd_delay(20);
|
|
|
|
|
|
|
|
lcd_write_reg(R_POWER_CONTROL4, 0x6d0e);
|
|
|
|
|
|
|
|
lcd_write_reg(R_GAMMA_FINE_ADJ_POS1, 0x0002);
|
|
|
|
lcd_write_reg(R_GAMMA_FINE_ADJ_POS2, 0x0707);
|
|
|
|
lcd_write_reg(R_GAMMA_FINE_ADJ_POS3, 0x0182);
|
|
|
|
lcd_write_reg(R_GAMMA_GRAD_ADJ_POS, 0x0203);
|
|
|
|
lcd_write_reg(R_GAMMA_FINE_ADJ_NEG1, 0x0706);
|
|
|
|
lcd_write_reg(R_GAMMA_FINE_ADJ_NEG2, 0x0006);
|
|
|
|
lcd_write_reg(R_GAMMA_FINE_ADJ_NEG3, 0x0706);
|
|
|
|
lcd_write_reg(R_GAMMA_GRAD_ADJ_NEG, 0x0000);
|
|
|
|
lcd_write_reg(R_GAMMA_AMP_ADJ_RES_POS, 0x030f);
|
|
|
|
lcd_write_reg(R_GAMMA_AMP_AVG_ADJ_RES_NEG, 0x0f08);
|
|
|
|
|
|
|
|
|
|
|
|
lcd_write_reg(R_GATE_SCAN_POS, 0);
|
|
|
|
lcd_write_reg(R_VERT_SCROLL_CONTROL, 0);
|
|
|
|
|
2009-05-12 13:22:39 +00:00
|
|
|
lcd_window(0, 0, LCD_WIDTH-1, LCD_HEIGHT-1);
|
2009-02-20 15:10:49 +00:00
|
|
|
lcd_write_reg(R_1ST_SCR_DRV_POS, (LCD_HEIGHT-1) << 8);
|
|
|
|
lcd_write_reg(R_2ND_SCR_DRV_POS, (LCD_HEIGHT-1) << 8);
|
2008-10-19 14:11:01 +00:00
|
|
|
|
2010-05-29 14:24:10 +00:00
|
|
|
lcd_write_reg(R_DISP_CONTROL1, 0x0033 | r_disp_control_rev);
|
2008-10-19 14:11:01 +00:00
|
|
|
|
2010-01-04 21:35:31 +00:00
|
|
|
display_on = true; /* must be done before calling lcd_update() */
|
2008-10-19 14:11:01 +00:00
|
|
|
lcd_update();
|
|
|
|
}
|
|
|
|
|
|
|
|
void lcd_init_device(void)
|
|
|
|
{
|
2010-01-04 21:35:31 +00:00
|
|
|
as3525_dbop_init();
|
2008-10-19 14:11:01 +00:00
|
|
|
|
2008-10-25 23:22:02 +00:00
|
|
|
GPIOA_DIR |= (1<<5);
|
|
|
|
GPIOA_PIN(5) = 0;
|
2010-01-04 21:35:31 +00:00
|
|
|
GPIOA_PIN(4) = 0;
|
2008-10-19 14:11:01 +00:00
|
|
|
|
2008-10-25 23:22:02 +00:00
|
|
|
lcd_delay(1);
|
|
|
|
GPIOA_PIN(5) = (1<<5);
|
|
|
|
lcd_delay(1);
|
2008-10-19 14:11:01 +00:00
|
|
|
|
|
|
|
_display_on();
|
|
|
|
}
|
|
|
|
|
2009-03-17 03:36:36 +00:00
|
|
|
#if defined(HAVE_LCD_ENABLE)
|
2008-10-19 14:11:01 +00:00
|
|
|
void lcd_enable(bool on)
|
|
|
|
{
|
2010-01-04 21:35:31 +00:00
|
|
|
if (display_on == on)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if(on)
|
2008-10-19 14:11:01 +00:00
|
|
|
{
|
2010-01-04 21:35:31 +00:00
|
|
|
_display_on();
|
|
|
|
send_event(LCD_EVENT_ACTIVATION, NULL);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
display_on = false;
|
|
|
|
lcd_write_reg(R_POWER_CONTROL1, 0x0001);
|
2008-10-19 14:11:01 +00:00
|
|
|
}
|
|
|
|
}
|
2009-03-17 03:36:36 +00:00
|
|
|
#endif
|
2008-10-19 14:11:01 +00:00
|
|
|
|
2009-03-17 03:36:36 +00:00
|
|
|
#if defined(HAVE_LCD_ENABLE) || defined(HAVE_LCD_SLEEP)
|
2009-03-17 02:43:47 +00:00
|
|
|
bool lcd_active(void)
|
2008-10-19 14:11:01 +00:00
|
|
|
{
|
|
|
|
return display_on;
|
|
|
|
}
|
2009-03-17 03:36:36 +00:00
|
|
|
#endif
|
2008-11-11 14:46:13 +00:00
|
|
|
|
2008-10-19 14:11:01 +00:00
|
|
|
/*** update functions ***/
|
|
|
|
|
2009-06-02 22:45:02 +00:00
|
|
|
static unsigned lcd_yuv_options = 0;
|
2009-05-12 13:22:39 +00:00
|
|
|
|
|
|
|
void lcd_yuv_set_options(unsigned options)
|
|
|
|
{
|
|
|
|
lcd_yuv_options = options;
|
|
|
|
}
|
|
|
|
|
2010-04-05 12:23:30 +00:00
|
|
|
|
|
|
|
#ifndef BOOTLOADER
|
2009-05-12 13:22:39 +00:00
|
|
|
static void lcd_window_blit(int xmin, int ymin, int xmax, int ymax)
|
|
|
|
{
|
2010-06-20 18:10:15 +00:00
|
|
|
if (!display_flipped)
|
|
|
|
{
|
|
|
|
lcd_write_reg(R_HORIZ_RAM_ADDR_POS,
|
|
|
|
((LCD_WIDTH-1 - xmin) << 8) | (LCD_WIDTH-1 - xmax));
|
|
|
|
lcd_write_reg(R_VERT_RAM_ADDR_POS, (ymax << 8) | ymin);
|
|
|
|
lcd_write_reg(R_RAM_ADDR_SET,
|
|
|
|
(ymin << 8) | (LCD_WIDTH-1 - xmin));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
lcd_write_reg(R_HORIZ_RAM_ADDR_POS, (xmax << 8) | xmin);
|
|
|
|
lcd_write_reg(R_VERT_RAM_ADDR_POS, (ymax << 8) | ymin);
|
|
|
|
lcd_write_reg(R_RAM_ADDR_SET, (ymax << 8) | xmin);
|
|
|
|
}
|
2009-05-12 13:22:39 +00:00
|
|
|
}
|
|
|
|
|
2010-01-04 21:35:31 +00:00
|
|
|
/* Line write helper function for lcd_yuv_blit. Write two lines of yuv420. */
|
|
|
|
extern void lcd_write_yuv420_lines(unsigned char const * const src[3],
|
|
|
|
int width,
|
|
|
|
int stride);
|
|
|
|
extern void lcd_write_yuv420_lines_odither(unsigned char const * const src[3],
|
|
|
|
int width,
|
|
|
|
int stride,
|
|
|
|
int x_screen, /* To align dither pattern */
|
|
|
|
int y_screen);
|
|
|
|
|
2008-10-19 14:11:01 +00:00
|
|
|
/* Performance function to blit a YUV bitmap directly to the LCD
|
|
|
|
* src_x, src_y, width and height should be even
|
|
|
|
* x, y, width and height have to be within LCD bounds
|
|
|
|
*/
|
|
|
|
void lcd_blit_yuv(unsigned char * const src[3],
|
|
|
|
int src_x, int src_y, int stride,
|
|
|
|
int x, int y, int width, int height)
|
|
|
|
{
|
2009-05-12 13:22:39 +00:00
|
|
|
unsigned char const * yuv_src[3];
|
|
|
|
off_t z;
|
|
|
|
|
|
|
|
/* Sorry, but width and height must be >= 2 or else */
|
|
|
|
width &= ~1;
|
|
|
|
height >>= 1;
|
|
|
|
|
|
|
|
z = stride*src_y;
|
|
|
|
yuv_src[0] = src[0] + z + src_x;
|
|
|
|
yuv_src[1] = src[1] + (z >> 2) + (src_x >> 1);
|
|
|
|
yuv_src[2] = src[2] + (yuv_src[1] - src[1]);
|
|
|
|
|
2010-06-20 18:10:15 +00:00
|
|
|
lcd_write_reg(R_ENTRY_MODE,
|
|
|
|
display_flipped ? R_ENTRY_MODE_VIDEO_FLIPPED : R_ENTRY_MODE_VIDEO_NORMAL
|
|
|
|
);
|
|
|
|
|
2009-05-12 13:22:39 +00:00
|
|
|
if (lcd_yuv_options & LCD_YUV_DITHER)
|
|
|
|
{
|
|
|
|
do
|
|
|
|
{
|
|
|
|
lcd_window_blit(y, x, y+1, x+width-1);
|
|
|
|
|
|
|
|
lcd_write_cmd(R_WRITE_DATA_2_GRAM);
|
|
|
|
|
|
|
|
lcd_write_yuv420_lines_odither(yuv_src, width, stride, x, y);
|
|
|
|
yuv_src[0] += stride << 1; /* Skip down two luma lines */
|
|
|
|
yuv_src[1] += stride >> 1; /* Skip down one chroma line */
|
|
|
|
yuv_src[2] += stride >> 1;
|
2010-01-04 21:35:31 +00:00
|
|
|
y += 2;
|
2009-05-12 13:22:39 +00:00
|
|
|
}
|
|
|
|
while (--height > 0);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
do
|
|
|
|
{
|
|
|
|
lcd_window_blit(y, x, y+1, x+width-1);
|
|
|
|
|
|
|
|
lcd_write_cmd(R_WRITE_DATA_2_GRAM);
|
|
|
|
|
|
|
|
lcd_write_yuv420_lines(yuv_src, width, stride);
|
|
|
|
yuv_src[0] += stride << 1; /* Skip down two luma lines */
|
|
|
|
yuv_src[1] += stride >> 1; /* Skip down one chroma line */
|
|
|
|
yuv_src[2] += stride >> 1;
|
2010-01-04 21:35:31 +00:00
|
|
|
y += 2;
|
2009-05-12 13:22:39 +00:00
|
|
|
}
|
|
|
|
while (--height > 0);
|
|
|
|
}
|
2008-10-19 14:11:01 +00:00
|
|
|
}
|
|
|
|
|
2010-04-05 12:17:11 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2008-10-19 14:11:01 +00:00
|
|
|
/* Update the display.
|
|
|
|
This must be called after all other LCD functions that change the display. */
|
|
|
|
void lcd_update(void)
|
|
|
|
{
|
2008-10-25 23:22:02 +00:00
|
|
|
if (!display_on)
|
|
|
|
return;
|
2009-02-18 16:38:16 +00:00
|
|
|
|
2010-06-20 18:10:15 +00:00
|
|
|
lcd_write_reg(R_ENTRY_MODE, r_entry_mode);
|
2008-10-25 23:22:02 +00:00
|
|
|
|
|
|
|
/* Set start position and window */
|
2009-02-20 15:10:49 +00:00
|
|
|
lcd_window(0, 0, LCD_WIDTH-1, LCD_HEIGHT-1);
|
2008-10-25 23:22:02 +00:00
|
|
|
|
|
|
|
lcd_write_cmd(R_WRITE_DATA_2_GRAM);
|
|
|
|
|
2020-10-26 19:32:37 +00:00
|
|
|
dbop_write_data((fb_data*)FBADDR(0,0), LCD_WIDTH*LCD_HEIGHT);
|
2010-01-04 21:35:31 +00:00
|
|
|
}
|
2008-10-19 14:11:01 +00:00
|
|
|
|
|
|
|
/* Update a fraction of the display. */
|
|
|
|
void lcd_update_rect(int x, int y, int width, int height)
|
|
|
|
{
|
2009-02-19 20:40:00 +00:00
|
|
|
const fb_data *ptr;
|
2008-10-25 23:22:02 +00:00
|
|
|
|
|
|
|
if (!display_on)
|
|
|
|
return;
|
2009-02-18 16:38:16 +00:00
|
|
|
|
2010-01-07 19:35:36 +00:00
|
|
|
/* nothing to draw? */
|
2020-10-26 19:32:37 +00:00
|
|
|
if ((width <= 0) || (height <= 0) || (x >= LCD_WIDTH) ||
|
2010-01-07 19:35:36 +00:00
|
|
|
(y >= LCD_HEIGHT) || (x + width <= 0) || (y + height <= 0))
|
|
|
|
return;
|
2009-02-20 15:10:49 +00:00
|
|
|
|
2010-01-07 19:35:36 +00:00
|
|
|
if (x < 0)
|
|
|
|
{ /* clip left */
|
|
|
|
width += x;
|
|
|
|
x = 0;
|
|
|
|
}
|
2008-10-25 23:22:02 +00:00
|
|
|
if (y < 0)
|
2010-01-07 19:35:36 +00:00
|
|
|
{ /* clip top */
|
|
|
|
height += y;
|
|
|
|
y = 0;
|
|
|
|
}
|
|
|
|
if (x + width > LCD_WIDTH)
|
|
|
|
width = LCD_WIDTH - x; /* clip right */
|
|
|
|
if (y + height > LCD_HEIGHT)
|
|
|
|
height = LCD_HEIGHT - y; /* clip bottom */
|
2008-10-25 23:22:02 +00:00
|
|
|
|
2010-06-20 18:10:15 +00:00
|
|
|
lcd_write_reg(R_ENTRY_MODE, r_entry_mode);
|
2010-01-04 21:35:31 +00:00
|
|
|
|
2010-01-26 21:31:53 +00:00
|
|
|
/* we need to make x and width even to enable 32bit transfers */
|
|
|
|
width = (width + (x & 1) + 1) & ~1;
|
|
|
|
x &= ~1;
|
|
|
|
|
2010-01-07 19:35:36 +00:00
|
|
|
lcd_window(x, y, x+width-1, y+height-1);
|
2008-10-25 23:22:02 +00:00
|
|
|
lcd_write_cmd(R_WRITE_DATA_2_GRAM);
|
|
|
|
|
2012-02-22 10:18:05 +00:00
|
|
|
ptr = FBADDR(x,y);
|
2008-10-25 23:22:02 +00:00
|
|
|
|
|
|
|
do
|
|
|
|
{
|
2010-01-07 22:21:41 +00:00
|
|
|
dbop_write_data(ptr, width);
|
2008-10-25 23:22:02 +00:00
|
|
|
ptr += LCD_WIDTH;
|
2008-10-19 14:11:01 +00:00
|
|
|
}
|
2010-01-07 19:35:36 +00:00
|
|
|
while (--height > 0);
|
2009-02-16 19:50:52 +00:00
|
|
|
}
|