blob: e081d5a0eeb3e9473a9e67c98453645bf07d0f87 [file] [log] [blame]
Simon Glass83510762016-01-18 19:52:17 -07001/*
2 * Copyright (c) 2015 Google, Inc
3 * (C) Copyright 2001-2015
4 * DENX Software Engineering -- wd@denx.de
5 * Compulab Ltd - http://compulab.co.il/
6 * Bernecker & Rainer Industrieelektronik GmbH - http://www.br-automation.com
7 *
8 * SPDX-License-Identifier: GPL-2.0+
9 */
10
11#include <common.h>
12#include <dm.h>
13#include <video.h>
14#include <video_console.h>
15#include <video_font.h> /* Get font data, width and height */
16
17/* By default we scroll by a single line */
18#ifndef CONFIG_CONSOLE_SCROLL_LINES
19#define CONFIG_CONSOLE_SCROLL_LINES 1
20#endif
21
22int vidconsole_putc_xy(struct udevice *dev, uint x, uint y, char ch)
23{
24 struct vidconsole_ops *ops = vidconsole_get_ops(dev);
25
26 if (!ops->putc_xy)
27 return -ENOSYS;
28 return ops->putc_xy(dev, x, y, ch);
29}
30
31int vidconsole_move_rows(struct udevice *dev, uint rowdst, uint rowsrc,
32 uint count)
33{
34 struct vidconsole_ops *ops = vidconsole_get_ops(dev);
35
36 if (!ops->move_rows)
37 return -ENOSYS;
38 return ops->move_rows(dev, rowdst, rowsrc, count);
39}
40
41int vidconsole_set_row(struct udevice *dev, uint row, int clr)
42{
43 struct vidconsole_ops *ops = vidconsole_get_ops(dev);
44
45 if (!ops->set_row)
46 return -ENOSYS;
47 return ops->set_row(dev, row, clr);
48}
49
Simon Glass58c733a2016-01-14 18:10:40 -070050static int vidconsole_entry_start(struct udevice *dev)
51{
52 struct vidconsole_ops *ops = vidconsole_get_ops(dev);
53
54 if (!ops->entry_start)
55 return -ENOSYS;
56 return ops->entry_start(dev);
57}
58
Simon Glass83510762016-01-18 19:52:17 -070059/* Move backwards one space */
Simon Glass7b9f7e42016-01-14 18:10:41 -070060static int vidconsole_back(struct udevice *dev)
Simon Glass83510762016-01-18 19:52:17 -070061{
62 struct vidconsole_priv *priv = dev_get_uclass_priv(dev);
Simon Glass7b9f7e42016-01-14 18:10:41 -070063 struct vidconsole_ops *ops = vidconsole_get_ops(dev);
64 int ret;
65
66 if (ops->backspace) {
67 ret = ops->backspace(dev);
68 if (ret != -ENOSYS)
69 return ret;
70 }
Simon Glass83510762016-01-18 19:52:17 -070071
Simon Glassf2661782016-01-14 18:10:37 -070072 priv->xcur_frac -= VID_TO_POS(priv->x_charsize);
Simon Glassc5b77d02016-01-14 18:10:39 -070073 if (priv->xcur_frac < priv->xstart_frac) {
Simon Glassf2661782016-01-14 18:10:37 -070074 priv->xcur_frac = (priv->cols - 1) *
75 VID_TO_POS(priv->x_charsize);
76 priv->ycur -= priv->y_charsize;
77 if (priv->ycur < 0)
78 priv->ycur = 0;
Simon Glass83510762016-01-18 19:52:17 -070079 }
Simon Glassfb0b7092017-06-12 06:21:36 -060080 video_sync(dev->parent);
Simon Glass7b9f7e42016-01-14 18:10:41 -070081
82 return 0;
Simon Glass83510762016-01-18 19:52:17 -070083}
84
85/* Move to a newline, scrolling the display if necessary */
86static void vidconsole_newline(struct udevice *dev)
87{
88 struct vidconsole_priv *priv = dev_get_uclass_priv(dev);
89 struct udevice *vid_dev = dev->parent;
90 struct video_priv *vid_priv = dev_get_uclass_priv(vid_dev);
91 const int rows = CONFIG_CONSOLE_SCROLL_LINES;
92 int i;
93
Simon Glassc5b77d02016-01-14 18:10:39 -070094 priv->xcur_frac = priv->xstart_frac;
Simon Glassf2661782016-01-14 18:10:37 -070095 priv->ycur += priv->y_charsize;
Simon Glass83510762016-01-18 19:52:17 -070096
97 /* Check if we need to scroll the terminal */
Simon Glassf2661782016-01-14 18:10:37 -070098 if ((priv->ycur + priv->y_charsize) / priv->y_charsize > priv->rows) {
Simon Glass83510762016-01-18 19:52:17 -070099 vidconsole_move_rows(dev, 0, rows, priv->rows - rows);
100 for (i = 0; i < rows; i++)
101 vidconsole_set_row(dev, priv->rows - i - 1,
102 vid_priv->colour_bg);
Simon Glassf2661782016-01-14 18:10:37 -0700103 priv->ycur -= rows * priv->y_charsize;
Simon Glass83510762016-01-18 19:52:17 -0700104 }
Simon Glass58c733a2016-01-14 18:10:40 -0700105 priv->last_ch = 0;
106
Simon Glass83510762016-01-18 19:52:17 -0700107 video_sync(dev->parent);
108}
109
110int vidconsole_put_char(struct udevice *dev, char ch)
111{
112 struct vidconsole_priv *priv = dev_get_uclass_priv(dev);
113 int ret;
114
115 switch (ch) {
Simon Glass5508f102016-01-14 18:10:38 -0700116 case '\a':
117 /* beep */
118 break;
Simon Glass83510762016-01-18 19:52:17 -0700119 case '\r':
Simon Glassc5b77d02016-01-14 18:10:39 -0700120 priv->xcur_frac = priv->xstart_frac;
Simon Glass83510762016-01-18 19:52:17 -0700121 break;
122 case '\n':
123 vidconsole_newline(dev);
Simon Glass58c733a2016-01-14 18:10:40 -0700124 vidconsole_entry_start(dev);
Simon Glass83510762016-01-18 19:52:17 -0700125 break;
126 case '\t': /* Tab (8 chars alignment) */
Simon Glassf2661782016-01-14 18:10:37 -0700127 priv->xcur_frac = ((priv->xcur_frac / priv->tab_width_frac)
128 + 1) * priv->tab_width_frac;
Simon Glass83510762016-01-18 19:52:17 -0700129
Simon Glassf2661782016-01-14 18:10:37 -0700130 if (priv->xcur_frac >= priv->xsize_frac)
Simon Glass83510762016-01-18 19:52:17 -0700131 vidconsole_newline(dev);
132 break;
133 case '\b':
134 vidconsole_back(dev);
Simon Glass58c733a2016-01-14 18:10:40 -0700135 priv->last_ch = 0;
Simon Glass83510762016-01-18 19:52:17 -0700136 break;
137 default:
138 /*
139 * Failure of this function normally indicates an unsupported
140 * colour depth. Check this and return an error to help with
141 * diagnosis.
142 */
Simon Glassf2661782016-01-14 18:10:37 -0700143 ret = vidconsole_putc_xy(dev, priv->xcur_frac, priv->ycur, ch);
144 if (ret == -EAGAIN) {
145 vidconsole_newline(dev);
146 ret = vidconsole_putc_xy(dev, priv->xcur_frac,
147 priv->ycur, ch);
148 }
149 if (ret < 0)
Simon Glass83510762016-01-18 19:52:17 -0700150 return ret;
Simon Glassf2661782016-01-14 18:10:37 -0700151 priv->xcur_frac += ret;
Simon Glass58c733a2016-01-14 18:10:40 -0700152 priv->last_ch = ch;
Simon Glassf2661782016-01-14 18:10:37 -0700153 if (priv->xcur_frac >= priv->xsize_frac)
Simon Glass83510762016-01-18 19:52:17 -0700154 vidconsole_newline(dev);
155 break;
156 }
157
158 return 0;
159}
160
161static void vidconsole_putc(struct stdio_dev *sdev, const char ch)
162{
163 struct udevice *dev = sdev->priv;
164
165 vidconsole_put_char(dev, ch);
Rob Clark889808d2017-09-13 18:12:20 -0400166 video_sync(dev->parent);
Simon Glass83510762016-01-18 19:52:17 -0700167}
168
169static void vidconsole_puts(struct stdio_dev *sdev, const char *s)
170{
171 struct udevice *dev = sdev->priv;
172
173 while (*s)
174 vidconsole_put_char(dev, *s++);
Simon Glassbbc8a8b2016-01-30 16:37:41 -0700175 video_sync(dev->parent);
Simon Glass83510762016-01-18 19:52:17 -0700176}
177
178/* Set up the number of rows and colours (rotated drivers override this) */
179static int vidconsole_pre_probe(struct udevice *dev)
180{
181 struct vidconsole_priv *priv = dev_get_uclass_priv(dev);
182 struct udevice *vid = dev->parent;
183 struct video_priv *vid_priv = dev_get_uclass_priv(vid);
184
Simon Glassf2661782016-01-14 18:10:37 -0700185 priv->xsize_frac = VID_TO_POS(vid_priv->xsize);
Simon Glass83510762016-01-18 19:52:17 -0700186
187 return 0;
188}
189
190/* Register the device with stdio */
191static int vidconsole_post_probe(struct udevice *dev)
192{
193 struct vidconsole_priv *priv = dev_get_uclass_priv(dev);
194 struct stdio_dev *sdev = &priv->sdev;
Simon Glass83510762016-01-18 19:52:17 -0700195
Simon Glassf2661782016-01-14 18:10:37 -0700196 if (!priv->tab_width_frac)
197 priv->tab_width_frac = VID_TO_POS(priv->x_charsize) * 8;
198
Simon Glassf1a12472016-01-21 19:44:51 -0700199 if (dev->seq) {
200 snprintf(sdev->name, sizeof(sdev->name), "vidconsole%d",
201 dev->seq);
202 } else {
203 strcpy(sdev->name, "vidconsole");
204 }
Simon Glassf2661782016-01-14 18:10:37 -0700205
Simon Glass83510762016-01-18 19:52:17 -0700206 sdev->flags = DEV_FLAGS_OUTPUT;
207 sdev->putc = vidconsole_putc;
208 sdev->puts = vidconsole_puts;
209 sdev->priv = dev;
Simon Glass83510762016-01-18 19:52:17 -0700210
Masahiro Yamada720873b2016-09-06 22:17:33 +0900211 return stdio_register(sdev);
Simon Glass83510762016-01-18 19:52:17 -0700212}
213
214UCLASS_DRIVER(vidconsole) = {
215 .id = UCLASS_VIDEO_CONSOLE,
216 .name = "vidconsole0",
217 .pre_probe = vidconsole_pre_probe,
218 .post_probe = vidconsole_post_probe,
219 .per_device_auto_alloc_size = sizeof(struct vidconsole_priv),
220};
221
222void vidconsole_position_cursor(struct udevice *dev, unsigned col, unsigned row)
223{
224 struct vidconsole_priv *priv = dev_get_uclass_priv(dev);
Simon Glassf2661782016-01-14 18:10:37 -0700225 struct udevice *vid_dev = dev->parent;
226 struct video_priv *vid_priv = dev_get_uclass_priv(vid_dev);
Simon Glass83510762016-01-18 19:52:17 -0700227
Simon Glassf2661782016-01-14 18:10:37 -0700228 priv->xcur_frac = VID_TO_POS(min_t(short, col, vid_priv->xsize - 1));
229 priv->ycur = min_t(short, row, vid_priv->ysize - 1);
Simon Glass83510762016-01-18 19:52:17 -0700230}
231
232static int do_video_setcursor(cmd_tbl_t *cmdtp, int flag, int argc,
233 char *const argv[])
234{
235 unsigned int col, row;
236 struct udevice *dev;
237
238 if (argc != 3)
239 return CMD_RET_USAGE;
240
Simon Glass3f603cb2016-02-11 13:23:26 -0700241 if (uclass_first_device_err(UCLASS_VIDEO_CONSOLE, &dev))
Simon Glass83510762016-01-18 19:52:17 -0700242 return CMD_RET_FAILURE;
243 col = simple_strtoul(argv[1], NULL, 10);
244 row = simple_strtoul(argv[2], NULL, 10);
245 vidconsole_position_cursor(dev, col, row);
246
247 return 0;
248}
249
250static int do_video_puts(cmd_tbl_t *cmdtp, int flag, int argc,
251 char *const argv[])
252{
253 struct udevice *dev;
254 const char *s;
255
256 if (argc != 2)
257 return CMD_RET_USAGE;
258
Simon Glass3f603cb2016-02-11 13:23:26 -0700259 if (uclass_first_device_err(UCLASS_VIDEO_CONSOLE, &dev))
Simon Glass83510762016-01-18 19:52:17 -0700260 return CMD_RET_FAILURE;
261 for (s = argv[1]; *s; s++)
262 vidconsole_put_char(dev, *s);
263
Rob Clark889808d2017-09-13 18:12:20 -0400264 video_sync(dev->parent);
265
Simon Glass83510762016-01-18 19:52:17 -0700266 return 0;
267}
268
269U_BOOT_CMD(
270 setcurs, 3, 1, do_video_setcursor,
271 "set cursor position within screen",
272 " <col> <row> in character"
273);
274
275U_BOOT_CMD(
276 lcdputs, 2, 1, do_video_puts,
277 "print string on video framebuffer",
278 " <string>"
279);