blob: 53f6d970f735248733c339bb1ea37e581e574d67 [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>
Alexander Grafbe8d3242016-03-15 18:38:21 +010015
16DECLARE_GLOBAL_DATA_PTR;
17
Heinrich Schuchardtdec88e42019-04-20 07:39:11 +020018static const efi_guid_t efi_gop_guid = EFI_GRAPHICS_OUTPUT_PROTOCOL_GUID;
Alexander Grafbe8d3242016-03-15 18:38:21 +010019
Heinrich Schuchardtd39646a2018-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 Grafbe8d3242016-03-15 18:38:21 +010030struct efi_gop_obj {
Heinrich Schuchardtd39646a2018-09-26 05:27:56 +020031 struct efi_object header;
Alexander Grafbe8d3242016-03-15 18:38:21 +010032 struct efi_gop ops;
Alexander Grafbe8d3242016-03-15 18:38:21 +010033 struct efi_gop_mode_info info;
34 struct efi_gop_mode mode;
Heinrich Schuchardtd39646a2018-09-26 05:27:56 +020035 /* Fields we only have access to during init */
Alexander Grafa8122412016-06-05 22:34:31 +020036 u32 bpix;
Rob Clarkca9193d2017-07-21 15:00:27 -040037 void *fb;
Alexander Grafbe8d3242016-03-15 18:38:21 +010038};
39
40static efi_status_t EFIAPI gop_query_mode(struct efi_gop *this, u32 mode_number,
Heinrich Schuchardt1c38a772017-10-26 19:25:51 +020041 efi_uintn_t *size_of_info,
Alexander Grafbe8d3242016-03-15 18:38:21 +010042 struct efi_gop_mode_info **info)
43{
44 struct efi_gop_obj *gopobj;
Heinrich Schuchardt997c2ce2019-06-15 12:52:35 +020045 efi_status_t ret = EFI_SUCCESS;
Alexander Grafbe8d3242016-03-15 18:38:21 +010046
47 EFI_ENTRY("%p, %x, %p, %p", this, mode_number, size_of_info, info);
48
Heinrich Schuchardt997c2ce2019-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 Grafbe8d3242016-03-15 18:38:21 +010054 gopobj = container_of(this, struct efi_gop_obj, ops);
Heinrich Schuchardt97cf2082019-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 Grafbe8d3242016-03-15 18:38:21 +010059 *size_of_info = sizeof(gopobj->info);
Heinrich Schuchardt97cf2082019-06-15 14:07:40 +020060 memcpy(*info, &gopobj->info, sizeof(gopobj->info));
Alexander Grafbe8d3242016-03-15 18:38:21 +010061
Heinrich Schuchardt997c2ce2019-06-15 12:52:35 +020062out:
63 return EFI_EXIT(ret);
Alexander Grafbe8d3242016-03-15 18:38:21 +010064}
65
Heinrich Schuchardt90b658b2018-03-16 19:59:06 +010066static __always_inline struct efi_gop_pixel efi_vid16_to_blt_col(u16 vid)
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +010067{
68 struct efi_gop_pixel blt = {
69 .reserved = 0,
70 };
71
72 blt.blue = (vid & 0x1f) << 3;
73 vid >>= 5;
74 blt.green = (vid & 0x3f) << 2;
75 vid >>= 6;
76 blt.red = (vid & 0x1f) << 3;
77 return blt;
78}
79
Heinrich Schuchardt90b658b2018-03-16 19:59:06 +010080static __always_inline u16 efi_blt_col_to_vid16(struct efi_gop_pixel *blt)
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +010081{
82 return (u16)(blt->red >> 3) << 11 |
83 (u16)(blt->green >> 2) << 5 |
84 (u16)(blt->blue >> 3);
85}
86
Alexander Grafba718e62018-03-15 15:02:28 +010087static __always_inline efi_status_t gop_blt_int(struct efi_gop *this,
Alexander Graf8e475062018-03-15 15:02:29 +010088 struct efi_gop_pixel *bufferp,
Alexander Grafba718e62018-03-15 15:02:28 +010089 u32 operation, efi_uintn_t sx,
90 efi_uintn_t sy, efi_uintn_t dx,
91 efi_uintn_t dy,
92 efi_uintn_t width,
93 efi_uintn_t height,
Alexander Graf8e475062018-03-15 15:02:29 +010094 efi_uintn_t delta,
95 efi_uintn_t vid_bpp)
Alexander Grafbe8d3242016-03-15 18:38:21 +010096{
Alexander Grafa8122412016-06-05 22:34:31 +020097 struct efi_gop_obj *gopobj = container_of(this, struct efi_gop_obj, ops);
Alexander Graf8e475062018-03-15 15:02:29 +010098 efi_uintn_t i, j, linelen, slineoff = 0, dlineoff, swidth, dwidth;
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +010099 u32 *fb32 = gopobj->fb;
100 u16 *fb16 = gopobj->fb;
Alexander Graf8e475062018-03-15 15:02:29 +0100101 struct efi_gop_pixel *buffer = __builtin_assume_aligned(bufferp, 4);
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +0100102
Heinrich Schuchardt51a0f452018-03-14 19:57:02 +0100103 if (delta) {
104 /* Check for 4 byte alignment */
105 if (delta & 3)
Alexander Grafba718e62018-03-15 15:02:28 +0100106 return EFI_INVALID_PARAMETER;
Heinrich Schuchardt51a0f452018-03-14 19:57:02 +0100107 linelen = delta >> 2;
108 } else {
109 linelen = width;
110 }
111
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +0100112 /* Check source rectangle */
113 switch (operation) {
114 case EFI_BLT_VIDEO_FILL:
Alexander Grafbe8d3242016-03-15 18:38:21 +0100115 break;
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +0100116 case EFI_BLT_BUFFER_TO_VIDEO:
117 if (sx + width > linelen)
Alexander Grafba718e62018-03-15 15:02:28 +0100118 return EFI_INVALID_PARAMETER;
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +0100119 break;
120 case EFI_BLT_VIDEO_TO_BLT_BUFFER:
121 case EFI_BLT_VIDEO_TO_VIDEO:
122 if (sx + width > gopobj->info.width ||
123 sy + height > gopobj->info.height)
Alexander Grafba718e62018-03-15 15:02:28 +0100124 return EFI_INVALID_PARAMETER;
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +0100125 break;
126 default:
Alexander Grafba718e62018-03-15 15:02:28 +0100127 return EFI_INVALID_PARAMETER;
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +0100128 }
Alexander Grafbe8d3242016-03-15 18:38:21 +0100129
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +0100130 /* Check destination rectangle */
131 switch (operation) {
132 case EFI_BLT_VIDEO_FILL:
133 case EFI_BLT_BUFFER_TO_VIDEO:
134 case EFI_BLT_VIDEO_TO_VIDEO:
135 if (dx + width > gopobj->info.width ||
136 dy + height > gopobj->info.height)
Alexander Grafba718e62018-03-15 15:02:28 +0100137 return EFI_INVALID_PARAMETER;
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +0100138 break;
139 case EFI_BLT_VIDEO_TO_BLT_BUFFER:
140 if (dx + width > linelen)
Alexander Grafba718e62018-03-15 15:02:28 +0100141 return EFI_INVALID_PARAMETER;
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +0100142 break;
143 }
144
Alexander Graf8e475062018-03-15 15:02:29 +0100145 /* Calculate line width */
146 switch (operation) {
147 case EFI_BLT_BUFFER_TO_VIDEO:
148 swidth = linelen;
149 break;
150 case EFI_BLT_VIDEO_TO_BLT_BUFFER:
151 case EFI_BLT_VIDEO_TO_VIDEO:
152 swidth = gopobj->info.width;
153 if (!vid_bpp)
154 return EFI_UNSUPPORTED;
155 break;
156 case EFI_BLT_VIDEO_FILL:
157 swidth = 0;
158 break;
159 }
160
161 switch (operation) {
162 case EFI_BLT_BUFFER_TO_VIDEO:
163 case EFI_BLT_VIDEO_FILL:
164 case EFI_BLT_VIDEO_TO_VIDEO:
165 dwidth = gopobj->info.width;
166 if (!vid_bpp)
167 return EFI_UNSUPPORTED;
168 break;
169 case EFI_BLT_VIDEO_TO_BLT_BUFFER:
170 dwidth = linelen;
171 break;
172 }
173
174 slineoff = swidth * sy;
175 dlineoff = dwidth * dy;
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +0100176 for (i = 0; i < height; i++) {
177 for (j = 0; j < width; j++) {
178 struct efi_gop_pixel pix;
179
180 /* Read source pixel */
181 switch (operation) {
182 case EFI_BLT_VIDEO_FILL:
183 pix = *buffer;
184 break;
185 case EFI_BLT_BUFFER_TO_VIDEO:
Alexander Graf8e475062018-03-15 15:02:29 +0100186 pix = buffer[slineoff + j + sx];
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +0100187 break;
188 case EFI_BLT_VIDEO_TO_BLT_BUFFER:
189 case EFI_BLT_VIDEO_TO_VIDEO:
Alexander Graf8e475062018-03-15 15:02:29 +0100190 if (vid_bpp == 32)
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +0100191 pix = *(struct efi_gop_pixel *)&fb32[
Alexander Graf8e475062018-03-15 15:02:29 +0100192 slineoff + j + sx];
193 else
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +0100194 pix = efi_vid16_to_blt_col(fb16[
Alexander Graf8e475062018-03-15 15:02:29 +0100195 slineoff + j + sx]);
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +0100196 break;
197 }
198
199 /* Write destination pixel */
200 switch (operation) {
201 case EFI_BLT_VIDEO_TO_BLT_BUFFER:
Alexander Graf8e475062018-03-15 15:02:29 +0100202 buffer[dlineoff + j + dx] = pix;
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +0100203 break;
204 case EFI_BLT_BUFFER_TO_VIDEO:
205 case EFI_BLT_VIDEO_FILL:
206 case EFI_BLT_VIDEO_TO_VIDEO:
Alexander Graf8e475062018-03-15 15:02:29 +0100207 if (vid_bpp == 32)
208 fb32[dlineoff + j + dx] = *(u32 *)&pix;
209 else
210 fb16[dlineoff + j + dx] =
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +0100211 efi_blt_col_to_vid16(&pix);
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +0100212 break;
Alexander Grafbe8d3242016-03-15 18:38:21 +0100213 }
214 }
Alexander Graf8e475062018-03-15 15:02:29 +0100215 slineoff += swidth;
216 dlineoff += dwidth;
Alexander Grafbe8d3242016-03-15 18:38:21 +0100217 }
218
Alexander Grafba718e62018-03-15 15:02:28 +0100219 return EFI_SUCCESS;
220}
221
Alexander Graf8e475062018-03-15 15:02:29 +0100222static efi_uintn_t gop_get_bpp(struct efi_gop *this)
223{
224 struct efi_gop_obj *gopobj = container_of(this, struct efi_gop_obj, ops);
225 efi_uintn_t vid_bpp = 0;
226
227 switch (gopobj->bpix) {
228#ifdef CONFIG_DM_VIDEO
229 case VIDEO_BPP32:
230#else
231 case LCD_COLOR32:
232#endif
233 vid_bpp = 32;
234 break;
235#ifdef CONFIG_DM_VIDEO
236 case VIDEO_BPP16:
237#else
238 case LCD_COLOR16:
239#endif
240 vid_bpp = 16;
241 break;
242 }
243
244 return vid_bpp;
245}
246
Alexander Grafba718e62018-03-15 15:02:28 +0100247/*
Heinrich Schuchardte1fec152018-10-18 21:51:38 +0200248 * GCC can't optimize our BLT function well, but we need to make sure that
Alexander Grafba718e62018-03-15 15:02:28 +0100249 * our 2-dimensional loop gets executed very quickly, otherwise the system
250 * will feel slow.
251 *
252 * By manually putting all obvious branch targets into functions which call
Heinrich Schuchardte1fec152018-10-18 21:51:38 +0200253 * our generic BLT function with constants, the compiler can successfully
Alexander Grafba718e62018-03-15 15:02:28 +0100254 * optimize for speed.
255 */
256static efi_status_t gop_blt_video_fill(struct efi_gop *this,
257 struct efi_gop_pixel *buffer,
258 u32 foo, efi_uintn_t sx,
259 efi_uintn_t sy, efi_uintn_t dx,
260 efi_uintn_t dy, efi_uintn_t width,
Alexander Graf8e475062018-03-15 15:02:29 +0100261 efi_uintn_t height, efi_uintn_t delta,
262 efi_uintn_t vid_bpp)
Alexander Grafba718e62018-03-15 15:02:28 +0100263{
264 return gop_blt_int(this, buffer, EFI_BLT_VIDEO_FILL, sx, sy, dx,
Alexander Graf8e475062018-03-15 15:02:29 +0100265 dy, width, height, delta, vid_bpp);
Alexander Grafba718e62018-03-15 15:02:28 +0100266}
267
Alexander Graf8e475062018-03-15 15:02:29 +0100268static efi_status_t gop_blt_buf_to_vid16(struct efi_gop *this,
269 struct efi_gop_pixel *buffer,
270 u32 foo, efi_uintn_t sx,
271 efi_uintn_t sy, efi_uintn_t dx,
272 efi_uintn_t dy, efi_uintn_t width,
273 efi_uintn_t height, efi_uintn_t delta)
Alexander Grafba718e62018-03-15 15:02:28 +0100274{
275 return gop_blt_int(this, buffer, EFI_BLT_BUFFER_TO_VIDEO, sx, sy, dx,
Alexander Graf8e475062018-03-15 15:02:29 +0100276 dy, width, height, delta, 16);
277}
278
279static efi_status_t gop_blt_buf_to_vid32(struct efi_gop *this,
280 struct efi_gop_pixel *buffer,
281 u32 foo, efi_uintn_t sx,
282 efi_uintn_t sy, efi_uintn_t dx,
283 efi_uintn_t dy, efi_uintn_t width,
284 efi_uintn_t height, efi_uintn_t delta)
285{
286 return gop_blt_int(this, buffer, EFI_BLT_BUFFER_TO_VIDEO, sx, sy, dx,
287 dy, width, height, delta, 32);
Alexander Grafba718e62018-03-15 15:02:28 +0100288}
289
290static efi_status_t gop_blt_vid_to_vid(struct efi_gop *this,
291 struct efi_gop_pixel *buffer,
292 u32 foo, efi_uintn_t sx,
293 efi_uintn_t sy, efi_uintn_t dx,
294 efi_uintn_t dy, efi_uintn_t width,
Alexander Graf8e475062018-03-15 15:02:29 +0100295 efi_uintn_t height, efi_uintn_t delta,
296 efi_uintn_t vid_bpp)
Alexander Grafba718e62018-03-15 15:02:28 +0100297{
298 return gop_blt_int(this, buffer, EFI_BLT_VIDEO_TO_VIDEO, sx, sy, dx,
Alexander Graf8e475062018-03-15 15:02:29 +0100299 dy, width, height, delta, vid_bpp);
Alexander Grafba718e62018-03-15 15:02:28 +0100300}
301
302static efi_status_t gop_blt_vid_to_buf(struct efi_gop *this,
303 struct efi_gop_pixel *buffer,
304 u32 foo, efi_uintn_t sx,
305 efi_uintn_t sy, efi_uintn_t dx,
306 efi_uintn_t dy, efi_uintn_t width,
Alexander Graf8e475062018-03-15 15:02:29 +0100307 efi_uintn_t height, efi_uintn_t delta,
308 efi_uintn_t vid_bpp)
Alexander Grafba718e62018-03-15 15:02:28 +0100309{
310 return gop_blt_int(this, buffer, EFI_BLT_VIDEO_TO_BLT_BUFFER, sx, sy,
Alexander Graf8e475062018-03-15 15:02:29 +0100311 dx, dy, width, height, delta, vid_bpp);
Alexander Grafba718e62018-03-15 15:02:28 +0100312}
313
Heinrich Schuchardt40c8f112019-06-15 14:52:53 +0200314/**
315 * gop_set_mode() - set graphical output mode
316 *
317 * This function implements the SetMode() service.
318 *
319 * See the Unified Extensible Firmware Interface (UEFI) specification for
320 * details.
321 *
322 * @this: the graphical output protocol
Heinrich Schuchardtfe1a81c2019-09-05 20:37:13 +0200323 * @mode_number: the mode to be set
Heinrich Schuchardt40c8f112019-06-15 14:52:53 +0200324 * Return: status code
325 */
326static efi_status_t EFIAPI gop_set_mode(struct efi_gop *this, u32 mode_number)
327{
328 struct efi_gop_obj *gopobj;
329 struct efi_gop_pixel buffer = {0, 0, 0, 0};
330 efi_uintn_t vid_bpp;
331 efi_status_t ret = EFI_SUCCESS;
332
333 EFI_ENTRY("%p, %x", this, mode_number);
334
335 if (!this) {
336 ret = EFI_INVALID_PARAMETER;
337 goto out;
338 }
339 if (mode_number) {
340 ret = EFI_UNSUPPORTED;
341 goto out;
342 }
343 gopobj = container_of(this, struct efi_gop_obj, ops);
344 vid_bpp = gop_get_bpp(this);
345 ret = gop_blt_video_fill(this, &buffer, EFI_BLT_VIDEO_FILL, 0, 0, 0, 0,
346 gopobj->info.width, gopobj->info.height, 0,
347 vid_bpp);
348out:
349 return EFI_EXIT(ret);
350}
351
Alexander Grafba718e62018-03-15 15:02:28 +0100352/*
353 * Copy rectangle.
354 *
355 * This function implements the Blt service of the EFI_GRAPHICS_OUTPUT_PROTOCOL.
356 * See the Unified Extensible Firmware Interface (UEFI) specification for
357 * details.
358 *
359 * @this: EFI_GRAPHICS_OUTPUT_PROTOCOL
360 * @buffer: pixel buffer
361 * @sx: source x-coordinate
362 * @sy: source y-coordinate
363 * @dx: destination x-coordinate
364 * @dy: destination y-coordinate
365 * @width: width of rectangle
366 * @height: height of rectangle
367 * @delta: length in bytes of a line in the pixel buffer (optional)
368 * @return: status code
369 */
370efi_status_t EFIAPI gop_blt(struct efi_gop *this, struct efi_gop_pixel *buffer,
371 u32 operation, efi_uintn_t sx,
372 efi_uintn_t sy, efi_uintn_t dx,
373 efi_uintn_t dy, efi_uintn_t width,
374 efi_uintn_t height, efi_uintn_t delta)
375{
376 efi_status_t ret = EFI_INVALID_PARAMETER;
Alexander Graf8e475062018-03-15 15:02:29 +0100377 efi_uintn_t vid_bpp;
Alexander Grafba718e62018-03-15 15:02:28 +0100378
379 EFI_ENTRY("%p, %p, %u, %zu, %zu, %zu, %zu, %zu, %zu, %zu", this,
380 buffer, operation, sx, sy, dx, dy, width, height, delta);
381
Alexander Graf8e475062018-03-15 15:02:29 +0100382 vid_bpp = gop_get_bpp(this);
383
Alexander Grafba718e62018-03-15 15:02:28 +0100384 /* Allow for compiler optimization */
385 switch (operation) {
386 case EFI_BLT_VIDEO_FILL:
387 ret = gop_blt_video_fill(this, buffer, operation, sx, sy, dx,
Alexander Graf8e475062018-03-15 15:02:29 +0100388 dy, width, height, delta, vid_bpp);
Alexander Grafba718e62018-03-15 15:02:28 +0100389 break;
390 case EFI_BLT_BUFFER_TO_VIDEO:
Alexander Graf8e475062018-03-15 15:02:29 +0100391 /* This needs to be super-fast, so duplicate for 16/32bpp */
392 if (vid_bpp == 32)
393 ret = gop_blt_buf_to_vid32(this, buffer, operation, sx,
394 sy, dx, dy, width, height,
395 delta);
396 else
397 ret = gop_blt_buf_to_vid16(this, buffer, operation, sx,
398 sy, dx, dy, width, height,
399 delta);
Alexander Grafba718e62018-03-15 15:02:28 +0100400 break;
401 case EFI_BLT_VIDEO_TO_VIDEO:
402 ret = gop_blt_vid_to_vid(this, buffer, operation, sx, sy, dx,
Alexander Graf8e475062018-03-15 15:02:29 +0100403 dy, width, height, delta, vid_bpp);
Alexander Grafba718e62018-03-15 15:02:28 +0100404 break;
405 case EFI_BLT_VIDEO_TO_BLT_BUFFER:
406 ret = gop_blt_vid_to_buf(this, buffer, operation, sx, sy, dx,
Alexander Graf8e475062018-03-15 15:02:29 +0100407 dy, width, height, delta, vid_bpp);
Alexander Grafba718e62018-03-15 15:02:28 +0100408 break;
409 default:
Heinrich Schuchardt3352b302019-06-15 12:42:46 +0200410 ret = EFI_INVALID_PARAMETER;
Alexander Grafba718e62018-03-15 15:02:28 +0100411 }
412
413 if (ret != EFI_SUCCESS)
414 return EFI_EXIT(ret);
415
Alexander Grafa8122412016-06-05 22:34:31 +0200416#ifdef CONFIG_DM_VIDEO
417 video_sync_all();
418#else
Alexander Grafbe8d3242016-03-15 18:38:21 +0100419 lcd_sync();
Alexander Grafa8122412016-06-05 22:34:31 +0200420#endif
Alexander Grafbe8d3242016-03-15 18:38:21 +0100421
422 return EFI_EXIT(EFI_SUCCESS);
423}
424
Heinrich Schuchardt80ea9b02018-03-03 15:28:55 +0100425/*
426 * Install graphical output protocol.
427 *
428 * If no supported video device exists this is not considered as an
429 * error.
430 */
431efi_status_t efi_gop_register(void)
Alexander Grafbe8d3242016-03-15 18:38:21 +0100432{
433 struct efi_gop_obj *gopobj;
Alexander Grafa8122412016-06-05 22:34:31 +0200434 u32 bpix, col, row;
Alexander Graf8f661a52016-06-07 00:57:05 +0200435 u64 fb_base, fb_size;
Rob Clarkca9193d2017-07-21 15:00:27 -0400436 void *fb;
Heinrich Schuchardt94493582017-11-26 14:05:14 +0100437 efi_status_t ret;
Alexander Grafbe8d3242016-03-15 18:38:21 +0100438
Alexander Grafa8122412016-06-05 22:34:31 +0200439#ifdef CONFIG_DM_VIDEO
440 struct udevice *vdev;
Heinrich Schuchardt80ea9b02018-03-03 15:28:55 +0100441 struct video_priv *priv;
Alexander Grafa8122412016-06-05 22:34:31 +0200442
443 /* We only support a single video output device for now */
Heinrich Schuchardt80ea9b02018-03-03 15:28:55 +0100444 if (uclass_first_device(UCLASS_VIDEO, &vdev) || !vdev) {
445 debug("WARNING: No video device\n");
446 return EFI_SUCCESS;
447 }
Alexander Grafa8122412016-06-05 22:34:31 +0200448
Heinrich Schuchardt80ea9b02018-03-03 15:28:55 +0100449 priv = dev_get_uclass_priv(vdev);
Alexander Grafa8122412016-06-05 22:34:31 +0200450 bpix = priv->bpix;
451 col = video_get_xsize(vdev);
452 row = video_get_ysize(vdev);
Alexander Graf8f661a52016-06-07 00:57:05 +0200453 fb_base = (uintptr_t)priv->fb;
454 fb_size = priv->fb_size;
Rob Clarkca9193d2017-07-21 15:00:27 -0400455 fb = priv->fb;
Alexander Grafa8122412016-06-05 22:34:31 +0200456#else
Alexander Graf8f661a52016-06-07 00:57:05 +0200457 int line_len;
Alexander Grafa8122412016-06-05 22:34:31 +0200458
459 bpix = panel_info.vl_bpix;
460 col = panel_info.vl_col;
461 row = panel_info.vl_row;
Alexander Graf8f661a52016-06-07 00:57:05 +0200462 fb_base = gd->fb_base;
463 fb_size = lcd_get_size(&line_len);
Alexander Grafc1ae1a12017-07-31 09:15:57 +0200464 fb = (void*)gd->fb_base;
Alexander Grafa8122412016-06-05 22:34:31 +0200465#endif
466
467 switch (bpix) {
468#ifdef CONFIG_DM_VIDEO
469 case VIDEO_BPP16:
470 case VIDEO_BPP32:
471#else
Alexander Grafbe8d3242016-03-15 18:38:21 +0100472 case LCD_COLOR32:
473 case LCD_COLOR16:
Alexander Grafa8122412016-06-05 22:34:31 +0200474#endif
Alexander Grafbe8d3242016-03-15 18:38:21 +0100475 break;
476 default:
477 /* So far, we only work in 16 or 32 bit mode */
Heinrich Schuchardt80ea9b02018-03-03 15:28:55 +0100478 debug("WARNING: Unsupported video mode\n");
479 return EFI_SUCCESS;
Alexander Grafbe8d3242016-03-15 18:38:21 +0100480 }
481
482 gopobj = calloc(1, sizeof(*gopobj));
Heinrich Schuchardt753edb12017-10-26 19:25:45 +0200483 if (!gopobj) {
484 printf("ERROR: Out of memory\n");
Heinrich Schuchardt80ea9b02018-03-03 15:28:55 +0100485 return EFI_OUT_OF_RESOURCES;
Heinrich Schuchardt753edb12017-10-26 19:25:45 +0200486 }
Alexander Grafbe8d3242016-03-15 18:38:21 +0100487
Heinrich Schuchardt94493582017-11-26 14:05:14 +0100488 /* Hook up to the device list */
Heinrich Schuchardtd39646a2018-09-26 05:27:56 +0200489 efi_add_handle(&gopobj->header);
Heinrich Schuchardt94493582017-11-26 14:05:14 +0100490
Alexander Grafbe8d3242016-03-15 18:38:21 +0100491 /* Fill in object data */
Heinrich Schuchardtd39646a2018-09-26 05:27:56 +0200492 ret = efi_add_protocol(&gopobj->header, &efi_gop_guid,
Heinrich Schuchardt94493582017-11-26 14:05:14 +0100493 &gopobj->ops);
494 if (ret != EFI_SUCCESS) {
Heinrich Schuchardte1fec152018-10-18 21:51:38 +0200495 printf("ERROR: Failure adding GOP protocol\n");
Heinrich Schuchardt80ea9b02018-03-03 15:28:55 +0100496 return ret;
Heinrich Schuchardt94493582017-11-26 14:05:14 +0100497 }
Alexander Grafbe8d3242016-03-15 18:38:21 +0100498 gopobj->ops.query_mode = gop_query_mode;
499 gopobj->ops.set_mode = gop_set_mode;
500 gopobj->ops.blt = gop_blt;
501 gopobj->ops.mode = &gopobj->mode;
502
503 gopobj->mode.max_mode = 1;
504 gopobj->mode.info = &gopobj->info;
505 gopobj->mode.info_size = sizeof(gopobj->info);
Alexander Grafbe8d3242016-03-15 18:38:21 +0100506
Heinrich Schuchardtdb311f02019-06-15 14:52:53 +0200507 gopobj->mode.fb_base = fb_base;
508 gopobj->mode.fb_size = fb_size;
509
510 gopobj->info.version = 0;
511 gopobj->info.width = col;
512 gopobj->info.height = row;
Alexander Graf8f661a52016-06-07 00:57:05 +0200513#ifdef CONFIG_DM_VIDEO
Heinrich Schuchardt80ea9b02018-03-03 15:28:55 +0100514 if (bpix == VIDEO_BPP32)
Alexander Graf8f661a52016-06-07 00:57:05 +0200515#else
Heinrich Schuchardt80ea9b02018-03-03 15:28:55 +0100516 if (bpix == LCD_COLOR32)
Alexander Graf8f661a52016-06-07 00:57:05 +0200517#endif
Heinrich Schuchardt80ea9b02018-03-03 15:28:55 +0100518 {
Heinrich Schuchardtdb311f02019-06-15 14:52:53 +0200519 gopobj->info.pixel_format = EFI_GOT_BGRA8;
520 } else {
521 gopobj->info.pixel_format = EFI_GOT_BITMASK;
522 gopobj->info.pixel_bitmask[0] = 0xf800; /* red */
523 gopobj->info.pixel_bitmask[1] = 0x07e0; /* green */
524 gopobj->info.pixel_bitmask[2] = 0x001f; /* blue */
Alexander Graf8f661a52016-06-07 00:57:05 +0200525 }
Alexander Grafa8122412016-06-05 22:34:31 +0200526 gopobj->info.pixels_per_scanline = col;
Alexander Grafa8122412016-06-05 22:34:31 +0200527 gopobj->bpix = bpix;
Rob Clarkca9193d2017-07-21 15:00:27 -0400528 gopobj->fb = fb;
Alexander Grafbe8d3242016-03-15 18:38:21 +0100529
Heinrich Schuchardt80ea9b02018-03-03 15:28:55 +0100530 return EFI_SUCCESS;
Alexander Grafbe8d3242016-03-15 18:38:21 +0100531}