Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 | // SPDX-License-Identifier: GPL-2.0+ /* * video commands * * Copyright 2022 Google LLC * Written by Simon Glass <sjg@chromium.org> */ #include <command.h> #include <dm.h> #include <video.h> #include <video_console.h> #if CONFIG_IS_ENABLED(VIDEO_GLYPH_STATS) static int do_font_info(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) { printf("glyphs rendered: %u\n", gd->glyph_count); return 0; } #endif static int do_font_list(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) { struct udevice *dev; if (uclass_first_device_err(UCLASS_VIDEO_CONSOLE, &dev)) return CMD_RET_FAILURE; vidconsole_list_fonts(dev); return 0; } static int do_font_select(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) { struct udevice *dev; const char *name; uint size = 0; int ret; if (uclass_first_device_err(UCLASS_VIDEO_CONSOLE, &dev)) return CMD_RET_FAILURE; name = argv[1]; if (argc == 3) size = dectoul(argv[2], NULL); ret = vidconsole_select_font(dev, name, size); if (ret) { printf("Failed (error %d)\n", ret); return CMD_RET_FAILURE; } return 0; } static int do_font_size(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) { const char *font_name; struct udevice *dev; uint size; int ret; if (uclass_first_device_err(UCLASS_VIDEO_CONSOLE, &dev)) return CMD_RET_FAILURE; ret = vidconsole_get_font_size(dev, &font_name, &size); if (ret) { printf("Failed (error %d)\n", ret); return CMD_RET_FAILURE; } if (argc < 2) { printf("%d\n", size); } else { size = dectoul(argv[1], NULL); ret = vidconsole_select_font(dev, font_name, size); if (ret) { printf("Failed (error %d)\n", ret); return CMD_RET_FAILURE; } } return 0; } #if CONFIG_IS_ENABLED(VIDEO_GLYPH_STATS) #define FONT_INFO_HELP "\nfont info - show glyph rendering statistics" #define FONT_INFO_SUB , U_BOOT_SUBCMD_MKENT(info, 1, 1, do_font_info) #else #define FONT_INFO_HELP #define FONT_INFO_SUB #endif U_BOOT_LONGHELP(font, "list - list available fonts\n" "font select <name> [<size>] - select font to use\n" "font size <size> - select font size to" FONT_INFO_HELP); U_BOOT_CMD_WITH_SUBCMDS(font, "Fonts", font_help_text, U_BOOT_SUBCMD_MKENT(list, 1, 1, do_font_list), U_BOOT_SUBCMD_MKENT(select, 3, 1, do_font_select), U_BOOT_SUBCMD_MKENT(size, 2, 1, do_font_size) FONT_INFO_SUB); |