3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation; either version 2 of
8 * the License, or (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
27 #undef SWAPPED_LCD /* For the previous h/w version */
29 * The name of the device used for communication
32 #define PSOC_PSC MPC5XXX_PSC2
33 #define PSOC_BAUD 230400UL
41 * Dimensions in pixels
44 #define LCD_HEIGHT 100
49 #define LCD_BUF_SIZE ((LCD_WIDTH*LCD_HEIGHT)>>3)
51 #if LCD_BPP != LCD_MONOCHROME
52 #error "MCC200 support only monochrome displays (1 bpp)!"
55 #define PSOC_RETRIES 10 /* each of PSOC_WAIT_TIME */
56 #define PSOC_WAIT_TIME 10 /* usec */
58 #include <video_font.h>
59 #define FONT_WIDTH VIDEO_FONT_WIDTH
61 DECLARE_GLOBAL_DATA_PTR;
66 vidinfo_t panel_info = {
67 LCD_WIDTH, LCD_HEIGHT, LCD_BPP
76 * Frame buffer memory information
78 void *lcd_base; /* Start of framebuffer memory */
79 void *lcd_console_address; /* Start of console buffer */
81 short console_col = 0;
82 short console_row = 0;
85 * The device we use to communicate with PSoC
87 int serial_inited = 0;
92 void lcd_initcolregs (void);
93 void lcd_ctrl_init (void *lcdbase);
94 void lcd_enable (void);
97 * Imported functions to support the PSoC protocol
99 extern int serial_init_dev (unsigned long dev_base);
100 extern void serial_setrts_dev (unsigned long dev_base, int s);
101 extern int serial_getcts_dev (unsigned long dev_base);
102 extern void serial_putc_raw_dev(unsigned long dev_base, const char c);
105 * Just stubs for our driver, needed for compiling compabilty with
106 * the common LCD driver code.
108 void lcd_initcolregs (void)
112 void lcd_ctrl_init (void *lcdbase)
117 * Function sends the contents of the frame-buffer to the LCD
119 void lcd_enable (void)
121 int i, retries, fb_size;
123 if (!serial_inited) {
127 gd->baudrate = PSOC_BAUD;
128 serial_init_dev(PSOC_PSC);
130 serial_setrts_dev (PSOC_PSC, RTS_ASSERT);
135 * Implement PSoC communication protocol:
136 * 1. Assert RTS, wait CTS assertion
138 * 3. Negate RTS, wait CTS negation
142 serial_setrts_dev (PSOC_PSC, RTS_ASSERT);
143 for (retries = PSOC_RETRIES; retries; retries--) {
144 if (serial_getcts_dev(PSOC_PSC) == CTS_ASSERT)
146 udelay (PSOC_WAIT_TIME);
149 printf ("%s Error: PSoC doesn't respond on "
150 "RTS ASSERT\n", __FUNCTION__);
154 fb_size = panel_info.vl_row * (panel_info.vl_col >> 3);
156 #if !defined(SWAPPED_LCD)
157 for (i=0; i<fb_size; i++) {
158 serial_putc_raw_dev (PSOC_PSC, ((char *)lcd_base)[i]);
163 char *p = (char *)lcd_base;
165 pwidth = ((panel_info.vl_col+7) >> 3);
166 for (y=0; y<panel_info.vl_row; y++) {
168 for (x=0; x<pwidth; x+=5) {
169 serial_putc_raw_dev (PSOC_PSC, (p[i+x+2]<<4 & 0xF0) | (p[i+x+3]>>4 & 0x0F));
170 serial_putc_raw_dev (PSOC_PSC, (p[i+x+3]<<4 & 0xF0) | (p[i+x+4]>>4 & 0x0F));
171 serial_putc_raw_dev (PSOC_PSC, (p[i+x+4]<<4 & 0xF0) | (p[i+x]>>4 & 0x0F));
172 serial_putc_raw_dev (PSOC_PSC, (p[i+x]<<4 & 0xF0) | (p[i+x+1]>>4 & 0x0F));
173 serial_putc_raw_dev (PSOC_PSC, (p[i+x+1]<<4 & 0xF0) | (p[i+x+2]>>4 & 0x0F));
180 serial_setrts_dev (PSOC_PSC, RTS_NEGATE);
181 for (retries = PSOC_RETRIES; retries; retries--) {
182 if (serial_getcts_dev(PSOC_PSC) == CTS_NEGATE)
184 udelay (PSOC_WAIT_TIME);
189 #ifdef CONFIG_PROGRESSBAR
191 void show_progress (int size, int tot)
199 cnt = ((LCD_WIDTH/FONT_WIDTH) * rc) / tot;
201 rc -= (cnt * tot) / (LCD_WIDTH/FONT_WIDTH);
203 for (i = 0; i < cnt; i++) {
208 lcd_enable(); /* MCC200-specific - send the framebuffer to PSoC */
213 #endif /* CONFIG_LCD */