]> git.ipfire.org Git - people/ms/u-boot.git/blame - lib/efi_loader/efi_gop.c
imx: hab: Check if CSF contains deprecated commands
[people/ms/u-boot.git] / lib / efi_loader / efi_gop.c
CommitLineData
be8d3241
AG
1/*
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>
a8122410 10#include <dm.h>
be8d3241
AG
11#include <efi_loader.h>
12#include <inttypes.h>
13#include <lcd.h>
14#include <malloc.h>
a8122410 15#include <video.h>
be8d3241
AG
16
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;
a8122410
AG
29 /* Fields we only have acces to during init */
30 u32 bpix;
ca9193d2 31 void *fb;
be8d3241
AG
32};
33
34static efi_status_t EFIAPI gop_query_mode(struct efi_gop *this, u32 mode_number,
1c38a774 35 efi_uintn_t *size_of_info,
be8d3241
AG
36 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
1c38a774
HS
59efi_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)
be8d3241 64{
a8122410 65 struct efi_gop_obj *gopobj = container_of(this, struct efi_gop_obj, ops);
be8d3241
AG
66 int i, j, line_len16, line_len32;
67 void *fb;
68
1c38a774 69 EFI_ENTRY("%p, %p, %u, %zu, %zu, %zu, %zu, %zu, %zu, %zu", this,
be8d3241
AG
70 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
ca9193d2 75 fb = gopobj->fb;
a8122410
AG
76 line_len16 = gopobj->info.width * sizeof(u16);
77 line_len32 = gopobj->info.width * sizeof(u32);
be8d3241
AG
78
79 /* Copy the contents line by line */
80
a8122410
AG
81 switch (gopobj->bpix) {
82#ifdef CONFIG_DM_VIDEO
83 case VIDEO_BPP32:
84#else
be8d3241 85 case LCD_COLOR32:
a8122410 86#endif
be8d3241
AG
87 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;
a8122410
AG
97#ifdef CONFIG_DM_VIDEO
98 case VIDEO_BPP16:
99#else
be8d3241 100 case LCD_COLOR16:
a8122410 101#endif
be8d3241
AG
102 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
a8122410
AG
119#ifdef CONFIG_DM_VIDEO
120 video_sync_all();
121#else
be8d3241 122 lcd_sync();
a8122410 123#endif
be8d3241
AG
124
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;
a8122410 132 u32 bpix, col, row;
8f661a5b 133 u64 fb_base, fb_size;
ca9193d2 134 void *fb;
9449358a 135 efi_status_t ret;
be8d3241 136
a8122410
AG
137#ifdef CONFIG_DM_VIDEO
138 struct udevice *vdev;
139
140 /* We only support a single video output device for now */
3d988078 141 if (uclass_first_device(UCLASS_VIDEO, &vdev) || !vdev)
a8122410
AG
142 return -1;
143
144 struct video_priv *priv = dev_get_uclass_priv(vdev);
145 bpix = priv->bpix;
146 col = video_get_xsize(vdev);
147 row = video_get_ysize(vdev);
8f661a5b
AG
148 fb_base = (uintptr_t)priv->fb;
149 fb_size = priv->fb_size;
ca9193d2 150 fb = priv->fb;
a8122410 151#else
8f661a5b 152 int line_len;
a8122410
AG
153
154 bpix = panel_info.vl_bpix;
155 col = panel_info.vl_col;
156 row = panel_info.vl_row;
8f661a5b
AG
157 fb_base = gd->fb_base;
158 fb_size = lcd_get_size(&line_len);
c1ae1a16 159 fb = (void*)gd->fb_base;
a8122410
AG
160#endif
161
162 switch (bpix) {
163#ifdef CONFIG_DM_VIDEO
164 case VIDEO_BPP16:
165 case VIDEO_BPP32:
166#else
be8d3241
AG
167 case LCD_COLOR32:
168 case LCD_COLOR16:
a8122410 169#endif
be8d3241
AG
170 break;
171 default:
172 /* So far, we only work in 16 or 32 bit mode */
173 return -1;
174 }
175
176 gopobj = calloc(1, sizeof(*gopobj));
753edb13
HS
177 if (!gopobj) {
178 printf("ERROR: Out of memory\n");
179 return 1;
180 }
be8d3241 181
9449358a 182 /* Hook up to the device list */
44549d62 183 efi_add_handle(&gopobj->parent);
9449358a 184
be8d3241 185 /* Fill in object data */
9449358a
HS
186 ret = efi_add_protocol(gopobj->parent.handle, &efi_gop_guid,
187 &gopobj->ops);
188 if (ret != EFI_SUCCESS) {
189 printf("ERROR: Out of memory\n");
190 return 1;
191 }
be8d3241
AG
192 gopobj->ops.query_mode = gop_query_mode;
193 gopobj->ops.set_mode = gop_set_mode;
194 gopobj->ops.blt = gop_blt;
195 gopobj->ops.mode = &gopobj->mode;
196
197 gopobj->mode.max_mode = 1;
198 gopobj->mode.info = &gopobj->info;
199 gopobj->mode.info_size = sizeof(gopobj->info);
be8d3241 200
8f661a5b
AG
201#ifdef CONFIG_DM_VIDEO
202 if (bpix == VIDEO_BPP32) {
203#else
204 if (bpix == LCD_COLOR32) {
205#endif
206 /* With 32bit color space we can directly expose the fb */
207 gopobj->mode.fb_base = fb_base;
208 gopobj->mode.fb_size = fb_size;
209 }
210
be8d3241 211 gopobj->info.version = 0;
a8122410
AG
212 gopobj->info.width = col;
213 gopobj->info.height = row;
be8d3241 214 gopobj->info.pixel_format = EFI_GOT_RGBA8;
a8122410
AG
215 gopobj->info.pixels_per_scanline = col;
216
217 gopobj->bpix = bpix;
ca9193d2 218 gopobj->fb = fb;
be8d3241 219
be8d3241
AG
220 return 0;
221}