2 * Driver for the LCD display on the Tensilica XTFPGA board family.
3 * http://www.mytechcorp.com/cfdata/productFile/File1/MOC-16216B-B-A0A04.pdf
5 * This file is subject to the terms and conditions of the GNU General Public
6 * License. See the file "COPYING" in the main directory of this archive
9 * Copyright (C) 2001, 2006 Tensilica Inc.
10 * Copyright (C) 2015 Cadence Design Systems Inc.
13 #include <linux/delay.h>
14 #include <linux/init.h>
17 #include <platform/hardware.h>
18 #include <platform/lcd.h>
20 /* LCD instruction and data addresses. */
21 #define LCD_INSTR_ADDR ((char *)IOADDR(CONFIG_XTFPGA_LCD_BASE_ADDR))
22 #define LCD_DATA_ADDR (LCD_INSTR_ADDR + 4)
25 #define LCD_DISPLAY_ON 0xc
27 /* 8bit and 2 lines display */
28 #define LCD_DISPLAY_MODE8BIT 0x38
29 #define LCD_DISPLAY_MODE4BIT 0x28
30 #define LCD_DISPLAY_POS 0x80
31 #define LCD_SHIFT_LEFT 0x18
32 #define LCD_SHIFT_RIGHT 0x1c
34 static void lcd_put_byte(u8
*addr
, u8 data
)
36 #ifdef CONFIG_XTFPGA_LCD_8BIT_ACCESS
37 WRITE_ONCE(*addr
, data
);
39 WRITE_ONCE(*addr
, data
& 0xf0);
40 WRITE_ONCE(*addr
, (data
<< 4) & 0xf0);
44 static int __init
lcd_init(void)
46 WRITE_ONCE(*LCD_INSTR_ADDR
, LCD_DISPLAY_MODE8BIT
);
48 WRITE_ONCE(*LCD_INSTR_ADDR
, LCD_DISPLAY_MODE8BIT
);
50 WRITE_ONCE(*LCD_INSTR_ADDR
, LCD_DISPLAY_MODE8BIT
);
52 #ifndef CONFIG_XTFPGA_LCD_8BIT_ACCESS
53 WRITE_ONCE(*LCD_INSTR_ADDR
, LCD_DISPLAY_MODE4BIT
);
55 lcd_put_byte(LCD_INSTR_ADDR
, LCD_DISPLAY_MODE4BIT
);
58 lcd_put_byte(LCD_INSTR_ADDR
, LCD_DISPLAY_ON
);
60 lcd_put_byte(LCD_INSTR_ADDR
, LCD_CLEAR
);
62 lcd_disp_at_pos("XTENSA LINUX", 0);
66 void lcd_disp_at_pos(char *str
, unsigned char pos
)
68 lcd_put_byte(LCD_INSTR_ADDR
, LCD_DISPLAY_POS
| pos
);
71 lcd_put_byte(LCD_DATA_ADDR
, *str
);
77 void lcd_shiftleft(void)
79 lcd_put_byte(LCD_INSTR_ADDR
, LCD_SHIFT_LEFT
);
83 void lcd_shiftright(void)
85 lcd_put_byte(LCD_INSTR_ADDR
, LCD_SHIFT_RIGHT
);
89 arch_initcall(lcd_init
);