blob: 4593975be5afe85ac5b37bf9d567d6a342912981 [file] [log] [blame]
Tom Rini70df9d62018-05-07 17:02:21 -04001// SPDX-License-Identifier: GPL-2.0+
Alexander Grafd65783d2016-03-15 18:38:21 +01002/*
3 * EFI application disk support
4 *
5 * Copyright (c) 2016 Alexander Graf
Alexander Grafd65783d2016-03-15 18:38:21 +01006 */
7
Heinrich Schuchardt955a3212025-01-16 20:26:59 +01008#define LOG_CATEGORY LOGC_EFI
9
Alexander Graf792284f2016-06-05 22:34:31 +020010#include <dm.h>
Alexander Grafd65783d2016-03-15 18:38:21 +010011#include <efi_loader.h>
Simon Glass0f2af882020-05-10 11:40:05 -060012#include <log.h>
Alexander Grafd65783d2016-03-15 18:38:21 +010013#include <malloc.h>
Simon Glass65ea46f2023-10-01 19:14:36 -060014#include <mapmem.h>
Alexander Graf792284f2016-06-05 22:34:31 +020015#include <video.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060016#include <asm/global_data.h>
Alexander Grafd65783d2016-03-15 18:38:21 +010017
18DECLARE_GLOBAL_DATA_PTR;
19
Heinrich Schuchardt788ad412019-04-20 07:39:11 +020020static const efi_guid_t efi_gop_guid = EFI_GRAPHICS_OUTPUT_PROTOCOL_GUID;
Alexander Grafd65783d2016-03-15 18:38:21 +010021
Heinrich Schuchardt72928722018-09-26 05:27:56 +020022/**
23 * struct efi_gop_obj - graphical output protocol object
24 *
25 * @header: EFI object header
26 * @ops: graphical output protocol interface
27 * @info: graphical output mode information
28 * @mode: graphical output mode
29 * @bpix: bits per pixel
30 * @fb: frame buffer
31 */
Alexander Grafd65783d2016-03-15 18:38:21 +010032struct efi_gop_obj {
Heinrich Schuchardt72928722018-09-26 05:27:56 +020033 struct efi_object header;
Alexander Grafd65783d2016-03-15 18:38:21 +010034 struct efi_gop ops;
Alexander Grafd65783d2016-03-15 18:38:21 +010035 struct efi_gop_mode_info info;
36 struct efi_gop_mode mode;
Heinrich Schuchardt72928722018-09-26 05:27:56 +020037 /* Fields we only have access to during init */
Alexander Graf792284f2016-06-05 22:34:31 +020038 u32 bpix;
Rob Clark92cec962017-07-21 15:00:27 -040039 void *fb;
Alexander Grafd65783d2016-03-15 18:38:21 +010040};
41
42static efi_status_t EFIAPI gop_query_mode(struct efi_gop *this, u32 mode_number,
Heinrich Schuchardt8b28d5c2017-10-26 19:25:51 +020043 efi_uintn_t *size_of_info,
Alexander Grafd65783d2016-03-15 18:38:21 +010044 struct efi_gop_mode_info **info)
45{
46 struct efi_gop_obj *gopobj;
Heinrich Schuchardt5e1dbf72019-06-15 12:52:35 +020047 efi_status_t ret = EFI_SUCCESS;
Alexander Grafd65783d2016-03-15 18:38:21 +010048
49 EFI_ENTRY("%p, %x, %p, %p", this, mode_number, size_of_info, info);
50
Heinrich Schuchardt5e1dbf72019-06-15 12:52:35 +020051 if (!this || !size_of_info || !info || mode_number) {
52 ret = EFI_INVALID_PARAMETER;
53 goto out;
54 }
55
Alexander Grafd65783d2016-03-15 18:38:21 +010056 gopobj = container_of(this, struct efi_gop_obj, ops);
Heinrich Schuchardt0301e362019-06-15 14:07:40 +020057 ret = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, sizeof(gopobj->info),
58 (void **)info);
59 if (ret != EFI_SUCCESS)
60 goto out;
Alexander Grafd65783d2016-03-15 18:38:21 +010061 *size_of_info = sizeof(gopobj->info);
Heinrich Schuchardt0301e362019-06-15 14:07:40 +020062 memcpy(*info, &gopobj->info, sizeof(gopobj->info));
Alexander Grafd65783d2016-03-15 18:38:21 +010063
Heinrich Schuchardt5e1dbf72019-06-15 12:52:35 +020064out:
65 return EFI_EXIT(ret);
Alexander Grafd65783d2016-03-15 18:38:21 +010066}
67
Mark Kettenisd8ab3342021-09-25 22:47:39 +020068static __always_inline struct efi_gop_pixel efi_vid30_to_blt_col(u32 vid)
69{
70 struct efi_gop_pixel blt = {
71 .reserved = 0,
72 };
73
74 blt.blue = (vid & 0x3ff) >> 2;
75 vid >>= 10;
76 blt.green = (vid & 0x3ff) >> 2;
77 vid >>= 10;
78 blt.red = (vid & 0x3ff) >> 2;
79 return blt;
80}
81
82static __always_inline u32 efi_blt_col_to_vid30(struct efi_gop_pixel *blt)
83{
84 return (u32)(blt->red << 2) << 20 |
85 (u32)(blt->green << 2) << 10 |
86 (u32)(blt->blue << 2);
87}
88
Heinrich Schuchardt9370d5a2018-03-16 19:59:06 +010089static __always_inline struct efi_gop_pixel efi_vid16_to_blt_col(u16 vid)
Heinrich Schuchardta2c715f2018-02-07 22:14:22 +010090{
91 struct efi_gop_pixel blt = {
92 .reserved = 0,
93 };
94
95 blt.blue = (vid & 0x1f) << 3;
96 vid >>= 5;
97 blt.green = (vid & 0x3f) << 2;
98 vid >>= 6;
99 blt.red = (vid & 0x1f) << 3;
100 return blt;
101}
102
Heinrich Schuchardt9370d5a2018-03-16 19:59:06 +0100103static __always_inline u16 efi_blt_col_to_vid16(struct efi_gop_pixel *blt)
Heinrich Schuchardta2c715f2018-02-07 22:14:22 +0100104{
105 return (u16)(blt->red >> 3) << 11 |
106 (u16)(blt->green >> 2) << 5 |
107 (u16)(blt->blue >> 3);
108}
109
Alexander Grafa3800bd2018-03-15 15:02:28 +0100110static __always_inline efi_status_t gop_blt_int(struct efi_gop *this,
Alexander Graf18f436c2018-03-15 15:02:29 +0100111 struct efi_gop_pixel *bufferp,
Alexander Grafa3800bd2018-03-15 15:02:28 +0100112 u32 operation, efi_uintn_t sx,
113 efi_uintn_t sy, efi_uintn_t dx,
114 efi_uintn_t dy,
115 efi_uintn_t width,
116 efi_uintn_t height,
Alexander Graf18f436c2018-03-15 15:02:29 +0100117 efi_uintn_t delta,
118 efi_uintn_t vid_bpp)
Alexander Grafd65783d2016-03-15 18:38:21 +0100119{
Alexander Graf792284f2016-06-05 22:34:31 +0200120 struct efi_gop_obj *gopobj = container_of(this, struct efi_gop_obj, ops);
Alexander Graf18f436c2018-03-15 15:02:29 +0100121 efi_uintn_t i, j, linelen, slineoff = 0, dlineoff, swidth, dwidth;
Heinrich Schuchardta2c715f2018-02-07 22:14:22 +0100122 u32 *fb32 = gopobj->fb;
123 u16 *fb16 = gopobj->fb;
Alexander Graf18f436c2018-03-15 15:02:29 +0100124 struct efi_gop_pixel *buffer = __builtin_assume_aligned(bufferp, 4);
Heinrich Schuchardta2c715f2018-02-07 22:14:22 +0100125
Heinrich Schuchardt5f86d332018-03-14 19:57:02 +0100126 if (delta) {
127 /* Check for 4 byte alignment */
128 if (delta & 3)
Alexander Grafa3800bd2018-03-15 15:02:28 +0100129 return EFI_INVALID_PARAMETER;
Heinrich Schuchardt5f86d332018-03-14 19:57:02 +0100130 linelen = delta >> 2;
131 } else {
132 linelen = width;
133 }
134
Heinrich Schuchardta2c715f2018-02-07 22:14:22 +0100135 /* Check source rectangle */
136 switch (operation) {
137 case EFI_BLT_VIDEO_FILL:
138 break;
139 case EFI_BLT_BUFFER_TO_VIDEO:
140 if (sx + width > linelen)
Alexander Grafa3800bd2018-03-15 15:02:28 +0100141 return EFI_INVALID_PARAMETER;
Heinrich Schuchardta2c715f2018-02-07 22:14:22 +0100142 break;
143 case EFI_BLT_VIDEO_TO_BLT_BUFFER:
144 case EFI_BLT_VIDEO_TO_VIDEO:
145 if (sx + width > gopobj->info.width ||
146 sy + height > gopobj->info.height)
Alexander Grafa3800bd2018-03-15 15:02:28 +0100147 return EFI_INVALID_PARAMETER;
Heinrich Schuchardta2c715f2018-02-07 22:14:22 +0100148 break;
149 default:
Alexander Grafa3800bd2018-03-15 15:02:28 +0100150 return EFI_INVALID_PARAMETER;
Heinrich Schuchardta2c715f2018-02-07 22:14:22 +0100151 }
Alexander Grafd65783d2016-03-15 18:38:21 +0100152
Heinrich Schuchardta2c715f2018-02-07 22:14:22 +0100153 /* Check destination rectangle */
154 switch (operation) {
155 case EFI_BLT_VIDEO_FILL:
156 case EFI_BLT_BUFFER_TO_VIDEO:
157 case EFI_BLT_VIDEO_TO_VIDEO:
158 if (dx + width > gopobj->info.width ||
159 dy + height > gopobj->info.height)
Alexander Grafa3800bd2018-03-15 15:02:28 +0100160 return EFI_INVALID_PARAMETER;
Heinrich Schuchardta2c715f2018-02-07 22:14:22 +0100161 break;
162 case EFI_BLT_VIDEO_TO_BLT_BUFFER:
163 if (dx + width > linelen)
Alexander Grafa3800bd2018-03-15 15:02:28 +0100164 return EFI_INVALID_PARAMETER;
Heinrich Schuchardta2c715f2018-02-07 22:14:22 +0100165 break;
166 }
Alexander Grafd65783d2016-03-15 18:38:21 +0100167
Alexander Graf18f436c2018-03-15 15:02:29 +0100168 /* Calculate line width */
169 switch (operation) {
170 case EFI_BLT_BUFFER_TO_VIDEO:
171 swidth = linelen;
172 break;
173 case EFI_BLT_VIDEO_TO_BLT_BUFFER:
174 case EFI_BLT_VIDEO_TO_VIDEO:
175 swidth = gopobj->info.width;
176 if (!vid_bpp)
177 return EFI_UNSUPPORTED;
178 break;
179 case EFI_BLT_VIDEO_FILL:
180 swidth = 0;
181 break;
182 }
183
184 switch (operation) {
185 case EFI_BLT_BUFFER_TO_VIDEO:
186 case EFI_BLT_VIDEO_FILL:
187 case EFI_BLT_VIDEO_TO_VIDEO:
188 dwidth = gopobj->info.width;
189 if (!vid_bpp)
190 return EFI_UNSUPPORTED;
191 break;
192 case EFI_BLT_VIDEO_TO_BLT_BUFFER:
193 dwidth = linelen;
194 break;
195 }
196
197 slineoff = swidth * sy;
198 dlineoff = dwidth * dy;
Heinrich Schuchardta2c715f2018-02-07 22:14:22 +0100199 for (i = 0; i < height; i++) {
200 for (j = 0; j < width; j++) {
201 struct efi_gop_pixel pix;
Alexander Grafd65783d2016-03-15 18:38:21 +0100202
Heinrich Schuchardta2c715f2018-02-07 22:14:22 +0100203 /* Read source pixel */
204 switch (operation) {
205 case EFI_BLT_VIDEO_FILL:
206 pix = *buffer;
207 break;
208 case EFI_BLT_BUFFER_TO_VIDEO:
Alexander Graf18f436c2018-03-15 15:02:29 +0100209 pix = buffer[slineoff + j + sx];
Heinrich Schuchardta2c715f2018-02-07 22:14:22 +0100210 break;
211 case EFI_BLT_VIDEO_TO_BLT_BUFFER:
212 case EFI_BLT_VIDEO_TO_VIDEO:
Alexander Graf18f436c2018-03-15 15:02:29 +0100213 if (vid_bpp == 32)
Heinrich Schuchardta2c715f2018-02-07 22:14:22 +0100214 pix = *(struct efi_gop_pixel *)&fb32[
Alexander Graf18f436c2018-03-15 15:02:29 +0100215 slineoff + j + sx];
Mark Kettenisd8ab3342021-09-25 22:47:39 +0200216 else if (vid_bpp == 30)
217 pix = efi_vid30_to_blt_col(fb32[
218 slineoff + j + sx]);
Alexander Graf18f436c2018-03-15 15:02:29 +0100219 else
Heinrich Schuchardta2c715f2018-02-07 22:14:22 +0100220 pix = efi_vid16_to_blt_col(fb16[
Alexander Graf18f436c2018-03-15 15:02:29 +0100221 slineoff + j + sx]);
Heinrich Schuchardta2c715f2018-02-07 22:14:22 +0100222 break;
223 }
Alexander Grafd65783d2016-03-15 18:38:21 +0100224
Heinrich Schuchardta2c715f2018-02-07 22:14:22 +0100225 /* Write destination pixel */
226 switch (operation) {
227 case EFI_BLT_VIDEO_TO_BLT_BUFFER:
Alexander Graf18f436c2018-03-15 15:02:29 +0100228 buffer[dlineoff + j + dx] = pix;
Heinrich Schuchardta2c715f2018-02-07 22:14:22 +0100229 break;
230 case EFI_BLT_BUFFER_TO_VIDEO:
231 case EFI_BLT_VIDEO_FILL:
232 case EFI_BLT_VIDEO_TO_VIDEO:
Alexander Graf18f436c2018-03-15 15:02:29 +0100233 if (vid_bpp == 32)
234 fb32[dlineoff + j + dx] = *(u32 *)&pix;
Mark Kettenisd8ab3342021-09-25 22:47:39 +0200235 else if (vid_bpp == 30)
236 fb32[dlineoff + j + dx] =
237 efi_blt_col_to_vid30(&pix);
Alexander Graf18f436c2018-03-15 15:02:29 +0100238 else
239 fb16[dlineoff + j + dx] =
240 efi_blt_col_to_vid16(&pix);
241 break;
242 }
243 }
244 slineoff += swidth;
245 dlineoff += dwidth;
246 }
247
248 return EFI_SUCCESS;
249}
250
251static efi_uintn_t gop_get_bpp(struct efi_gop *this)
252{
253 struct efi_gop_obj *gopobj = container_of(this, struct efi_gop_obj, ops);
254 efi_uintn_t vid_bpp = 0;
255
256 switch (gopobj->bpix) {
Alexander Graf18f436c2018-03-15 15:02:29 +0100257 case VIDEO_BPP32:
Mark Kettenisd8ab3342021-09-25 22:47:39 +0200258 if (gopobj->info.pixel_format == EFI_GOT_BGRA8)
259 vid_bpp = 32;
260 else
261 vid_bpp = 30;
Alexander Graf18f436c2018-03-15 15:02:29 +0100262 break;
Alexander Graf18f436c2018-03-15 15:02:29 +0100263 case VIDEO_BPP16:
Alexander Graf18f436c2018-03-15 15:02:29 +0100264 vid_bpp = 16;
265 break;
Alexander Grafd65783d2016-03-15 18:38:21 +0100266 }
267
Alexander Graf18f436c2018-03-15 15:02:29 +0100268 return vid_bpp;
Alexander Grafa3800bd2018-03-15 15:02:28 +0100269}
270
271/*
Heinrich Schuchardt5e96f422018-10-18 21:51:38 +0200272 * GCC can't optimize our BLT function well, but we need to make sure that
Alexander Grafa3800bd2018-03-15 15:02:28 +0100273 * our 2-dimensional loop gets executed very quickly, otherwise the system
274 * will feel slow.
275 *
276 * By manually putting all obvious branch targets into functions which call
Heinrich Schuchardt5e96f422018-10-18 21:51:38 +0200277 * our generic BLT function with constants, the compiler can successfully
Alexander Grafa3800bd2018-03-15 15:02:28 +0100278 * optimize for speed.
279 */
280static efi_status_t gop_blt_video_fill(struct efi_gop *this,
281 struct efi_gop_pixel *buffer,
282 u32 foo, efi_uintn_t sx,
283 efi_uintn_t sy, efi_uintn_t dx,
284 efi_uintn_t dy, efi_uintn_t width,
Alexander Graf18f436c2018-03-15 15:02:29 +0100285 efi_uintn_t height, efi_uintn_t delta,
286 efi_uintn_t vid_bpp)
Alexander Grafa3800bd2018-03-15 15:02:28 +0100287{
288 return gop_blt_int(this, buffer, EFI_BLT_VIDEO_FILL, sx, sy, dx,
Alexander Graf18f436c2018-03-15 15:02:29 +0100289 dy, width, height, delta, vid_bpp);
Alexander Grafa3800bd2018-03-15 15:02:28 +0100290}
291
Alexander Graf18f436c2018-03-15 15:02:29 +0100292static efi_status_t gop_blt_buf_to_vid16(struct efi_gop *this,
293 struct efi_gop_pixel *buffer,
294 u32 foo, efi_uintn_t sx,
295 efi_uintn_t sy, efi_uintn_t dx,
296 efi_uintn_t dy, efi_uintn_t width,
297 efi_uintn_t height, efi_uintn_t delta)
298{
299 return gop_blt_int(this, buffer, EFI_BLT_BUFFER_TO_VIDEO, sx, sy, dx,
300 dy, width, height, delta, 16);
301}
302
Mark Kettenisd8ab3342021-09-25 22:47:39 +0200303static efi_status_t gop_blt_buf_to_vid30(struct efi_gop *this,
304 struct efi_gop_pixel *buffer,
305 u32 foo, efi_uintn_t sx,
306 efi_uintn_t sy, efi_uintn_t dx,
307 efi_uintn_t dy, efi_uintn_t width,
308 efi_uintn_t height, efi_uintn_t delta)
309{
310 return gop_blt_int(this, buffer, EFI_BLT_BUFFER_TO_VIDEO, sx, sy, dx,
311 dy, width, height, delta, 30);
312}
313
Alexander Graf18f436c2018-03-15 15:02:29 +0100314static efi_status_t gop_blt_buf_to_vid32(struct efi_gop *this,
315 struct efi_gop_pixel *buffer,
316 u32 foo, efi_uintn_t sx,
317 efi_uintn_t sy, efi_uintn_t dx,
318 efi_uintn_t dy, efi_uintn_t width,
319 efi_uintn_t height, efi_uintn_t delta)
Alexander Grafa3800bd2018-03-15 15:02:28 +0100320{
321 return gop_blt_int(this, buffer, EFI_BLT_BUFFER_TO_VIDEO, sx, sy, dx,
Alexander Graf18f436c2018-03-15 15:02:29 +0100322 dy, width, height, delta, 32);
Alexander Grafa3800bd2018-03-15 15:02:28 +0100323}
324
325static efi_status_t gop_blt_vid_to_vid(struct efi_gop *this,
326 struct efi_gop_pixel *buffer,
327 u32 foo, efi_uintn_t sx,
328 efi_uintn_t sy, efi_uintn_t dx,
329 efi_uintn_t dy, efi_uintn_t width,
Alexander Graf18f436c2018-03-15 15:02:29 +0100330 efi_uintn_t height, efi_uintn_t delta,
331 efi_uintn_t vid_bpp)
Alexander Grafa3800bd2018-03-15 15:02:28 +0100332{
333 return gop_blt_int(this, buffer, EFI_BLT_VIDEO_TO_VIDEO, sx, sy, dx,
Alexander Graf18f436c2018-03-15 15:02:29 +0100334 dy, width, height, delta, vid_bpp);
Alexander Grafa3800bd2018-03-15 15:02:28 +0100335}
336
337static efi_status_t gop_blt_vid_to_buf(struct efi_gop *this,
338 struct efi_gop_pixel *buffer,
339 u32 foo, efi_uintn_t sx,
340 efi_uintn_t sy, efi_uintn_t dx,
341 efi_uintn_t dy, efi_uintn_t width,
Alexander Graf18f436c2018-03-15 15:02:29 +0100342 efi_uintn_t height, efi_uintn_t delta,
343 efi_uintn_t vid_bpp)
Alexander Grafa3800bd2018-03-15 15:02:28 +0100344{
345 return gop_blt_int(this, buffer, EFI_BLT_VIDEO_TO_BLT_BUFFER, sx, sy,
Alexander Graf18f436c2018-03-15 15:02:29 +0100346 dx, dy, width, height, delta, vid_bpp);
Alexander Grafa3800bd2018-03-15 15:02:28 +0100347}
348
Heinrich Schuchardte32595b2019-06-15 14:52:53 +0200349/**
350 * gop_set_mode() - set graphical output mode
351 *
352 * This function implements the SetMode() service.
353 *
354 * See the Unified Extensible Firmware Interface (UEFI) specification for
355 * details.
356 *
357 * @this: the graphical output protocol
Heinrich Schuchardtdc305ad2019-09-05 20:37:13 +0200358 * @mode_number: the mode to be set
Heinrich Schuchardte32595b2019-06-15 14:52:53 +0200359 * Return: status code
360 */
361static efi_status_t EFIAPI gop_set_mode(struct efi_gop *this, u32 mode_number)
362{
363 struct efi_gop_obj *gopobj;
364 struct efi_gop_pixel buffer = {0, 0, 0, 0};
365 efi_uintn_t vid_bpp;
366 efi_status_t ret = EFI_SUCCESS;
367
368 EFI_ENTRY("%p, %x", this, mode_number);
369
370 if (!this) {
371 ret = EFI_INVALID_PARAMETER;
372 goto out;
373 }
374 if (mode_number) {
375 ret = EFI_UNSUPPORTED;
376 goto out;
377 }
378 gopobj = container_of(this, struct efi_gop_obj, ops);
379 vid_bpp = gop_get_bpp(this);
380 ret = gop_blt_video_fill(this, &buffer, EFI_BLT_VIDEO_FILL, 0, 0, 0, 0,
381 gopobj->info.width, gopobj->info.height, 0,
382 vid_bpp);
383out:
384 return EFI_EXIT(ret);
385}
386
Alexander Grafa3800bd2018-03-15 15:02:28 +0100387/*
388 * Copy rectangle.
389 *
390 * This function implements the Blt service of the EFI_GRAPHICS_OUTPUT_PROTOCOL.
391 * See the Unified Extensible Firmware Interface (UEFI) specification for
392 * details.
393 *
394 * @this: EFI_GRAPHICS_OUTPUT_PROTOCOL
395 * @buffer: pixel buffer
396 * @sx: source x-coordinate
397 * @sy: source y-coordinate
398 * @dx: destination x-coordinate
399 * @dy: destination y-coordinate
400 * @width: width of rectangle
401 * @height: height of rectangle
402 * @delta: length in bytes of a line in the pixel buffer (optional)
Heinrich Schuchardtfbe90212022-01-20 19:48:20 +0100403 * Return: status code
Alexander Grafa3800bd2018-03-15 15:02:28 +0100404 */
Heinrich Schuchardt64a44002023-02-10 09:05:03 +0100405static efi_status_t EFIAPI gop_blt(struct efi_gop *this,
406 struct efi_gop_pixel *buffer,
407 u32 operation, efi_uintn_t sx,
408 efi_uintn_t sy, efi_uintn_t dx,
409 efi_uintn_t dy, efi_uintn_t width,
410 efi_uintn_t height, efi_uintn_t delta)
Alexander Grafa3800bd2018-03-15 15:02:28 +0100411{
412 efi_status_t ret = EFI_INVALID_PARAMETER;
Alexander Graf18f436c2018-03-15 15:02:29 +0100413 efi_uintn_t vid_bpp;
Alexander Grafa3800bd2018-03-15 15:02:28 +0100414
415 EFI_ENTRY("%p, %p, %u, %zu, %zu, %zu, %zu, %zu, %zu, %zu", this,
416 buffer, operation, sx, sy, dx, dy, width, height, delta);
417
Alexander Graf18f436c2018-03-15 15:02:29 +0100418 vid_bpp = gop_get_bpp(this);
419
Alexander Grafa3800bd2018-03-15 15:02:28 +0100420 /* Allow for compiler optimization */
421 switch (operation) {
422 case EFI_BLT_VIDEO_FILL:
423 ret = gop_blt_video_fill(this, buffer, operation, sx, sy, dx,
Alexander Graf18f436c2018-03-15 15:02:29 +0100424 dy, width, height, delta, vid_bpp);
Alexander Grafa3800bd2018-03-15 15:02:28 +0100425 break;
426 case EFI_BLT_BUFFER_TO_VIDEO:
Alexander Graf18f436c2018-03-15 15:02:29 +0100427 /* This needs to be super-fast, so duplicate for 16/32bpp */
428 if (vid_bpp == 32)
429 ret = gop_blt_buf_to_vid32(this, buffer, operation, sx,
430 sy, dx, dy, width, height,
431 delta);
Mark Kettenisd8ab3342021-09-25 22:47:39 +0200432 else if (vid_bpp == 30)
433 ret = gop_blt_buf_to_vid30(this, buffer, operation, sx,
434 sy, dx, dy, width, height,
435 delta);
Alexander Graf18f436c2018-03-15 15:02:29 +0100436 else
437 ret = gop_blt_buf_to_vid16(this, buffer, operation, sx,
438 sy, dx, dy, width, height,
439 delta);
Alexander Grafa3800bd2018-03-15 15:02:28 +0100440 break;
441 case EFI_BLT_VIDEO_TO_VIDEO:
442 ret = gop_blt_vid_to_vid(this, buffer, operation, sx, sy, dx,
Alexander Graf18f436c2018-03-15 15:02:29 +0100443 dy, width, height, delta, vid_bpp);
Alexander Grafa3800bd2018-03-15 15:02:28 +0100444 break;
445 case EFI_BLT_VIDEO_TO_BLT_BUFFER:
446 ret = gop_blt_vid_to_buf(this, buffer, operation, sx, sy, dx,
Alexander Graf18f436c2018-03-15 15:02:29 +0100447 dy, width, height, delta, vid_bpp);
Alexander Grafa3800bd2018-03-15 15:02:28 +0100448 break;
449 default:
Heinrich Schuchardt087c8c42019-06-15 12:42:46 +0200450 ret = EFI_INVALID_PARAMETER;
Alexander Grafa3800bd2018-03-15 15:02:28 +0100451 }
452
453 if (ret != EFI_SUCCESS)
454 return EFI_EXIT(ret);
455
Alexander Graf792284f2016-06-05 22:34:31 +0200456 video_sync_all();
Alexander Grafd65783d2016-03-15 18:38:21 +0100457
458 return EFI_EXIT(EFI_SUCCESS);
459}
460
Heinrich Schuchardtb91c0842018-03-03 15:28:55 +0100461/*
462 * Install graphical output protocol.
463 *
464 * If no supported video device exists this is not considered as an
465 * error.
466 */
467efi_status_t efi_gop_register(void)
Alexander Grafd65783d2016-03-15 18:38:21 +0100468{
469 struct efi_gop_obj *gopobj;
Mark Kettenis3e4b3d52021-09-25 22:47:37 +0200470 u32 bpix, format, col, row;
Alexander Grafbc766392016-06-07 00:57:05 +0200471 u64 fb_base, fb_size;
Heinrich Schuchardtbde9a9b2017-11-26 14:05:14 +0100472 efi_status_t ret;
Alexander Graf792284f2016-06-05 22:34:31 +0200473 struct udevice *vdev;
Heinrich Schuchardtb91c0842018-03-03 15:28:55 +0100474 struct video_priv *priv;
Simon Glass65ea46f2023-10-01 19:14:36 -0600475 struct video_uc_plat *plat;
Alexander Graf792284f2016-06-05 22:34:31 +0200476
477 /* We only support a single video output device for now */
Michal Suchanekac12a2f2022-10-12 21:57:59 +0200478 if (uclass_first_device_err(UCLASS_VIDEO, &vdev)) {
Heinrich Schuchardtb91c0842018-03-03 15:28:55 +0100479 debug("WARNING: No video device\n");
480 return EFI_SUCCESS;
481 }
Alexander Graf792284f2016-06-05 22:34:31 +0200482
Heinrich Schuchardtb91c0842018-03-03 15:28:55 +0100483 priv = dev_get_uclass_priv(vdev);
Alexander Graf792284f2016-06-05 22:34:31 +0200484 bpix = priv->bpix;
Mark Kettenis3e4b3d52021-09-25 22:47:37 +0200485 format = priv->format;
Alexander Graf792284f2016-06-05 22:34:31 +0200486 col = video_get_xsize(vdev);
487 row = video_get_ysize(vdev);
Simon Glass65ea46f2023-10-01 19:14:36 -0600488
489 plat = dev_get_uclass_plat(vdev);
490 fb_base = IS_ENABLED(CONFIG_VIDEO_COPY) ? plat->copy_base : plat->base;
491 fb_size = plat->size;
Alexander Graf792284f2016-06-05 22:34:31 +0200492
493 switch (bpix) {
Alexander Graf792284f2016-06-05 22:34:31 +0200494 case VIDEO_BPP16:
495 case VIDEO_BPP32:
Alexander Grafd65783d2016-03-15 18:38:21 +0100496 break;
497 default:
498 /* So far, we only work in 16 or 32 bit mode */
Heinrich Schuchardtb91c0842018-03-03 15:28:55 +0100499 debug("WARNING: Unsupported video mode\n");
500 return EFI_SUCCESS;
Alexander Grafd65783d2016-03-15 18:38:21 +0100501 }
502
503 gopobj = calloc(1, sizeof(*gopobj));
Heinrich Schuchardt9aaa35b2017-10-26 19:25:45 +0200504 if (!gopobj) {
505 printf("ERROR: Out of memory\n");
Heinrich Schuchardtb91c0842018-03-03 15:28:55 +0100506 return EFI_OUT_OF_RESOURCES;
Heinrich Schuchardt9aaa35b2017-10-26 19:25:45 +0200507 }
Alexander Grafd65783d2016-03-15 18:38:21 +0100508
Heinrich Schuchardtbde9a9b2017-11-26 14:05:14 +0100509 /* Hook up to the device list */
Heinrich Schuchardt72928722018-09-26 05:27:56 +0200510 efi_add_handle(&gopobj->header);
Heinrich Schuchardtbde9a9b2017-11-26 14:05:14 +0100511
Alexander Grafd65783d2016-03-15 18:38:21 +0100512 /* Fill in object data */
Heinrich Schuchardt72928722018-09-26 05:27:56 +0200513 ret = efi_add_protocol(&gopobj->header, &efi_gop_guid,
Heinrich Schuchardtbde9a9b2017-11-26 14:05:14 +0100514 &gopobj->ops);
515 if (ret != EFI_SUCCESS) {
Heinrich Schuchardt5e96f422018-10-18 21:51:38 +0200516 printf("ERROR: Failure adding GOP protocol\n");
Heinrich Schuchardtb91c0842018-03-03 15:28:55 +0100517 return ret;
Heinrich Schuchardtbde9a9b2017-11-26 14:05:14 +0100518 }
Alexander Grafd65783d2016-03-15 18:38:21 +0100519 gopobj->ops.query_mode = gop_query_mode;
520 gopobj->ops.set_mode = gop_set_mode;
521 gopobj->ops.blt = gop_blt;
522 gopobj->ops.mode = &gopobj->mode;
523
524 gopobj->mode.max_mode = 1;
525 gopobj->mode.info = &gopobj->info;
526 gopobj->mode.info_size = sizeof(gopobj->info);
Alexander Grafd65783d2016-03-15 18:38:21 +0100527
Heinrich Schuchardt6ea1b292019-06-15 14:52:53 +0200528 gopobj->mode.fb_base = fb_base;
529 gopobj->mode.fb_size = fb_size;
530
531 gopobj->info.version = 0;
532 gopobj->info.width = col;
533 gopobj->info.height = row;
Heinrich Schuchardtb91c0842018-03-03 15:28:55 +0100534 if (bpix == VIDEO_BPP32)
Heinrich Schuchardtb91c0842018-03-03 15:28:55 +0100535 {
Mark Kettenis3e4b3d52021-09-25 22:47:37 +0200536 if (format == VIDEO_X2R10G10B10) {
537 gopobj->info.pixel_format = EFI_GOT_BITMASK;
538 gopobj->info.pixel_bitmask[0] = 0x3ff00000; /* red */
539 gopobj->info.pixel_bitmask[1] = 0x000ffc00; /* green */
540 gopobj->info.pixel_bitmask[2] = 0x000003ff; /* blue */
541 gopobj->info.pixel_bitmask[3] = 0xc0000000; /* reserved */
542 } else {
543 gopobj->info.pixel_format = EFI_GOT_BGRA8;
544 }
Heinrich Schuchardt6ea1b292019-06-15 14:52:53 +0200545 } else {
546 gopobj->info.pixel_format = EFI_GOT_BITMASK;
547 gopobj->info.pixel_bitmask[0] = 0xf800; /* red */
548 gopobj->info.pixel_bitmask[1] = 0x07e0; /* green */
549 gopobj->info.pixel_bitmask[2] = 0x001f; /* blue */
Alexander Grafbc766392016-06-07 00:57:05 +0200550 }
Alexander Graf792284f2016-06-05 22:34:31 +0200551 gopobj->info.pixels_per_scanline = col;
Alexander Graf792284f2016-06-05 22:34:31 +0200552 gopobj->bpix = bpix;
Simon Glass65ea46f2023-10-01 19:14:36 -0600553 gopobj->fb = map_sysmem(fb_base, fb_size);
Alexander Grafd65783d2016-03-15 18:38:21 +0100554
Heinrich Schuchardtb91c0842018-03-03 15:28:55 +0100555 return EFI_SUCCESS;
Alexander Grafd65783d2016-03-15 18:38:21 +0100556}