1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (c) 2015 Google, Inc
4 * (C) Copyright 2001-2015
5 * DENX Software Engineering -- wd@denx.de
6 * Compulab Ltd - http://compulab.co.il/
7 * Bernecker & Rainer Industrieelektronik GmbH - http://www.br-automation.com
11 #include <linux/ctype.h>
14 #include <video_console.h>
15 #include <video_font.h> /* Bitmap font for code page 437 */
18 * Structure to describe a console color
26 /* By default we scroll by a single line */
27 #ifndef CONFIG_CONSOLE_SCROLL_LINES
28 #define CONFIG_CONSOLE_SCROLL_LINES 1
31 int vidconsole_putc_xy(struct udevice *dev, uint x, uint y, char ch)
33 struct vidconsole_ops *ops = vidconsole_get_ops(dev);
37 return ops->putc_xy(dev, x, y, ch);
40 int vidconsole_move_rows(struct udevice *dev, uint rowdst, uint rowsrc,
43 struct vidconsole_ops *ops = vidconsole_get_ops(dev);
47 return ops->move_rows(dev, rowdst, rowsrc, count);
50 int vidconsole_set_row(struct udevice *dev, uint row, int clr)
52 struct vidconsole_ops *ops = vidconsole_get_ops(dev);
56 return ops->set_row(dev, row, clr);
59 static int vidconsole_entry_start(struct udevice *dev)
61 struct vidconsole_ops *ops = vidconsole_get_ops(dev);
63 if (!ops->entry_start)
65 return ops->entry_start(dev);
68 /* Move backwards one space */
69 static int vidconsole_back(struct udevice *dev)
71 struct vidconsole_priv *priv = dev_get_uclass_priv(dev);
72 struct vidconsole_ops *ops = vidconsole_get_ops(dev);
76 ret = ops->backspace(dev);
81 priv->xcur_frac -= VID_TO_POS(priv->x_charsize);
82 if (priv->xcur_frac < priv->xstart_frac) {
83 priv->xcur_frac = (priv->cols - 1) *
84 VID_TO_POS(priv->x_charsize);
85 priv->ycur -= priv->y_charsize;
89 video_sync(dev->parent, false);
94 /* Move to a newline, scrolling the display if necessary */
95 static void vidconsole_newline(struct udevice *dev)
97 struct vidconsole_priv *priv = dev_get_uclass_priv(dev);
98 struct udevice *vid_dev = dev->parent;
99 struct video_priv *vid_priv = dev_get_uclass_priv(vid_dev);
100 const int rows = CONFIG_CONSOLE_SCROLL_LINES;
103 priv->xcur_frac = priv->xstart_frac;
104 priv->ycur += priv->y_charsize;
106 /* Check if we need to scroll the terminal */
107 if ((priv->ycur + priv->y_charsize) / priv->y_charsize > priv->rows) {
108 vidconsole_move_rows(dev, 0, rows, priv->rows - rows);
109 for (i = 0; i < rows; i++)
110 vidconsole_set_row(dev, priv->rows - i - 1,
111 vid_priv->colour_bg);
112 priv->ycur -= rows * priv->y_charsize;
116 video_sync(dev->parent, false);
119 static const struct vid_rgb colors[VID_COLOR_COUNT] = {
120 { 0x00, 0x00, 0x00 }, /* black */
121 { 0xc0, 0x00, 0x00 }, /* red */
122 { 0x00, 0xc0, 0x00 }, /* green */
123 { 0xc0, 0x60, 0x00 }, /* brown */
124 { 0x00, 0x00, 0xc0 }, /* blue */
125 { 0xc0, 0x00, 0xc0 }, /* magenta */
126 { 0x00, 0xc0, 0xc0 }, /* cyan */
127 { 0xc0, 0xc0, 0xc0 }, /* light gray */
128 { 0x80, 0x80, 0x80 }, /* gray */
129 { 0xff, 0x00, 0x00 }, /* bright red */
130 { 0x00, 0xff, 0x00 }, /* bright green */
131 { 0xff, 0xff, 0x00 }, /* yellow */
132 { 0x00, 0x00, 0xff }, /* bright blue */
133 { 0xff, 0x00, 0xff }, /* bright magenta */
134 { 0x00, 0xff, 0xff }, /* bright cyan */
135 { 0xff, 0xff, 0xff }, /* white */
138 u32 vid_console_color(struct video_priv *priv, unsigned int idx)
140 switch (priv->bpix) {
142 return ((colors[idx].r >> 3) << 11) |
143 ((colors[idx].g >> 2) << 5) |
144 ((colors[idx].b >> 3) << 0);
146 return (colors[idx].r << 16) |
147 (colors[idx].g << 8) |
148 (colors[idx].b << 0);
151 * For unknown bit arrangements just support
155 return 0xffffff; /* white */
157 return 0x000000; /* black */
161 static char *parsenum(char *s, int *num)
164 *num = simple_strtol(s, &end, 10);
169 * set_cursor_position() - set cursor position
171 * @priv: private data of the video console
175 static void set_cursor_position(struct vidconsole_priv *priv, int row, int col)
178 * Ensure we stay in the bounds of the screen.
180 if (row >= priv->rows)
181 row = priv->rows - 1;
182 if (col >= priv->cols)
183 col = priv->cols - 1;
185 priv->ycur = row * priv->y_charsize;
186 priv->xcur_frac = priv->xstart_frac +
187 VID_TO_POS(col * priv->x_charsize);
191 * get_cursor_position() - get cursor position
193 * @priv: private data of the video console
197 static void get_cursor_position(struct vidconsole_priv *priv,
200 *row = priv->ycur / priv->y_charsize;
201 *col = VID_TO_PIXEL(priv->xcur_frac - priv->xstart_frac) /
206 * Process a character while accumulating an escape string. Chars are
207 * accumulated into escape_buf until the end of escape sequence is
208 * found, at which point the sequence is parsed and processed.
210 static void vidconsole_escape_char(struct udevice *dev, char ch)
212 struct vidconsole_priv *priv = dev_get_uclass_priv(dev);
214 if (!IS_ENABLED(CONFIG_VIDEO_ANSI))
217 /* Sanity checking for bogus ESC sequences: */
218 if (priv->escape_len >= sizeof(priv->escape_buf))
220 if (priv->escape_len == 0) {
223 /* Save cursor position */
224 get_cursor_position(priv, &priv->row_saved,
230 /* Restore cursor position */
231 int row = priv->row_saved;
232 int col = priv->col_saved;
234 set_cursor_position(priv, row, col);
245 priv->escape_buf[priv->escape_len++] = ch;
248 * Escape sequences are terminated by a letter, so keep
249 * accumulating until we get one:
255 * clear escape mode first, otherwise things will get highly
256 * surprising if you hit any debug prints that come back to
269 char *s = priv->escape_buf;
272 * Cursor up/down: [%dA, [%dB, [%dE, [%dF
273 * Cursor left/right: [%dD, [%dC
276 s = parsenum(s, &num);
277 if (num == 0) /* No digit in sequence ... */
278 num = 1; /* ... means "move by 1". */
280 get_cursor_position(priv, &row, &col);
281 if (ch == 'A' || ch == 'F')
287 if (ch == 'B' || ch == 'E')
289 if (ch == 'E' || ch == 'F')
295 /* Right and bottom overflows are handled in the callee. */
296 set_cursor_position(priv, row, col);
302 char *s = priv->escape_buf;
305 * Set cursor position: [%d;%df or [%d;%dH
308 s = parsenum(s, &row);
310 s = parsenum(s, &col);
313 * Video origin is [0, 0], terminal origin is [1, 1].
320 set_cursor_position(priv, row, col);
328 * Clear part/all screen:
329 * [J or [0J - clear screen from cursor down
330 * [1J - clear screen from cursor up
331 * [2J - clear entire screen
333 * TODO we really only handle entire-screen case, others
334 * probably require some additions to video-uclass (and
335 * are not really needed yet by efi_console)
337 parsenum(priv->escape_buf + 1, &mode);
340 video_clear(dev->parent);
341 video_sync(dev->parent, false);
343 priv->xcur_frac = priv->xstart_frac;
345 debug("unsupported clear mode: %d\n", mode);
350 struct video_priv *vid_priv = dev_get_uclass_priv(dev->parent);
354 * Clear (parts of) current line
355 * [0K - clear line to end
356 * [2K - clear entire line
358 parsenum(priv->escape_buf + 1, &mode);
363 get_cursor_position(priv, &row, &col);
364 vidconsole_set_row(dev, row, vid_priv->colour_bg);
369 struct video_priv *vid_priv = dev_get_uclass_priv(dev->parent);
370 char *s = priv->escape_buf;
371 char *end = &priv->escape_buf[priv->escape_len];
374 * Set graphics mode: [%d;...;%dm
376 * Currently only supports the color attributes:
405 s = parsenum(s, &val);
410 /* all attributes off */
411 video_set_default_colors(dev->parent, false);
415 vid_priv->fg_col_idx |= 8;
416 vid_priv->colour_fg = vid_console_color(
417 vid_priv, vid_priv->fg_col_idx);
421 vid_priv->colour_fg = vid_console_color(
422 vid_priv, vid_priv->bg_col_idx);
423 vid_priv->colour_bg = vid_console_color(
424 vid_priv, vid_priv->fg_col_idx);
427 /* foreground color */
428 vid_priv->fg_col_idx &= ~7;
429 vid_priv->fg_col_idx |= val - 30;
430 vid_priv->colour_fg = vid_console_color(
431 vid_priv, vid_priv->fg_col_idx);
434 /* background color, also mask the bold bit */
435 vid_priv->bg_col_idx &= ~0xf;
436 vid_priv->bg_col_idx |= val - 40;
437 vid_priv->colour_bg = vid_console_color(
438 vid_priv, vid_priv->bg_col_idx);
441 /* ignore unsupported SGR parameter */
449 debug("unrecognized escape sequence: %*s\n",
450 priv->escape_len, priv->escape_buf);
456 /* something went wrong, just revert to normal mode: */
460 /* Put that actual character on the screen (using the CP437 code page). */
461 static int vidconsole_output_glyph(struct udevice *dev, char ch)
463 struct vidconsole_priv *priv = dev_get_uclass_priv(dev);
467 * Failure of this function normally indicates an unsupported
468 * colour depth. Check this and return an error to help with
471 ret = vidconsole_putc_xy(dev, priv->xcur_frac, priv->ycur, ch);
472 if (ret == -EAGAIN) {
473 vidconsole_newline(dev);
474 ret = vidconsole_putc_xy(dev, priv->xcur_frac, priv->ycur, ch);
478 priv->xcur_frac += ret;
480 if (priv->xcur_frac >= priv->xsize_frac)
481 vidconsole_newline(dev);
486 int vidconsole_put_char(struct udevice *dev, char ch)
488 struct vidconsole_priv *priv = dev_get_uclass_priv(dev);
492 vidconsole_escape_char(dev, ch);
498 priv->escape_len = 0;
505 priv->xcur_frac = priv->xstart_frac;
508 vidconsole_newline(dev);
509 vidconsole_entry_start(dev);
511 case '\t': /* Tab (8 chars alignment) */
512 priv->xcur_frac = ((priv->xcur_frac / priv->tab_width_frac)
513 + 1) * priv->tab_width_frac;
515 if (priv->xcur_frac >= priv->xsize_frac)
516 vidconsole_newline(dev);
519 vidconsole_back(dev);
523 ret = vidconsole_output_glyph(dev, ch);
532 static void vidconsole_putc(struct stdio_dev *sdev, const char ch)
534 struct udevice *dev = sdev->priv;
536 vidconsole_put_char(dev, ch);
537 video_sync(dev->parent, false);
540 static void vidconsole_puts(struct stdio_dev *sdev, const char *s)
542 struct udevice *dev = sdev->priv;
545 vidconsole_put_char(dev, *s++);
546 video_sync(dev->parent, false);
549 /* Set up the number of rows and colours (rotated drivers override this) */
550 static int vidconsole_pre_probe(struct udevice *dev)
552 struct vidconsole_priv *priv = dev_get_uclass_priv(dev);
553 struct udevice *vid = dev->parent;
554 struct video_priv *vid_priv = dev_get_uclass_priv(vid);
556 priv->xsize_frac = VID_TO_POS(vid_priv->xsize);
561 /* Register the device with stdio */
562 static int vidconsole_post_probe(struct udevice *dev)
564 struct vidconsole_priv *priv = dev_get_uclass_priv(dev);
565 struct stdio_dev *sdev = &priv->sdev;
567 if (!priv->tab_width_frac)
568 priv->tab_width_frac = VID_TO_POS(priv->x_charsize) * 8;
571 snprintf(sdev->name, sizeof(sdev->name), "vidconsole%d",
574 strcpy(sdev->name, "vidconsole");
577 sdev->flags = DEV_FLAGS_OUTPUT;
578 sdev->putc = vidconsole_putc;
579 sdev->puts = vidconsole_puts;
582 return stdio_register(sdev);
585 UCLASS_DRIVER(vidconsole) = {
586 .id = UCLASS_VIDEO_CONSOLE,
587 .name = "vidconsole0",
588 .pre_probe = vidconsole_pre_probe,
589 .post_probe = vidconsole_post_probe,
590 .per_device_auto_alloc_size = sizeof(struct vidconsole_priv),
593 void vidconsole_position_cursor(struct udevice *dev, unsigned col, unsigned row)
595 struct vidconsole_priv *priv = dev_get_uclass_priv(dev);
596 struct udevice *vid_dev = dev->parent;
597 struct video_priv *vid_priv = dev_get_uclass_priv(vid_dev);
599 col *= priv->x_charsize;
600 row *= priv->y_charsize;
601 priv->xcur_frac = VID_TO_POS(min_t(short, col, vid_priv->xsize - 1));
602 priv->ycur = min_t(short, row, vid_priv->ysize - 1);
605 static int do_video_setcursor(cmd_tbl_t *cmdtp, int flag, int argc,
608 unsigned int col, row;
612 return CMD_RET_USAGE;
614 if (uclass_first_device_err(UCLASS_VIDEO_CONSOLE, &dev))
615 return CMD_RET_FAILURE;
616 col = simple_strtoul(argv[1], NULL, 10);
617 row = simple_strtoul(argv[2], NULL, 10);
618 vidconsole_position_cursor(dev, col, row);
623 static int do_video_puts(cmd_tbl_t *cmdtp, int flag, int argc,
630 return CMD_RET_USAGE;
632 if (uclass_first_device_err(UCLASS_VIDEO_CONSOLE, &dev))
633 return CMD_RET_FAILURE;
634 for (s = argv[1]; *s; s++)
635 vidconsole_put_char(dev, *s);
637 video_sync(dev->parent, false);
643 setcurs, 3, 1, do_video_setcursor,
644 "set cursor position within screen",
645 " <col> <row> in character"
649 lcdputs, 2, 1, do_video_puts,
650 "print string on video framebuffer",