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.)
37 * \author Bernie Innocenti <bernie@codewiz.org>
38 * \author Stefano Fedrigo <aleph@develer.com>
43 #include "hw/hw_lcd.h"
45 #include "cfg/cfg_arch.h"
47 #include <drv/timer.h>
49 #warning FIXME: Revise and refactor this code.
51 #if defined(LCD_READ_H) && defined(LCD_READ_L) && defined(LCD_WRITE_H) && defined(LCD_WRITE_L)
52 #define CONFIG_LCD_4BIT 1
53 #elif defined(LCD_READ) && defined(LCD_WRITE)
54 #define CONFIG_LCD_4BIT 0
56 #error Incomplete or missing LCD_READ/LCD_WRITE macros
59 /** Flag di stato del display */
60 #define LCDF_BUSY BV(7)
62 #if CONFIG_LCD_ADDRESS_FAST == 1
63 #define lcd_address(x) lcd_address[x]
65 * Addresses of LCD display character positions, expanded
66 * for faster access (DB7 = 1).
68 static const uint8_t lcd_address[] =
71 0x80, 0x81, 0x82, 0x83,
72 0x84, 0x85, 0x86, 0x87,
73 0x88, 0x89, 0x8A, 0x8B,
74 0x8C, 0x8D, 0x8E, 0x8F,
76 0x90, 0x91, 0x92, 0x93,
80 0xC0, 0xC1, 0xC2, 0xC3,
81 0xC4, 0xC5, 0xC6, 0xC7,
82 0xC8, 0xC9, 0xCA, 0xCB,
83 0xCC, 0xCD, 0xCE, 0xCF,
85 0xD0, 0xD1, 0xD2, 0xD3,
90 0x94, 0x95, 0x96, 0x97,
91 0x98, 0x99, 0x9A, 0x9B,
92 0x9C, 0x9D, 0x9E, 0x9F,
93 0xA0, 0xA1, 0xA2, 0xA3,
95 0xA4, 0xA5, 0xA6, 0xA7,
99 0xD4, 0xD5, 0xD6, 0xD7,
100 0xD8, 0xD9, 0xDA, 0xDB,
101 0xDC, 0xDD, 0xDE, 0xDF,
102 0xE0, 0xE1, 0xE2, 0xE3,
104 0xE4, 0xE5, 0xE6, 0xE7,
107 #endif /* LCD_ROWS > 2 */
110 STATIC_ASSERT(countof(lcd_address) == LCD_ROWS * LCD_COLS);
111 #else /* CONFIG_LCD_ADDRESS_FAST == 0 */
113 static const uint8_t col_address[] =
122 STATIC_ASSERT(countof(col_address) == LCD_ROWS);
124 * Addresses of LCD display character positions, calculated runtime to save RAM
126 static uint8_t lcd_address(uint8_t addr)
128 return col_address[addr / LCD_COLS] + addr % LCD_COLS;
130 #endif /* CONFIG_LCD_ADDRESS_FAST */
133 * Current display position. We remember this to optimize
134 * LCD output by avoiding to set the address every time.
136 static lcdpos_t lcd_current_addr;
139 #if !defined(ARCH_EMUL) || !(ARCH & ARCH_EMUL)
140 /* __________________
143 * R/W __________________
147 * DATA -<================
149 INLINE void lcd_dataWrite(uint8_t data)
152 /* Write high nibble */
159 /* Write low nibble */
166 #else /* !CONFIG_LCD_4BIT */
175 #endif /* !CONFIG_LCD_4BIT */
178 /* __________________
187 INLINE uint8_t lcd_dataRead(void)
192 LCD_DB_IN; /* Set bus as input! */
197 /* Read high nibble */
204 /* Read low nibble */
211 #else /* !CONFIG_LCD_4BIT */
220 #endif /* !CONFIG_LCD_4BIT */
223 LCD_DB_OUT; /* Reset bus as output! */
231 * READ __________________
235 * DATA --<===============
237 INLINE void lcd_regWrite(uint8_t data)
253 INLINE uint8_t lcd_regRead(void)
258 data = lcd_dataRead();
265 INLINE void lcd_mode4Bit(void)
269 LCD_WRITE_H(LCD_CMD_SETFUNC);
278 #endif /* CONFIG_LCD_4BIT */
280 #else /* ARCH_EMUL */
282 extern void Emul_LCDWriteReg(uint8_t d);
283 extern uint8_t Emul_LCDReadReg(void);
284 extern void Emul_LCDWriteData(uint8_t d);
285 extern uint8_t Emul_LCDReadData(void);
287 #define lcd_regWrite(d) Emul_LCDWriteReg(d)
288 #define lcd_regRead(d) Emul_LCDReadReg()
289 #define lcd_dataWrite(d) Emul_LCDWriteData(d)
290 #define lcd_dataRead(d) Emul_LCDReadData()
292 #endif /* ARCH_EMUL */
296 * Wait until the LCD busy flag clears.
298 void lcd_waitBusy(void)
302 uint8_t val = lcd_regRead();
303 if (!(val & LCDF_BUSY))
310 * Move the cursor to \a addr, only if not already there.
312 void lcd_moveTo(uint8_t addr)
314 if (addr != lcd_current_addr)
317 lcd_regWrite(lcd_address(addr));
318 lcd_current_addr = addr;
324 * Write a value in LCD data register, waiting for the busy flag.
326 void lcd_setReg(uint8_t val)
332 #include <cfg/debug.h>
334 * Write the character \a c on display address \a addr.
336 * NOTE: argh, the HD44 lcd type is a bad beast: our
337 * move/write -> write optimization requires this mess
338 * because display lines are interleaved!
340 void lcd_putc(uint8_t addr, uint8_t c)
342 if (addr != lcd_current_addr)
343 lcd_setReg(lcd_address(addr));
347 lcd_current_addr = addr + 1;
349 /* If we are at end of display wrap the address to 0 */
350 if (lcd_current_addr == LCD_COLS * LCD_ROWS)
351 lcd_current_addr = 0;
353 /* If we are at the end of a row put the cursor at the beginning of the next */
354 if (!(lcd_current_addr % LCD_COLS))
355 lcd_setReg(lcd_address(lcd_current_addr));
360 * Remap the glyph of a character.
362 * glyph - bitmap of 8x8 bits.
363 * code - must be 0-7 for the Hitachi LCD-II controller.
365 void lcd_remapChar(const char *glyph, char code)
369 /* Set CG RAM address */
370 lcd_setReg((uint8_t)((1<<6) | (code << 3)));
372 /* Write bitmap data */
373 for (i = 0; i < 8; i++)
376 lcd_dataWrite(glyph[i]);
379 /* Move back to original address */
380 lcd_setReg(lcd_address(lcd_current_addr));
385 void lcd_remapfont(void)
387 static const char lcd_glyphs[8] =
389 0x04, 0x0E, 0x15, 0x04, 0x04, 0x04, 0x04, 0x00 /* up arrow */
393 for (i = 0; i < 15; i++)
394 lcd_remapChar(i, bernie_char);
397 lcd_setAddr(lcd_DefLayer, 0);
398 for (i = 0; i < 80; i++)
399 lcd_putCharUnlocked(i);
403 void lcd_hw_init(void)
412 #endif /* CONFIG_LCD_4BIT */
414 lcd_regWrite(LCD_CMD_SETFUNC);
417 lcd_regWrite(LCD_CMD_DISPLAY_ON);
420 lcd_regWrite(LCD_CMD_CLEAR);
424 lcd_regWrite(LCD_CMD_RESET_DDRAM); // 4 bit mode doesn't allow char reprogramming
426 lcd_regWrite(LCD_CMD_DISPLAYMODE);