4 * This file is part of BeRTOS.
6 * Bertos is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 * As a special exception, you may use this file as part of a free software
21 * library without restriction. Specifically, if other files instantiate
22 * templates or use macros or inline functions from this file, or you compile
23 * this file and link it with other files to produce an executable, this
24 * file does not by itself cause the resulting executable to be covered by
25 * the GNU General Public License. This exception does not however
26 * invalidate any other reasons why the executable file might be covered by
27 * the GNU General Public License.
29 * Copyright 2005 Develer S.r.l. (http://www.develer.com/)
33 * \brief LM044L type LCD hardware module (impl.)
35 * \author Bernie Innocenti <bernie@codewiz.org>
36 * \author Stefano Fedrigo <aleph@develer.com>
41 #include "hw/hw_lcd_hd44.h"
43 #include "cfg/cfg_arch.h"
45 #include <drv/timer.h>
47 #warning FIXME: Revise and refactor this code.
49 #if defined(LCD_READ_H) && defined(LCD_READ_L) && defined(LCD_WRITE_H) && defined(LCD_WRITE_L)
50 #define CONFIG_LCD_4BIT 1
51 #elif defined(LCD_READ) && defined(LCD_WRITE)
52 #define CONFIG_LCD_4BIT 0
54 #error Incomplete or missing LCD_READ/LCD_WRITE macros
57 /** Flag di stato del display */
58 #define LCDF_BUSY BV(7)
60 #if CONFIG_LCD_ADDRESS_FAST == 1
61 #define lcd_address(x) lcd_address[x]
63 * Addresses of LCD display character positions, expanded
64 * for faster access (DB7 = 1).
66 static const uint8_t lcd_address[] =
69 0x80, 0x81, 0x82, 0x83,
70 0x84, 0x85, 0x86, 0x87,
71 0x88, 0x89, 0x8A, 0x8B,
72 0x8C, 0x8D, 0x8E, 0x8F,
73 #if CONFIG_LCD_COLS > 16
74 0x90, 0x91, 0x92, 0x93,
78 0xC0, 0xC1, 0xC2, 0xC3,
79 0xC4, 0xC5, 0xC6, 0xC7,
80 0xC8, 0xC9, 0xCA, 0xCB,
81 0xCC, 0xCD, 0xCE, 0xCF,
82 #if CONFIG_LCD_COLS > 16
83 0xD0, 0xD1, 0xD2, 0xD3,
86 #if CONFIG_LCD_ROWS > 2
88 0x94, 0x95, 0x96, 0x97,
89 0x98, 0x99, 0x9A, 0x9B,
90 0x9C, 0x9D, 0x9E, 0x9F,
91 0xA0, 0xA1, 0xA2, 0xA3,
92 #if CONFIG_LCD_COLS > 16
93 0xA4, 0xA5, 0xA6, 0xA7,
97 0xD4, 0xD5, 0xD6, 0xD7,
98 0xD8, 0xD9, 0xDA, 0xDB,
99 0xDC, 0xDD, 0xDE, 0xDF,
100 0xE0, 0xE1, 0xE2, 0xE3,
101 #if CONFIG_LCD_COLS > 16
102 0xE4, 0xE5, 0xE6, 0xE7,
105 #endif /* CONFIG_LCD_ROWS > 2 */
108 STATIC_ASSERT(countof(lcd_address) == CONFIG_LCD_ROWS * CONFIG_LCD_COLS);
109 #else /* CONFIG_LCD_ADDRESS_FAST == 0 */
111 static const uint8_t col_address[] =
115 #if CONFIG_LCD_ROWS > 2
120 STATIC_ASSERT(countof(col_address) == CONFIG_LCD_ROWS);
122 * Addresses of LCD display character positions, calculated runtime to save RAM
124 static uint8_t lcd_address(uint8_t addr)
126 return col_address[addr / CONFIG_LCD_COLS] + addr % CONFIG_LCD_COLS;
128 #endif /* CONFIG_LCD_ADDRESS_FAST */
131 * Current display position. We remember this to optimize
132 * LCD output by avoiding to set the address every time.
134 static lcdpos_t lcd_current_addr;
137 #if !defined(ARCH_EMUL) || !(ARCH & ARCH_EMUL)
138 /* __________________
141 * R/W __________________
145 * DATA -<================
147 INLINE void lcd_dataWrite(uint8_t data)
150 /* Write high nibble */
157 /* Write low nibble */
164 #else /* !CONFIG_LCD_4BIT */
173 #endif /* !CONFIG_LCD_4BIT */
176 /* __________________
185 INLINE uint8_t lcd_dataRead(void)
190 LCD_DB_IN; /* Set bus as input! */
195 /* Read high nibble */
202 /* Read low nibble */
209 #else /* !CONFIG_LCD_4BIT */
218 #endif /* !CONFIG_LCD_4BIT */
221 LCD_DB_OUT; /* Reset bus as output! */
229 * READ __________________
233 * DATA --<===============
235 INLINE void lcd_regWrite(uint8_t data)
251 INLINE uint8_t lcd_regRead(void)
256 data = lcd_dataRead();
263 INLINE void lcd_mode4Bit(void)
267 LCD_WRITE_H(LCD_CMD_SETFUNC);
276 #endif /* CONFIG_LCD_4BIT */
278 #else /* ARCH_EMUL */
280 extern void Emul_LCDWriteReg(uint8_t d);
281 extern uint8_t Emul_LCDReadReg(void);
282 extern void Emul_LCDWriteData(uint8_t d);
283 extern uint8_t Emul_LCDReadData(void);
285 #define lcd_regWrite(d) Emul_LCDWriteReg(d)
286 #define lcd_regRead(d) Emul_LCDReadReg()
287 #define lcd_dataWrite(d) Emul_LCDWriteData(d)
288 #define lcd_dataRead(d) Emul_LCDReadData()
290 #endif /* ARCH_EMUL */
294 * Wait until the LCD busy flag clears.
296 void lcd_waitBusy(void)
300 uint8_t val = lcd_regRead();
301 if (!(val & LCDF_BUSY))
308 * Move the cursor to \a addr, only if not already there.
310 void lcd_moveTo(uint8_t addr)
312 if (addr != lcd_current_addr)
315 lcd_regWrite(lcd_address(addr));
316 lcd_current_addr = addr;
322 * Write a value in LCD data register, waiting for the busy flag.
324 void lcd_setReg(uint8_t val)
330 #include <cfg/debug.h>
332 * Write the character \a c on display address \a addr.
334 * NOTE: argh, the HD44 lcd type is a bad beast: our
335 * move/write -> write optimization requires this mess
336 * because display lines are interleaved!
338 void lcd_putc(uint8_t addr, uint8_t c)
340 if (addr != lcd_current_addr)
341 lcd_setReg(lcd_address(addr));
345 lcd_current_addr = addr + 1;
347 /* If we are at end of display wrap the address to 0 */
348 if (lcd_current_addr == CONFIG_LCD_COLS * CONFIG_LCD_ROWS)
349 lcd_current_addr = 0;
351 /* If we are at the end of a row put the cursor at the beginning of the next */
352 if (!(lcd_current_addr % CONFIG_LCD_COLS))
353 lcd_setReg(lcd_address(lcd_current_addr));
358 * Remap the glyph of a character.
360 * glyph - bitmap of 8x8 bits.
361 * code - must be 0-7 for the Hitachi LCD-II controller.
363 void lcd_remapChar(const char *glyph, char code)
367 /* Set CG RAM address */
368 lcd_setReg((uint8_t)((1<<6) | (code << 3)));
370 /* Write bitmap data */
371 for (i = 0; i < 8; i++)
374 lcd_dataWrite(glyph[i]);
377 /* Move back to original address */
378 lcd_setReg(lcd_address(lcd_current_addr));
383 void lcd_remapfont(void)
385 static const char lcd_glyphs[8] =
387 0x04, 0x0E, 0x15, 0x04, 0x04, 0x04, 0x04, 0x00 /* up arrow */
391 for (i = 0; i < 15; i++)
392 lcd_remapChar(i, bernie_char);
395 lcd_setAddr(lcd_DefLayer, 0);
396 for (i = 0; i < 80; i++)
397 lcd_putCharUnlocked(i);
401 void lcd_hw_init(void)
403 lcd_hd44_hw_bus_init();
408 lcd_regWrite(LCD_CMD_SET8BIT);
411 #endif /* CONFIG_LCD_4BIT */
413 lcd_regWrite(LCD_CMD_SETFUNC);
416 lcd_regWrite(LCD_CMD_DISPLAY_ON);
419 lcd_regWrite(LCD_CMD_CLEAR);
423 lcd_regWrite(LCD_CMD_RESET_DDRAM); // 4 bit mode doesn't allow char reprogramming
425 lcd_regWrite(LCD_CMD_DISPLAYMODE);