1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
|
/***************************************************************************
* __________ __ ___.
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
* \/ \/ \/ \/ \/
* $Id$
*
* Copyright (C) 2008 by Mark Arigo
*
* 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 "kernel.h"
#include "system.h"
/* Display status */
static unsigned lcd_yuv_options SHAREDBSS_ATTR = 0;
/* wait for LCD */
static inline void lcd_wait_write(void)
{
while (LCD1_CONTROL & LCD1_BUSY_MASK);
}
/* send LCD data */
static void lcd_send_data(unsigned data)
{
lcd_wait_write();
LCD1_DATA = data >> 8;
lcd_wait_write();
LCD1_DATA = data & 0xff;
}
/* send LCD command */
static void lcd_send_command(unsigned cmd)
{
lcd_wait_write();
LCD1_CMD = cmd >> 8;
lcd_wait_write();
LCD1_CMD = cmd & 0xff;
}
static void lcd_write_reg(unsigned reg, unsigned data)
{
lcd_send_command(reg);
lcd_send_data(data);
}
void lcd_init_device(void)
{
#if 0
/* This is the init done by the OF bootloader.
Re-initializing the lcd causes it to flash
a white screen, so for now disable this. */
DEV_INIT1 &= ~0x3000;
DEV_INIT1 = DEV_INIT1;
DEV_INIT2 &= ~0x400;
LCD1_CONTROL = 0x4680;
udelay(1500);
LCD1_CONTROL = 0x4684;
outl(1, 0x70003018);
LCD1_CONTROL &= ~0x200;
LCD1_CONTROL &= ~0x800;
LCD1_CONTROL &= ~0x400;
udelay(30000);
LCD1_CONTROL |= 0x1;
lcd_write_reg(0x0000, 0x0001);
udelay(50000);
lcd_write_reg(0x0011, 0x171f);
lcd_write_reg(0x0012, 0x0001);
lcd_write_reg(0x0013, 0x08cd);
lcd_write_reg(0x0014, 0x0416);
lcd_write_reg(0x0010, 0x1208);
udelay(50000);
lcd_write_reg(0x0013, 0x081C);
udelay(200000);
lcd_write_reg(0x0001, 0x0a0c);
lcd_write_reg(0x0002, 0x0200);
lcd_write_reg(0x0003, 0x1030);
lcd_write_reg(0x0007, 0x0005);
lcd_write_reg(0x0008, 0x030a);
lcd_write_reg(0x000b, 0x0000);
lcd_write_reg(0x000c, 0x0000);
lcd_write_reg(0x0030, 0x0000);
lcd_write_reg(0x0031, 0x0204);
lcd_write_reg(0x0032, 0x0001);
lcd_write_reg(0x0033, 0x0600);
lcd_write_reg(0x0034, 0x0607);
lcd_write_reg(0x0035, 0x0305);
lcd_write_reg(0x0036, 0x0707);
lcd_write_reg(0x0037, 0x0006);
lcd_write_reg(0x0038, 0x0400);
lcd_write_reg(0x0040, 0x0000);
lcd_write_reg(0x0042, 0x9f00);
lcd_write_reg(0x0043, 0x0000);
lcd_write_reg(0x0044, 0x7f00);
lcd_write_reg(0x0045, 0x9f00);
lcd_write_reg(0x00a8, 0x0125);
lcd_write_reg(0x00a9, 0x0014);
lcd_write_reg(0x00a7, 0x0022);
lcd_write_reg(0x0007, 0x0021);
udelay(40000);
lcd_write_reg(0x0007, 0x0023);
udelay(40000);
lcd_write_reg(0x0007, 0x1037);
lcd_write_reg(0x0021, 0x0000);
#endif
}
/*** hardware configuration ***/
#if 0
int lcd_default_contrast(void)
{
return DEFAULT_CONTRAST_SETTING;
}
#endif
void lcd_set_contrast(int val)
{
(void)val;
}
void lcd_set_invert_display(bool yesno)
{
(void)yesno;
}
/* turn the display upside down (call lcd_update() afterwards) */
void lcd_set_flip(bool yesno)
{
(void)yesno;
}
void lcd_yuv_set_options(unsigned options)
{
lcd_yuv_options = options;
}
/* 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)
{
(void)src;
(void)src_x;
(void)src_y;
(void)stride;
(void)x;
(void)y;
(void)width;
(void)height;
}
/* 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. */
void lcd_update_rect(int x, int y, int width, int height)
{
const fb_data *addr;
if (x + width >= LCD_WIDTH)
width = LCD_WIDTH - x;
if (y + height >= LCD_HEIGHT)
height = LCD_HEIGHT - y;
if ((width <= 0) || (height <= 0))
return; /* Nothing left to do. */
addr = &lcd_framebuffer[y][x];
do {
lcd_write_reg(0x0021, ((y++ & 0xff) << 8) | (x & 0xff));
lcd_send_command(0x0022);
int w = width;
do {
lcd_send_data(*addr++);
} while (--w > 0);
addr += LCD_WIDTH - width;
} while (--height > 0);
}
|