2007-09-06 03:28:58 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
2007-10-02 02:00:40 +00:00
|
|
|
* $Id$
|
2007-09-06 03:28:58 +00:00
|
|
|
*
|
|
|
|
* Copyright (C) 2007 by Mark Arigo
|
|
|
|
*
|
2008-06-28 18:10:04 +00:00
|
|
|
* 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.
|
2007-09-06 03:28:58 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
2010-05-06 22:33:57 +00:00
|
|
|
#include <sys/types.h>
|
2009-08-19 22:15:45 +00:00
|
|
|
|
2007-09-06 03:28:58 +00:00
|
|
|
#include "config.h"
|
|
|
|
#include "cpu.h"
|
|
|
|
#include "lcd.h"
|
|
|
|
#include "kernel.h"
|
|
|
|
#include "system.h"
|
2009-06-17 19:55:27 +00:00
|
|
|
#ifdef SANSA_C200V2
|
2010-01-06 23:41:36 +00:00
|
|
|
#include "dbop-as3525.h"
|
2009-06-17 19:55:27 +00:00
|
|
|
#endif
|
|
|
|
|
2007-10-21 13:46:26 +00:00
|
|
|
/* Display status */
|
2022-10-13 15:03:53 +00:00
|
|
|
#if MEMORYSIZE > 2
|
|
|
|
static unsigned lcd_yuv_options SHAREDBSS_ATTR = 0;
|
|
|
|
#endif
|
2008-08-05 20:17:17 +00:00
|
|
|
static bool is_lcd_enabled = true;
|
2007-10-21 13:46:26 +00:00
|
|
|
|
2007-09-24 00:18:09 +00:00
|
|
|
/* LCD command set for Samsung S6B33B2 */
|
|
|
|
|
2008-03-31 05:53:17 +00:00
|
|
|
#define R_NOP 0x00
|
2007-09-24 00:18:09 +00:00
|
|
|
#define R_OSCILLATION_MODE 0x02
|
|
|
|
#define R_DRIVER_OUTPUT_MODE 0x10
|
|
|
|
#define R_DCDC_SET 0x20
|
|
|
|
#define R_BIAS_SET 0x22
|
|
|
|
#define R_DCDC_CLOCK_DIV 0x24
|
|
|
|
#define R_DCDC_AMP_ONOFF 0x26
|
|
|
|
#define R_TEMP_COMPENSATION 0x28
|
|
|
|
#define R_CONTRAST_CONTROL1 0x2a
|
|
|
|
#define R_CONTRAST_CONTROL2 0x2b
|
|
|
|
#define R_STANDBY_OFF 0x2c
|
|
|
|
#define R_STANDBY_ON 0x2d
|
|
|
|
#define R_DDRAM_BURST_OFF 0x2e
|
|
|
|
#define R_DDRAM_BURST_ON 0x2f
|
|
|
|
#define R_ADDRESSING_MODE 0x30
|
|
|
|
#define R_ROW_VECTOR_MODE 0x32
|
|
|
|
#define R_N_LINE_INVERSION 0x34
|
|
|
|
#define R_FRAME_FREQ_CONTROL 0x36
|
|
|
|
#define R_RED_PALETTE 0x38
|
|
|
|
#define R_GREEN_PALETTE 0x3a
|
|
|
|
#define R_BLUE_PALETTE 0x3c
|
|
|
|
#define R_ENTRY_MODE 0x40
|
|
|
|
#define R_X_ADDR_AREA 0x42
|
|
|
|
#define R_Y_ADDR_AREA 0x43
|
|
|
|
#define R_RAM_SKIP_AREA 0x45
|
|
|
|
#define R_DISPLAY_OFF 0x50
|
|
|
|
#define R_DISPLAY_ON 0x51
|
|
|
|
#define R_SPEC_DISPLAY_PATTERN 0x53
|
|
|
|
#define R_PARTIAL_DISPLAY_MODE 0x55
|
|
|
|
#define R_PARTIAL_START_LINE 0x56
|
|
|
|
#define R_PARTIAL_END_LINE 0x57
|
|
|
|
#define R_AREA_SCROLL_MODE 0x59
|
|
|
|
#define R_SCROLL_START_LINE 0x5a
|
|
|
|
#define R_DATA_FORMAT_SELECT 0x60
|
|
|
|
|
2009-06-17 19:55:27 +00:00
|
|
|
#if defined(SANSA_C200)
|
2007-09-23 19:15:01 +00:00
|
|
|
/* wait for LCD */
|
2007-09-06 03:28:58 +00:00
|
|
|
static inline void lcd_wait_write(void)
|
|
|
|
{
|
2007-10-12 00:28:57 +00:00
|
|
|
while (LCD1_CONTROL & LCD1_BUSY_MASK);
|
2007-09-06 03:28:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* send LCD data */
|
2009-06-20 22:49:04 +00:00
|
|
|
static void lcd_send_pixel(const fb_data data)
|
2007-09-06 03:28:58 +00:00
|
|
|
{
|
2009-06-20 22:49:04 +00:00
|
|
|
lcd_wait_write();
|
|
|
|
LCD1_DATA = data >> 8;
|
|
|
|
lcd_wait_write();
|
|
|
|
LCD1_DATA = data & 0xff;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void lcd_write_data(const fb_data *data, int width)
|
|
|
|
{
|
|
|
|
do {
|
|
|
|
lcd_send_pixel(*data++);
|
|
|
|
} while(--width);
|
2007-09-06 03:28:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* send LCD command */
|
2009-06-17 19:55:27 +00:00
|
|
|
static void lcd_send_command(unsigned char cmd, unsigned char arg)
|
2007-09-06 03:28:58 +00:00
|
|
|
{
|
|
|
|
lcd_wait_write();
|
2007-10-07 16:44:55 +00:00
|
|
|
LCD1_CMD = cmd;
|
2009-06-17 19:55:27 +00:00
|
|
|
/* if the argument is 0, we send a NOP (= 0) command */
|
|
|
|
lcd_wait_write();
|
|
|
|
LCD1_CMD = arg;
|
2007-09-06 03:28:58 +00:00
|
|
|
}
|
|
|
|
|
2009-06-17 19:55:27 +00:00
|
|
|
static inline void c200v1_lcd_init(void)
|
2007-09-06 03:28:58 +00:00
|
|
|
{
|
|
|
|
/* This is from the c200 of bootloader beginning at offset 0xbbf4 */
|
|
|
|
outl(inl(0x70000010) & ~0xfc000000, 0x70000010);
|
|
|
|
outl(inl(0x70000010), 0x70000010);
|
|
|
|
|
2007-10-16 10:48:16 +00:00
|
|
|
DEV_INIT2 &= ~0x400;
|
2007-09-06 03:28:58 +00:00
|
|
|
udelay(10000);
|
2009-06-17 19:55:27 +00:00
|
|
|
|
2007-10-12 00:28:57 +00:00
|
|
|
LCD1_CONTROL &= ~0x4;
|
2007-09-06 03:28:58 +00:00
|
|
|
udelay(15);
|
|
|
|
|
2007-10-12 00:28:57 +00:00
|
|
|
LCD1_CONTROL |= 0x4;
|
2007-09-06 03:28:58 +00:00
|
|
|
udelay(10);
|
|
|
|
|
2007-11-18 12:49:24 +00:00
|
|
|
LCD1_CONTROL = 0x0084; /* bits (9,10) = 00 -> fastest setting */
|
2007-09-06 03:28:58 +00:00
|
|
|
udelay(10000);
|
2009-06-17 19:55:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#elif defined(SANSA_C200V2)
|
|
|
|
|
|
|
|
/* send LCD data */
|
2009-06-20 22:49:04 +00:00
|
|
|
void lcd_write_data(const fb_data *data, int width)
|
2009-06-17 19:55:27 +00:00
|
|
|
{
|
2009-06-20 22:49:04 +00:00
|
|
|
do {
|
2009-06-17 19:55:27 +00:00
|
|
|
DBOP_DOUT = *data << 8 | *data >> 8;
|
|
|
|
data++;
|
2009-06-20 22:49:04 +00:00
|
|
|
|
|
|
|
/* Wait if push fifo is full */
|
|
|
|
while ((DBOP_STAT & (1<<6)) != 0);
|
|
|
|
} while(--width);
|
|
|
|
|
|
|
|
/* While push fifo is not empty */
|
|
|
|
while ((DBOP_STAT & (1<<10)) == 0);
|
2009-06-17 19:55:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* send LCD command */
|
|
|
|
static void lcd_send_command(unsigned char cmd, unsigned char val)
|
|
|
|
{
|
|
|
|
DBOP_TIMPOL_23 = 0xa167006e;
|
|
|
|
|
|
|
|
DBOP_DOUT = cmd | val << 8;
|
|
|
|
|
|
|
|
while ((DBOP_STAT & (1<<10)) == 0);
|
|
|
|
|
|
|
|
DBOP_TIMPOL_23 = 0xa167e06f;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void as3525_dbop_init(void)
|
|
|
|
{
|
|
|
|
CGU_DBOP = (1<<3) | AS3525_DBOP_DIV;
|
|
|
|
|
|
|
|
DBOP_TIMPOL_01 = 0xe167e167;
|
|
|
|
DBOP_TIMPOL_23 = 0xe167006e;
|
|
|
|
DBOP_CTRL = 0x40008;
|
|
|
|
|
|
|
|
GPIOB_AFSEL = 0xc;
|
|
|
|
GPIOC_AFSEL = 0xff;
|
|
|
|
|
|
|
|
DBOP_TIMPOL_23 = 0x6006e;
|
|
|
|
DBOP_CTRL = 0x52008;
|
|
|
|
DBOP_TIMPOL_01 = 0x6e167;
|
|
|
|
DBOP_TIMPOL_23 = 0xa167e06f;
|
|
|
|
|
2010-06-19 03:04:22 +00:00
|
|
|
udelay(20000);
|
2009-06-17 19:55:27 +00:00
|
|
|
}
|
2007-09-06 03:28:58 +00:00
|
|
|
|
2009-06-17 19:55:27 +00:00
|
|
|
#endif
|
|
|
|
|
2010-06-18 14:11:41 +00:00
|
|
|
static void lcd_reset(void)
|
2009-06-17 19:55:27 +00:00
|
|
|
{
|
2010-06-18 14:11:41 +00:00
|
|
|
#if defined(SANSA_C200V2)
|
2010-05-10 16:11:01 +00:00
|
|
|
/* reset lcd */
|
|
|
|
GPIOB_DIR |= (1<<6);
|
|
|
|
GPIOB_PIN(6) = 0; /* pull reset low */
|
2010-06-19 03:04:22 +00:00
|
|
|
udelay(20000);
|
2010-05-10 16:11:01 +00:00
|
|
|
GPIOB_PIN(6) = 1<<6; /* release reset */
|
2010-06-19 03:04:22 +00:00
|
|
|
udelay(20000);
|
2009-06-17 19:55:27 +00:00
|
|
|
#endif
|
|
|
|
lcd_send_command(R_STANDBY_OFF, 0);
|
2010-06-19 03:04:22 +00:00
|
|
|
udelay(20000);
|
2009-06-17 19:55:27 +00:00
|
|
|
|
|
|
|
lcd_send_command(R_OSCILLATION_MODE, 0x01);
|
2010-06-19 03:04:22 +00:00
|
|
|
udelay(20000);
|
2007-09-06 03:28:58 +00:00
|
|
|
|
2009-06-17 19:55:27 +00:00
|
|
|
lcd_send_command(R_DCDC_AMP_ONOFF, 0x01);
|
2010-06-19 03:04:22 +00:00
|
|
|
udelay(20000);
|
2007-09-06 03:28:58 +00:00
|
|
|
|
2009-06-17 19:55:27 +00:00
|
|
|
lcd_send_command(R_DCDC_AMP_ONOFF, 0x09);
|
2010-06-19 03:04:22 +00:00
|
|
|
udelay(20000);
|
2007-09-06 03:28:58 +00:00
|
|
|
|
2009-06-17 19:55:27 +00:00
|
|
|
lcd_send_command(R_DCDC_AMP_ONOFF, 0x0b);
|
2010-06-19 03:04:22 +00:00
|
|
|
udelay(20000);
|
2007-09-06 03:28:58 +00:00
|
|
|
|
2009-06-17 19:55:27 +00:00
|
|
|
lcd_send_command(R_DCDC_AMP_ONOFF, 0x0f);
|
2010-06-19 03:04:22 +00:00
|
|
|
udelay(20000);
|
2007-09-06 03:28:58 +00:00
|
|
|
|
2009-06-17 19:55:27 +00:00
|
|
|
lcd_send_command(R_DRIVER_OUTPUT_MODE, 0x07);
|
2007-09-06 03:28:58 +00:00
|
|
|
|
2009-06-17 19:55:27 +00:00
|
|
|
lcd_send_command(R_DCDC_SET, 0x03);
|
2007-09-06 03:28:58 +00:00
|
|
|
|
2009-06-17 19:55:27 +00:00
|
|
|
lcd_send_command(R_DCDC_CLOCK_DIV, 0x03);
|
2007-09-06 03:28:58 +00:00
|
|
|
|
2009-06-17 19:55:27 +00:00
|
|
|
lcd_send_command(R_TEMP_COMPENSATION, 0x01);
|
2007-09-06 03:28:58 +00:00
|
|
|
|
2009-06-17 19:55:27 +00:00
|
|
|
lcd_send_command(R_CONTRAST_CONTROL1, 0x55);
|
2007-09-06 03:28:58 +00:00
|
|
|
|
2009-06-17 19:55:27 +00:00
|
|
|
lcd_send_command(R_ADDRESSING_MODE, 0x10);
|
2007-09-06 03:28:58 +00:00
|
|
|
|
2009-06-17 19:55:27 +00:00
|
|
|
lcd_send_command(R_ROW_VECTOR_MODE, 0x0e);
|
2007-09-06 03:28:58 +00:00
|
|
|
|
2009-06-17 19:55:27 +00:00
|
|
|
lcd_send_command(R_N_LINE_INVERSION, 0x0d);
|
2007-09-06 03:28:58 +00:00
|
|
|
|
2009-06-17 19:55:27 +00:00
|
|
|
lcd_send_command(R_FRAME_FREQ_CONTROL, 0);
|
2007-09-06 03:28:58 +00:00
|
|
|
|
2009-06-17 19:55:27 +00:00
|
|
|
lcd_send_command(R_ENTRY_MODE, 0x82);
|
2007-09-06 03:28:58 +00:00
|
|
|
|
2009-06-17 19:55:27 +00:00
|
|
|
/* vertical dimensions */
|
|
|
|
lcd_send_command(R_Y_ADDR_AREA, 0x1a); /* y1 + 0x1a */
|
|
|
|
lcd_send_command(LCD_HEIGHT - 1 + 0x1a, 0); /* y2 + 0x1a */
|
2007-09-06 03:28:58 +00:00
|
|
|
|
2009-06-17 19:55:27 +00:00
|
|
|
/* horizontal dimensions */
|
|
|
|
lcd_send_command(R_X_ADDR_AREA, 0); /* x1 */
|
|
|
|
lcd_send_command(LCD_WIDTH - 1, 0); /* x2 */
|
2007-09-06 03:28:58 +00:00
|
|
|
|
2010-06-19 03:04:22 +00:00
|
|
|
udelay(100000);
|
2007-09-06 03:28:58 +00:00
|
|
|
|
2009-06-17 19:55:27 +00:00
|
|
|
lcd_send_command(R_DISPLAY_ON, 0);
|
2007-09-06 03:28:58 +00:00
|
|
|
}
|
|
|
|
|
2010-06-18 14:11:41 +00:00
|
|
|
/* LCD init */
|
|
|
|
void lcd_init_device(void)
|
|
|
|
{
|
|
|
|
#if defined(SANSA_C200)
|
|
|
|
c200v1_lcd_init();
|
|
|
|
#elif defined(SANSA_C200V2)
|
|
|
|
as3525_dbop_init();
|
|
|
|
#endif
|
|
|
|
lcd_reset();
|
|
|
|
}
|
|
|
|
|
2007-09-06 03:28:58 +00:00
|
|
|
/*** hardware configuration ***/
|
|
|
|
int lcd_default_contrast(void)
|
|
|
|
{
|
|
|
|
return DEFAULT_CONTRAST_SETTING;
|
|
|
|
}
|
|
|
|
|
|
|
|
void lcd_set_contrast(int val)
|
|
|
|
{
|
2009-06-17 19:55:27 +00:00
|
|
|
lcd_send_command(R_CONTRAST_CONTROL1, val);
|
2007-09-06 03:28:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void lcd_set_invert_display(bool yesno)
|
|
|
|
{
|
2010-05-28 19:36:52 +00:00
|
|
|
#ifdef HAVE_LCD_INVERT
|
|
|
|
lcd_send_command(R_SPEC_DISPLAY_PATTERN, yesno ? 1 : 0);
|
|
|
|
#else
|
2007-10-02 02:00:40 +00:00
|
|
|
(void)yesno;
|
2010-05-28 19:36:52 +00:00
|
|
|
#endif
|
2007-09-06 03:28:58 +00:00
|
|
|
}
|
|
|
|
|
2009-03-17 03:36:36 +00:00
|
|
|
#if defined(HAVE_LCD_ENABLE)
|
2008-08-05 20:17:17 +00:00
|
|
|
void lcd_enable(bool yesno)
|
|
|
|
{
|
|
|
|
if (yesno == is_lcd_enabled)
|
|
|
|
return;
|
|
|
|
|
2009-03-17 04:01:11 +00:00
|
|
|
if ((is_lcd_enabled = yesno))
|
2008-08-05 20:17:17 +00:00
|
|
|
{
|
2009-06-17 19:55:27 +00:00
|
|
|
lcd_send_command(R_STANDBY_OFF, 0);
|
|
|
|
lcd_send_command(R_DISPLAY_ON, 0);
|
2009-10-20 21:54:59 +00:00
|
|
|
send_event(LCD_EVENT_ACTIVATION, NULL);
|
2008-08-05 20:17:17 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-06-17 19:55:27 +00:00
|
|
|
lcd_send_command(R_STANDBY_ON, 0);
|
2008-08-05 20:17:17 +00:00
|
|
|
}
|
|
|
|
}
|
2009-03-17 03:36:36 +00:00
|
|
|
#endif
|
2008-08-05 20:17:17 +00:00
|
|
|
|
2009-03-17 03:36:36 +00:00
|
|
|
#if defined(HAVE_LCD_ENABLE) || defined(HAVE_LCD_SLEEP)
|
|
|
|
bool lcd_active(void)
|
2008-08-05 20:17:17 +00:00
|
|
|
{
|
|
|
|
return is_lcd_enabled;
|
|
|
|
}
|
2009-03-17 03:36:36 +00:00
|
|
|
#endif
|
2008-08-05 20:17:17 +00:00
|
|
|
|
|
|
|
|
2007-09-06 03:28:58 +00:00
|
|
|
/* turn the display upside down (call lcd_update() afterwards) */
|
|
|
|
void lcd_set_flip(bool yesno)
|
|
|
|
{
|
2009-06-17 19:55:27 +00:00
|
|
|
lcd_send_command(R_DRIVER_OUTPUT_MODE, yesno ? 0x02 : 0x07);
|
2007-09-06 03:28:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*** update functions ***/
|
|
|
|
|
2022-10-13 15:03:53 +00:00
|
|
|
#if MEMORYSIZE > 2 /* not for C200V2 */
|
|
|
|
void lcd_yuv_set_options(unsigned options)
|
|
|
|
{
|
|
|
|
lcd_yuv_options = options;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* 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);
|
|
|
|
/* Performance function to blit a YUV bitmap directly to the LCD */
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
unsigned char const * yuv_src[3];
|
|
|
|
off_t z;
|
|
|
|
|
|
|
|
/* Sorry, but width and height must be >= 2 or else */
|
|
|
|
width &= ~1;
|
|
|
|
height >>= 1;
|
|
|
|
|
|
|
|
y += 0x1a;
|
|
|
|
|
|
|
|
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]);
|
|
|
|
|
|
|
|
lcd_send_command(R_ENTRY_MODE, 0x80);
|
|
|
|
|
|
|
|
lcd_send_command(R_X_ADDR_AREA, x);
|
|
|
|
lcd_send_command(x + width - 1, 0);
|
|
|
|
|
|
|
|
if (lcd_yuv_options & LCD_YUV_DITHER)
|
|
|
|
{
|
|
|
|
do
|
|
|
|
{
|
|
|
|
lcd_send_command(R_Y_ADDR_AREA, y);
|
|
|
|
lcd_send_command(y + 1, 0);
|
|
|
|
|
|
|
|
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;
|
|
|
|
y += 2;
|
|
|
|
}
|
|
|
|
while (--height > 0);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
do
|
|
|
|
{
|
|
|
|
lcd_send_command(R_Y_ADDR_AREA, y);
|
|
|
|
lcd_send_command(y + 1, 0);
|
|
|
|
|
|
|
|
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;
|
|
|
|
y += 2;
|
|
|
|
}
|
|
|
|
while (--height > 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* MEMORYSIZE > 2 */
|
|
|
|
|
2007-09-06 03:28:58 +00:00
|
|
|
/* Update the display.
|
|
|
|
This must be called after all other LCD functions that change the display. */
|
|
|
|
void lcd_update(void)
|
|
|
|
{
|
|
|
|
lcd_update_rect(0, 0, LCD_WIDTH, LCD_HEIGHT);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Update a fraction of the display. */
|
2007-10-28 13:16:05 +00:00
|
|
|
void lcd_update_rect(int x, int y, int width, int height)
|
2007-09-06 03:28:58 +00:00
|
|
|
{
|
2007-10-28 13:16:05 +00:00
|
|
|
const fb_data *addr;
|
2009-06-17 19:55:27 +00:00
|
|
|
|
2007-10-28 13:16:05 +00:00
|
|
|
if (x + width >= LCD_WIDTH)
|
|
|
|
width = LCD_WIDTH - x;
|
|
|
|
if (y + height >= LCD_HEIGHT)
|
|
|
|
height = LCD_HEIGHT - y;
|
2009-06-17 19:55:27 +00:00
|
|
|
|
2007-10-28 13:16:05 +00:00
|
|
|
if ((width <= 0) || (height <= 0))
|
|
|
|
return; /* Nothing left to do. */
|
|
|
|
|
2012-02-22 10:18:05 +00:00
|
|
|
addr = FBADDR(x,y);
|
2007-10-28 13:16:05 +00:00
|
|
|
|
2009-06-17 19:55:27 +00:00
|
|
|
if (width <= 1) {
|
|
|
|
/* The X end address must be larger than the X start address, so we
|
|
|
|
* switch to vertical mode for single column updates and set the
|
|
|
|
* window width to 2 */
|
|
|
|
lcd_send_command(R_ENTRY_MODE, 0x80);
|
|
|
|
lcd_send_command(R_X_ADDR_AREA, x);
|
|
|
|
lcd_send_command(x + 1, 0);
|
2007-10-28 13:16:05 +00:00
|
|
|
} else {
|
2009-06-17 19:55:27 +00:00
|
|
|
lcd_send_command(R_ENTRY_MODE, 0x82);
|
|
|
|
lcd_send_command(R_X_ADDR_AREA, x);
|
|
|
|
lcd_send_command(x + width - 1, 0);
|
2007-10-28 13:16:05 +00:00
|
|
|
}
|
2008-03-31 05:53:17 +00:00
|
|
|
|
2009-06-17 19:55:27 +00:00
|
|
|
lcd_send_command(R_Y_ADDR_AREA, y + 0x1a);
|
|
|
|
lcd_send_command(y + height - 1 + 0x1a, 0);
|
2008-03-31 05:53:17 +00:00
|
|
|
|
2010-06-27 03:24:56 +00:00
|
|
|
#ifdef SANSA_C200V2
|
|
|
|
/* somehow there are glitches without this delay */
|
|
|
|
udelay(1);
|
|
|
|
#endif
|
|
|
|
|
2007-10-28 13:16:05 +00:00
|
|
|
do {
|
2009-06-20 22:49:04 +00:00
|
|
|
lcd_write_data(addr, width);
|
2009-06-17 19:55:27 +00:00
|
|
|
addr += LCD_WIDTH;
|
2007-10-28 13:16:05 +00:00
|
|
|
} while (--height > 0);
|
2007-09-06 03:28:58 +00:00
|
|
|
}
|