Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2015 Google, Inc |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 4 | */ |
| 5 | |
Patrick Delaunay | 8131335 | 2021-04-27 11:02:19 +0200 | [diff] [blame] | 6 | #define LOG_CATEGORY UCLASS_VIDEO |
| 7 | |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 8 | #include <common.h> |
Simon Glass | 73c9c37 | 2020-07-02 21:12:20 -0600 | [diff] [blame] | 9 | #include <console.h> |
Simon Glass | 6333448 | 2019-11-14 12:57:39 -0700 | [diff] [blame] | 10 | #include <cpu_func.h> |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 11 | #include <dm.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 12 | #include <log.h> |
Simon Glass | 9bc1564 | 2020-02-03 07:36:16 -0700 | [diff] [blame] | 13 | #include <malloc.h> |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 14 | #include <mapmem.h> |
| 15 | #include <stdio_dev.h> |
| 16 | #include <video.h> |
| 17 | #include <video_console.h> |
Simon Glass | 274e0b0 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 18 | #include <asm/cache.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 19 | #include <asm/global_data.h> |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 20 | #include <dm/lists.h> |
Michal Simek | 632e3d4 | 2020-12-14 08:47:52 +0100 | [diff] [blame] | 21 | #include <dm/device_compat.h> |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 22 | #include <dm/device-internal.h> |
| 23 | #include <dm/uclass-internal.h> |
| 24 | #ifdef CONFIG_SANDBOX |
| 25 | #include <asm/sdl.h> |
| 26 | #endif |
| 27 | |
| 28 | /* |
| 29 | * Theory of operation: |
| 30 | * |
| 31 | * Before relocation each device is bound. The driver for each device must |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 32 | * set the @align and @size values in struct video_uc_plat. This |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 33 | * information represents the requires size and alignment of the frame buffer |
| 34 | * for the device. The values can be an over-estimate but cannot be too |
| 35 | * small. The actual values will be suppled (in the same manner) by the bind() |
Pali Rohár | f204fce | 2022-03-09 20:46:00 +0100 | [diff] [blame] | 36 | * method after relocation. Additionally driver can allocate frame buffer |
| 37 | * itself by setting plat->base. |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 38 | * |
| 39 | * This information is then picked up by video_reserve() which works out how |
| 40 | * much memory is needed for all devices. This is allocated between |
| 41 | * gd->video_bottom and gd->video_top. |
| 42 | * |
| 43 | * After relocation the same process occurs. The driver supplies the same |
| 44 | * @size and @align information and this time video_post_bind() checks that |
| 45 | * the drivers does not overflow the allocated memory. |
| 46 | * |
| 47 | * The frame buffer address is actually set (to plat->base) in |
| 48 | * video_post_probe(). This function also clears the frame buffer and |
| 49 | * allocates a suitable text console device. This can then be used to write |
| 50 | * text to the video device. |
| 51 | */ |
| 52 | DECLARE_GLOBAL_DATA_PTR; |
| 53 | |
Simon Glass | 951255d | 2020-07-02 21:12:32 -0600 | [diff] [blame] | 54 | /** |
| 55 | * struct video_uc_priv - Information for the video uclass |
| 56 | * |
| 57 | * @video_ptr: Current allocation position of the video framebuffer pointer. |
| 58 | * While binding devices after relocation, this points to the next |
| 59 | * available address to use for a device's framebuffer. It starts at |
| 60 | * gd->video_top and works downwards, running out of space when it hits |
| 61 | * gd->video_bottom. |
| 62 | */ |
| 63 | struct video_uc_priv { |
| 64 | ulong video_ptr; |
| 65 | }; |
| 66 | |
Simon Glass | 2a00633 | 2022-10-06 08:36:03 -0600 | [diff] [blame] | 67 | /** struct vid_rgb - Describes a video colour */ |
| 68 | struct vid_rgb { |
| 69 | u32 r; |
| 70 | u32 g; |
| 71 | u32 b; |
| 72 | }; |
| 73 | |
Simon Glass | 6463538 | 2016-01-21 19:44:52 -0700 | [diff] [blame] | 74 | void video_set_flush_dcache(struct udevice *dev, bool flush) |
| 75 | { |
| 76 | struct video_priv *priv = dev_get_uclass_priv(dev); |
| 77 | |
| 78 | priv->flush_dcache = flush; |
| 79 | } |
| 80 | |
Simon Glass | df865d3 | 2023-03-10 12:47:17 -0800 | [diff] [blame] | 81 | static ulong alloc_fb_(ulong align, ulong size, ulong *addrp) |
| 82 | { |
| 83 | ulong base; |
| 84 | |
| 85 | align = align ? align : 1 << 20; |
| 86 | base = *addrp - size; |
| 87 | base &= ~(align - 1); |
| 88 | size = *addrp - base; |
| 89 | *addrp = base; |
| 90 | |
| 91 | return size; |
| 92 | } |
| 93 | |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 94 | static ulong alloc_fb(struct udevice *dev, ulong *addrp) |
| 95 | { |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 96 | struct video_uc_plat *plat = dev_get_uclass_plat(dev); |
Simon Glass | df865d3 | 2023-03-10 12:47:17 -0800 | [diff] [blame] | 97 | ulong size; |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 98 | |
Simon Glass | df865d3 | 2023-03-10 12:47:17 -0800 | [diff] [blame] | 99 | if (!plat->size) { |
| 100 | if (IS_ENABLED(CONFIG_VIDEO_COPY) && plat->copy_size) { |
| 101 | size = alloc_fb_(plat->align, plat->copy_size, addrp); |
| 102 | plat->copy_base = *addrp; |
| 103 | return size; |
| 104 | } |
| 105 | |
Bin Meng | 755623d | 2016-10-09 04:14:17 -0700 | [diff] [blame] | 106 | return 0; |
Simon Glass | df865d3 | 2023-03-10 12:47:17 -0800 | [diff] [blame] | 107 | } |
Bin Meng | 755623d | 2016-10-09 04:14:17 -0700 | [diff] [blame] | 108 | |
Pali Rohár | f204fce | 2022-03-09 20:46:00 +0100 | [diff] [blame] | 109 | /* Allow drivers to allocate the frame buffer themselves */ |
| 110 | if (plat->base) |
| 111 | return 0; |
| 112 | |
Simon Glass | df865d3 | 2023-03-10 12:47:17 -0800 | [diff] [blame] | 113 | size = alloc_fb_(plat->align, plat->size, addrp); |
| 114 | plat->base = *addrp; |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 115 | |
| 116 | return size; |
| 117 | } |
| 118 | |
| 119 | int video_reserve(ulong *addrp) |
| 120 | { |
| 121 | struct udevice *dev; |
| 122 | ulong size; |
| 123 | |
| 124 | gd->video_top = *addrp; |
| 125 | for (uclass_find_first_device(UCLASS_VIDEO, &dev); |
| 126 | dev; |
| 127 | uclass_find_next_device(&dev)) { |
| 128 | size = alloc_fb(dev, addrp); |
| 129 | debug("%s: Reserving %lx bytes at %lx for video device '%s'\n", |
| 130 | __func__, size, *addrp, dev->name); |
| 131 | } |
Simon Glass | c3d2f35 | 2020-07-02 21:12:33 -0600 | [diff] [blame] | 132 | |
| 133 | /* Allocate space for PCI video devices in case there were not bound */ |
| 134 | if (*addrp == gd->video_top) |
Nikhil M Jain | 9e3301d | 2023-04-20 17:41:08 +0530 | [diff] [blame] | 135 | *addrp -= CONFIG_VAL(VIDEO_PCI_DEFAULT_FB_SIZE); |
Simon Glass | c3d2f35 | 2020-07-02 21:12:33 -0600 | [diff] [blame] | 136 | |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 137 | gd->video_bottom = *addrp; |
Simon Glass | b2b2961 | 2020-05-10 14:17:01 -0600 | [diff] [blame] | 138 | gd->fb_base = *addrp; |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 139 | debug("Video frame buffers from %lx to %lx\n", gd->video_bottom, |
| 140 | gd->video_top); |
| 141 | |
| 142 | return 0; |
| 143 | } |
| 144 | |
Simon Glass | 2baa6f8 | 2022-10-06 08:36:08 -0600 | [diff] [blame] | 145 | int video_fill(struct udevice *dev, u32 colour) |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 146 | { |
| 147 | struct video_priv *priv = dev_get_uclass_priv(dev); |
Simon Glass | f8ec621 | 2020-07-02 21:12:22 -0600 | [diff] [blame] | 148 | int ret; |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 149 | |
Heinrich Schuchardt | 5e4947e | 2018-02-08 21:47:10 +0100 | [diff] [blame] | 150 | switch (priv->bpix) { |
Simon Glass | 05c17d6 | 2019-12-20 18:10:37 -0700 | [diff] [blame] | 151 | case VIDEO_BPP16: |
Nikhil M Jain | 9e3301d | 2023-04-20 17:41:08 +0530 | [diff] [blame] | 152 | if (CONFIG_IS_ENABLED(VIDEO_BPP16)) { |
Simon Glass | 05c17d6 | 2019-12-20 18:10:37 -0700 | [diff] [blame] | 153 | u16 *ppix = priv->fb; |
| 154 | u16 *end = priv->fb + priv->fb_size; |
Heinrich Schuchardt | 5e4947e | 2018-02-08 21:47:10 +0100 | [diff] [blame] | 155 | |
Simon Glass | 05c17d6 | 2019-12-20 18:10:37 -0700 | [diff] [blame] | 156 | while (ppix < end) |
Simon Glass | 2baa6f8 | 2022-10-06 08:36:08 -0600 | [diff] [blame] | 157 | *ppix++ = colour; |
Simon Glass | 05c17d6 | 2019-12-20 18:10:37 -0700 | [diff] [blame] | 158 | break; |
| 159 | } |
| 160 | case VIDEO_BPP32: |
Nikhil M Jain | 9e3301d | 2023-04-20 17:41:08 +0530 | [diff] [blame] | 161 | if (CONFIG_IS_ENABLED(VIDEO_BPP32)) { |
Simon Glass | 05c17d6 | 2019-12-20 18:10:37 -0700 | [diff] [blame] | 162 | u32 *ppix = priv->fb; |
| 163 | u32 *end = priv->fb + priv->fb_size; |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 164 | |
Simon Glass | 05c17d6 | 2019-12-20 18:10:37 -0700 | [diff] [blame] | 165 | while (ppix < end) |
Simon Glass | 2baa6f8 | 2022-10-06 08:36:08 -0600 | [diff] [blame] | 166 | *ppix++ = colour; |
Simon Glass | 05c17d6 | 2019-12-20 18:10:37 -0700 | [diff] [blame] | 167 | break; |
| 168 | } |
Heinrich Schuchardt | 5e4947e | 2018-02-08 21:47:10 +0100 | [diff] [blame] | 169 | default: |
Simon Glass | 2baa6f8 | 2022-10-06 08:36:08 -0600 | [diff] [blame] | 170 | memset(priv->fb, colour, priv->fb_size); |
Heinrich Schuchardt | 5e4947e | 2018-02-08 21:47:10 +0100 | [diff] [blame] | 171 | break; |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 172 | } |
Simon Glass | f8ec621 | 2020-07-02 21:12:22 -0600 | [diff] [blame] | 173 | ret = video_sync_copy(dev, priv->fb, priv->fb + priv->fb_size); |
| 174 | if (ret) |
| 175 | return ret; |
Simon Glass | 5534312 | 2018-10-01 12:22:26 -0600 | [diff] [blame] | 176 | |
Michal Simek | a1e136d | 2020-12-15 15:12:09 +0100 | [diff] [blame] | 177 | return video_sync(dev, false); |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 178 | } |
| 179 | |
Simon Glass | 2baa6f8 | 2022-10-06 08:36:08 -0600 | [diff] [blame] | 180 | int video_clear(struct udevice *dev) |
| 181 | { |
| 182 | struct video_priv *priv = dev_get_uclass_priv(dev); |
| 183 | int ret; |
| 184 | |
| 185 | ret = video_fill(dev, priv->colour_bg); |
| 186 | if (ret) |
| 187 | return ret; |
| 188 | |
| 189 | return 0; |
| 190 | } |
| 191 | |
Simon Glass | 2a00633 | 2022-10-06 08:36:03 -0600 | [diff] [blame] | 192 | static const struct vid_rgb colours[VID_COLOUR_COUNT] = { |
| 193 | { 0x00, 0x00, 0x00 }, /* black */ |
| 194 | { 0xc0, 0x00, 0x00 }, /* red */ |
| 195 | { 0x00, 0xc0, 0x00 }, /* green */ |
| 196 | { 0xc0, 0x60, 0x00 }, /* brown */ |
| 197 | { 0x00, 0x00, 0xc0 }, /* blue */ |
| 198 | { 0xc0, 0x00, 0xc0 }, /* magenta */ |
| 199 | { 0x00, 0xc0, 0xc0 }, /* cyan */ |
| 200 | { 0xc0, 0xc0, 0xc0 }, /* light gray */ |
| 201 | { 0x80, 0x80, 0x80 }, /* gray */ |
| 202 | { 0xff, 0x00, 0x00 }, /* bright red */ |
| 203 | { 0x00, 0xff, 0x00 }, /* bright green */ |
| 204 | { 0xff, 0xff, 0x00 }, /* yellow */ |
| 205 | { 0x00, 0x00, 0xff }, /* bright blue */ |
| 206 | { 0xff, 0x00, 0xff }, /* bright magenta */ |
| 207 | { 0x00, 0xff, 0xff }, /* bright cyan */ |
| 208 | { 0xff, 0xff, 0xff }, /* white */ |
| 209 | }; |
| 210 | |
| 211 | u32 video_index_to_colour(struct video_priv *priv, unsigned int idx) |
| 212 | { |
| 213 | switch (priv->bpix) { |
| 214 | case VIDEO_BPP16: |
Nikhil M Jain | 9e3301d | 2023-04-20 17:41:08 +0530 | [diff] [blame] | 215 | if (CONFIG_IS_ENABLED(VIDEO_BPP16)) { |
Simon Glass | 2a00633 | 2022-10-06 08:36:03 -0600 | [diff] [blame] | 216 | return ((colours[idx].r >> 3) << 11) | |
| 217 | ((colours[idx].g >> 2) << 5) | |
| 218 | ((colours[idx].b >> 3) << 0); |
| 219 | } |
| 220 | break; |
| 221 | case VIDEO_BPP32: |
Nikhil M Jain | 9e3301d | 2023-04-20 17:41:08 +0530 | [diff] [blame] | 222 | if (CONFIG_IS_ENABLED(VIDEO_BPP32)) { |
Simon Glass | 2a00633 | 2022-10-06 08:36:03 -0600 | [diff] [blame] | 223 | if (priv->format == VIDEO_X2R10G10B10) |
| 224 | return (colours[idx].r << 22) | |
| 225 | (colours[idx].g << 12) | |
| 226 | (colours[idx].b << 2); |
| 227 | else |
| 228 | return (colours[idx].r << 16) | |
| 229 | (colours[idx].g << 8) | |
| 230 | (colours[idx].b << 0); |
| 231 | } |
| 232 | break; |
| 233 | default: |
| 234 | break; |
| 235 | } |
| 236 | |
| 237 | /* |
| 238 | * For unknown bit arrangements just support |
| 239 | * black and white. |
| 240 | */ |
| 241 | if (idx) |
| 242 | return 0xffffff; /* white */ |
| 243 | |
| 244 | return 0x000000; /* black */ |
| 245 | } |
| 246 | |
Simon Glass | 2b063b8 | 2018-11-06 15:21:36 -0700 | [diff] [blame] | 247 | void video_set_default_colors(struct udevice *dev, bool invert) |
Heinrich Schuchardt | 290e1d8 | 2018-02-08 21:47:11 +0100 | [diff] [blame] | 248 | { |
Simon Glass | 2b063b8 | 2018-11-06 15:21:36 -0700 | [diff] [blame] | 249 | struct video_priv *priv = dev_get_uclass_priv(dev); |
| 250 | int fore, back; |
| 251 | |
Simon Glass | 05c17d6 | 2019-12-20 18:10:37 -0700 | [diff] [blame] | 252 | if (CONFIG_IS_ENABLED(SYS_WHITE_ON_BLACK)) { |
| 253 | /* White is used when switching to bold, use light gray here */ |
| 254 | fore = VID_LIGHT_GRAY; |
| 255 | back = VID_BLACK; |
| 256 | } else { |
| 257 | fore = VID_BLACK; |
| 258 | back = VID_WHITE; |
| 259 | } |
Simon Glass | 2b063b8 | 2018-11-06 15:21:36 -0700 | [diff] [blame] | 260 | if (invert) { |
| 261 | int temp; |
| 262 | |
| 263 | temp = fore; |
| 264 | fore = back; |
| 265 | back = temp; |
| 266 | } |
| 267 | priv->fg_col_idx = fore; |
Andre Przywara | 4ed5bc8 | 2019-03-23 01:29:56 +0000 | [diff] [blame] | 268 | priv->bg_col_idx = back; |
Simon Glass | 2a00633 | 2022-10-06 08:36:03 -0600 | [diff] [blame] | 269 | priv->colour_fg = video_index_to_colour(priv, fore); |
| 270 | priv->colour_bg = video_index_to_colour(priv, back); |
Heinrich Schuchardt | 290e1d8 | 2018-02-08 21:47:11 +0100 | [diff] [blame] | 271 | } |
| 272 | |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 273 | /* Flush video activity to the caches */ |
Michal Simek | 632e3d4 | 2020-12-14 08:47:52 +0100 | [diff] [blame] | 274 | int video_sync(struct udevice *vid, bool force) |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 275 | { |
Michal Simek | 8ae95df | 2020-12-03 09:30:00 +0100 | [diff] [blame] | 276 | struct video_ops *ops = video_get_ops(vid); |
| 277 | int ret; |
| 278 | |
| 279 | if (ops && ops->video_sync) { |
| 280 | ret = ops->video_sync(vid); |
| 281 | if (ret) |
| 282 | return ret; |
| 283 | } |
| 284 | |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 285 | /* |
| 286 | * flush_dcache_range() is declared in common.h but it seems that some |
| 287 | * architectures do not actually implement it. Is there a way to find |
| 288 | * out whether it exists? For now, ARM is safe. |
| 289 | */ |
Trevor Woerner | 43ec7e0 | 2019-05-03 09:41:00 -0400 | [diff] [blame] | 290 | #if defined(CONFIG_ARM) && !CONFIG_IS_ENABLED(SYS_DCACHE_OFF) |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 291 | struct video_priv *priv = dev_get_uclass_priv(vid); |
| 292 | |
| 293 | if (priv->flush_dcache) { |
| 294 | flush_dcache_range((ulong)priv->fb, |
Simon Glass | eebc3fd | 2016-11-13 14:22:06 -0700 | [diff] [blame] | 295 | ALIGN((ulong)priv->fb + priv->fb_size, |
| 296 | CONFIG_SYS_CACHELINE_SIZE)); |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 297 | } |
| 298 | #elif defined(CONFIG_VIDEO_SANDBOX_SDL) |
| 299 | struct video_priv *priv = dev_get_uclass_priv(vid); |
| 300 | static ulong last_sync; |
| 301 | |
Simon Glass | ea11373 | 2022-02-28 15:13:48 -0700 | [diff] [blame] | 302 | if (force || get_timer(last_sync) > 100) { |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 303 | sandbox_sdl_sync(priv->fb); |
| 304 | last_sync = get_timer(0); |
| 305 | } |
| 306 | #endif |
Michal Simek | 632e3d4 | 2020-12-14 08:47:52 +0100 | [diff] [blame] | 307 | return 0; |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 308 | } |
| 309 | |
| 310 | void video_sync_all(void) |
| 311 | { |
| 312 | struct udevice *dev; |
Michal Simek | 632e3d4 | 2020-12-14 08:47:52 +0100 | [diff] [blame] | 313 | int ret; |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 314 | |
| 315 | for (uclass_find_first_device(UCLASS_VIDEO, &dev); |
| 316 | dev; |
| 317 | uclass_find_next_device(&dev)) { |
Michal Simek | 632e3d4 | 2020-12-14 08:47:52 +0100 | [diff] [blame] | 318 | if (device_active(dev)) { |
| 319 | ret = video_sync(dev, true); |
| 320 | if (ret) |
| 321 | dev_dbg(dev, "Video sync failed\n"); |
| 322 | } |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 323 | } |
| 324 | } |
| 325 | |
Patrick Delaunay | efcc84b | 2021-11-15 16:32:20 +0100 | [diff] [blame] | 326 | bool video_is_active(void) |
| 327 | { |
| 328 | struct udevice *dev; |
| 329 | |
| 330 | for (uclass_find_first_device(UCLASS_VIDEO, &dev); |
| 331 | dev; |
| 332 | uclass_find_next_device(&dev)) { |
| 333 | if (device_active(dev)) |
| 334 | return true; |
| 335 | } |
| 336 | |
| 337 | return false; |
| 338 | } |
| 339 | |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 340 | int video_get_xsize(struct udevice *dev) |
| 341 | { |
| 342 | struct video_priv *priv = dev_get_uclass_priv(dev); |
| 343 | |
| 344 | return priv->xsize; |
| 345 | } |
| 346 | |
| 347 | int video_get_ysize(struct udevice *dev) |
| 348 | { |
| 349 | struct video_priv *priv = dev_get_uclass_priv(dev); |
| 350 | |
| 351 | return priv->ysize; |
| 352 | } |
| 353 | |
Simon Glass | 73c9c37 | 2020-07-02 21:12:20 -0600 | [diff] [blame] | 354 | #ifdef CONFIG_VIDEO_COPY |
| 355 | int video_sync_copy(struct udevice *dev, void *from, void *to) |
| 356 | { |
| 357 | struct video_priv *priv = dev_get_uclass_priv(dev); |
| 358 | |
| 359 | if (priv->copy_fb) { |
| 360 | long offset, size; |
| 361 | |
| 362 | /* Find the offset of the first byte to copy */ |
| 363 | if ((ulong)to > (ulong)from) { |
| 364 | size = to - from; |
| 365 | offset = from - priv->fb; |
| 366 | } else { |
| 367 | size = from - to; |
| 368 | offset = to - priv->fb; |
| 369 | } |
| 370 | |
| 371 | /* |
| 372 | * Allow a bit of leeway for valid requests somewhere near the |
| 373 | * frame buffer |
| 374 | */ |
| 375 | if (offset < -priv->fb_size || offset > 2 * priv->fb_size) { |
| 376 | #ifdef DEBUG |
Simon Glass | 78cdc5d | 2021-11-19 13:23:51 -0700 | [diff] [blame] | 377 | char str[120]; |
Simon Glass | 73c9c37 | 2020-07-02 21:12:20 -0600 | [diff] [blame] | 378 | |
| 379 | snprintf(str, sizeof(str), |
Simon Glass | 78cdc5d | 2021-11-19 13:23:51 -0700 | [diff] [blame] | 380 | "[** FAULT sync_copy fb=%p, from=%p, to=%p, offset=%lx]", |
Simon Glass | 73c9c37 | 2020-07-02 21:12:20 -0600 | [diff] [blame] | 381 | priv->fb, from, to, offset); |
| 382 | console_puts_select_stderr(true, str); |
| 383 | #endif |
| 384 | return -EFAULT; |
| 385 | } |
| 386 | |
| 387 | /* |
| 388 | * Silently crop the memcpy. This allows callers to avoid doing |
| 389 | * this themselves. It is common for the end pointer to go a |
| 390 | * few lines after the end of the frame buffer, since most of |
| 391 | * the update algorithms terminate a line after their last write |
| 392 | */ |
| 393 | if (offset + size > priv->fb_size) { |
| 394 | size = priv->fb_size - offset; |
| 395 | } else if (offset < 0) { |
| 396 | size += offset; |
| 397 | offset = 0; |
| 398 | } |
| 399 | |
| 400 | memcpy(priv->copy_fb + offset, priv->fb + offset, size); |
| 401 | } |
| 402 | |
| 403 | return 0; |
| 404 | } |
Simon Glass | 62b535e | 2021-01-13 20:29:46 -0700 | [diff] [blame] | 405 | |
| 406 | int video_sync_copy_all(struct udevice *dev) |
| 407 | { |
| 408 | struct video_priv *priv = dev_get_uclass_priv(dev); |
| 409 | |
| 410 | video_sync_copy(dev, priv->fb, priv->fb + priv->fb_size); |
| 411 | |
| 412 | return 0; |
| 413 | } |
| 414 | |
Simon Glass | 73c9c37 | 2020-07-02 21:12:20 -0600 | [diff] [blame] | 415 | #endif |
| 416 | |
Simon Glass | 87a3cd7 | 2021-11-19 13:24:03 -0700 | [diff] [blame] | 417 | #define SPLASH_DECL(_name) \ |
| 418 | extern u8 __splash_ ## _name ## _begin[]; \ |
| 419 | extern u8 __splash_ ## _name ## _end[] |
| 420 | |
| 421 | #define SPLASH_START(_name) __splash_ ## _name ## _begin |
| 422 | |
| 423 | SPLASH_DECL(u_boot_logo); |
| 424 | |
Simon Glass | 2247742 | 2022-10-06 08:36:09 -0600 | [diff] [blame] | 425 | void *video_get_u_boot_logo(void) |
| 426 | { |
| 427 | return SPLASH_START(u_boot_logo); |
| 428 | } |
| 429 | |
Simon Glass | 87a3cd7 | 2021-11-19 13:24:03 -0700 | [diff] [blame] | 430 | static int show_splash(struct udevice *dev) |
| 431 | { |
| 432 | u8 *data = SPLASH_START(u_boot_logo); |
| 433 | int ret; |
| 434 | |
| 435 | ret = video_bmp_display(dev, map_to_sysmem(data), -4, 4, true); |
| 436 | |
| 437 | return 0; |
| 438 | } |
| 439 | |
Simon Glass | 7045990 | 2022-10-06 08:36:18 -0600 | [diff] [blame] | 440 | int video_default_font_height(struct udevice *dev) |
| 441 | { |
| 442 | struct vidconsole_priv *vc_priv = dev_get_uclass_priv(dev); |
| 443 | |
| 444 | if (IS_ENABLED(CONFIG_CONSOLE_TRUETYPE)) |
| 445 | return IF_ENABLED_INT(CONFIG_CONSOLE_TRUETYPE, |
| 446 | CONFIG_CONSOLE_TRUETYPE_SIZE); |
| 447 | |
| 448 | return vc_priv->y_charsize; |
| 449 | } |
| 450 | |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 451 | /* Set up the display ready for use */ |
| 452 | static int video_post_probe(struct udevice *dev) |
| 453 | { |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 454 | struct video_uc_plat *plat = dev_get_uclass_plat(dev); |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 455 | struct video_priv *priv = dev_get_uclass_priv(dev); |
| 456 | char name[30], drv[15], *str; |
Simon Glass | b3a72b3 | 2016-01-14 18:10:48 -0700 | [diff] [blame] | 457 | const char *drv_name = drv; |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 458 | struct udevice *cons; |
| 459 | int ret; |
| 460 | |
| 461 | /* Set up the line and display size */ |
| 462 | priv->fb = map_sysmem(plat->base, plat->size); |
Simon Glass | 7d18673 | 2018-11-29 15:08:52 -0700 | [diff] [blame] | 463 | if (!priv->line_length) |
| 464 | priv->line_length = priv->xsize * VNBYTES(priv->bpix); |
| 465 | |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 466 | priv->fb_size = priv->line_length * priv->ysize; |
| 467 | |
Simon Glass | b4928e5 | 2020-07-02 21:12:21 -0600 | [diff] [blame] | 468 | if (IS_ENABLED(CONFIG_VIDEO_COPY) && plat->copy_base) |
| 469 | priv->copy_fb = map_sysmem(plat->copy_base, plat->size); |
| 470 | |
Heinrich Schuchardt | 290e1d8 | 2018-02-08 21:47:11 +0100 | [diff] [blame] | 471 | /* Set up colors */ |
Simon Glass | 2b063b8 | 2018-11-06 15:21:36 -0700 | [diff] [blame] | 472 | video_set_default_colors(dev, false); |
Rob Clark | f141188 | 2017-08-03 12:47:01 -0400 | [diff] [blame] | 473 | |
| 474 | if (!CONFIG_IS_ENABLED(NO_FB_CLEAR)) |
| 475 | video_clear(dev); |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 476 | |
Simon Glass | 84c7fb3 | 2016-01-18 19:52:17 -0700 | [diff] [blame] | 477 | /* |
Simon Glass | b3a72b3 | 2016-01-14 18:10:48 -0700 | [diff] [blame] | 478 | * Create a text console device. For now we always do this, although |
Simon Glass | 84c7fb3 | 2016-01-18 19:52:17 -0700 | [diff] [blame] | 479 | * it might be useful to support only bitmap drawing on the device |
Simon Glass | b3a72b3 | 2016-01-14 18:10:48 -0700 | [diff] [blame] | 480 | * for boards that don't need to display text. We create a TrueType |
| 481 | * console if enabled, a rotated console if the video driver requests |
| 482 | * it, otherwise a normal console. |
| 483 | * |
| 484 | * The console can be override by setting vidconsole_drv_name before |
| 485 | * probing this video driver, or in the probe() method. |
| 486 | * |
| 487 | * TrueType does not support rotation at present so fall back to the |
| 488 | * rotated console in that case. |
Simon Glass | 84c7fb3 | 2016-01-18 19:52:17 -0700 | [diff] [blame] | 489 | */ |
Simon Glass | b3a72b3 | 2016-01-14 18:10:48 -0700 | [diff] [blame] | 490 | if (!priv->rot && IS_ENABLED(CONFIG_CONSOLE_TRUETYPE)) { |
Simon Glass | 2ef353e | 2016-01-14 18:10:42 -0700 | [diff] [blame] | 491 | snprintf(name, sizeof(name), "%s.vidconsole_tt", dev->name); |
| 492 | strcpy(drv, "vidconsole_tt"); |
| 493 | } else { |
| 494 | snprintf(name, sizeof(name), "%s.vidconsole%d", dev->name, |
| 495 | priv->rot); |
| 496 | snprintf(drv, sizeof(drv), "vidconsole%d", priv->rot); |
| 497 | } |
| 498 | |
Simon Glass | 84c7fb3 | 2016-01-18 19:52:17 -0700 | [diff] [blame] | 499 | str = strdup(name); |
| 500 | if (!str) |
| 501 | return -ENOMEM; |
Simon Glass | b3a72b3 | 2016-01-14 18:10:48 -0700 | [diff] [blame] | 502 | if (priv->vidconsole_drv_name) |
| 503 | drv_name = priv->vidconsole_drv_name; |
| 504 | ret = device_bind_driver(dev, drv_name, str, &cons); |
Simon Glass | 84c7fb3 | 2016-01-18 19:52:17 -0700 | [diff] [blame] | 505 | if (ret) { |
| 506 | debug("%s: Cannot bind console driver\n", __func__); |
| 507 | return ret; |
| 508 | } |
Simon Glass | b3a72b3 | 2016-01-14 18:10:48 -0700 | [diff] [blame] | 509 | |
Simon Glass | 84c7fb3 | 2016-01-18 19:52:17 -0700 | [diff] [blame] | 510 | ret = device_probe(cons); |
| 511 | if (ret) { |
| 512 | debug("%s: Cannot probe console driver\n", __func__); |
| 513 | return ret; |
| 514 | } |
| 515 | |
Nikhil M Jain | 9e3301d | 2023-04-20 17:41:08 +0530 | [diff] [blame] | 516 | if (CONFIG_IS_ENABLED(VIDEO_LOGO) && |
| 517 | !CONFIG_IS_ENABLED(SPLASH_SCREEN) && !plat->hide_logo) { |
Simon Glass | 87a3cd7 | 2021-11-19 13:24:03 -0700 | [diff] [blame] | 518 | ret = show_splash(dev); |
| 519 | if (ret) { |
| 520 | log_debug("Cannot show splash screen\n"); |
| 521 | return ret; |
| 522 | } |
| 523 | } |
| 524 | |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 525 | return 0; |
| 526 | }; |
| 527 | |
| 528 | /* Post-relocation, allocate memory for the frame buffer */ |
| 529 | static int video_post_bind(struct udevice *dev) |
| 530 | { |
Simon Glass | 951255d | 2020-07-02 21:12:32 -0600 | [diff] [blame] | 531 | struct video_uc_priv *uc_priv; |
| 532 | ulong addr; |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 533 | ulong size; |
| 534 | |
| 535 | /* Before relocation there is nothing to do here */ |
Tom Rini | 6985a72 | 2018-04-22 09:47:48 -0400 | [diff] [blame] | 536 | if (!(gd->flags & GD_FLG_RELOC)) |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 537 | return 0; |
Simon Glass | 951255d | 2020-07-02 21:12:32 -0600 | [diff] [blame] | 538 | |
| 539 | /* Set up the video pointer, if this is the first device */ |
Simon Glass | 9558862 | 2020-12-22 19:30:28 -0700 | [diff] [blame] | 540 | uc_priv = uclass_get_priv(dev->uclass); |
Simon Glass | 951255d | 2020-07-02 21:12:32 -0600 | [diff] [blame] | 541 | if (!uc_priv->video_ptr) |
| 542 | uc_priv->video_ptr = gd->video_top; |
| 543 | |
| 544 | /* Allocate framebuffer space for this device */ |
| 545 | addr = uc_priv->video_ptr; |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 546 | size = alloc_fb(dev, &addr); |
| 547 | if (addr < gd->video_bottom) { |
Simon Glass | fc1aa35 | 2023-02-13 08:56:34 -0700 | [diff] [blame] | 548 | /* Device tree node may need the 'bootph-all' or |
| 549 | * 'bootph-some-ram' tag |
Patrick Delaunay | d193718 | 2019-05-21 19:19:12 +0200 | [diff] [blame] | 550 | */ |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 551 | printf("Video device '%s' cannot allocate frame buffer memory -ensure the device is set up before relocation\n", |
| 552 | dev->name); |
| 553 | return -ENOSPC; |
| 554 | } |
| 555 | debug("%s: Claiming %lx bytes at %lx for video device '%s'\n", |
| 556 | __func__, size, addr, dev->name); |
Simon Glass | 951255d | 2020-07-02 21:12:32 -0600 | [diff] [blame] | 557 | uc_priv->video_ptr = addr; |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 558 | |
| 559 | return 0; |
| 560 | } |
| 561 | |
| 562 | UCLASS_DRIVER(video) = { |
| 563 | .id = UCLASS_VIDEO, |
| 564 | .name = "video", |
| 565 | .flags = DM_UC_FLAG_SEQ_ALIAS, |
| 566 | .post_bind = video_post_bind, |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 567 | .post_probe = video_post_probe, |
Simon Glass | 8a2b47f | 2020-12-03 16:55:17 -0700 | [diff] [blame] | 568 | .priv_auto = sizeof(struct video_uc_priv), |
| 569 | .per_device_auto = sizeof(struct video_priv), |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 570 | .per_device_plat_auto = sizeof(struct video_uc_plat), |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 571 | }; |