blob: 5908b5c646697724cdabc8a45d6159602db509cf [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
8#include <common.h>
Alexander Graf792284f2016-06-05 22:34:31 +02009#include <dm.h>
Alexander Grafd65783d2016-03-15 18:38:21 +010010#include <efi_loader.h>
Simon Glass0f2af882020-05-10 11:40:05 -060011#include <log.h>
Alexander Grafd65783d2016-03-15 18:38:21 +010012#include <malloc.h>
Alexander Graf792284f2016-06-05 22:34:31 +020013#include <video.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060014#include <asm/global_data.h>
Alexander Grafd65783d2016-03-15 18:38:21 +010015
16DECLARE_GLOBAL_DATA_PTR;
17
Heinrich Schuchardt788ad412019-04-20 07:39:11 +020018static const efi_guid_t efi_gop_guid = EFI_GRAPHICS_OUTPUT_PROTOCOL_GUID;
Alexander Grafd65783d2016-03-15 18:38:21 +010019
Heinrich Schuchardt72928722018-09-26 05:27:56 +020020/**
21 * struct efi_gop_obj - graphical output protocol object
22 *
23 * @header: EFI object header
24 * @ops: graphical output protocol interface
25 * @info: graphical output mode information
26 * @mode: graphical output mode
27 * @bpix: bits per pixel
28 * @fb: frame buffer
29 */
Alexander Grafd65783d2016-03-15 18:38:21 +010030struct efi_gop_obj {
Heinrich Schuchardt72928722018-09-26 05:27:56 +020031 struct efi_object header;
Alexander Grafd65783d2016-03-15 18:38:21 +010032 struct efi_gop ops;
Alexander Grafd65783d2016-03-15 18:38:21 +010033 struct efi_gop_mode_info info;
34 struct efi_gop_mode mode;
Heinrich Schuchardt72928722018-09-26 05:27:56 +020035 /* Fields we only have access to during init */
Alexander Graf792284f2016-06-05 22:34:31 +020036 u32 bpix;
Rob Clark92cec962017-07-21 15:00:27 -040037 void *fb;
Alexander Grafd65783d2016-03-15 18:38:21 +010038};
39
40static efi_status_t EFIAPI gop_query_mode(struct efi_gop *this, u32 mode_number,
Heinrich Schuchardt8b28d5c2017-10-26 19:25:51 +020041 efi_uintn_t *size_of_info,
Alexander Grafd65783d2016-03-15 18:38:21 +010042 struct efi_gop_mode_info **info)
43{
44 struct efi_gop_obj *gopobj;
Heinrich Schuchardt5e1dbf72019-06-15 12:52:35 +020045 efi_status_t ret = EFI_SUCCESS;
Alexander Grafd65783d2016-03-15 18:38:21 +010046
47 EFI_ENTRY("%p, %x, %p, %p", this, mode_number, size_of_info, info);
48
Heinrich Schuchardt5e1dbf72019-06-15 12:52:35 +020049 if (!this || !size_of_info || !info || mode_number) {
50 ret = EFI_INVALID_PARAMETER;
51 goto out;
52 }
53
Alexander Grafd65783d2016-03-15 18:38:21 +010054 gopobj = container_of(this, struct efi_gop_obj, ops);
Heinrich Schuchardt0301e362019-06-15 14:07:40 +020055 ret = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, sizeof(gopobj->info),
56 (void **)info);
57 if (ret != EFI_SUCCESS)
58 goto out;
Alexander Grafd65783d2016-03-15 18:38:21 +010059 *size_of_info = sizeof(gopobj->info);
Heinrich Schuchardt0301e362019-06-15 14:07:40 +020060 memcpy(*info, &gopobj->info, sizeof(gopobj->info));
Alexander Grafd65783d2016-03-15 18:38:21 +010061
Heinrich Schuchardt5e1dbf72019-06-15 12:52:35 +020062out:
63 return EFI_EXIT(ret);
Alexander Grafd65783d2016-03-15 18:38:21 +010064}
65
Mark Kettenisd8ab3342021-09-25 22:47:39 +020066static __always_inline struct efi_gop_pixel efi_vid30_to_blt_col(u32 vid)
67{
68 struct efi_gop_pixel blt = {
69 .reserved = 0,
70 };
71
72 blt.blue = (vid & 0x3ff) >> 2;
73 vid >>= 10;
74 blt.green = (vid & 0x3ff) >> 2;
75 vid >>= 10;
76 blt.red = (vid & 0x3ff) >> 2;
77 return blt;
78}
79
80static __always_inline u32 efi_blt_col_to_vid30(struct efi_gop_pixel *blt)
81{
82 return (u32)(blt->red << 2) << 20 |
83 (u32)(blt->green << 2) << 10 |
84 (u32)(blt->blue << 2);
85}
86
Heinrich Schuchardt9370d5a2018-03-16 19:59:06 +010087static __always_inline struct efi_gop_pixel efi_vid16_to_blt_col(u16 vid)
Heinrich Schuchardta2c715f2018-02-07 22:14:22 +010088{
89 struct efi_gop_pixel blt = {
90 .reserved = 0,
91 };
92
93 blt.blue = (vid & 0x1f) << 3;
94 vid >>= 5;
95 blt.green = (vid & 0x3f) << 2;
96 vid >>= 6;
97 blt.red = (vid & 0x1f) << 3;
98 return blt;
99}
100
Heinrich Schuchardt9370d5a2018-03-16 19:59:06 +0100101static __always_inline u16 efi_blt_col_to_vid16(struct efi_gop_pixel *blt)
Heinrich Schuchardta2c715f2018-02-07 22:14:22 +0100102{
103 return (u16)(blt->red >> 3) << 11 |
104 (u16)(blt->green >> 2) << 5 |
105 (u16)(blt->blue >> 3);
106}
107
Alexander Grafa3800bd2018-03-15 15:02:28 +0100108static __always_inline efi_status_t gop_blt_int(struct efi_gop *this,
Alexander Graf18f436c2018-03-15 15:02:29 +0100109 struct efi_gop_pixel *bufferp,
Alexander Grafa3800bd2018-03-15 15:02:28 +0100110 u32 operation, efi_uintn_t sx,
111 efi_uintn_t sy, efi_uintn_t dx,
112 efi_uintn_t dy,
113 efi_uintn_t width,
114 efi_uintn_t height,
Alexander Graf18f436c2018-03-15 15:02:29 +0100115 efi_uintn_t delta,
116 efi_uintn_t vid_bpp)
Alexander Grafd65783d2016-03-15 18:38:21 +0100117{
Alexander Graf792284f2016-06-05 22:34:31 +0200118 struct efi_gop_obj *gopobj = container_of(this, struct efi_gop_obj, ops);
Alexander Graf18f436c2018-03-15 15:02:29 +0100119 efi_uintn_t i, j, linelen, slineoff = 0, dlineoff, swidth, dwidth;
Heinrich Schuchardta2c715f2018-02-07 22:14:22 +0100120 u32 *fb32 = gopobj->fb;
121 u16 *fb16 = gopobj->fb;
Alexander Graf18f436c2018-03-15 15:02:29 +0100122 struct efi_gop_pixel *buffer = __builtin_assume_aligned(bufferp, 4);
Heinrich Schuchardta2c715f2018-02-07 22:14:22 +0100123
Heinrich Schuchardt5f86d332018-03-14 19:57:02 +0100124 if (delta) {
125 /* Check for 4 byte alignment */
126 if (delta & 3)
Alexander Grafa3800bd2018-03-15 15:02:28 +0100127 return EFI_INVALID_PARAMETER;
Heinrich Schuchardt5f86d332018-03-14 19:57:02 +0100128 linelen = delta >> 2;
129 } else {
130 linelen = width;
131 }
132
Heinrich Schuchardta2c715f2018-02-07 22:14:22 +0100133 /* Check source rectangle */
134 switch (operation) {
135 case EFI_BLT_VIDEO_FILL:
136 break;
137 case EFI_BLT_BUFFER_TO_VIDEO:
138 if (sx + width > linelen)
Alexander Grafa3800bd2018-03-15 15:02:28 +0100139 return EFI_INVALID_PARAMETER;
Heinrich Schuchardta2c715f2018-02-07 22:14:22 +0100140 break;
141 case EFI_BLT_VIDEO_TO_BLT_BUFFER:
142 case EFI_BLT_VIDEO_TO_VIDEO:
143 if (sx + width > gopobj->info.width ||
144 sy + height > gopobj->info.height)
Alexander Grafa3800bd2018-03-15 15:02:28 +0100145 return EFI_INVALID_PARAMETER;
Heinrich Schuchardta2c715f2018-02-07 22:14:22 +0100146 break;
147 default:
Alexander Grafa3800bd2018-03-15 15:02:28 +0100148 return EFI_INVALID_PARAMETER;
Heinrich Schuchardta2c715f2018-02-07 22:14:22 +0100149 }
Alexander Grafd65783d2016-03-15 18:38:21 +0100150
Heinrich Schuchardta2c715f2018-02-07 22:14:22 +0100151 /* Check destination rectangle */
152 switch (operation) {
153 case EFI_BLT_VIDEO_FILL:
154 case EFI_BLT_BUFFER_TO_VIDEO:
155 case EFI_BLT_VIDEO_TO_VIDEO:
156 if (dx + width > gopobj->info.width ||
157 dy + height > gopobj->info.height)
Alexander Grafa3800bd2018-03-15 15:02:28 +0100158 return EFI_INVALID_PARAMETER;
Heinrich Schuchardta2c715f2018-02-07 22:14:22 +0100159 break;
160 case EFI_BLT_VIDEO_TO_BLT_BUFFER:
161 if (dx + width > linelen)
Alexander Grafa3800bd2018-03-15 15:02:28 +0100162 return EFI_INVALID_PARAMETER;
Heinrich Schuchardta2c715f2018-02-07 22:14:22 +0100163 break;
164 }
Alexander Grafd65783d2016-03-15 18:38:21 +0100165
Alexander Graf18f436c2018-03-15 15:02:29 +0100166 /* Calculate line width */
167 switch (operation) {
168 case EFI_BLT_BUFFER_TO_VIDEO:
169 swidth = linelen;
170 break;
171 case EFI_BLT_VIDEO_TO_BLT_BUFFER:
172 case EFI_BLT_VIDEO_TO_VIDEO:
173 swidth = gopobj->info.width;
174 if (!vid_bpp)
175 return EFI_UNSUPPORTED;
176 break;
177 case EFI_BLT_VIDEO_FILL:
178 swidth = 0;
179 break;
180 }
181
182 switch (operation) {
183 case EFI_BLT_BUFFER_TO_VIDEO:
184 case EFI_BLT_VIDEO_FILL:
185 case EFI_BLT_VIDEO_TO_VIDEO:
186 dwidth = gopobj->info.width;
187 if (!vid_bpp)
188 return EFI_UNSUPPORTED;
189 break;
190 case EFI_BLT_VIDEO_TO_BLT_BUFFER:
191 dwidth = linelen;
192 break;
193 }
194
195 slineoff = swidth * sy;
196 dlineoff = dwidth * dy;
Heinrich Schuchardta2c715f2018-02-07 22:14:22 +0100197 for (i = 0; i < height; i++) {
198 for (j = 0; j < width; j++) {
199 struct efi_gop_pixel pix;
Alexander Grafd65783d2016-03-15 18:38:21 +0100200
Heinrich Schuchardta2c715f2018-02-07 22:14:22 +0100201 /* Read source pixel */
202 switch (operation) {
203 case EFI_BLT_VIDEO_FILL:
204 pix = *buffer;
205 break;
206 case EFI_BLT_BUFFER_TO_VIDEO:
Alexander Graf18f436c2018-03-15 15:02:29 +0100207 pix = buffer[slineoff + j + sx];
Heinrich Schuchardta2c715f2018-02-07 22:14:22 +0100208 break;
209 case EFI_BLT_VIDEO_TO_BLT_BUFFER:
210 case EFI_BLT_VIDEO_TO_VIDEO:
Alexander Graf18f436c2018-03-15 15:02:29 +0100211 if (vid_bpp == 32)
Heinrich Schuchardta2c715f2018-02-07 22:14:22 +0100212 pix = *(struct efi_gop_pixel *)&fb32[
Alexander Graf18f436c2018-03-15 15:02:29 +0100213 slineoff + j + sx];
Mark Kettenisd8ab3342021-09-25 22:47:39 +0200214 else if (vid_bpp == 30)
215 pix = efi_vid30_to_blt_col(fb32[
216 slineoff + j + sx]);
Alexander Graf18f436c2018-03-15 15:02:29 +0100217 else
Heinrich Schuchardta2c715f2018-02-07 22:14:22 +0100218 pix = efi_vid16_to_blt_col(fb16[
Alexander Graf18f436c2018-03-15 15:02:29 +0100219 slineoff + j + sx]);
Heinrich Schuchardta2c715f2018-02-07 22:14:22 +0100220 break;
221 }
Alexander Grafd65783d2016-03-15 18:38:21 +0100222
Heinrich Schuchardta2c715f2018-02-07 22:14:22 +0100223 /* Write destination pixel */
224 switch (operation) {
225 case EFI_BLT_VIDEO_TO_BLT_BUFFER:
Alexander Graf18f436c2018-03-15 15:02:29 +0100226 buffer[dlineoff + j + dx] = pix;
Heinrich Schuchardta2c715f2018-02-07 22:14:22 +0100227 break;
228 case EFI_BLT_BUFFER_TO_VIDEO:
229 case EFI_BLT_VIDEO_FILL:
230 case EFI_BLT_VIDEO_TO_VIDEO:
Alexander Graf18f436c2018-03-15 15:02:29 +0100231 if (vid_bpp == 32)
232 fb32[dlineoff + j + dx] = *(u32 *)&pix;
Mark Kettenisd8ab3342021-09-25 22:47:39 +0200233 else if (vid_bpp == 30)
234 fb32[dlineoff + j + dx] =
235 efi_blt_col_to_vid30(&pix);
Alexander Graf18f436c2018-03-15 15:02:29 +0100236 else
237 fb16[dlineoff + j + dx] =
238 efi_blt_col_to_vid16(&pix);
239 break;
240 }
241 }
242 slineoff += swidth;
243 dlineoff += dwidth;
244 }
245
246 return EFI_SUCCESS;
247}
248
249static efi_uintn_t gop_get_bpp(struct efi_gop *this)
250{
251 struct efi_gop_obj *gopobj = container_of(this, struct efi_gop_obj, ops);
252 efi_uintn_t vid_bpp = 0;
253
254 switch (gopobj->bpix) {
Heinrich Schuchardta2c715f2018-02-07 22:14:22 +0100255#ifdef CONFIG_DM_VIDEO
Alexander Graf18f436c2018-03-15 15:02:29 +0100256 case VIDEO_BPP32:
Heinrich Schuchardta2c715f2018-02-07 22:14:22 +0100257#else
Alexander Graf18f436c2018-03-15 15:02:29 +0100258 case LCD_COLOR32:
Heinrich Schuchardta2c715f2018-02-07 22:14:22 +0100259#endif
Mark Kettenisd8ab3342021-09-25 22:47:39 +0200260 if (gopobj->info.pixel_format == EFI_GOT_BGRA8)
261 vid_bpp = 32;
262 else
263 vid_bpp = 30;
Alexander Graf18f436c2018-03-15 15:02:29 +0100264 break;
Heinrich Schuchardta2c715f2018-02-07 22:14:22 +0100265#ifdef CONFIG_DM_VIDEO
Alexander Graf18f436c2018-03-15 15:02:29 +0100266 case VIDEO_BPP16:
Heinrich Schuchardta2c715f2018-02-07 22:14:22 +0100267#else
Alexander Graf18f436c2018-03-15 15:02:29 +0100268 case LCD_COLOR16:
Heinrich Schuchardta2c715f2018-02-07 22:14:22 +0100269#endif
Alexander Graf18f436c2018-03-15 15:02:29 +0100270 vid_bpp = 16;
271 break;
Alexander Grafd65783d2016-03-15 18:38:21 +0100272 }
273
Alexander Graf18f436c2018-03-15 15:02:29 +0100274 return vid_bpp;
Alexander Grafa3800bd2018-03-15 15:02:28 +0100275}
276
277/*
Heinrich Schuchardt5e96f422018-10-18 21:51:38 +0200278 * GCC can't optimize our BLT function well, but we need to make sure that
Alexander Grafa3800bd2018-03-15 15:02:28 +0100279 * our 2-dimensional loop gets executed very quickly, otherwise the system
280 * will feel slow.
281 *
282 * By manually putting all obvious branch targets into functions which call
Heinrich Schuchardt5e96f422018-10-18 21:51:38 +0200283 * our generic BLT function with constants, the compiler can successfully
Alexander Grafa3800bd2018-03-15 15:02:28 +0100284 * optimize for speed.
285 */
286static efi_status_t gop_blt_video_fill(struct efi_gop *this,
287 struct efi_gop_pixel *buffer,
288 u32 foo, efi_uintn_t sx,
289 efi_uintn_t sy, efi_uintn_t dx,
290 efi_uintn_t dy, efi_uintn_t width,
Alexander Graf18f436c2018-03-15 15:02:29 +0100291 efi_uintn_t height, efi_uintn_t delta,
292 efi_uintn_t vid_bpp)
Alexander Grafa3800bd2018-03-15 15:02:28 +0100293{
294 return gop_blt_int(this, buffer, EFI_BLT_VIDEO_FILL, sx, sy, dx,
Alexander Graf18f436c2018-03-15 15:02:29 +0100295 dy, width, height, delta, vid_bpp);
Alexander Grafa3800bd2018-03-15 15:02:28 +0100296}
297
Alexander Graf18f436c2018-03-15 15:02:29 +0100298static efi_status_t gop_blt_buf_to_vid16(struct efi_gop *this,
299 struct efi_gop_pixel *buffer,
300 u32 foo, efi_uintn_t sx,
301 efi_uintn_t sy, efi_uintn_t dx,
302 efi_uintn_t dy, efi_uintn_t width,
303 efi_uintn_t height, efi_uintn_t delta)
304{
305 return gop_blt_int(this, buffer, EFI_BLT_BUFFER_TO_VIDEO, sx, sy, dx,
306 dy, width, height, delta, 16);
307}
308
Mark Kettenisd8ab3342021-09-25 22:47:39 +0200309static efi_status_t gop_blt_buf_to_vid30(struct efi_gop *this,
310 struct efi_gop_pixel *buffer,
311 u32 foo, efi_uintn_t sx,
312 efi_uintn_t sy, efi_uintn_t dx,
313 efi_uintn_t dy, efi_uintn_t width,
314 efi_uintn_t height, efi_uintn_t delta)
315{
316 return gop_blt_int(this, buffer, EFI_BLT_BUFFER_TO_VIDEO, sx, sy, dx,
317 dy, width, height, delta, 30);
318}
319
Alexander Graf18f436c2018-03-15 15:02:29 +0100320static efi_status_t gop_blt_buf_to_vid32(struct efi_gop *this,
321 struct efi_gop_pixel *buffer,
322 u32 foo, efi_uintn_t sx,
323 efi_uintn_t sy, efi_uintn_t dx,
324 efi_uintn_t dy, efi_uintn_t width,
325 efi_uintn_t height, efi_uintn_t delta)
Alexander Grafa3800bd2018-03-15 15:02:28 +0100326{
327 return gop_blt_int(this, buffer, EFI_BLT_BUFFER_TO_VIDEO, sx, sy, dx,
Alexander Graf18f436c2018-03-15 15:02:29 +0100328 dy, width, height, delta, 32);
Alexander Grafa3800bd2018-03-15 15:02:28 +0100329}
330
331static efi_status_t gop_blt_vid_to_vid(struct efi_gop *this,
332 struct efi_gop_pixel *buffer,
333 u32 foo, efi_uintn_t sx,
334 efi_uintn_t sy, efi_uintn_t dx,
335 efi_uintn_t dy, efi_uintn_t width,
Alexander Graf18f436c2018-03-15 15:02:29 +0100336 efi_uintn_t height, efi_uintn_t delta,
337 efi_uintn_t vid_bpp)
Alexander Grafa3800bd2018-03-15 15:02:28 +0100338{
339 return gop_blt_int(this, buffer, EFI_BLT_VIDEO_TO_VIDEO, sx, sy, dx,
Alexander Graf18f436c2018-03-15 15:02:29 +0100340 dy, width, height, delta, vid_bpp);
Alexander Grafa3800bd2018-03-15 15:02:28 +0100341}
342
343static efi_status_t gop_blt_vid_to_buf(struct efi_gop *this,
344 struct efi_gop_pixel *buffer,
345 u32 foo, efi_uintn_t sx,
346 efi_uintn_t sy, efi_uintn_t dx,
347 efi_uintn_t dy, efi_uintn_t width,
Alexander Graf18f436c2018-03-15 15:02:29 +0100348 efi_uintn_t height, efi_uintn_t delta,
349 efi_uintn_t vid_bpp)
Alexander Grafa3800bd2018-03-15 15:02:28 +0100350{
351 return gop_blt_int(this, buffer, EFI_BLT_VIDEO_TO_BLT_BUFFER, sx, sy,
Alexander Graf18f436c2018-03-15 15:02:29 +0100352 dx, dy, width, height, delta, vid_bpp);
Alexander Grafa3800bd2018-03-15 15:02:28 +0100353}
354
Heinrich Schuchardte32595b2019-06-15 14:52:53 +0200355/**
356 * gop_set_mode() - set graphical output mode
357 *
358 * This function implements the SetMode() service.
359 *
360 * See the Unified Extensible Firmware Interface (UEFI) specification for
361 * details.
362 *
363 * @this: the graphical output protocol
Heinrich Schuchardtdc305ad2019-09-05 20:37:13 +0200364 * @mode_number: the mode to be set
Heinrich Schuchardte32595b2019-06-15 14:52:53 +0200365 * Return: status code
366 */
367static efi_status_t EFIAPI gop_set_mode(struct efi_gop *this, u32 mode_number)
368{
369 struct efi_gop_obj *gopobj;
370 struct efi_gop_pixel buffer = {0, 0, 0, 0};
371 efi_uintn_t vid_bpp;
372 efi_status_t ret = EFI_SUCCESS;
373
374 EFI_ENTRY("%p, %x", this, mode_number);
375
376 if (!this) {
377 ret = EFI_INVALID_PARAMETER;
378 goto out;
379 }
380 if (mode_number) {
381 ret = EFI_UNSUPPORTED;
382 goto out;
383 }
384 gopobj = container_of(this, struct efi_gop_obj, ops);
385 vid_bpp = gop_get_bpp(this);
386 ret = gop_blt_video_fill(this, &buffer, EFI_BLT_VIDEO_FILL, 0, 0, 0, 0,
387 gopobj->info.width, gopobj->info.height, 0,
388 vid_bpp);
389out:
390 return EFI_EXIT(ret);
391}
392
Alexander Grafa3800bd2018-03-15 15:02:28 +0100393/*
394 * Copy rectangle.
395 *
396 * This function implements the Blt service of the EFI_GRAPHICS_OUTPUT_PROTOCOL.
397 * See the Unified Extensible Firmware Interface (UEFI) specification for
398 * details.
399 *
400 * @this: EFI_GRAPHICS_OUTPUT_PROTOCOL
401 * @buffer: pixel buffer
402 * @sx: source x-coordinate
403 * @sy: source y-coordinate
404 * @dx: destination x-coordinate
405 * @dy: destination y-coordinate
406 * @width: width of rectangle
407 * @height: height of rectangle
408 * @delta: length in bytes of a line in the pixel buffer (optional)
Heinrich Schuchardtfbe90212022-01-20 19:48:20 +0100409 * Return: status code
Alexander Grafa3800bd2018-03-15 15:02:28 +0100410 */
411efi_status_t EFIAPI gop_blt(struct efi_gop *this, struct efi_gop_pixel *buffer,
412 u32 operation, efi_uintn_t sx,
413 efi_uintn_t sy, efi_uintn_t dx,
414 efi_uintn_t dy, efi_uintn_t width,
415 efi_uintn_t height, efi_uintn_t delta)
416{
417 efi_status_t ret = EFI_INVALID_PARAMETER;
Alexander Graf18f436c2018-03-15 15:02:29 +0100418 efi_uintn_t vid_bpp;
Alexander Grafa3800bd2018-03-15 15:02:28 +0100419
420 EFI_ENTRY("%p, %p, %u, %zu, %zu, %zu, %zu, %zu, %zu, %zu", this,
421 buffer, operation, sx, sy, dx, dy, width, height, delta);
422
Alexander Graf18f436c2018-03-15 15:02:29 +0100423 vid_bpp = gop_get_bpp(this);
424
Alexander Grafa3800bd2018-03-15 15:02:28 +0100425 /* Allow for compiler optimization */
426 switch (operation) {
427 case EFI_BLT_VIDEO_FILL:
428 ret = gop_blt_video_fill(this, buffer, operation, sx, sy, dx,
Alexander Graf18f436c2018-03-15 15:02:29 +0100429 dy, width, height, delta, vid_bpp);
Alexander Grafa3800bd2018-03-15 15:02:28 +0100430 break;
431 case EFI_BLT_BUFFER_TO_VIDEO:
Alexander Graf18f436c2018-03-15 15:02:29 +0100432 /* This needs to be super-fast, so duplicate for 16/32bpp */
433 if (vid_bpp == 32)
434 ret = gop_blt_buf_to_vid32(this, buffer, operation, sx,
435 sy, dx, dy, width, height,
436 delta);
Mark Kettenisd8ab3342021-09-25 22:47:39 +0200437 else if (vid_bpp == 30)
438 ret = gop_blt_buf_to_vid30(this, buffer, operation, sx,
439 sy, dx, dy, width, height,
440 delta);
Alexander Graf18f436c2018-03-15 15:02:29 +0100441 else
442 ret = gop_blt_buf_to_vid16(this, buffer, operation, sx,
443 sy, dx, dy, width, height,
444 delta);
Alexander Grafa3800bd2018-03-15 15:02:28 +0100445 break;
446 case EFI_BLT_VIDEO_TO_VIDEO:
447 ret = gop_blt_vid_to_vid(this, buffer, operation, sx, sy, dx,
Alexander Graf18f436c2018-03-15 15:02:29 +0100448 dy, width, height, delta, vid_bpp);
Alexander Grafa3800bd2018-03-15 15:02:28 +0100449 break;
450 case EFI_BLT_VIDEO_TO_BLT_BUFFER:
451 ret = gop_blt_vid_to_buf(this, buffer, operation, sx, sy, dx,
Alexander Graf18f436c2018-03-15 15:02:29 +0100452 dy, width, height, delta, vid_bpp);
Alexander Grafa3800bd2018-03-15 15:02:28 +0100453 break;
454 default:
Heinrich Schuchardt087c8c42019-06-15 12:42:46 +0200455 ret = EFI_INVALID_PARAMETER;
Alexander Grafa3800bd2018-03-15 15:02:28 +0100456 }
457
458 if (ret != EFI_SUCCESS)
459 return EFI_EXIT(ret);
460
Alexander Graf792284f2016-06-05 22:34:31 +0200461 video_sync_all();
Alexander Grafd65783d2016-03-15 18:38:21 +0100462
463 return EFI_EXIT(EFI_SUCCESS);
464}
465
Heinrich Schuchardtb91c0842018-03-03 15:28:55 +0100466/*
467 * Install graphical output protocol.
468 *
469 * If no supported video device exists this is not considered as an
470 * error.
471 */
472efi_status_t efi_gop_register(void)
Alexander Grafd65783d2016-03-15 18:38:21 +0100473{
474 struct efi_gop_obj *gopobj;
Mark Kettenis3e4b3d52021-09-25 22:47:37 +0200475 u32 bpix, format, col, row;
Alexander Grafbc766392016-06-07 00:57:05 +0200476 u64 fb_base, fb_size;
Rob Clark92cec962017-07-21 15:00:27 -0400477 void *fb;
Heinrich Schuchardtbde9a9b2017-11-26 14:05:14 +0100478 efi_status_t ret;
Alexander Grafd65783d2016-03-15 18:38:21 +0100479
Alexander Graf792284f2016-06-05 22:34:31 +0200480#ifdef CONFIG_DM_VIDEO
481 struct udevice *vdev;
Heinrich Schuchardtb91c0842018-03-03 15:28:55 +0100482 struct video_priv *priv;
Alexander Graf792284f2016-06-05 22:34:31 +0200483
484 /* We only support a single video output device for now */
Heinrich Schuchardtb91c0842018-03-03 15:28:55 +0100485 if (uclass_first_device(UCLASS_VIDEO, &vdev) || !vdev) {
486 debug("WARNING: No video device\n");
487 return EFI_SUCCESS;
488 }
Alexander Graf792284f2016-06-05 22:34:31 +0200489
Heinrich Schuchardtb91c0842018-03-03 15:28:55 +0100490 priv = dev_get_uclass_priv(vdev);
Alexander Graf792284f2016-06-05 22:34:31 +0200491 bpix = priv->bpix;
Mark Kettenis3e4b3d52021-09-25 22:47:37 +0200492 format = priv->format;
Alexander Graf792284f2016-06-05 22:34:31 +0200493 col = video_get_xsize(vdev);
494 row = video_get_ysize(vdev);
Alexander Grafbc766392016-06-07 00:57:05 +0200495 fb_base = (uintptr_t)priv->fb;
496 fb_size = priv->fb_size;
Rob Clark92cec962017-07-21 15:00:27 -0400497 fb = priv->fb;
Alexander Graf792284f2016-06-05 22:34:31 +0200498#else
Alexander Grafbc766392016-06-07 00:57:05 +0200499 int line_len;
Alexander Graf792284f2016-06-05 22:34:31 +0200500
501 bpix = panel_info.vl_bpix;
Mark Kettenis3e4b3d52021-09-25 22:47:37 +0200502 format = VIDEO_UNKNOWN;
Alexander Graf792284f2016-06-05 22:34:31 +0200503 col = panel_info.vl_col;
504 row = panel_info.vl_row;
Alexander Grafbc766392016-06-07 00:57:05 +0200505 fb_base = gd->fb_base;
506 fb_size = lcd_get_size(&line_len);
Alexander Grafda29c602017-07-31 09:15:57 +0200507 fb = (void*)gd->fb_base;
Alexander Graf792284f2016-06-05 22:34:31 +0200508#endif
509
510 switch (bpix) {
511#ifdef CONFIG_DM_VIDEO
512 case VIDEO_BPP16:
513 case VIDEO_BPP32:
514#else
Alexander Grafd65783d2016-03-15 18:38:21 +0100515 case LCD_COLOR32:
516 case LCD_COLOR16:
Alexander Graf792284f2016-06-05 22:34:31 +0200517#endif
Alexander Grafd65783d2016-03-15 18:38:21 +0100518 break;
519 default:
520 /* So far, we only work in 16 or 32 bit mode */
Heinrich Schuchardtb91c0842018-03-03 15:28:55 +0100521 debug("WARNING: Unsupported video mode\n");
522 return EFI_SUCCESS;
Alexander Grafd65783d2016-03-15 18:38:21 +0100523 }
524
525 gopobj = calloc(1, sizeof(*gopobj));
Heinrich Schuchardt9aaa35b2017-10-26 19:25:45 +0200526 if (!gopobj) {
527 printf("ERROR: Out of memory\n");
Heinrich Schuchardtb91c0842018-03-03 15:28:55 +0100528 return EFI_OUT_OF_RESOURCES;
Heinrich Schuchardt9aaa35b2017-10-26 19:25:45 +0200529 }
Alexander Grafd65783d2016-03-15 18:38:21 +0100530
Heinrich Schuchardtbde9a9b2017-11-26 14:05:14 +0100531 /* Hook up to the device list */
Heinrich Schuchardt72928722018-09-26 05:27:56 +0200532 efi_add_handle(&gopobj->header);
Heinrich Schuchardtbde9a9b2017-11-26 14:05:14 +0100533
Alexander Grafd65783d2016-03-15 18:38:21 +0100534 /* Fill in object data */
Heinrich Schuchardt72928722018-09-26 05:27:56 +0200535 ret = efi_add_protocol(&gopobj->header, &efi_gop_guid,
Heinrich Schuchardtbde9a9b2017-11-26 14:05:14 +0100536 &gopobj->ops);
537 if (ret != EFI_SUCCESS) {
Heinrich Schuchardt5e96f422018-10-18 21:51:38 +0200538 printf("ERROR: Failure adding GOP protocol\n");
Heinrich Schuchardtb91c0842018-03-03 15:28:55 +0100539 return ret;
Heinrich Schuchardtbde9a9b2017-11-26 14:05:14 +0100540 }
Alexander Grafd65783d2016-03-15 18:38:21 +0100541 gopobj->ops.query_mode = gop_query_mode;
542 gopobj->ops.set_mode = gop_set_mode;
543 gopobj->ops.blt = gop_blt;
544 gopobj->ops.mode = &gopobj->mode;
545
546 gopobj->mode.max_mode = 1;
547 gopobj->mode.info = &gopobj->info;
548 gopobj->mode.info_size = sizeof(gopobj->info);
Alexander Grafd65783d2016-03-15 18:38:21 +0100549
Heinrich Schuchardt6ea1b292019-06-15 14:52:53 +0200550 gopobj->mode.fb_base = fb_base;
551 gopobj->mode.fb_size = fb_size;
552
553 gopobj->info.version = 0;
554 gopobj->info.width = col;
555 gopobj->info.height = row;
Alexander Grafbc766392016-06-07 00:57:05 +0200556#ifdef CONFIG_DM_VIDEO
Heinrich Schuchardtb91c0842018-03-03 15:28:55 +0100557 if (bpix == VIDEO_BPP32)
Alexander Grafbc766392016-06-07 00:57:05 +0200558#else
Heinrich Schuchardtb91c0842018-03-03 15:28:55 +0100559 if (bpix == LCD_COLOR32)
Alexander Grafbc766392016-06-07 00:57:05 +0200560#endif
Heinrich Schuchardtb91c0842018-03-03 15:28:55 +0100561 {
Mark Kettenis3e4b3d52021-09-25 22:47:37 +0200562 if (format == VIDEO_X2R10G10B10) {
563 gopobj->info.pixel_format = EFI_GOT_BITMASK;
564 gopobj->info.pixel_bitmask[0] = 0x3ff00000; /* red */
565 gopobj->info.pixel_bitmask[1] = 0x000ffc00; /* green */
566 gopobj->info.pixel_bitmask[2] = 0x000003ff; /* blue */
567 gopobj->info.pixel_bitmask[3] = 0xc0000000; /* reserved */
568 } else {
569 gopobj->info.pixel_format = EFI_GOT_BGRA8;
570 }
Heinrich Schuchardt6ea1b292019-06-15 14:52:53 +0200571 } else {
572 gopobj->info.pixel_format = EFI_GOT_BITMASK;
573 gopobj->info.pixel_bitmask[0] = 0xf800; /* red */
574 gopobj->info.pixel_bitmask[1] = 0x07e0; /* green */
575 gopobj->info.pixel_bitmask[2] = 0x001f; /* blue */
Alexander Grafbc766392016-06-07 00:57:05 +0200576 }
Alexander Graf792284f2016-06-05 22:34:31 +0200577 gopobj->info.pixels_per_scanline = col;
Alexander Graf792284f2016-06-05 22:34:31 +0200578 gopobj->bpix = bpix;
Rob Clark92cec962017-07-21 15:00:27 -0400579 gopobj->fb = fb;
Alexander Grafd65783d2016-03-15 18:38:21 +0100580
Heinrich Schuchardtb91c0842018-03-03 15:28:55 +0100581 return EFI_SUCCESS;
Alexander Grafd65783d2016-03-15 18:38:21 +0100582}