blob: 2c81859807357d00c6e92bd88bfaaaef79eb294e [file] [log] [blame]
Tom Rinif739fcd2018-05-07 17:02:21 -04001// SPDX-License-Identifier: GPL-2.0+
Alexander Grafbe8d3242016-03-15 18:38:21 +01002/*
3 * EFI application disk support
4 *
5 * Copyright (c) 2016 Alexander Graf
Alexander Grafbe8d3242016-03-15 18:38:21 +01006 */
7
8#include <common.h>
Alexander Grafa8122412016-06-05 22:34:31 +02009#include <dm.h>
Alexander Grafbe8d3242016-03-15 18:38:21 +010010#include <efi_loader.h>
Alexander Grafbe8d3242016-03-15 18:38:21 +010011#include <lcd.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060012#include <log.h>
Alexander Grafbe8d3242016-03-15 18:38:21 +010013#include <malloc.h>
Alexander Grafa8122412016-06-05 22:34:31 +020014#include <video.h>
Simon Glass401d1c42020-10-30 21:38:53 -060015#include <asm/global_data.h>
Alexander Grafbe8d3242016-03-15 18:38:21 +010016
17DECLARE_GLOBAL_DATA_PTR;
18
Heinrich Schuchardtdec88e42019-04-20 07:39:11 +020019static const efi_guid_t efi_gop_guid = EFI_GRAPHICS_OUTPUT_PROTOCOL_GUID;
Alexander Grafbe8d3242016-03-15 18:38:21 +010020
Heinrich Schuchardtd39646a2018-09-26 05:27:56 +020021/**
22 * struct efi_gop_obj - graphical output protocol object
23 *
24 * @header: EFI object header
25 * @ops: graphical output protocol interface
26 * @info: graphical output mode information
27 * @mode: graphical output mode
28 * @bpix: bits per pixel
29 * @fb: frame buffer
30 */
Alexander Grafbe8d3242016-03-15 18:38:21 +010031struct efi_gop_obj {
Heinrich Schuchardtd39646a2018-09-26 05:27:56 +020032 struct efi_object header;
Alexander Grafbe8d3242016-03-15 18:38:21 +010033 struct efi_gop ops;
Alexander Grafbe8d3242016-03-15 18:38:21 +010034 struct efi_gop_mode_info info;
35 struct efi_gop_mode mode;
Heinrich Schuchardtd39646a2018-09-26 05:27:56 +020036 /* Fields we only have access to during init */
Alexander Grafa8122412016-06-05 22:34:31 +020037 u32 bpix;
Rob Clarkca9193d2017-07-21 15:00:27 -040038 void *fb;
Alexander Grafbe8d3242016-03-15 18:38:21 +010039};
40
41static efi_status_t EFIAPI gop_query_mode(struct efi_gop *this, u32 mode_number,
Heinrich Schuchardt1c38a772017-10-26 19:25:51 +020042 efi_uintn_t *size_of_info,
Alexander Grafbe8d3242016-03-15 18:38:21 +010043 struct efi_gop_mode_info **info)
44{
45 struct efi_gop_obj *gopobj;
Heinrich Schuchardt997c2ce2019-06-15 12:52:35 +020046 efi_status_t ret = EFI_SUCCESS;
Alexander Grafbe8d3242016-03-15 18:38:21 +010047
48 EFI_ENTRY("%p, %x, %p, %p", this, mode_number, size_of_info, info);
49
Heinrich Schuchardt997c2ce2019-06-15 12:52:35 +020050 if (!this || !size_of_info || !info || mode_number) {
51 ret = EFI_INVALID_PARAMETER;
52 goto out;
53 }
54
Alexander Grafbe8d3242016-03-15 18:38:21 +010055 gopobj = container_of(this, struct efi_gop_obj, ops);
Heinrich Schuchardt97cf2082019-06-15 14:07:40 +020056 ret = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, sizeof(gopobj->info),
57 (void **)info);
58 if (ret != EFI_SUCCESS)
59 goto out;
Alexander Grafbe8d3242016-03-15 18:38:21 +010060 *size_of_info = sizeof(gopobj->info);
Heinrich Schuchardt97cf2082019-06-15 14:07:40 +020061 memcpy(*info, &gopobj->info, sizeof(gopobj->info));
Alexander Grafbe8d3242016-03-15 18:38:21 +010062
Heinrich Schuchardt997c2ce2019-06-15 12:52:35 +020063out:
64 return EFI_EXIT(ret);
Alexander Grafbe8d3242016-03-15 18:38:21 +010065}
66
Mark Kettenis79f9def2021-09-25 22:47:39 +020067static __always_inline struct efi_gop_pixel efi_vid30_to_blt_col(u32 vid)
68{
69 struct efi_gop_pixel blt = {
70 .reserved = 0,
71 };
72
73 blt.blue = (vid & 0x3ff) >> 2;
74 vid >>= 10;
75 blt.green = (vid & 0x3ff) >> 2;
76 vid >>= 10;
77 blt.red = (vid & 0x3ff) >> 2;
78 return blt;
79}
80
81static __always_inline u32 efi_blt_col_to_vid30(struct efi_gop_pixel *blt)
82{
83 return (u32)(blt->red << 2) << 20 |
84 (u32)(blt->green << 2) << 10 |
85 (u32)(blt->blue << 2);
86}
87
Heinrich Schuchardt90b658b2018-03-16 19:59:06 +010088static __always_inline struct efi_gop_pixel efi_vid16_to_blt_col(u16 vid)
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +010089{
90 struct efi_gop_pixel blt = {
91 .reserved = 0,
92 };
93
94 blt.blue = (vid & 0x1f) << 3;
95 vid >>= 5;
96 blt.green = (vid & 0x3f) << 2;
97 vid >>= 6;
98 blt.red = (vid & 0x1f) << 3;
99 return blt;
100}
101
Heinrich Schuchardt90b658b2018-03-16 19:59:06 +0100102static __always_inline u16 efi_blt_col_to_vid16(struct efi_gop_pixel *blt)
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +0100103{
104 return (u16)(blt->red >> 3) << 11 |
105 (u16)(blt->green >> 2) << 5 |
106 (u16)(blt->blue >> 3);
107}
108
Alexander Grafba718e62018-03-15 15:02:28 +0100109static __always_inline efi_status_t gop_blt_int(struct efi_gop *this,
Alexander Graf8e475062018-03-15 15:02:29 +0100110 struct efi_gop_pixel *bufferp,
Alexander Grafba718e62018-03-15 15:02:28 +0100111 u32 operation, efi_uintn_t sx,
112 efi_uintn_t sy, efi_uintn_t dx,
113 efi_uintn_t dy,
114 efi_uintn_t width,
115 efi_uintn_t height,
Alexander Graf8e475062018-03-15 15:02:29 +0100116 efi_uintn_t delta,
117 efi_uintn_t vid_bpp)
Alexander Grafbe8d3242016-03-15 18:38:21 +0100118{
Alexander Grafa8122412016-06-05 22:34:31 +0200119 struct efi_gop_obj *gopobj = container_of(this, struct efi_gop_obj, ops);
Alexander Graf8e475062018-03-15 15:02:29 +0100120 efi_uintn_t i, j, linelen, slineoff = 0, dlineoff, swidth, dwidth;
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +0100121 u32 *fb32 = gopobj->fb;
122 u16 *fb16 = gopobj->fb;
Alexander Graf8e475062018-03-15 15:02:29 +0100123 struct efi_gop_pixel *buffer = __builtin_assume_aligned(bufferp, 4);
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +0100124
Heinrich Schuchardt51a0f452018-03-14 19:57:02 +0100125 if (delta) {
126 /* Check for 4 byte alignment */
127 if (delta & 3)
Alexander Grafba718e62018-03-15 15:02:28 +0100128 return EFI_INVALID_PARAMETER;
Heinrich Schuchardt51a0f452018-03-14 19:57:02 +0100129 linelen = delta >> 2;
130 } else {
131 linelen = width;
132 }
133
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +0100134 /* Check source rectangle */
135 switch (operation) {
136 case EFI_BLT_VIDEO_FILL:
Alexander Grafbe8d3242016-03-15 18:38:21 +0100137 break;
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +0100138 case EFI_BLT_BUFFER_TO_VIDEO:
139 if (sx + width > linelen)
Alexander Grafba718e62018-03-15 15:02:28 +0100140 return EFI_INVALID_PARAMETER;
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +0100141 break;
142 case EFI_BLT_VIDEO_TO_BLT_BUFFER:
143 case EFI_BLT_VIDEO_TO_VIDEO:
144 if (sx + width > gopobj->info.width ||
145 sy + height > gopobj->info.height)
Alexander Grafba718e62018-03-15 15:02:28 +0100146 return EFI_INVALID_PARAMETER;
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +0100147 break;
148 default:
Alexander Grafba718e62018-03-15 15:02:28 +0100149 return EFI_INVALID_PARAMETER;
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +0100150 }
Alexander Grafbe8d3242016-03-15 18:38:21 +0100151
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +0100152 /* Check destination rectangle */
153 switch (operation) {
154 case EFI_BLT_VIDEO_FILL:
155 case EFI_BLT_BUFFER_TO_VIDEO:
156 case EFI_BLT_VIDEO_TO_VIDEO:
157 if (dx + width > gopobj->info.width ||
158 dy + height > gopobj->info.height)
Alexander Grafba718e62018-03-15 15:02:28 +0100159 return EFI_INVALID_PARAMETER;
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +0100160 break;
161 case EFI_BLT_VIDEO_TO_BLT_BUFFER:
162 if (dx + width > linelen)
Alexander Grafba718e62018-03-15 15:02:28 +0100163 return EFI_INVALID_PARAMETER;
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +0100164 break;
165 }
166
Alexander Graf8e475062018-03-15 15:02:29 +0100167 /* Calculate line width */
168 switch (operation) {
169 case EFI_BLT_BUFFER_TO_VIDEO:
170 swidth = linelen;
171 break;
172 case EFI_BLT_VIDEO_TO_BLT_BUFFER:
173 case EFI_BLT_VIDEO_TO_VIDEO:
174 swidth = gopobj->info.width;
175 if (!vid_bpp)
176 return EFI_UNSUPPORTED;
177 break;
178 case EFI_BLT_VIDEO_FILL:
179 swidth = 0;
180 break;
181 }
182
183 switch (operation) {
184 case EFI_BLT_BUFFER_TO_VIDEO:
185 case EFI_BLT_VIDEO_FILL:
186 case EFI_BLT_VIDEO_TO_VIDEO:
187 dwidth = gopobj->info.width;
188 if (!vid_bpp)
189 return EFI_UNSUPPORTED;
190 break;
191 case EFI_BLT_VIDEO_TO_BLT_BUFFER:
192 dwidth = linelen;
193 break;
194 }
195
196 slineoff = swidth * sy;
197 dlineoff = dwidth * dy;
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +0100198 for (i = 0; i < height; i++) {
199 for (j = 0; j < width; j++) {
200 struct efi_gop_pixel pix;
201
202 /* Read source pixel */
203 switch (operation) {
204 case EFI_BLT_VIDEO_FILL:
205 pix = *buffer;
206 break;
207 case EFI_BLT_BUFFER_TO_VIDEO:
Alexander Graf8e475062018-03-15 15:02:29 +0100208 pix = buffer[slineoff + j + sx];
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +0100209 break;
210 case EFI_BLT_VIDEO_TO_BLT_BUFFER:
211 case EFI_BLT_VIDEO_TO_VIDEO:
Alexander Graf8e475062018-03-15 15:02:29 +0100212 if (vid_bpp == 32)
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +0100213 pix = *(struct efi_gop_pixel *)&fb32[
Alexander Graf8e475062018-03-15 15:02:29 +0100214 slineoff + j + sx];
Mark Kettenis79f9def2021-09-25 22:47:39 +0200215 else if (vid_bpp == 30)
216 pix = efi_vid30_to_blt_col(fb32[
217 slineoff + j + sx]);
Alexander Graf8e475062018-03-15 15:02:29 +0100218 else
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +0100219 pix = efi_vid16_to_blt_col(fb16[
Alexander Graf8e475062018-03-15 15:02:29 +0100220 slineoff + j + sx]);
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +0100221 break;
222 }
223
224 /* Write destination pixel */
225 switch (operation) {
226 case EFI_BLT_VIDEO_TO_BLT_BUFFER:
Alexander Graf8e475062018-03-15 15:02:29 +0100227 buffer[dlineoff + j + dx] = pix;
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +0100228 break;
229 case EFI_BLT_BUFFER_TO_VIDEO:
230 case EFI_BLT_VIDEO_FILL:
231 case EFI_BLT_VIDEO_TO_VIDEO:
Alexander Graf8e475062018-03-15 15:02:29 +0100232 if (vid_bpp == 32)
233 fb32[dlineoff + j + dx] = *(u32 *)&pix;
Mark Kettenis79f9def2021-09-25 22:47:39 +0200234 else if (vid_bpp == 30)
235 fb32[dlineoff + j + dx] =
236 efi_blt_col_to_vid30(&pix);
Alexander Graf8e475062018-03-15 15:02:29 +0100237 else
238 fb16[dlineoff + j + dx] =
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +0100239 efi_blt_col_to_vid16(&pix);
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +0100240 break;
Alexander Grafbe8d3242016-03-15 18:38:21 +0100241 }
242 }
Alexander Graf8e475062018-03-15 15:02:29 +0100243 slineoff += swidth;
244 dlineoff += dwidth;
Alexander Grafbe8d3242016-03-15 18:38:21 +0100245 }
246
Alexander Grafba718e62018-03-15 15:02:28 +0100247 return EFI_SUCCESS;
248}
249
Alexander Graf8e475062018-03-15 15:02:29 +0100250static efi_uintn_t gop_get_bpp(struct efi_gop *this)
251{
252 struct efi_gop_obj *gopobj = container_of(this, struct efi_gop_obj, ops);
253 efi_uintn_t vid_bpp = 0;
254
255 switch (gopobj->bpix) {
256#ifdef CONFIG_DM_VIDEO
257 case VIDEO_BPP32:
258#else
259 case LCD_COLOR32:
260#endif
Mark Kettenis79f9def2021-09-25 22:47:39 +0200261 if (gopobj->info.pixel_format == EFI_GOT_BGRA8)
262 vid_bpp = 32;
263 else
264 vid_bpp = 30;
Alexander Graf8e475062018-03-15 15:02:29 +0100265 break;
266#ifdef CONFIG_DM_VIDEO
267 case VIDEO_BPP16:
268#else
269 case LCD_COLOR16:
270#endif
271 vid_bpp = 16;
272 break;
273 }
274
275 return vid_bpp;
276}
277
Alexander Grafba718e62018-03-15 15:02:28 +0100278/*
Heinrich Schuchardte1fec152018-10-18 21:51:38 +0200279 * GCC can't optimize our BLT function well, but we need to make sure that
Alexander Grafba718e62018-03-15 15:02:28 +0100280 * our 2-dimensional loop gets executed very quickly, otherwise the system
281 * will feel slow.
282 *
283 * By manually putting all obvious branch targets into functions which call
Heinrich Schuchardte1fec152018-10-18 21:51:38 +0200284 * our generic BLT function with constants, the compiler can successfully
Alexander Grafba718e62018-03-15 15:02:28 +0100285 * optimize for speed.
286 */
287static efi_status_t gop_blt_video_fill(struct efi_gop *this,
288 struct efi_gop_pixel *buffer,
289 u32 foo, efi_uintn_t sx,
290 efi_uintn_t sy, efi_uintn_t dx,
291 efi_uintn_t dy, efi_uintn_t width,
Alexander Graf8e475062018-03-15 15:02:29 +0100292 efi_uintn_t height, efi_uintn_t delta,
293 efi_uintn_t vid_bpp)
Alexander Grafba718e62018-03-15 15:02:28 +0100294{
295 return gop_blt_int(this, buffer, EFI_BLT_VIDEO_FILL, sx, sy, dx,
Alexander Graf8e475062018-03-15 15:02:29 +0100296 dy, width, height, delta, vid_bpp);
Alexander Grafba718e62018-03-15 15:02:28 +0100297}
298
Alexander Graf8e475062018-03-15 15:02:29 +0100299static efi_status_t gop_blt_buf_to_vid16(struct efi_gop *this,
300 struct efi_gop_pixel *buffer,
301 u32 foo, efi_uintn_t sx,
302 efi_uintn_t sy, efi_uintn_t dx,
303 efi_uintn_t dy, efi_uintn_t width,
304 efi_uintn_t height, efi_uintn_t delta)
Alexander Grafba718e62018-03-15 15:02:28 +0100305{
306 return gop_blt_int(this, buffer, EFI_BLT_BUFFER_TO_VIDEO, sx, sy, dx,
Alexander Graf8e475062018-03-15 15:02:29 +0100307 dy, width, height, delta, 16);
308}
309
Mark Kettenis79f9def2021-09-25 22:47:39 +0200310static efi_status_t gop_blt_buf_to_vid30(struct efi_gop *this,
311 struct efi_gop_pixel *buffer,
312 u32 foo, efi_uintn_t sx,
313 efi_uintn_t sy, efi_uintn_t dx,
314 efi_uintn_t dy, efi_uintn_t width,
315 efi_uintn_t height, efi_uintn_t delta)
316{
317 return gop_blt_int(this, buffer, EFI_BLT_BUFFER_TO_VIDEO, sx, sy, dx,
318 dy, width, height, delta, 30);
319}
320
Alexander Graf8e475062018-03-15 15:02:29 +0100321static efi_status_t gop_blt_buf_to_vid32(struct efi_gop *this,
322 struct efi_gop_pixel *buffer,
323 u32 foo, efi_uintn_t sx,
324 efi_uintn_t sy, efi_uintn_t dx,
325 efi_uintn_t dy, efi_uintn_t width,
326 efi_uintn_t height, efi_uintn_t delta)
327{
328 return gop_blt_int(this, buffer, EFI_BLT_BUFFER_TO_VIDEO, sx, sy, dx,
329 dy, width, height, delta, 32);
Alexander Grafba718e62018-03-15 15:02:28 +0100330}
331
332static efi_status_t gop_blt_vid_to_vid(struct efi_gop *this,
333 struct efi_gop_pixel *buffer,
334 u32 foo, efi_uintn_t sx,
335 efi_uintn_t sy, efi_uintn_t dx,
336 efi_uintn_t dy, efi_uintn_t width,
Alexander Graf8e475062018-03-15 15:02:29 +0100337 efi_uintn_t height, efi_uintn_t delta,
338 efi_uintn_t vid_bpp)
Alexander Grafba718e62018-03-15 15:02:28 +0100339{
340 return gop_blt_int(this, buffer, EFI_BLT_VIDEO_TO_VIDEO, sx, sy, dx,
Alexander Graf8e475062018-03-15 15:02:29 +0100341 dy, width, height, delta, vid_bpp);
Alexander Grafba718e62018-03-15 15:02:28 +0100342}
343
344static efi_status_t gop_blt_vid_to_buf(struct efi_gop *this,
345 struct efi_gop_pixel *buffer,
346 u32 foo, efi_uintn_t sx,
347 efi_uintn_t sy, efi_uintn_t dx,
348 efi_uintn_t dy, efi_uintn_t width,
Alexander Graf8e475062018-03-15 15:02:29 +0100349 efi_uintn_t height, efi_uintn_t delta,
350 efi_uintn_t vid_bpp)
Alexander Grafba718e62018-03-15 15:02:28 +0100351{
352 return gop_blt_int(this, buffer, EFI_BLT_VIDEO_TO_BLT_BUFFER, sx, sy,
Alexander Graf8e475062018-03-15 15:02:29 +0100353 dx, dy, width, height, delta, vid_bpp);
Alexander Grafba718e62018-03-15 15:02:28 +0100354}
355
Heinrich Schuchardt40c8f112019-06-15 14:52:53 +0200356/**
357 * gop_set_mode() - set graphical output mode
358 *
359 * This function implements the SetMode() service.
360 *
361 * See the Unified Extensible Firmware Interface (UEFI) specification for
362 * details.
363 *
364 * @this: the graphical output protocol
Heinrich Schuchardtfe1a81c2019-09-05 20:37:13 +0200365 * @mode_number: the mode to be set
Heinrich Schuchardt40c8f112019-06-15 14:52:53 +0200366 * Return: status code
367 */
368static efi_status_t EFIAPI gop_set_mode(struct efi_gop *this, u32 mode_number)
369{
370 struct efi_gop_obj *gopobj;
371 struct efi_gop_pixel buffer = {0, 0, 0, 0};
372 efi_uintn_t vid_bpp;
373 efi_status_t ret = EFI_SUCCESS;
374
375 EFI_ENTRY("%p, %x", this, mode_number);
376
377 if (!this) {
378 ret = EFI_INVALID_PARAMETER;
379 goto out;
380 }
381 if (mode_number) {
382 ret = EFI_UNSUPPORTED;
383 goto out;
384 }
385 gopobj = container_of(this, struct efi_gop_obj, ops);
386 vid_bpp = gop_get_bpp(this);
387 ret = gop_blt_video_fill(this, &buffer, EFI_BLT_VIDEO_FILL, 0, 0, 0, 0,
388 gopobj->info.width, gopobj->info.height, 0,
389 vid_bpp);
390out:
391 return EFI_EXIT(ret);
392}
393
Alexander Grafba718e62018-03-15 15:02:28 +0100394/*
395 * Copy rectangle.
396 *
397 * This function implements the Blt service of the EFI_GRAPHICS_OUTPUT_PROTOCOL.
398 * See the Unified Extensible Firmware Interface (UEFI) specification for
399 * details.
400 *
401 * @this: EFI_GRAPHICS_OUTPUT_PROTOCOL
402 * @buffer: pixel buffer
403 * @sx: source x-coordinate
404 * @sy: source y-coordinate
405 * @dx: destination x-coordinate
406 * @dy: destination y-coordinate
407 * @width: width of rectangle
408 * @height: height of rectangle
409 * @delta: length in bytes of a line in the pixel buffer (optional)
Heinrich Schuchardt3dd719d2022-01-20 19:48:20 +0100410 * Return: status code
Alexander Grafba718e62018-03-15 15:02:28 +0100411 */
412efi_status_t EFIAPI gop_blt(struct efi_gop *this, struct efi_gop_pixel *buffer,
413 u32 operation, efi_uintn_t sx,
414 efi_uintn_t sy, efi_uintn_t dx,
415 efi_uintn_t dy, efi_uintn_t width,
416 efi_uintn_t height, efi_uintn_t delta)
417{
418 efi_status_t ret = EFI_INVALID_PARAMETER;
Alexander Graf8e475062018-03-15 15:02:29 +0100419 efi_uintn_t vid_bpp;
Alexander Grafba718e62018-03-15 15:02:28 +0100420
421 EFI_ENTRY("%p, %p, %u, %zu, %zu, %zu, %zu, %zu, %zu, %zu", this,
422 buffer, operation, sx, sy, dx, dy, width, height, delta);
423
Alexander Graf8e475062018-03-15 15:02:29 +0100424 vid_bpp = gop_get_bpp(this);
425
Alexander Grafba718e62018-03-15 15:02:28 +0100426 /* Allow for compiler optimization */
427 switch (operation) {
428 case EFI_BLT_VIDEO_FILL:
429 ret = gop_blt_video_fill(this, buffer, operation, sx, sy, dx,
Alexander Graf8e475062018-03-15 15:02:29 +0100430 dy, width, height, delta, vid_bpp);
Alexander Grafba718e62018-03-15 15:02:28 +0100431 break;
432 case EFI_BLT_BUFFER_TO_VIDEO:
Alexander Graf8e475062018-03-15 15:02:29 +0100433 /* This needs to be super-fast, so duplicate for 16/32bpp */
434 if (vid_bpp == 32)
435 ret = gop_blt_buf_to_vid32(this, buffer, operation, sx,
436 sy, dx, dy, width, height,
437 delta);
Mark Kettenis79f9def2021-09-25 22:47:39 +0200438 else if (vid_bpp == 30)
439 ret = gop_blt_buf_to_vid30(this, buffer, operation, sx,
440 sy, dx, dy, width, height,
441 delta);
Alexander Graf8e475062018-03-15 15:02:29 +0100442 else
443 ret = gop_blt_buf_to_vid16(this, buffer, operation, sx,
444 sy, dx, dy, width, height,
445 delta);
Alexander Grafba718e62018-03-15 15:02:28 +0100446 break;
447 case EFI_BLT_VIDEO_TO_VIDEO:
448 ret = gop_blt_vid_to_vid(this, buffer, operation, sx, sy, dx,
Alexander Graf8e475062018-03-15 15:02:29 +0100449 dy, width, height, delta, vid_bpp);
Alexander Grafba718e62018-03-15 15:02:28 +0100450 break;
451 case EFI_BLT_VIDEO_TO_BLT_BUFFER:
452 ret = gop_blt_vid_to_buf(this, buffer, operation, sx, sy, dx,
Alexander Graf8e475062018-03-15 15:02:29 +0100453 dy, width, height, delta, vid_bpp);
Alexander Grafba718e62018-03-15 15:02:28 +0100454 break;
455 default:
Heinrich Schuchardt3352b302019-06-15 12:42:46 +0200456 ret = EFI_INVALID_PARAMETER;
Alexander Grafba718e62018-03-15 15:02:28 +0100457 }
458
459 if (ret != EFI_SUCCESS)
460 return EFI_EXIT(ret);
461
Alexander Grafa8122412016-06-05 22:34:31 +0200462#ifdef CONFIG_DM_VIDEO
463 video_sync_all();
464#else
Alexander Grafbe8d3242016-03-15 18:38:21 +0100465 lcd_sync();
Alexander Grafa8122412016-06-05 22:34:31 +0200466#endif
Alexander Grafbe8d3242016-03-15 18:38:21 +0100467
468 return EFI_EXIT(EFI_SUCCESS);
469}
470
Heinrich Schuchardt80ea9b02018-03-03 15:28:55 +0100471/*
472 * Install graphical output protocol.
473 *
474 * If no supported video device exists this is not considered as an
475 * error.
476 */
477efi_status_t efi_gop_register(void)
Alexander Grafbe8d3242016-03-15 18:38:21 +0100478{
479 struct efi_gop_obj *gopobj;
Mark Kettenis01fcf0e2021-09-25 22:47:37 +0200480 u32 bpix, format, col, row;
Alexander Graf8f661a52016-06-07 00:57:05 +0200481 u64 fb_base, fb_size;
Rob Clarkca9193d2017-07-21 15:00:27 -0400482 void *fb;
Heinrich Schuchardt94493582017-11-26 14:05:14 +0100483 efi_status_t ret;
Alexander Grafbe8d3242016-03-15 18:38:21 +0100484
Alexander Grafa8122412016-06-05 22:34:31 +0200485#ifdef CONFIG_DM_VIDEO
486 struct udevice *vdev;
Heinrich Schuchardt80ea9b02018-03-03 15:28:55 +0100487 struct video_priv *priv;
Alexander Grafa8122412016-06-05 22:34:31 +0200488
489 /* We only support a single video output device for now */
Heinrich Schuchardt80ea9b02018-03-03 15:28:55 +0100490 if (uclass_first_device(UCLASS_VIDEO, &vdev) || !vdev) {
491 debug("WARNING: No video device\n");
492 return EFI_SUCCESS;
493 }
Alexander Grafa8122412016-06-05 22:34:31 +0200494
Heinrich Schuchardt80ea9b02018-03-03 15:28:55 +0100495 priv = dev_get_uclass_priv(vdev);
Alexander Grafa8122412016-06-05 22:34:31 +0200496 bpix = priv->bpix;
Mark Kettenis01fcf0e2021-09-25 22:47:37 +0200497 format = priv->format;
Alexander Grafa8122412016-06-05 22:34:31 +0200498 col = video_get_xsize(vdev);
499 row = video_get_ysize(vdev);
Alexander Graf8f661a52016-06-07 00:57:05 +0200500 fb_base = (uintptr_t)priv->fb;
501 fb_size = priv->fb_size;
Rob Clarkca9193d2017-07-21 15:00:27 -0400502 fb = priv->fb;
Alexander Grafa8122412016-06-05 22:34:31 +0200503#else
Alexander Graf8f661a52016-06-07 00:57:05 +0200504 int line_len;
Alexander Grafa8122412016-06-05 22:34:31 +0200505
506 bpix = panel_info.vl_bpix;
Mark Kettenis01fcf0e2021-09-25 22:47:37 +0200507 format = VIDEO_UNKNOWN;
Alexander Grafa8122412016-06-05 22:34:31 +0200508 col = panel_info.vl_col;
509 row = panel_info.vl_row;
Alexander Graf8f661a52016-06-07 00:57:05 +0200510 fb_base = gd->fb_base;
511 fb_size = lcd_get_size(&line_len);
Alexander Grafc1ae1a12017-07-31 09:15:57 +0200512 fb = (void*)gd->fb_base;
Alexander Grafa8122412016-06-05 22:34:31 +0200513#endif
514
515 switch (bpix) {
516#ifdef CONFIG_DM_VIDEO
517 case VIDEO_BPP16:
518 case VIDEO_BPP32:
519#else
Alexander Grafbe8d3242016-03-15 18:38:21 +0100520 case LCD_COLOR32:
521 case LCD_COLOR16:
Alexander Grafa8122412016-06-05 22:34:31 +0200522#endif
Alexander Grafbe8d3242016-03-15 18:38:21 +0100523 break;
524 default:
525 /* So far, we only work in 16 or 32 bit mode */
Heinrich Schuchardt80ea9b02018-03-03 15:28:55 +0100526 debug("WARNING: Unsupported video mode\n");
527 return EFI_SUCCESS;
Alexander Grafbe8d3242016-03-15 18:38:21 +0100528 }
529
530 gopobj = calloc(1, sizeof(*gopobj));
Heinrich Schuchardt753edb12017-10-26 19:25:45 +0200531 if (!gopobj) {
532 printf("ERROR: Out of memory\n");
Heinrich Schuchardt80ea9b02018-03-03 15:28:55 +0100533 return EFI_OUT_OF_RESOURCES;
Heinrich Schuchardt753edb12017-10-26 19:25:45 +0200534 }
Alexander Grafbe8d3242016-03-15 18:38:21 +0100535
Heinrich Schuchardt94493582017-11-26 14:05:14 +0100536 /* Hook up to the device list */
Heinrich Schuchardtd39646a2018-09-26 05:27:56 +0200537 efi_add_handle(&gopobj->header);
Heinrich Schuchardt94493582017-11-26 14:05:14 +0100538
Alexander Grafbe8d3242016-03-15 18:38:21 +0100539 /* Fill in object data */
Heinrich Schuchardtd39646a2018-09-26 05:27:56 +0200540 ret = efi_add_protocol(&gopobj->header, &efi_gop_guid,
Heinrich Schuchardt94493582017-11-26 14:05:14 +0100541 &gopobj->ops);
542 if (ret != EFI_SUCCESS) {
Heinrich Schuchardte1fec152018-10-18 21:51:38 +0200543 printf("ERROR: Failure adding GOP protocol\n");
Heinrich Schuchardt80ea9b02018-03-03 15:28:55 +0100544 return ret;
Heinrich Schuchardt94493582017-11-26 14:05:14 +0100545 }
Alexander Grafbe8d3242016-03-15 18:38:21 +0100546 gopobj->ops.query_mode = gop_query_mode;
547 gopobj->ops.set_mode = gop_set_mode;
548 gopobj->ops.blt = gop_blt;
549 gopobj->ops.mode = &gopobj->mode;
550
551 gopobj->mode.max_mode = 1;
552 gopobj->mode.info = &gopobj->info;
553 gopobj->mode.info_size = sizeof(gopobj->info);
Alexander Grafbe8d3242016-03-15 18:38:21 +0100554
Heinrich Schuchardtdb311f02019-06-15 14:52:53 +0200555 gopobj->mode.fb_base = fb_base;
556 gopobj->mode.fb_size = fb_size;
557
558 gopobj->info.version = 0;
559 gopobj->info.width = col;
560 gopobj->info.height = row;
Alexander Graf8f661a52016-06-07 00:57:05 +0200561#ifdef CONFIG_DM_VIDEO
Heinrich Schuchardt80ea9b02018-03-03 15:28:55 +0100562 if (bpix == VIDEO_BPP32)
Alexander Graf8f661a52016-06-07 00:57:05 +0200563#else
Heinrich Schuchardt80ea9b02018-03-03 15:28:55 +0100564 if (bpix == LCD_COLOR32)
Alexander Graf8f661a52016-06-07 00:57:05 +0200565#endif
Heinrich Schuchardt80ea9b02018-03-03 15:28:55 +0100566 {
Mark Kettenis01fcf0e2021-09-25 22:47:37 +0200567 if (format == VIDEO_X2R10G10B10) {
568 gopobj->info.pixel_format = EFI_GOT_BITMASK;
569 gopobj->info.pixel_bitmask[0] = 0x3ff00000; /* red */
570 gopobj->info.pixel_bitmask[1] = 0x000ffc00; /* green */
571 gopobj->info.pixel_bitmask[2] = 0x000003ff; /* blue */
572 gopobj->info.pixel_bitmask[3] = 0xc0000000; /* reserved */
573 } else {
574 gopobj->info.pixel_format = EFI_GOT_BGRA8;
575 }
Heinrich Schuchardtdb311f02019-06-15 14:52:53 +0200576 } else {
577 gopobj->info.pixel_format = EFI_GOT_BITMASK;
578 gopobj->info.pixel_bitmask[0] = 0xf800; /* red */
579 gopobj->info.pixel_bitmask[1] = 0x07e0; /* green */
580 gopobj->info.pixel_bitmask[2] = 0x001f; /* blue */
Alexander Graf8f661a52016-06-07 00:57:05 +0200581 }
Alexander Grafa8122412016-06-05 22:34:31 +0200582 gopobj->info.pixels_per_scanline = col;
Alexander Grafa8122412016-06-05 22:34:31 +0200583 gopobj->bpix = bpix;
Rob Clarkca9193d2017-07-21 15:00:27 -0400584 gopobj->fb = fb;
Alexander Grafbe8d3242016-03-15 18:38:21 +0100585
Heinrich Schuchardt80ea9b02018-03-03 15:28:55 +0100586 return EFI_SUCCESS;
Alexander Grafbe8d3242016-03-15 18:38:21 +0100587}