2 * Cobalt/SEAD3 LCD frame buffer driver.
4 * Copyright (C) 2008 Yoichi Yuasa <yuasa@linux-mips.org>
5 * Copyright (C) 2012 MIPS Technologies, Inc.
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 #include <linux/delay.h>
23 #include <linux/init.h>
25 #include <linux/ioport.h>
26 #include <linux/uaccess.h>
27 #include <linux/platform_device.h>
28 #include <linux/module.h>
29 #include <linux/sched/signal.h>
32 * Cursor position address
34 * Y+----+----+----+---+----+----+
35 * 0|0x00|0x01|0x02|...|0x0e|0x0f|
36 * +----+----+----+---+----+----+
37 * 1|0x40|0x41|0x42|...|0x4e|0x4f|
38 * +----+----+----+---+----+----+
40 #define LCD_DATA_REG_OFFSET 0x10
41 #define LCD_XRES_MAX 16
42 #define LCD_YRES_MAX 2
43 #define LCD_CHARS_MAX 32
45 #define LCD_CLEAR 0x01
46 #define LCD_CURSOR_MOVE_HOME 0x02
47 #define LCD_RESET 0x06
49 #define LCD_CURSOR_OFF 0x0c
50 #define LCD_CURSOR_BLINK_OFF 0x0e
51 #define LCD_CURSOR_ON 0x0f
52 #define LCD_ON LCD_CURSOR_ON
53 #define LCD_CURSOR_MOVE_LEFT 0x10
54 #define LCD_CURSOR_MOVE_RIGHT 0x14
55 #define LCD_DISPLAY_LEFT 0x18
56 #define LCD_DISPLAY_RIGHT 0x1c
57 #define LCD_PRERESET 0x3f /* execute 4 times continuously */
60 #define LCD_GRAPHIC_MODE 0x40
61 #define LCD_TEXT_MODE 0x80
62 #define LCD_CUR_POS_MASK 0x7f
64 #define LCD_CUR_POS(x) ((x) & LCD_CUR_POS_MASK)
65 #define LCD_TEXT_POS(x) ((x) | LCD_TEXT_MODE)
67 static inline void lcd_write_control(struct fb_info *info, u8 control)
69 writel((u32)control << 24, info->screen_base);
72 static inline u8 lcd_read_control(struct fb_info *info)
74 return readl(info->screen_base) >> 24;
77 static inline void lcd_write_data(struct fb_info *info, u8 data)
79 writel((u32)data << 24, info->screen_base + LCD_DATA_REG_OFFSET);
82 static inline u8 lcd_read_data(struct fb_info *info)
84 return readl(info->screen_base + LCD_DATA_REG_OFFSET) >> 24;
87 static int lcd_busy_wait(struct fb_info *info)
90 int timeout = 10, retval = 0;
93 val = lcd_read_control(info);
98 if (msleep_interruptible(1))
110 static void lcd_clear(struct fb_info *info)
114 for (i = 0; i < 4; i++) {
117 lcd_write_control(info, LCD_PRERESET);
122 lcd_write_control(info, LCD_CLEAR);
126 lcd_write_control(info, LCD_RESET);
129 static struct fb_fix_screeninfo cobalt_lcdfb_fix = {
131 .type = FB_TYPE_TEXT,
132 .type_aux = FB_AUX_TEXT_MDA,
133 .visual = FB_VISUAL_MONO01,
134 .line_length = LCD_XRES_MAX,
135 .accel = FB_ACCEL_NONE,
138 static ssize_t cobalt_lcdfb_read(struct fb_info *info, char __user *buf,
139 size_t count, loff_t *ppos)
141 char src[LCD_CHARS_MAX];
146 if (pos >= LCD_CHARS_MAX || count == 0)
149 if (count > LCD_CHARS_MAX)
150 count = LCD_CHARS_MAX;
152 if (pos + count > LCD_CHARS_MAX)
153 count = LCD_CHARS_MAX - pos;
155 for (len = 0; len < count; len++) {
156 retval = lcd_busy_wait(info);
160 lcd_write_control(info, LCD_TEXT_POS(pos));
162 retval = lcd_busy_wait(info);
166 src[len] = lcd_read_data(info);
173 if (retval < 0 && signal_pending(current))
176 if (copy_to_user(buf, src, len))
184 static ssize_t cobalt_lcdfb_write(struct fb_info *info, const char __user *buf,
185 size_t count, loff_t *ppos)
187 char dst[LCD_CHARS_MAX];
192 if (pos >= LCD_CHARS_MAX || count == 0)
195 if (count > LCD_CHARS_MAX)
196 count = LCD_CHARS_MAX;
198 if (pos + count > LCD_CHARS_MAX)
199 count = LCD_CHARS_MAX - pos;
201 if (copy_from_user(dst, buf, count))
204 for (len = 0; len < count; len++) {
205 retval = lcd_busy_wait(info);
209 lcd_write_control(info, LCD_TEXT_POS(pos));
211 retval = lcd_busy_wait(info);
215 lcd_write_data(info, dst[len]);
222 if (retval < 0 && signal_pending(current))
230 static int cobalt_lcdfb_blank(int blank_mode, struct fb_info *info)
234 retval = lcd_busy_wait(info);
238 switch (blank_mode) {
239 case FB_BLANK_UNBLANK:
240 lcd_write_control(info, LCD_ON);
243 lcd_write_control(info, LCD_OFF);
250 static int cobalt_lcdfb_cursor(struct fb_info *info, struct fb_cursor *cursor)
255 switch (cursor->set) {
257 x = cursor->image.dx;
258 y = cursor->image.dy;
259 if (x >= LCD_XRES_MAX || y >= LCD_YRES_MAX)
262 retval = lcd_busy_wait(info);
266 lcd_write_control(info,
267 LCD_TEXT_POS(info->fix.line_length * y + x));
273 retval = lcd_busy_wait(info);
278 lcd_write_control(info, LCD_CURSOR_ON);
280 lcd_write_control(info, LCD_CURSOR_OFF);
285 static struct fb_ops cobalt_lcd_fbops = {
286 .owner = THIS_MODULE,
287 .fb_read = cobalt_lcdfb_read,
288 .fb_write = cobalt_lcdfb_write,
289 .fb_blank = cobalt_lcdfb_blank,
290 .fb_cursor = cobalt_lcdfb_cursor,
293 static int cobalt_lcdfb_probe(struct platform_device *dev)
295 struct fb_info *info;
296 struct resource *res;
299 info = framebuffer_alloc(0, &dev->dev);
303 res = platform_get_resource(dev, IORESOURCE_MEM, 0);
305 framebuffer_release(info);
309 info->screen_size = resource_size(res);
310 info->screen_base = devm_ioremap(&dev->dev, res->start,
312 if (!info->screen_base) {
313 framebuffer_release(info);
317 info->fbops = &cobalt_lcd_fbops;
318 info->fix = cobalt_lcdfb_fix;
319 info->fix.smem_start = res->start;
320 info->fix.smem_len = info->screen_size;
321 info->pseudo_palette = NULL;
323 info->flags = FBINFO_DEFAULT;
325 retval = register_framebuffer(info);
327 framebuffer_release(info);
331 platform_set_drvdata(dev, info);
335 fb_info(info, "Cobalt server LCD frame buffer device\n");
340 static int cobalt_lcdfb_remove(struct platform_device *dev)
342 struct fb_info *info;
344 info = platform_get_drvdata(dev);
346 unregister_framebuffer(info);
347 framebuffer_release(info);
353 static struct platform_driver cobalt_lcdfb_driver = {
354 .probe = cobalt_lcdfb_probe,
355 .remove = cobalt_lcdfb_remove,
357 .name = "cobalt-lcd",
360 module_platform_driver(cobalt_lcdfb_driver);
362 MODULE_LICENSE("GPL v2");
363 MODULE_AUTHOR("Yoichi Yuasa");
364 MODULE_DESCRIPTION("Cobalt server LCD frame buffer driver");