blob: 2385c0f3b13852fd72f8a08939d7556102d93d91 [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>
12#include <malloc.h>
Alexander Grafa8122412016-06-05 22:34:31 +020013#include <video.h>
Alexander Grafbe8d3242016-03-15 18:38:21 +010014
15DECLARE_GLOBAL_DATA_PTR;
16
Heinrich Schuchardtdec88e42019-04-20 07:39:11 +020017static const efi_guid_t efi_gop_guid = EFI_GRAPHICS_OUTPUT_PROTOCOL_GUID;
Alexander Grafbe8d3242016-03-15 18:38:21 +010018
Heinrich Schuchardtd39646a2018-09-26 05:27:56 +020019/**
20 * struct efi_gop_obj - graphical output protocol object
21 *
22 * @header: EFI object header
23 * @ops: graphical output protocol interface
24 * @info: graphical output mode information
25 * @mode: graphical output mode
26 * @bpix: bits per pixel
27 * @fb: frame buffer
28 */
Alexander Grafbe8d3242016-03-15 18:38:21 +010029struct efi_gop_obj {
Heinrich Schuchardtd39646a2018-09-26 05:27:56 +020030 struct efi_object header;
Alexander Grafbe8d3242016-03-15 18:38:21 +010031 struct efi_gop ops;
Alexander Grafbe8d3242016-03-15 18:38:21 +010032 struct efi_gop_mode_info info;
33 struct efi_gop_mode mode;
Heinrich Schuchardtd39646a2018-09-26 05:27:56 +020034 /* Fields we only have access to during init */
Alexander Grafa8122412016-06-05 22:34:31 +020035 u32 bpix;
Rob Clarkca9193d2017-07-21 15:00:27 -040036 void *fb;
Alexander Grafbe8d3242016-03-15 18:38:21 +010037};
38
39static efi_status_t EFIAPI gop_query_mode(struct efi_gop *this, u32 mode_number,
Heinrich Schuchardt1c38a772017-10-26 19:25:51 +020040 efi_uintn_t *size_of_info,
Alexander Grafbe8d3242016-03-15 18:38:21 +010041 struct efi_gop_mode_info **info)
42{
43 struct efi_gop_obj *gopobj;
Heinrich Schuchardt997c2ce2019-06-15 12:52:35 +020044 efi_status_t ret = EFI_SUCCESS;
Alexander Grafbe8d3242016-03-15 18:38:21 +010045
46 EFI_ENTRY("%p, %x, %p, %p", this, mode_number, size_of_info, info);
47
Heinrich Schuchardt997c2ce2019-06-15 12:52:35 +020048 if (!this || !size_of_info || !info || mode_number) {
49 ret = EFI_INVALID_PARAMETER;
50 goto out;
51 }
52
Alexander Grafbe8d3242016-03-15 18:38:21 +010053 gopobj = container_of(this, struct efi_gop_obj, ops);
Heinrich Schuchardt97cf2082019-06-15 14:07:40 +020054 ret = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, sizeof(gopobj->info),
55 (void **)info);
56 if (ret != EFI_SUCCESS)
57 goto out;
Alexander Grafbe8d3242016-03-15 18:38:21 +010058 *size_of_info = sizeof(gopobj->info);
Heinrich Schuchardt97cf2082019-06-15 14:07:40 +020059 memcpy(*info, &gopobj->info, sizeof(gopobj->info));
Alexander Grafbe8d3242016-03-15 18:38:21 +010060
Heinrich Schuchardt997c2ce2019-06-15 12:52:35 +020061out:
62 return EFI_EXIT(ret);
Alexander Grafbe8d3242016-03-15 18:38:21 +010063}
64
65static efi_status_t EFIAPI gop_set_mode(struct efi_gop *this, u32 mode_number)
66{
Heinrich Schuchardt1f7a8b32019-06-15 12:58:30 +020067 efi_status_t ret = EFI_SUCCESS;
68
Alexander Grafbe8d3242016-03-15 18:38:21 +010069 EFI_ENTRY("%p, %x", this, mode_number);
70
Heinrich Schuchardt1f7a8b32019-06-15 12:58:30 +020071 if (mode_number)
72 ret = EFI_UNSUPPORTED;
Alexander Grafbe8d3242016-03-15 18:38:21 +010073
Heinrich Schuchardt1f7a8b32019-06-15 12:58:30 +020074 return EFI_EXIT(ret);
Alexander Grafbe8d3242016-03-15 18:38:21 +010075}
76
Heinrich Schuchardt90b658b2018-03-16 19:59:06 +010077static __always_inline struct efi_gop_pixel efi_vid16_to_blt_col(u16 vid)
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +010078{
79 struct efi_gop_pixel blt = {
80 .reserved = 0,
81 };
82
83 blt.blue = (vid & 0x1f) << 3;
84 vid >>= 5;
85 blt.green = (vid & 0x3f) << 2;
86 vid >>= 6;
87 blt.red = (vid & 0x1f) << 3;
88 return blt;
89}
90
Heinrich Schuchardt90b658b2018-03-16 19:59:06 +010091static __always_inline u16 efi_blt_col_to_vid16(struct efi_gop_pixel *blt)
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +010092{
93 return (u16)(blt->red >> 3) << 11 |
94 (u16)(blt->green >> 2) << 5 |
95 (u16)(blt->blue >> 3);
96}
97
Alexander Grafba718e62018-03-15 15:02:28 +010098static __always_inline efi_status_t gop_blt_int(struct efi_gop *this,
Alexander Graf8e475062018-03-15 15:02:29 +010099 struct efi_gop_pixel *bufferp,
Alexander Grafba718e62018-03-15 15:02:28 +0100100 u32 operation, efi_uintn_t sx,
101 efi_uintn_t sy, efi_uintn_t dx,
102 efi_uintn_t dy,
103 efi_uintn_t width,
104 efi_uintn_t height,
Alexander Graf8e475062018-03-15 15:02:29 +0100105 efi_uintn_t delta,
106 efi_uintn_t vid_bpp)
Alexander Grafbe8d3242016-03-15 18:38:21 +0100107{
Alexander Grafa8122412016-06-05 22:34:31 +0200108 struct efi_gop_obj *gopobj = container_of(this, struct efi_gop_obj, ops);
Alexander Graf8e475062018-03-15 15:02:29 +0100109 efi_uintn_t i, j, linelen, slineoff = 0, dlineoff, swidth, dwidth;
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +0100110 u32 *fb32 = gopobj->fb;
111 u16 *fb16 = gopobj->fb;
Alexander Graf8e475062018-03-15 15:02:29 +0100112 struct efi_gop_pixel *buffer = __builtin_assume_aligned(bufferp, 4);
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +0100113
Heinrich Schuchardt51a0f452018-03-14 19:57:02 +0100114 if (delta) {
115 /* Check for 4 byte alignment */
116 if (delta & 3)
Alexander Grafba718e62018-03-15 15:02:28 +0100117 return EFI_INVALID_PARAMETER;
Heinrich Schuchardt51a0f452018-03-14 19:57:02 +0100118 linelen = delta >> 2;
119 } else {
120 linelen = width;
121 }
122
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +0100123 /* Check source rectangle */
124 switch (operation) {
125 case EFI_BLT_VIDEO_FILL:
Alexander Grafbe8d3242016-03-15 18:38:21 +0100126 break;
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +0100127 case EFI_BLT_BUFFER_TO_VIDEO:
128 if (sx + width > linelen)
Alexander Grafba718e62018-03-15 15:02:28 +0100129 return EFI_INVALID_PARAMETER;
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +0100130 break;
131 case EFI_BLT_VIDEO_TO_BLT_BUFFER:
132 case EFI_BLT_VIDEO_TO_VIDEO:
133 if (sx + width > gopobj->info.width ||
134 sy + height > gopobj->info.height)
Alexander Grafba718e62018-03-15 15:02:28 +0100135 return EFI_INVALID_PARAMETER;
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +0100136 break;
137 default:
Alexander Grafba718e62018-03-15 15:02:28 +0100138 return EFI_INVALID_PARAMETER;
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +0100139 }
Alexander Grafbe8d3242016-03-15 18:38:21 +0100140
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +0100141 /* Check destination rectangle */
142 switch (operation) {
143 case EFI_BLT_VIDEO_FILL:
144 case EFI_BLT_BUFFER_TO_VIDEO:
145 case EFI_BLT_VIDEO_TO_VIDEO:
146 if (dx + width > gopobj->info.width ||
147 dy + height > gopobj->info.height)
Alexander Grafba718e62018-03-15 15:02:28 +0100148 return EFI_INVALID_PARAMETER;
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +0100149 break;
150 case EFI_BLT_VIDEO_TO_BLT_BUFFER:
151 if (dx + width > linelen)
Alexander Grafba718e62018-03-15 15:02:28 +0100152 return EFI_INVALID_PARAMETER;
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +0100153 break;
154 }
155
Alexander Graf8e475062018-03-15 15:02:29 +0100156 /* Calculate line width */
157 switch (operation) {
158 case EFI_BLT_BUFFER_TO_VIDEO:
159 swidth = linelen;
160 break;
161 case EFI_BLT_VIDEO_TO_BLT_BUFFER:
162 case EFI_BLT_VIDEO_TO_VIDEO:
163 swidth = gopobj->info.width;
164 if (!vid_bpp)
165 return EFI_UNSUPPORTED;
166 break;
167 case EFI_BLT_VIDEO_FILL:
168 swidth = 0;
169 break;
170 }
171
172 switch (operation) {
173 case EFI_BLT_BUFFER_TO_VIDEO:
174 case EFI_BLT_VIDEO_FILL:
175 case EFI_BLT_VIDEO_TO_VIDEO:
176 dwidth = gopobj->info.width;
177 if (!vid_bpp)
178 return EFI_UNSUPPORTED;
179 break;
180 case EFI_BLT_VIDEO_TO_BLT_BUFFER:
181 dwidth = linelen;
182 break;
183 }
184
185 slineoff = swidth * sy;
186 dlineoff = dwidth * dy;
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +0100187 for (i = 0; i < height; i++) {
188 for (j = 0; j < width; j++) {
189 struct efi_gop_pixel pix;
190
191 /* Read source pixel */
192 switch (operation) {
193 case EFI_BLT_VIDEO_FILL:
194 pix = *buffer;
195 break;
196 case EFI_BLT_BUFFER_TO_VIDEO:
Alexander Graf8e475062018-03-15 15:02:29 +0100197 pix = buffer[slineoff + j + sx];
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +0100198 break;
199 case EFI_BLT_VIDEO_TO_BLT_BUFFER:
200 case EFI_BLT_VIDEO_TO_VIDEO:
Alexander Graf8e475062018-03-15 15:02:29 +0100201 if (vid_bpp == 32)
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +0100202 pix = *(struct efi_gop_pixel *)&fb32[
Alexander Graf8e475062018-03-15 15:02:29 +0100203 slineoff + j + sx];
204 else
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +0100205 pix = efi_vid16_to_blt_col(fb16[
Alexander Graf8e475062018-03-15 15:02:29 +0100206 slineoff + j + sx]);
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +0100207 break;
208 }
209
210 /* Write destination pixel */
211 switch (operation) {
212 case EFI_BLT_VIDEO_TO_BLT_BUFFER:
Alexander Graf8e475062018-03-15 15:02:29 +0100213 buffer[dlineoff + j + dx] = pix;
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +0100214 break;
215 case EFI_BLT_BUFFER_TO_VIDEO:
216 case EFI_BLT_VIDEO_FILL:
217 case EFI_BLT_VIDEO_TO_VIDEO:
Alexander Graf8e475062018-03-15 15:02:29 +0100218 if (vid_bpp == 32)
219 fb32[dlineoff + j + dx] = *(u32 *)&pix;
220 else
221 fb16[dlineoff + j + dx] =
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +0100222 efi_blt_col_to_vid16(&pix);
Heinrich Schuchardt0e0a3ce2018-02-07 22:14:22 +0100223 break;
Alexander Grafbe8d3242016-03-15 18:38:21 +0100224 }
225 }
Alexander Graf8e475062018-03-15 15:02:29 +0100226 slineoff += swidth;
227 dlineoff += dwidth;
Alexander Grafbe8d3242016-03-15 18:38:21 +0100228 }
229
Alexander Grafba718e62018-03-15 15:02:28 +0100230 return EFI_SUCCESS;
231}
232
Alexander Graf8e475062018-03-15 15:02:29 +0100233static efi_uintn_t gop_get_bpp(struct efi_gop *this)
234{
235 struct efi_gop_obj *gopobj = container_of(this, struct efi_gop_obj, ops);
236 efi_uintn_t vid_bpp = 0;
237
238 switch (gopobj->bpix) {
239#ifdef CONFIG_DM_VIDEO
240 case VIDEO_BPP32:
241#else
242 case LCD_COLOR32:
243#endif
244 vid_bpp = 32;
245 break;
246#ifdef CONFIG_DM_VIDEO
247 case VIDEO_BPP16:
248#else
249 case LCD_COLOR16:
250#endif
251 vid_bpp = 16;
252 break;
253 }
254
255 return vid_bpp;
256}
257
Alexander Grafba718e62018-03-15 15:02:28 +0100258/*
Heinrich Schuchardte1fec152018-10-18 21:51:38 +0200259 * GCC can't optimize our BLT function well, but we need to make sure that
Alexander Grafba718e62018-03-15 15:02:28 +0100260 * our 2-dimensional loop gets executed very quickly, otherwise the system
261 * will feel slow.
262 *
263 * By manually putting all obvious branch targets into functions which call
Heinrich Schuchardte1fec152018-10-18 21:51:38 +0200264 * our generic BLT function with constants, the compiler can successfully
Alexander Grafba718e62018-03-15 15:02:28 +0100265 * optimize for speed.
266 */
267static efi_status_t gop_blt_video_fill(struct efi_gop *this,
268 struct efi_gop_pixel *buffer,
269 u32 foo, efi_uintn_t sx,
270 efi_uintn_t sy, efi_uintn_t dx,
271 efi_uintn_t dy, efi_uintn_t width,
Alexander Graf8e475062018-03-15 15:02:29 +0100272 efi_uintn_t height, efi_uintn_t delta,
273 efi_uintn_t vid_bpp)
Alexander Grafba718e62018-03-15 15:02:28 +0100274{
275 return gop_blt_int(this, buffer, EFI_BLT_VIDEO_FILL, sx, sy, dx,
Alexander Graf8e475062018-03-15 15:02:29 +0100276 dy, width, height, delta, vid_bpp);
Alexander Grafba718e62018-03-15 15:02:28 +0100277}
278
Alexander Graf8e475062018-03-15 15:02:29 +0100279static efi_status_t gop_blt_buf_to_vid16(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)
Alexander Grafba718e62018-03-15 15:02:28 +0100285{
286 return gop_blt_int(this, buffer, EFI_BLT_BUFFER_TO_VIDEO, sx, sy, dx,
Alexander Graf8e475062018-03-15 15:02:29 +0100287 dy, width, height, delta, 16);
288}
289
290static efi_status_t gop_blt_buf_to_vid32(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,
295 efi_uintn_t height, efi_uintn_t delta)
296{
297 return gop_blt_int(this, buffer, EFI_BLT_BUFFER_TO_VIDEO, sx, sy, dx,
298 dy, width, height, delta, 32);
Alexander Grafba718e62018-03-15 15:02:28 +0100299}
300
301static efi_status_t gop_blt_vid_to_vid(struct efi_gop *this,
302 struct efi_gop_pixel *buffer,
303 u32 foo, efi_uintn_t sx,
304 efi_uintn_t sy, efi_uintn_t dx,
305 efi_uintn_t dy, efi_uintn_t width,
Alexander Graf8e475062018-03-15 15:02:29 +0100306 efi_uintn_t height, efi_uintn_t delta,
307 efi_uintn_t vid_bpp)
Alexander Grafba718e62018-03-15 15:02:28 +0100308{
309 return gop_blt_int(this, buffer, EFI_BLT_VIDEO_TO_VIDEO, sx, sy, dx,
Alexander Graf8e475062018-03-15 15:02:29 +0100310 dy, width, height, delta, vid_bpp);
Alexander Grafba718e62018-03-15 15:02:28 +0100311}
312
313static efi_status_t gop_blt_vid_to_buf(struct efi_gop *this,
314 struct efi_gop_pixel *buffer,
315 u32 foo, efi_uintn_t sx,
316 efi_uintn_t sy, efi_uintn_t dx,
317 efi_uintn_t dy, efi_uintn_t width,
Alexander Graf8e475062018-03-15 15:02:29 +0100318 efi_uintn_t height, efi_uintn_t delta,
319 efi_uintn_t vid_bpp)
Alexander Grafba718e62018-03-15 15:02:28 +0100320{
321 return gop_blt_int(this, buffer, EFI_BLT_VIDEO_TO_BLT_BUFFER, sx, sy,
Alexander Graf8e475062018-03-15 15:02:29 +0100322 dx, dy, width, height, delta, vid_bpp);
Alexander Grafba718e62018-03-15 15:02:28 +0100323}
324
325/*
326 * Copy rectangle.
327 *
328 * This function implements the Blt service of the EFI_GRAPHICS_OUTPUT_PROTOCOL.
329 * See the Unified Extensible Firmware Interface (UEFI) specification for
330 * details.
331 *
332 * @this: EFI_GRAPHICS_OUTPUT_PROTOCOL
333 * @buffer: pixel buffer
334 * @sx: source x-coordinate
335 * @sy: source y-coordinate
336 * @dx: destination x-coordinate
337 * @dy: destination y-coordinate
338 * @width: width of rectangle
339 * @height: height of rectangle
340 * @delta: length in bytes of a line in the pixel buffer (optional)
341 * @return: status code
342 */
343efi_status_t EFIAPI gop_blt(struct efi_gop *this, struct efi_gop_pixel *buffer,
344 u32 operation, efi_uintn_t sx,
345 efi_uintn_t sy, efi_uintn_t dx,
346 efi_uintn_t dy, efi_uintn_t width,
347 efi_uintn_t height, efi_uintn_t delta)
348{
349 efi_status_t ret = EFI_INVALID_PARAMETER;
Alexander Graf8e475062018-03-15 15:02:29 +0100350 efi_uintn_t vid_bpp;
Alexander Grafba718e62018-03-15 15:02:28 +0100351
352 EFI_ENTRY("%p, %p, %u, %zu, %zu, %zu, %zu, %zu, %zu, %zu", this,
353 buffer, operation, sx, sy, dx, dy, width, height, delta);
354
Alexander Graf8e475062018-03-15 15:02:29 +0100355 vid_bpp = gop_get_bpp(this);
356
Alexander Grafba718e62018-03-15 15:02:28 +0100357 /* Allow for compiler optimization */
358 switch (operation) {
359 case EFI_BLT_VIDEO_FILL:
360 ret = gop_blt_video_fill(this, buffer, operation, sx, sy, dx,
Alexander Graf8e475062018-03-15 15:02:29 +0100361 dy, width, height, delta, vid_bpp);
Alexander Grafba718e62018-03-15 15:02:28 +0100362 break;
363 case EFI_BLT_BUFFER_TO_VIDEO:
Alexander Graf8e475062018-03-15 15:02:29 +0100364 /* This needs to be super-fast, so duplicate for 16/32bpp */
365 if (vid_bpp == 32)
366 ret = gop_blt_buf_to_vid32(this, buffer, operation, sx,
367 sy, dx, dy, width, height,
368 delta);
369 else
370 ret = gop_blt_buf_to_vid16(this, buffer, operation, sx,
371 sy, dx, dy, width, height,
372 delta);
Alexander Grafba718e62018-03-15 15:02:28 +0100373 break;
374 case EFI_BLT_VIDEO_TO_VIDEO:
375 ret = gop_blt_vid_to_vid(this, buffer, operation, sx, sy, dx,
Alexander Graf8e475062018-03-15 15:02:29 +0100376 dy, width, height, delta, vid_bpp);
Alexander Grafba718e62018-03-15 15:02:28 +0100377 break;
378 case EFI_BLT_VIDEO_TO_BLT_BUFFER:
379 ret = gop_blt_vid_to_buf(this, buffer, operation, sx, sy, dx,
Alexander Graf8e475062018-03-15 15:02:29 +0100380 dy, width, height, delta, vid_bpp);
Alexander Grafba718e62018-03-15 15:02:28 +0100381 break;
382 default:
Heinrich Schuchardt3352b302019-06-15 12:42:46 +0200383 ret = EFI_INVALID_PARAMETER;
Alexander Grafba718e62018-03-15 15:02:28 +0100384 }
385
386 if (ret != EFI_SUCCESS)
387 return EFI_EXIT(ret);
388
Alexander Grafa8122412016-06-05 22:34:31 +0200389#ifdef CONFIG_DM_VIDEO
390 video_sync_all();
391#else
Alexander Grafbe8d3242016-03-15 18:38:21 +0100392 lcd_sync();
Alexander Grafa8122412016-06-05 22:34:31 +0200393#endif
Alexander Grafbe8d3242016-03-15 18:38:21 +0100394
395 return EFI_EXIT(EFI_SUCCESS);
396}
397
Heinrich Schuchardt80ea9b02018-03-03 15:28:55 +0100398/*
399 * Install graphical output protocol.
400 *
401 * If no supported video device exists this is not considered as an
402 * error.
403 */
404efi_status_t efi_gop_register(void)
Alexander Grafbe8d3242016-03-15 18:38:21 +0100405{
406 struct efi_gop_obj *gopobj;
Alexander Grafa8122412016-06-05 22:34:31 +0200407 u32 bpix, col, row;
Alexander Graf8f661a52016-06-07 00:57:05 +0200408 u64 fb_base, fb_size;
Rob Clarkca9193d2017-07-21 15:00:27 -0400409 void *fb;
Heinrich Schuchardt94493582017-11-26 14:05:14 +0100410 efi_status_t ret;
Alexander Grafbe8d3242016-03-15 18:38:21 +0100411
Alexander Grafa8122412016-06-05 22:34:31 +0200412#ifdef CONFIG_DM_VIDEO
413 struct udevice *vdev;
Heinrich Schuchardt80ea9b02018-03-03 15:28:55 +0100414 struct video_priv *priv;
Alexander Grafa8122412016-06-05 22:34:31 +0200415
416 /* We only support a single video output device for now */
Heinrich Schuchardt80ea9b02018-03-03 15:28:55 +0100417 if (uclass_first_device(UCLASS_VIDEO, &vdev) || !vdev) {
418 debug("WARNING: No video device\n");
419 return EFI_SUCCESS;
420 }
Alexander Grafa8122412016-06-05 22:34:31 +0200421
Heinrich Schuchardt80ea9b02018-03-03 15:28:55 +0100422 priv = dev_get_uclass_priv(vdev);
Alexander Grafa8122412016-06-05 22:34:31 +0200423 bpix = priv->bpix;
424 col = video_get_xsize(vdev);
425 row = video_get_ysize(vdev);
Alexander Graf8f661a52016-06-07 00:57:05 +0200426 fb_base = (uintptr_t)priv->fb;
427 fb_size = priv->fb_size;
Rob Clarkca9193d2017-07-21 15:00:27 -0400428 fb = priv->fb;
Alexander Grafa8122412016-06-05 22:34:31 +0200429#else
Alexander Graf8f661a52016-06-07 00:57:05 +0200430 int line_len;
Alexander Grafa8122412016-06-05 22:34:31 +0200431
432 bpix = panel_info.vl_bpix;
433 col = panel_info.vl_col;
434 row = panel_info.vl_row;
Alexander Graf8f661a52016-06-07 00:57:05 +0200435 fb_base = gd->fb_base;
436 fb_size = lcd_get_size(&line_len);
Alexander Grafc1ae1a12017-07-31 09:15:57 +0200437 fb = (void*)gd->fb_base;
Alexander Grafa8122412016-06-05 22:34:31 +0200438#endif
439
440 switch (bpix) {
441#ifdef CONFIG_DM_VIDEO
442 case VIDEO_BPP16:
443 case VIDEO_BPP32:
444#else
Alexander Grafbe8d3242016-03-15 18:38:21 +0100445 case LCD_COLOR32:
446 case LCD_COLOR16:
Alexander Grafa8122412016-06-05 22:34:31 +0200447#endif
Alexander Grafbe8d3242016-03-15 18:38:21 +0100448 break;
449 default:
450 /* So far, we only work in 16 or 32 bit mode */
Heinrich Schuchardt80ea9b02018-03-03 15:28:55 +0100451 debug("WARNING: Unsupported video mode\n");
452 return EFI_SUCCESS;
Alexander Grafbe8d3242016-03-15 18:38:21 +0100453 }
454
455 gopobj = calloc(1, sizeof(*gopobj));
Heinrich Schuchardt753edb12017-10-26 19:25:45 +0200456 if (!gopobj) {
457 printf("ERROR: Out of memory\n");
Heinrich Schuchardt80ea9b02018-03-03 15:28:55 +0100458 return EFI_OUT_OF_RESOURCES;
Heinrich Schuchardt753edb12017-10-26 19:25:45 +0200459 }
Alexander Grafbe8d3242016-03-15 18:38:21 +0100460
Heinrich Schuchardt94493582017-11-26 14:05:14 +0100461 /* Hook up to the device list */
Heinrich Schuchardtd39646a2018-09-26 05:27:56 +0200462 efi_add_handle(&gopobj->header);
Heinrich Schuchardt94493582017-11-26 14:05:14 +0100463
Alexander Grafbe8d3242016-03-15 18:38:21 +0100464 /* Fill in object data */
Heinrich Schuchardtd39646a2018-09-26 05:27:56 +0200465 ret = efi_add_protocol(&gopobj->header, &efi_gop_guid,
Heinrich Schuchardt94493582017-11-26 14:05:14 +0100466 &gopobj->ops);
467 if (ret != EFI_SUCCESS) {
Heinrich Schuchardte1fec152018-10-18 21:51:38 +0200468 printf("ERROR: Failure adding GOP protocol\n");
Heinrich Schuchardt80ea9b02018-03-03 15:28:55 +0100469 return ret;
Heinrich Schuchardt94493582017-11-26 14:05:14 +0100470 }
Alexander Grafbe8d3242016-03-15 18:38:21 +0100471 gopobj->ops.query_mode = gop_query_mode;
472 gopobj->ops.set_mode = gop_set_mode;
473 gopobj->ops.blt = gop_blt;
474 gopobj->ops.mode = &gopobj->mode;
475
476 gopobj->mode.max_mode = 1;
477 gopobj->mode.info = &gopobj->info;
478 gopobj->mode.info_size = sizeof(gopobj->info);
Alexander Grafbe8d3242016-03-15 18:38:21 +0100479
Alexander Graf8f661a52016-06-07 00:57:05 +0200480#ifdef CONFIG_DM_VIDEO
Heinrich Schuchardt80ea9b02018-03-03 15:28:55 +0100481 if (bpix == VIDEO_BPP32)
Alexander Graf8f661a52016-06-07 00:57:05 +0200482#else
Heinrich Schuchardt80ea9b02018-03-03 15:28:55 +0100483 if (bpix == LCD_COLOR32)
Alexander Graf8f661a52016-06-07 00:57:05 +0200484#endif
Heinrich Schuchardt80ea9b02018-03-03 15:28:55 +0100485 {
Heinrich Schuchardte1fec152018-10-18 21:51:38 +0200486 /*
487 * With 32bit color space we can directly expose the frame
488 * buffer
489 */
Alexander Graf8f661a52016-06-07 00:57:05 +0200490 gopobj->mode.fb_base = fb_base;
491 gopobj->mode.fb_size = fb_size;
492 }
493
Alexander Grafbe8d3242016-03-15 18:38:21 +0100494 gopobj->info.version = 0;
Alexander Grafa8122412016-06-05 22:34:31 +0200495 gopobj->info.width = col;
496 gopobj->info.height = row;
Alexander Graf6fc2c702018-06-19 13:34:54 +0200497 gopobj->info.pixel_format = EFI_GOT_BGRA8;
Alexander Grafa8122412016-06-05 22:34:31 +0200498 gopobj->info.pixels_per_scanline = col;
499
500 gopobj->bpix = bpix;
Rob Clarkca9193d2017-07-21 15:00:27 -0400501 gopobj->fb = fb;
Alexander Grafbe8d3242016-03-15 18:38:21 +0100502
Heinrich Schuchardt80ea9b02018-03-03 15:28:55 +0100503 return EFI_SUCCESS;
Alexander Grafbe8d3242016-03-15 18:38:21 +0100504}