blob: 7370eeee37649b3f40b0fb1b7bc00f796619ed14 [file] [log] [blame]
Alexander Grafbe8d3242016-03-15 18:38:21 +01001/*
2 * EFI application disk support
3 *
4 * Copyright (c) 2016 Alexander Graf
5 *
6 * SPDX-License-Identifier: GPL-2.0+
7 */
8
9#include <common.h>
Alexander Grafa8122412016-06-05 22:34:31 +020010#include <dm.h>
Alexander Grafbe8d3242016-03-15 18:38:21 +010011#include <efi_loader.h>
12#include <inttypes.h>
13#include <lcd.h>
14#include <malloc.h>
Alexander Grafa8122412016-06-05 22:34:31 +020015#include <video.h>
Alexander Grafbe8d3242016-03-15 18:38:21 +010016
17DECLARE_GLOBAL_DATA_PTR;
18
19static const efi_guid_t efi_gop_guid = EFI_GOP_GUID;
20
21struct efi_gop_obj {
22 /* Generic EFI object parent class data */
23 struct efi_object parent;
24 /* EFI Interface callback struct for gop */
25 struct efi_gop ops;
26 /* The only mode we support */
27 struct efi_gop_mode_info info;
28 struct efi_gop_mode mode;
Alexander Grafa8122412016-06-05 22:34:31 +020029 /* Fields we only have acces to during init */
30 u32 bpix;
Rob Clarkca9193d2017-07-21 15:00:27 -040031 void *fb;
Alexander Grafbe8d3242016-03-15 18:38:21 +010032};
33
34static efi_status_t EFIAPI gop_query_mode(struct efi_gop *this, u32 mode_number,
Heinrich Schuchardt1c38a772017-10-26 19:25:51 +020035 efi_uintn_t *size_of_info,
Alexander Grafbe8d3242016-03-15 18:38:21 +010036 struct efi_gop_mode_info **info)
37{
38 struct efi_gop_obj *gopobj;
39
40 EFI_ENTRY("%p, %x, %p, %p", this, mode_number, size_of_info, info);
41
42 gopobj = container_of(this, struct efi_gop_obj, ops);
43 *size_of_info = sizeof(gopobj->info);
44 *info = &gopobj->info;
45
46 return EFI_EXIT(EFI_SUCCESS);
47}
48
49static efi_status_t EFIAPI gop_set_mode(struct efi_gop *this, u32 mode_number)
50{
51 EFI_ENTRY("%p, %x", this, mode_number);
52
53 if (mode_number != 0)
54 return EFI_EXIT(EFI_INVALID_PARAMETER);
55
56 return EFI_EXIT(EFI_SUCCESS);
57}
58
Heinrich Schuchardt1c38a772017-10-26 19:25:51 +020059efi_status_t EFIAPI gop_blt(struct efi_gop *this, void *buffer,
60 u32 operation, efi_uintn_t sx,
61 efi_uintn_t sy, efi_uintn_t dx,
62 efi_uintn_t dy, efi_uintn_t width,
63 efi_uintn_t height, efi_uintn_t delta)
Alexander Grafbe8d3242016-03-15 18:38:21 +010064{
Alexander Grafa8122412016-06-05 22:34:31 +020065 struct efi_gop_obj *gopobj = container_of(this, struct efi_gop_obj, ops);
Alexander Grafbe8d3242016-03-15 18:38:21 +010066 int i, j, line_len16, line_len32;
67 void *fb;
68
Heinrich Schuchardt1c38a772017-10-26 19:25:51 +020069 EFI_ENTRY("%p, %p, %u, %zu, %zu, %zu, %zu, %zu, %zu, %zu", this,
Alexander Grafbe8d3242016-03-15 18:38:21 +010070 buffer, operation, sx, sy, dx, dy, width, height, delta);
71
72 if (operation != EFI_BLT_BUFFER_TO_VIDEO)
73 return EFI_EXIT(EFI_INVALID_PARAMETER);
74
Rob Clarkca9193d2017-07-21 15:00:27 -040075 fb = gopobj->fb;
Alexander Grafa8122412016-06-05 22:34:31 +020076 line_len16 = gopobj->info.width * sizeof(u16);
77 line_len32 = gopobj->info.width * sizeof(u32);
Alexander Grafbe8d3242016-03-15 18:38:21 +010078
79 /* Copy the contents line by line */
80
Alexander Grafa8122412016-06-05 22:34:31 +020081 switch (gopobj->bpix) {
82#ifdef CONFIG_DM_VIDEO
83 case VIDEO_BPP32:
84#else
Alexander Grafbe8d3242016-03-15 18:38:21 +010085 case LCD_COLOR32:
Alexander Grafa8122412016-06-05 22:34:31 +020086#endif
Alexander Grafbe8d3242016-03-15 18:38:21 +010087 for (i = 0; i < height; i++) {
88 u32 *dest = fb + ((i + dy) * line_len32) +
89 (dx * sizeof(u32));
90 u32 *src = buffer + ((i + sy) * line_len32) +
91 (sx * sizeof(u32));
92
93 /* Same color format, just memcpy */
94 memcpy(dest, src, width * sizeof(u32));
95 }
96 break;
Alexander Grafa8122412016-06-05 22:34:31 +020097#ifdef CONFIG_DM_VIDEO
98 case VIDEO_BPP16:
99#else
Alexander Grafbe8d3242016-03-15 18:38:21 +0100100 case LCD_COLOR16:
Alexander Grafa8122412016-06-05 22:34:31 +0200101#endif
Alexander Grafbe8d3242016-03-15 18:38:21 +0100102 for (i = 0; i < height; i++) {
103 u16 *dest = fb + ((i + dy) * line_len16) +
104 (dx * sizeof(u16));
105 u32 *src = buffer + ((i + sy) * line_len32) +
106 (sx * sizeof(u32));
107
108 /* Convert from rgb888 to rgb565 */
109 for (j = 0; j < width; j++) {
110 u32 rgb888 = src[j];
111 dest[j] = ((((rgb888 >> (16 + 3)) & 0x1f) << 11) |
112 (((rgb888 >> (8 + 2)) & 0x3f) << 5) |
113 (((rgb888 >> (0 + 3)) & 0x1f) << 0));
114 }
115 }
116 break;
117 }
118
Alexander Grafa8122412016-06-05 22:34:31 +0200119#ifdef CONFIG_DM_VIDEO
120 video_sync_all();
121#else
Alexander Grafbe8d3242016-03-15 18:38:21 +0100122 lcd_sync();
Alexander Grafa8122412016-06-05 22:34:31 +0200123#endif
Alexander Grafbe8d3242016-03-15 18:38:21 +0100124
125 return EFI_EXIT(EFI_SUCCESS);
126}
127
128/* This gets called from do_bootefi_exec(). */
129int efi_gop_register(void)
130{
131 struct efi_gop_obj *gopobj;
Alexander Grafa8122412016-06-05 22:34:31 +0200132 u32 bpix, col, row;
Alexander Graf8f661a52016-06-07 00:57:05 +0200133 u64 fb_base, fb_size;
Rob Clarkca9193d2017-07-21 15:00:27 -0400134 void *fb;
Alexander Grafbe8d3242016-03-15 18:38:21 +0100135
Alexander Grafa8122412016-06-05 22:34:31 +0200136#ifdef CONFIG_DM_VIDEO
137 struct udevice *vdev;
138
139 /* We only support a single video output device for now */
Rob Clark3d988072017-08-04 07:52:03 -0400140 if (uclass_first_device(UCLASS_VIDEO, &vdev) || !vdev)
Alexander Grafa8122412016-06-05 22:34:31 +0200141 return -1;
142
143 struct video_priv *priv = dev_get_uclass_priv(vdev);
144 bpix = priv->bpix;
145 col = video_get_xsize(vdev);
146 row = video_get_ysize(vdev);
Alexander Graf8f661a52016-06-07 00:57:05 +0200147 fb_base = (uintptr_t)priv->fb;
148 fb_size = priv->fb_size;
Rob Clarkca9193d2017-07-21 15:00:27 -0400149 fb = priv->fb;
Alexander Grafa8122412016-06-05 22:34:31 +0200150#else
Alexander Graf8f661a52016-06-07 00:57:05 +0200151 int line_len;
Alexander Grafa8122412016-06-05 22:34:31 +0200152
153 bpix = panel_info.vl_bpix;
154 col = panel_info.vl_col;
155 row = panel_info.vl_row;
Alexander Graf8f661a52016-06-07 00:57:05 +0200156 fb_base = gd->fb_base;
157 fb_size = lcd_get_size(&line_len);
Alexander Grafc1ae1a12017-07-31 09:15:57 +0200158 fb = (void*)gd->fb_base;
Alexander Grafa8122412016-06-05 22:34:31 +0200159#endif
160
161 switch (bpix) {
162#ifdef CONFIG_DM_VIDEO
163 case VIDEO_BPP16:
164 case VIDEO_BPP32:
165#else
Alexander Grafbe8d3242016-03-15 18:38:21 +0100166 case LCD_COLOR32:
167 case LCD_COLOR16:
Alexander Grafa8122412016-06-05 22:34:31 +0200168#endif
Alexander Grafbe8d3242016-03-15 18:38:21 +0100169 break;
170 default:
171 /* So far, we only work in 16 or 32 bit mode */
172 return -1;
173 }
174
175 gopobj = calloc(1, sizeof(*gopobj));
Heinrich Schuchardt753edb12017-10-26 19:25:45 +0200176 if (!gopobj) {
177 printf("ERROR: Out of memory\n");
178 return 1;
179 }
Alexander Grafbe8d3242016-03-15 18:38:21 +0100180
181 /* Fill in object data */
182 gopobj->parent.protocols[0].guid = &efi_gop_guid;
xypron.glpk@gmx.deb5349f72017-07-11 22:06:14 +0200183 gopobj->parent.protocols[0].protocol_interface = &gopobj->ops;
Alexander Grafbe8d3242016-03-15 18:38:21 +0100184 gopobj->parent.handle = &gopobj->ops;
185 gopobj->ops.query_mode = gop_query_mode;
186 gopobj->ops.set_mode = gop_set_mode;
187 gopobj->ops.blt = gop_blt;
188 gopobj->ops.mode = &gopobj->mode;
189
190 gopobj->mode.max_mode = 1;
191 gopobj->mode.info = &gopobj->info;
192 gopobj->mode.info_size = sizeof(gopobj->info);
Alexander Grafbe8d3242016-03-15 18:38:21 +0100193
Alexander Graf8f661a52016-06-07 00:57:05 +0200194#ifdef CONFIG_DM_VIDEO
195 if (bpix == VIDEO_BPP32) {
196#else
197 if (bpix == LCD_COLOR32) {
198#endif
199 /* With 32bit color space we can directly expose the fb */
200 gopobj->mode.fb_base = fb_base;
201 gopobj->mode.fb_size = fb_size;
202 }
203
Alexander Grafbe8d3242016-03-15 18:38:21 +0100204 gopobj->info.version = 0;
Alexander Grafa8122412016-06-05 22:34:31 +0200205 gopobj->info.width = col;
206 gopobj->info.height = row;
Alexander Grafbe8d3242016-03-15 18:38:21 +0100207 gopobj->info.pixel_format = EFI_GOT_RGBA8;
Alexander Grafa8122412016-06-05 22:34:31 +0200208 gopobj->info.pixels_per_scanline = col;
209
210 gopobj->bpix = bpix;
Rob Clarkca9193d2017-07-21 15:00:27 -0400211 gopobj->fb = fb;
Alexander Grafbe8d3242016-03-15 18:38:21 +0100212
213 /* Hook up to the device list */
214 list_add_tail(&gopobj->parent.link, &efi_obj_list);
215
216 return 0;
217}