Tom Rini | f739fcd | 2018-05-07 17:02:21 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Alexander Graf | be8d324 | 2016-03-15 18:38:21 +0100 | [diff] [blame] | 2 | /* |
| 3 | * EFI application disk support |
| 4 | * |
| 5 | * Copyright (c) 2016 Alexander Graf |
Alexander Graf | be8d324 | 2016-03-15 18:38:21 +0100 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <common.h> |
Alexander Graf | a812241 | 2016-06-05 22:34:31 +0200 | [diff] [blame] | 9 | #include <dm.h> |
Alexander Graf | be8d324 | 2016-03-15 18:38:21 +0100 | [diff] [blame] | 10 | #include <efi_loader.h> |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 11 | #include <log.h> |
Alexander Graf | be8d324 | 2016-03-15 18:38:21 +0100 | [diff] [blame] | 12 | #include <malloc.h> |
Alexander Graf | a812241 | 2016-06-05 22:34:31 +0200 | [diff] [blame] | 13 | #include <video.h> |
Simon Glass | 401d1c4 | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 14 | #include <asm/global_data.h> |
Alexander Graf | be8d324 | 2016-03-15 18:38:21 +0100 | [diff] [blame] | 15 | |
| 16 | DECLARE_GLOBAL_DATA_PTR; |
| 17 | |
Heinrich Schuchardt | dec88e4 | 2019-04-20 07:39:11 +0200 | [diff] [blame] | 18 | static const efi_guid_t efi_gop_guid = EFI_GRAPHICS_OUTPUT_PROTOCOL_GUID; |
Alexander Graf | be8d324 | 2016-03-15 18:38:21 +0100 | [diff] [blame] | 19 | |
Heinrich Schuchardt | d39646a | 2018-09-26 05:27:56 +0200 | [diff] [blame] | 20 | /** |
| 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 Graf | be8d324 | 2016-03-15 18:38:21 +0100 | [diff] [blame] | 30 | struct efi_gop_obj { |
Heinrich Schuchardt | d39646a | 2018-09-26 05:27:56 +0200 | [diff] [blame] | 31 | struct efi_object header; |
Alexander Graf | be8d324 | 2016-03-15 18:38:21 +0100 | [diff] [blame] | 32 | struct efi_gop ops; |
Alexander Graf | be8d324 | 2016-03-15 18:38:21 +0100 | [diff] [blame] | 33 | struct efi_gop_mode_info info; |
| 34 | struct efi_gop_mode mode; |
Heinrich Schuchardt | d39646a | 2018-09-26 05:27:56 +0200 | [diff] [blame] | 35 | /* Fields we only have access to during init */ |
Alexander Graf | a812241 | 2016-06-05 22:34:31 +0200 | [diff] [blame] | 36 | u32 bpix; |
Rob Clark | ca9193d | 2017-07-21 15:00:27 -0400 | [diff] [blame] | 37 | void *fb; |
Alexander Graf | be8d324 | 2016-03-15 18:38:21 +0100 | [diff] [blame] | 38 | }; |
| 39 | |
| 40 | static efi_status_t EFIAPI gop_query_mode(struct efi_gop *this, u32 mode_number, |
Heinrich Schuchardt | 1c38a77 | 2017-10-26 19:25:51 +0200 | [diff] [blame] | 41 | efi_uintn_t *size_of_info, |
Alexander Graf | be8d324 | 2016-03-15 18:38:21 +0100 | [diff] [blame] | 42 | struct efi_gop_mode_info **info) |
| 43 | { |
| 44 | struct efi_gop_obj *gopobj; |
Heinrich Schuchardt | 997c2ce | 2019-06-15 12:52:35 +0200 | [diff] [blame] | 45 | efi_status_t ret = EFI_SUCCESS; |
Alexander Graf | be8d324 | 2016-03-15 18:38:21 +0100 | [diff] [blame] | 46 | |
| 47 | EFI_ENTRY("%p, %x, %p, %p", this, mode_number, size_of_info, info); |
| 48 | |
Heinrich Schuchardt | 997c2ce | 2019-06-15 12:52:35 +0200 | [diff] [blame] | 49 | if (!this || !size_of_info || !info || mode_number) { |
| 50 | ret = EFI_INVALID_PARAMETER; |
| 51 | goto out; |
| 52 | } |
| 53 | |
Alexander Graf | be8d324 | 2016-03-15 18:38:21 +0100 | [diff] [blame] | 54 | gopobj = container_of(this, struct efi_gop_obj, ops); |
Heinrich Schuchardt | 97cf208 | 2019-06-15 14:07:40 +0200 | [diff] [blame] | 55 | ret = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, sizeof(gopobj->info), |
| 56 | (void **)info); |
| 57 | if (ret != EFI_SUCCESS) |
| 58 | goto out; |
Alexander Graf | be8d324 | 2016-03-15 18:38:21 +0100 | [diff] [blame] | 59 | *size_of_info = sizeof(gopobj->info); |
Heinrich Schuchardt | 97cf208 | 2019-06-15 14:07:40 +0200 | [diff] [blame] | 60 | memcpy(*info, &gopobj->info, sizeof(gopobj->info)); |
Alexander Graf | be8d324 | 2016-03-15 18:38:21 +0100 | [diff] [blame] | 61 | |
Heinrich Schuchardt | 997c2ce | 2019-06-15 12:52:35 +0200 | [diff] [blame] | 62 | out: |
| 63 | return EFI_EXIT(ret); |
Alexander Graf | be8d324 | 2016-03-15 18:38:21 +0100 | [diff] [blame] | 64 | } |
| 65 | |
Mark Kettenis | 79f9def | 2021-09-25 22:47:39 +0200 | [diff] [blame] | 66 | static __always_inline struct efi_gop_pixel efi_vid30_to_blt_col(u32 vid) |
| 67 | { |
| 68 | struct efi_gop_pixel blt = { |
| 69 | .reserved = 0, |
| 70 | }; |
| 71 | |
| 72 | blt.blue = (vid & 0x3ff) >> 2; |
| 73 | vid >>= 10; |
| 74 | blt.green = (vid & 0x3ff) >> 2; |
| 75 | vid >>= 10; |
| 76 | blt.red = (vid & 0x3ff) >> 2; |
| 77 | return blt; |
| 78 | } |
| 79 | |
| 80 | static __always_inline u32 efi_blt_col_to_vid30(struct efi_gop_pixel *blt) |
| 81 | { |
| 82 | return (u32)(blt->red << 2) << 20 | |
| 83 | (u32)(blt->green << 2) << 10 | |
| 84 | (u32)(blt->blue << 2); |
| 85 | } |
| 86 | |
Heinrich Schuchardt | 90b658b | 2018-03-16 19:59:06 +0100 | [diff] [blame] | 87 | static __always_inline struct efi_gop_pixel efi_vid16_to_blt_col(u16 vid) |
Heinrich Schuchardt | 0e0a3ce | 2018-02-07 22:14:22 +0100 | [diff] [blame] | 88 | { |
| 89 | struct efi_gop_pixel blt = { |
| 90 | .reserved = 0, |
| 91 | }; |
| 92 | |
| 93 | blt.blue = (vid & 0x1f) << 3; |
| 94 | vid >>= 5; |
| 95 | blt.green = (vid & 0x3f) << 2; |
| 96 | vid >>= 6; |
| 97 | blt.red = (vid & 0x1f) << 3; |
| 98 | return blt; |
| 99 | } |
| 100 | |
Heinrich Schuchardt | 90b658b | 2018-03-16 19:59:06 +0100 | [diff] [blame] | 101 | static __always_inline u16 efi_blt_col_to_vid16(struct efi_gop_pixel *blt) |
Heinrich Schuchardt | 0e0a3ce | 2018-02-07 22:14:22 +0100 | [diff] [blame] | 102 | { |
| 103 | return (u16)(blt->red >> 3) << 11 | |
| 104 | (u16)(blt->green >> 2) << 5 | |
| 105 | (u16)(blt->blue >> 3); |
| 106 | } |
| 107 | |
Alexander Graf | ba718e6 | 2018-03-15 15:02:28 +0100 | [diff] [blame] | 108 | static __always_inline efi_status_t gop_blt_int(struct efi_gop *this, |
Alexander Graf | 8e47506 | 2018-03-15 15:02:29 +0100 | [diff] [blame] | 109 | struct efi_gop_pixel *bufferp, |
Alexander Graf | ba718e6 | 2018-03-15 15:02:28 +0100 | [diff] [blame] | 110 | u32 operation, efi_uintn_t sx, |
| 111 | efi_uintn_t sy, efi_uintn_t dx, |
| 112 | efi_uintn_t dy, |
| 113 | efi_uintn_t width, |
| 114 | efi_uintn_t height, |
Alexander Graf | 8e47506 | 2018-03-15 15:02:29 +0100 | [diff] [blame] | 115 | efi_uintn_t delta, |
| 116 | efi_uintn_t vid_bpp) |
Alexander Graf | be8d324 | 2016-03-15 18:38:21 +0100 | [diff] [blame] | 117 | { |
Alexander Graf | a812241 | 2016-06-05 22:34:31 +0200 | [diff] [blame] | 118 | struct efi_gop_obj *gopobj = container_of(this, struct efi_gop_obj, ops); |
Alexander Graf | 8e47506 | 2018-03-15 15:02:29 +0100 | [diff] [blame] | 119 | efi_uintn_t i, j, linelen, slineoff = 0, dlineoff, swidth, dwidth; |
Heinrich Schuchardt | 0e0a3ce | 2018-02-07 22:14:22 +0100 | [diff] [blame] | 120 | u32 *fb32 = gopobj->fb; |
| 121 | u16 *fb16 = gopobj->fb; |
Alexander Graf | 8e47506 | 2018-03-15 15:02:29 +0100 | [diff] [blame] | 122 | struct efi_gop_pixel *buffer = __builtin_assume_aligned(bufferp, 4); |
Heinrich Schuchardt | 0e0a3ce | 2018-02-07 22:14:22 +0100 | [diff] [blame] | 123 | |
Heinrich Schuchardt | 51a0f45 | 2018-03-14 19:57:02 +0100 | [diff] [blame] | 124 | if (delta) { |
| 125 | /* Check for 4 byte alignment */ |
| 126 | if (delta & 3) |
Alexander Graf | ba718e6 | 2018-03-15 15:02:28 +0100 | [diff] [blame] | 127 | return EFI_INVALID_PARAMETER; |
Heinrich Schuchardt | 51a0f45 | 2018-03-14 19:57:02 +0100 | [diff] [blame] | 128 | linelen = delta >> 2; |
| 129 | } else { |
| 130 | linelen = width; |
| 131 | } |
| 132 | |
Heinrich Schuchardt | 0e0a3ce | 2018-02-07 22:14:22 +0100 | [diff] [blame] | 133 | /* Check source rectangle */ |
| 134 | switch (operation) { |
| 135 | case EFI_BLT_VIDEO_FILL: |
Alexander Graf | be8d324 | 2016-03-15 18:38:21 +0100 | [diff] [blame] | 136 | break; |
Heinrich Schuchardt | 0e0a3ce | 2018-02-07 22:14:22 +0100 | [diff] [blame] | 137 | case EFI_BLT_BUFFER_TO_VIDEO: |
| 138 | if (sx + width > linelen) |
Alexander Graf | ba718e6 | 2018-03-15 15:02:28 +0100 | [diff] [blame] | 139 | return EFI_INVALID_PARAMETER; |
Heinrich Schuchardt | 0e0a3ce | 2018-02-07 22:14:22 +0100 | [diff] [blame] | 140 | break; |
| 141 | case EFI_BLT_VIDEO_TO_BLT_BUFFER: |
| 142 | case EFI_BLT_VIDEO_TO_VIDEO: |
| 143 | if (sx + width > gopobj->info.width || |
| 144 | sy + height > gopobj->info.height) |
Alexander Graf | ba718e6 | 2018-03-15 15:02:28 +0100 | [diff] [blame] | 145 | return EFI_INVALID_PARAMETER; |
Heinrich Schuchardt | 0e0a3ce | 2018-02-07 22:14:22 +0100 | [diff] [blame] | 146 | break; |
| 147 | default: |
Alexander Graf | ba718e6 | 2018-03-15 15:02:28 +0100 | [diff] [blame] | 148 | return EFI_INVALID_PARAMETER; |
Heinrich Schuchardt | 0e0a3ce | 2018-02-07 22:14:22 +0100 | [diff] [blame] | 149 | } |
Alexander Graf | be8d324 | 2016-03-15 18:38:21 +0100 | [diff] [blame] | 150 | |
Heinrich Schuchardt | 0e0a3ce | 2018-02-07 22:14:22 +0100 | [diff] [blame] | 151 | /* Check destination rectangle */ |
| 152 | switch (operation) { |
| 153 | case EFI_BLT_VIDEO_FILL: |
| 154 | case EFI_BLT_BUFFER_TO_VIDEO: |
| 155 | case EFI_BLT_VIDEO_TO_VIDEO: |
| 156 | if (dx + width > gopobj->info.width || |
| 157 | dy + height > gopobj->info.height) |
Alexander Graf | ba718e6 | 2018-03-15 15:02:28 +0100 | [diff] [blame] | 158 | return EFI_INVALID_PARAMETER; |
Heinrich Schuchardt | 0e0a3ce | 2018-02-07 22:14:22 +0100 | [diff] [blame] | 159 | break; |
| 160 | case EFI_BLT_VIDEO_TO_BLT_BUFFER: |
| 161 | if (dx + width > linelen) |
Alexander Graf | ba718e6 | 2018-03-15 15:02:28 +0100 | [diff] [blame] | 162 | return EFI_INVALID_PARAMETER; |
Heinrich Schuchardt | 0e0a3ce | 2018-02-07 22:14:22 +0100 | [diff] [blame] | 163 | break; |
| 164 | } |
| 165 | |
Alexander Graf | 8e47506 | 2018-03-15 15:02:29 +0100 | [diff] [blame] | 166 | /* Calculate line width */ |
| 167 | switch (operation) { |
| 168 | case EFI_BLT_BUFFER_TO_VIDEO: |
| 169 | swidth = linelen; |
| 170 | break; |
| 171 | case EFI_BLT_VIDEO_TO_BLT_BUFFER: |
| 172 | case EFI_BLT_VIDEO_TO_VIDEO: |
| 173 | swidth = gopobj->info.width; |
| 174 | if (!vid_bpp) |
| 175 | return EFI_UNSUPPORTED; |
| 176 | break; |
| 177 | case EFI_BLT_VIDEO_FILL: |
| 178 | swidth = 0; |
| 179 | break; |
| 180 | } |
| 181 | |
| 182 | switch (operation) { |
| 183 | case EFI_BLT_BUFFER_TO_VIDEO: |
| 184 | case EFI_BLT_VIDEO_FILL: |
| 185 | case EFI_BLT_VIDEO_TO_VIDEO: |
| 186 | dwidth = gopobj->info.width; |
| 187 | if (!vid_bpp) |
| 188 | return EFI_UNSUPPORTED; |
| 189 | break; |
| 190 | case EFI_BLT_VIDEO_TO_BLT_BUFFER: |
| 191 | dwidth = linelen; |
| 192 | break; |
| 193 | } |
| 194 | |
| 195 | slineoff = swidth * sy; |
| 196 | dlineoff = dwidth * dy; |
Heinrich Schuchardt | 0e0a3ce | 2018-02-07 22:14:22 +0100 | [diff] [blame] | 197 | for (i = 0; i < height; i++) { |
| 198 | for (j = 0; j < width; j++) { |
| 199 | struct efi_gop_pixel pix; |
| 200 | |
| 201 | /* Read source pixel */ |
| 202 | switch (operation) { |
| 203 | case EFI_BLT_VIDEO_FILL: |
| 204 | pix = *buffer; |
| 205 | break; |
| 206 | case EFI_BLT_BUFFER_TO_VIDEO: |
Alexander Graf | 8e47506 | 2018-03-15 15:02:29 +0100 | [diff] [blame] | 207 | pix = buffer[slineoff + j + sx]; |
Heinrich Schuchardt | 0e0a3ce | 2018-02-07 22:14:22 +0100 | [diff] [blame] | 208 | break; |
| 209 | case EFI_BLT_VIDEO_TO_BLT_BUFFER: |
| 210 | case EFI_BLT_VIDEO_TO_VIDEO: |
Alexander Graf | 8e47506 | 2018-03-15 15:02:29 +0100 | [diff] [blame] | 211 | if (vid_bpp == 32) |
Heinrich Schuchardt | 0e0a3ce | 2018-02-07 22:14:22 +0100 | [diff] [blame] | 212 | pix = *(struct efi_gop_pixel *)&fb32[ |
Alexander Graf | 8e47506 | 2018-03-15 15:02:29 +0100 | [diff] [blame] | 213 | slineoff + j + sx]; |
Mark Kettenis | 79f9def | 2021-09-25 22:47:39 +0200 | [diff] [blame] | 214 | else if (vid_bpp == 30) |
| 215 | pix = efi_vid30_to_blt_col(fb32[ |
| 216 | slineoff + j + sx]); |
Alexander Graf | 8e47506 | 2018-03-15 15:02:29 +0100 | [diff] [blame] | 217 | else |
Heinrich Schuchardt | 0e0a3ce | 2018-02-07 22:14:22 +0100 | [diff] [blame] | 218 | pix = efi_vid16_to_blt_col(fb16[ |
Alexander Graf | 8e47506 | 2018-03-15 15:02:29 +0100 | [diff] [blame] | 219 | slineoff + j + sx]); |
Heinrich Schuchardt | 0e0a3ce | 2018-02-07 22:14:22 +0100 | [diff] [blame] | 220 | break; |
| 221 | } |
| 222 | |
| 223 | /* Write destination pixel */ |
| 224 | switch (operation) { |
| 225 | case EFI_BLT_VIDEO_TO_BLT_BUFFER: |
Alexander Graf | 8e47506 | 2018-03-15 15:02:29 +0100 | [diff] [blame] | 226 | buffer[dlineoff + j + dx] = pix; |
Heinrich Schuchardt | 0e0a3ce | 2018-02-07 22:14:22 +0100 | [diff] [blame] | 227 | break; |
| 228 | case EFI_BLT_BUFFER_TO_VIDEO: |
| 229 | case EFI_BLT_VIDEO_FILL: |
| 230 | case EFI_BLT_VIDEO_TO_VIDEO: |
Alexander Graf | 8e47506 | 2018-03-15 15:02:29 +0100 | [diff] [blame] | 231 | if (vid_bpp == 32) |
| 232 | fb32[dlineoff + j + dx] = *(u32 *)&pix; |
Mark Kettenis | 79f9def | 2021-09-25 22:47:39 +0200 | [diff] [blame] | 233 | else if (vid_bpp == 30) |
| 234 | fb32[dlineoff + j + dx] = |
| 235 | efi_blt_col_to_vid30(&pix); |
Alexander Graf | 8e47506 | 2018-03-15 15:02:29 +0100 | [diff] [blame] | 236 | else |
| 237 | fb16[dlineoff + j + dx] = |
Heinrich Schuchardt | 0e0a3ce | 2018-02-07 22:14:22 +0100 | [diff] [blame] | 238 | efi_blt_col_to_vid16(&pix); |
Heinrich Schuchardt | 0e0a3ce | 2018-02-07 22:14:22 +0100 | [diff] [blame] | 239 | break; |
Alexander Graf | be8d324 | 2016-03-15 18:38:21 +0100 | [diff] [blame] | 240 | } |
| 241 | } |
Alexander Graf | 8e47506 | 2018-03-15 15:02:29 +0100 | [diff] [blame] | 242 | slineoff += swidth; |
| 243 | dlineoff += dwidth; |
Alexander Graf | be8d324 | 2016-03-15 18:38:21 +0100 | [diff] [blame] | 244 | } |
| 245 | |
Alexander Graf | ba718e6 | 2018-03-15 15:02:28 +0100 | [diff] [blame] | 246 | return EFI_SUCCESS; |
| 247 | } |
| 248 | |
Alexander Graf | 8e47506 | 2018-03-15 15:02:29 +0100 | [diff] [blame] | 249 | static efi_uintn_t gop_get_bpp(struct efi_gop *this) |
| 250 | { |
| 251 | struct efi_gop_obj *gopobj = container_of(this, struct efi_gop_obj, ops); |
| 252 | efi_uintn_t vid_bpp = 0; |
| 253 | |
| 254 | switch (gopobj->bpix) { |
Alexander Graf | 8e47506 | 2018-03-15 15:02:29 +0100 | [diff] [blame] | 255 | case VIDEO_BPP32: |
Mark Kettenis | 79f9def | 2021-09-25 22:47:39 +0200 | [diff] [blame] | 256 | if (gopobj->info.pixel_format == EFI_GOT_BGRA8) |
| 257 | vid_bpp = 32; |
| 258 | else |
| 259 | vid_bpp = 30; |
Alexander Graf | 8e47506 | 2018-03-15 15:02:29 +0100 | [diff] [blame] | 260 | break; |
Alexander Graf | 8e47506 | 2018-03-15 15:02:29 +0100 | [diff] [blame] | 261 | case VIDEO_BPP16: |
Alexander Graf | 8e47506 | 2018-03-15 15:02:29 +0100 | [diff] [blame] | 262 | vid_bpp = 16; |
| 263 | break; |
| 264 | } |
| 265 | |
| 266 | return vid_bpp; |
| 267 | } |
| 268 | |
Alexander Graf | ba718e6 | 2018-03-15 15:02:28 +0100 | [diff] [blame] | 269 | /* |
Heinrich Schuchardt | e1fec15 | 2018-10-18 21:51:38 +0200 | [diff] [blame] | 270 | * GCC can't optimize our BLT function well, but we need to make sure that |
Alexander Graf | ba718e6 | 2018-03-15 15:02:28 +0100 | [diff] [blame] | 271 | * our 2-dimensional loop gets executed very quickly, otherwise the system |
| 272 | * will feel slow. |
| 273 | * |
| 274 | * By manually putting all obvious branch targets into functions which call |
Heinrich Schuchardt | e1fec15 | 2018-10-18 21:51:38 +0200 | [diff] [blame] | 275 | * our generic BLT function with constants, the compiler can successfully |
Alexander Graf | ba718e6 | 2018-03-15 15:02:28 +0100 | [diff] [blame] | 276 | * optimize for speed. |
| 277 | */ |
| 278 | static efi_status_t gop_blt_video_fill(struct efi_gop *this, |
| 279 | struct efi_gop_pixel *buffer, |
| 280 | u32 foo, efi_uintn_t sx, |
| 281 | efi_uintn_t sy, efi_uintn_t dx, |
| 282 | efi_uintn_t dy, efi_uintn_t width, |
Alexander Graf | 8e47506 | 2018-03-15 15:02:29 +0100 | [diff] [blame] | 283 | efi_uintn_t height, efi_uintn_t delta, |
| 284 | efi_uintn_t vid_bpp) |
Alexander Graf | ba718e6 | 2018-03-15 15:02:28 +0100 | [diff] [blame] | 285 | { |
| 286 | return gop_blt_int(this, buffer, EFI_BLT_VIDEO_FILL, sx, sy, dx, |
Alexander Graf | 8e47506 | 2018-03-15 15:02:29 +0100 | [diff] [blame] | 287 | dy, width, height, delta, vid_bpp); |
Alexander Graf | ba718e6 | 2018-03-15 15:02:28 +0100 | [diff] [blame] | 288 | } |
| 289 | |
Alexander Graf | 8e47506 | 2018-03-15 15:02:29 +0100 | [diff] [blame] | 290 | static efi_status_t gop_blt_buf_to_vid16(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) |
Alexander Graf | ba718e6 | 2018-03-15 15:02:28 +0100 | [diff] [blame] | 296 | { |
| 297 | return gop_blt_int(this, buffer, EFI_BLT_BUFFER_TO_VIDEO, sx, sy, dx, |
Alexander Graf | 8e47506 | 2018-03-15 15:02:29 +0100 | [diff] [blame] | 298 | dy, width, height, delta, 16); |
| 299 | } |
| 300 | |
Mark Kettenis | 79f9def | 2021-09-25 22:47:39 +0200 | [diff] [blame] | 301 | static efi_status_t gop_blt_buf_to_vid30(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, |
| 306 | efi_uintn_t height, efi_uintn_t delta) |
| 307 | { |
| 308 | return gop_blt_int(this, buffer, EFI_BLT_BUFFER_TO_VIDEO, sx, sy, dx, |
| 309 | dy, width, height, delta, 30); |
| 310 | } |
| 311 | |
Alexander Graf | 8e47506 | 2018-03-15 15:02:29 +0100 | [diff] [blame] | 312 | static efi_status_t gop_blt_buf_to_vid32(struct efi_gop *this, |
| 313 | struct efi_gop_pixel *buffer, |
| 314 | u32 foo, efi_uintn_t sx, |
| 315 | efi_uintn_t sy, efi_uintn_t dx, |
| 316 | efi_uintn_t dy, efi_uintn_t width, |
| 317 | efi_uintn_t height, efi_uintn_t delta) |
| 318 | { |
| 319 | return gop_blt_int(this, buffer, EFI_BLT_BUFFER_TO_VIDEO, sx, sy, dx, |
| 320 | dy, width, height, delta, 32); |
Alexander Graf | ba718e6 | 2018-03-15 15:02:28 +0100 | [diff] [blame] | 321 | } |
| 322 | |
| 323 | static efi_status_t gop_blt_vid_to_vid(struct efi_gop *this, |
| 324 | struct efi_gop_pixel *buffer, |
| 325 | u32 foo, efi_uintn_t sx, |
| 326 | efi_uintn_t sy, efi_uintn_t dx, |
| 327 | efi_uintn_t dy, efi_uintn_t width, |
Alexander Graf | 8e47506 | 2018-03-15 15:02:29 +0100 | [diff] [blame] | 328 | efi_uintn_t height, efi_uintn_t delta, |
| 329 | efi_uintn_t vid_bpp) |
Alexander Graf | ba718e6 | 2018-03-15 15:02:28 +0100 | [diff] [blame] | 330 | { |
| 331 | return gop_blt_int(this, buffer, EFI_BLT_VIDEO_TO_VIDEO, sx, sy, dx, |
Alexander Graf | 8e47506 | 2018-03-15 15:02:29 +0100 | [diff] [blame] | 332 | dy, width, height, delta, vid_bpp); |
Alexander Graf | ba718e6 | 2018-03-15 15:02:28 +0100 | [diff] [blame] | 333 | } |
| 334 | |
| 335 | static efi_status_t gop_blt_vid_to_buf(struct efi_gop *this, |
| 336 | struct efi_gop_pixel *buffer, |
| 337 | u32 foo, efi_uintn_t sx, |
| 338 | efi_uintn_t sy, efi_uintn_t dx, |
| 339 | efi_uintn_t dy, efi_uintn_t width, |
Alexander Graf | 8e47506 | 2018-03-15 15:02:29 +0100 | [diff] [blame] | 340 | efi_uintn_t height, efi_uintn_t delta, |
| 341 | efi_uintn_t vid_bpp) |
Alexander Graf | ba718e6 | 2018-03-15 15:02:28 +0100 | [diff] [blame] | 342 | { |
| 343 | return gop_blt_int(this, buffer, EFI_BLT_VIDEO_TO_BLT_BUFFER, sx, sy, |
Alexander Graf | 8e47506 | 2018-03-15 15:02:29 +0100 | [diff] [blame] | 344 | dx, dy, width, height, delta, vid_bpp); |
Alexander Graf | ba718e6 | 2018-03-15 15:02:28 +0100 | [diff] [blame] | 345 | } |
| 346 | |
Heinrich Schuchardt | 40c8f11 | 2019-06-15 14:52:53 +0200 | [diff] [blame] | 347 | /** |
| 348 | * gop_set_mode() - set graphical output mode |
| 349 | * |
| 350 | * This function implements the SetMode() service. |
| 351 | * |
| 352 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 353 | * details. |
| 354 | * |
| 355 | * @this: the graphical output protocol |
Heinrich Schuchardt | fe1a81c | 2019-09-05 20:37:13 +0200 | [diff] [blame] | 356 | * @mode_number: the mode to be set |
Heinrich Schuchardt | 40c8f11 | 2019-06-15 14:52:53 +0200 | [diff] [blame] | 357 | * Return: status code |
| 358 | */ |
| 359 | static efi_status_t EFIAPI gop_set_mode(struct efi_gop *this, u32 mode_number) |
| 360 | { |
| 361 | struct efi_gop_obj *gopobj; |
| 362 | struct efi_gop_pixel buffer = {0, 0, 0, 0}; |
| 363 | efi_uintn_t vid_bpp; |
| 364 | efi_status_t ret = EFI_SUCCESS; |
| 365 | |
| 366 | EFI_ENTRY("%p, %x", this, mode_number); |
| 367 | |
| 368 | if (!this) { |
| 369 | ret = EFI_INVALID_PARAMETER; |
| 370 | goto out; |
| 371 | } |
| 372 | if (mode_number) { |
| 373 | ret = EFI_UNSUPPORTED; |
| 374 | goto out; |
| 375 | } |
| 376 | gopobj = container_of(this, struct efi_gop_obj, ops); |
| 377 | vid_bpp = gop_get_bpp(this); |
| 378 | ret = gop_blt_video_fill(this, &buffer, EFI_BLT_VIDEO_FILL, 0, 0, 0, 0, |
| 379 | gopobj->info.width, gopobj->info.height, 0, |
| 380 | vid_bpp); |
| 381 | out: |
| 382 | return EFI_EXIT(ret); |
| 383 | } |
| 384 | |
Alexander Graf | ba718e6 | 2018-03-15 15:02:28 +0100 | [diff] [blame] | 385 | /* |
| 386 | * Copy rectangle. |
| 387 | * |
| 388 | * This function implements the Blt service of the EFI_GRAPHICS_OUTPUT_PROTOCOL. |
| 389 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 390 | * details. |
| 391 | * |
| 392 | * @this: EFI_GRAPHICS_OUTPUT_PROTOCOL |
| 393 | * @buffer: pixel buffer |
| 394 | * @sx: source x-coordinate |
| 395 | * @sy: source y-coordinate |
| 396 | * @dx: destination x-coordinate |
| 397 | * @dy: destination y-coordinate |
| 398 | * @width: width of rectangle |
| 399 | * @height: height of rectangle |
| 400 | * @delta: length in bytes of a line in the pixel buffer (optional) |
Heinrich Schuchardt | 3dd719d | 2022-01-20 19:48:20 +0100 | [diff] [blame] | 401 | * Return: status code |
Alexander Graf | ba718e6 | 2018-03-15 15:02:28 +0100 | [diff] [blame] | 402 | */ |
| 403 | efi_status_t EFIAPI gop_blt(struct efi_gop *this, struct efi_gop_pixel *buffer, |
| 404 | u32 operation, efi_uintn_t sx, |
| 405 | efi_uintn_t sy, efi_uintn_t dx, |
| 406 | efi_uintn_t dy, efi_uintn_t width, |
| 407 | efi_uintn_t height, efi_uintn_t delta) |
| 408 | { |
| 409 | efi_status_t ret = EFI_INVALID_PARAMETER; |
Alexander Graf | 8e47506 | 2018-03-15 15:02:29 +0100 | [diff] [blame] | 410 | efi_uintn_t vid_bpp; |
Alexander Graf | ba718e6 | 2018-03-15 15:02:28 +0100 | [diff] [blame] | 411 | |
| 412 | EFI_ENTRY("%p, %p, %u, %zu, %zu, %zu, %zu, %zu, %zu, %zu", this, |
| 413 | buffer, operation, sx, sy, dx, dy, width, height, delta); |
| 414 | |
Alexander Graf | 8e47506 | 2018-03-15 15:02:29 +0100 | [diff] [blame] | 415 | vid_bpp = gop_get_bpp(this); |
| 416 | |
Alexander Graf | ba718e6 | 2018-03-15 15:02:28 +0100 | [diff] [blame] | 417 | /* Allow for compiler optimization */ |
| 418 | switch (operation) { |
| 419 | case EFI_BLT_VIDEO_FILL: |
| 420 | ret = gop_blt_video_fill(this, buffer, operation, sx, sy, dx, |
Alexander Graf | 8e47506 | 2018-03-15 15:02:29 +0100 | [diff] [blame] | 421 | dy, width, height, delta, vid_bpp); |
Alexander Graf | ba718e6 | 2018-03-15 15:02:28 +0100 | [diff] [blame] | 422 | break; |
| 423 | case EFI_BLT_BUFFER_TO_VIDEO: |
Alexander Graf | 8e47506 | 2018-03-15 15:02:29 +0100 | [diff] [blame] | 424 | /* This needs to be super-fast, so duplicate for 16/32bpp */ |
| 425 | if (vid_bpp == 32) |
| 426 | ret = gop_blt_buf_to_vid32(this, buffer, operation, sx, |
| 427 | sy, dx, dy, width, height, |
| 428 | delta); |
Mark Kettenis | 79f9def | 2021-09-25 22:47:39 +0200 | [diff] [blame] | 429 | else if (vid_bpp == 30) |
| 430 | ret = gop_blt_buf_to_vid30(this, buffer, operation, sx, |
| 431 | sy, dx, dy, width, height, |
| 432 | delta); |
Alexander Graf | 8e47506 | 2018-03-15 15:02:29 +0100 | [diff] [blame] | 433 | else |
| 434 | ret = gop_blt_buf_to_vid16(this, buffer, operation, sx, |
| 435 | sy, dx, dy, width, height, |
| 436 | delta); |
Alexander Graf | ba718e6 | 2018-03-15 15:02:28 +0100 | [diff] [blame] | 437 | break; |
| 438 | case EFI_BLT_VIDEO_TO_VIDEO: |
| 439 | ret = gop_blt_vid_to_vid(this, buffer, operation, sx, sy, dx, |
Alexander Graf | 8e47506 | 2018-03-15 15:02:29 +0100 | [diff] [blame] | 440 | dy, width, height, delta, vid_bpp); |
Alexander Graf | ba718e6 | 2018-03-15 15:02:28 +0100 | [diff] [blame] | 441 | break; |
| 442 | case EFI_BLT_VIDEO_TO_BLT_BUFFER: |
| 443 | ret = gop_blt_vid_to_buf(this, buffer, operation, sx, sy, dx, |
Alexander Graf | 8e47506 | 2018-03-15 15:02:29 +0100 | [diff] [blame] | 444 | dy, width, height, delta, vid_bpp); |
Alexander Graf | ba718e6 | 2018-03-15 15:02:28 +0100 | [diff] [blame] | 445 | break; |
| 446 | default: |
Heinrich Schuchardt | 3352b30 | 2019-06-15 12:42:46 +0200 | [diff] [blame] | 447 | ret = EFI_INVALID_PARAMETER; |
Alexander Graf | ba718e6 | 2018-03-15 15:02:28 +0100 | [diff] [blame] | 448 | } |
| 449 | |
| 450 | if (ret != EFI_SUCCESS) |
| 451 | return EFI_EXIT(ret); |
| 452 | |
Alexander Graf | a812241 | 2016-06-05 22:34:31 +0200 | [diff] [blame] | 453 | video_sync_all(); |
Alexander Graf | be8d324 | 2016-03-15 18:38:21 +0100 | [diff] [blame] | 454 | |
| 455 | return EFI_EXIT(EFI_SUCCESS); |
| 456 | } |
| 457 | |
Heinrich Schuchardt | 80ea9b0 | 2018-03-03 15:28:55 +0100 | [diff] [blame] | 458 | /* |
| 459 | * Install graphical output protocol. |
| 460 | * |
| 461 | * If no supported video device exists this is not considered as an |
| 462 | * error. |
| 463 | */ |
| 464 | efi_status_t efi_gop_register(void) |
Alexander Graf | be8d324 | 2016-03-15 18:38:21 +0100 | [diff] [blame] | 465 | { |
| 466 | struct efi_gop_obj *gopobj; |
Mark Kettenis | 01fcf0e | 2021-09-25 22:47:37 +0200 | [diff] [blame] | 467 | u32 bpix, format, col, row; |
Alexander Graf | 8f661a5 | 2016-06-07 00:57:05 +0200 | [diff] [blame] | 468 | u64 fb_base, fb_size; |
Rob Clark | ca9193d | 2017-07-21 15:00:27 -0400 | [diff] [blame] | 469 | void *fb; |
Heinrich Schuchardt | 9449358 | 2017-11-26 14:05:14 +0100 | [diff] [blame] | 470 | efi_status_t ret; |
Alexander Graf | a812241 | 2016-06-05 22:34:31 +0200 | [diff] [blame] | 471 | struct udevice *vdev; |
Heinrich Schuchardt | 80ea9b0 | 2018-03-03 15:28:55 +0100 | [diff] [blame] | 472 | struct video_priv *priv; |
Alexander Graf | a812241 | 2016-06-05 22:34:31 +0200 | [diff] [blame] | 473 | |
| 474 | /* We only support a single video output device for now */ |
Michal Suchanek | c726fc0 | 2022-10-12 21:57:59 +0200 | [diff] [blame] | 475 | if (uclass_first_device_err(UCLASS_VIDEO, &vdev)) { |
Heinrich Schuchardt | 80ea9b0 | 2018-03-03 15:28:55 +0100 | [diff] [blame] | 476 | debug("WARNING: No video device\n"); |
| 477 | return EFI_SUCCESS; |
| 478 | } |
Alexander Graf | a812241 | 2016-06-05 22:34:31 +0200 | [diff] [blame] | 479 | |
Heinrich Schuchardt | 80ea9b0 | 2018-03-03 15:28:55 +0100 | [diff] [blame] | 480 | priv = dev_get_uclass_priv(vdev); |
Alexander Graf | a812241 | 2016-06-05 22:34:31 +0200 | [diff] [blame] | 481 | bpix = priv->bpix; |
Mark Kettenis | 01fcf0e | 2021-09-25 22:47:37 +0200 | [diff] [blame] | 482 | format = priv->format; |
Alexander Graf | a812241 | 2016-06-05 22:34:31 +0200 | [diff] [blame] | 483 | col = video_get_xsize(vdev); |
| 484 | row = video_get_ysize(vdev); |
Alexander Graf | 8f661a5 | 2016-06-07 00:57:05 +0200 | [diff] [blame] | 485 | fb_base = (uintptr_t)priv->fb; |
| 486 | fb_size = priv->fb_size; |
Rob Clark | ca9193d | 2017-07-21 15:00:27 -0400 | [diff] [blame] | 487 | fb = priv->fb; |
Alexander Graf | a812241 | 2016-06-05 22:34:31 +0200 | [diff] [blame] | 488 | |
| 489 | switch (bpix) { |
Alexander Graf | a812241 | 2016-06-05 22:34:31 +0200 | [diff] [blame] | 490 | case VIDEO_BPP16: |
| 491 | case VIDEO_BPP32: |
Alexander Graf | be8d324 | 2016-03-15 18:38:21 +0100 | [diff] [blame] | 492 | break; |
| 493 | default: |
| 494 | /* So far, we only work in 16 or 32 bit mode */ |
Heinrich Schuchardt | 80ea9b0 | 2018-03-03 15:28:55 +0100 | [diff] [blame] | 495 | debug("WARNING: Unsupported video mode\n"); |
| 496 | return EFI_SUCCESS; |
Alexander Graf | be8d324 | 2016-03-15 18:38:21 +0100 | [diff] [blame] | 497 | } |
| 498 | |
| 499 | gopobj = calloc(1, sizeof(*gopobj)); |
Heinrich Schuchardt | 753edb1 | 2017-10-26 19:25:45 +0200 | [diff] [blame] | 500 | if (!gopobj) { |
| 501 | printf("ERROR: Out of memory\n"); |
Heinrich Schuchardt | 80ea9b0 | 2018-03-03 15:28:55 +0100 | [diff] [blame] | 502 | return EFI_OUT_OF_RESOURCES; |
Heinrich Schuchardt | 753edb1 | 2017-10-26 19:25:45 +0200 | [diff] [blame] | 503 | } |
Alexander Graf | be8d324 | 2016-03-15 18:38:21 +0100 | [diff] [blame] | 504 | |
Heinrich Schuchardt | 9449358 | 2017-11-26 14:05:14 +0100 | [diff] [blame] | 505 | /* Hook up to the device list */ |
Heinrich Schuchardt | d39646a | 2018-09-26 05:27:56 +0200 | [diff] [blame] | 506 | efi_add_handle(&gopobj->header); |
Heinrich Schuchardt | 9449358 | 2017-11-26 14:05:14 +0100 | [diff] [blame] | 507 | |
Alexander Graf | be8d324 | 2016-03-15 18:38:21 +0100 | [diff] [blame] | 508 | /* Fill in object data */ |
Heinrich Schuchardt | d39646a | 2018-09-26 05:27:56 +0200 | [diff] [blame] | 509 | ret = efi_add_protocol(&gopobj->header, &efi_gop_guid, |
Heinrich Schuchardt | 9449358 | 2017-11-26 14:05:14 +0100 | [diff] [blame] | 510 | &gopobj->ops); |
| 511 | if (ret != EFI_SUCCESS) { |
Heinrich Schuchardt | e1fec15 | 2018-10-18 21:51:38 +0200 | [diff] [blame] | 512 | printf("ERROR: Failure adding GOP protocol\n"); |
Heinrich Schuchardt | 80ea9b0 | 2018-03-03 15:28:55 +0100 | [diff] [blame] | 513 | return ret; |
Heinrich Schuchardt | 9449358 | 2017-11-26 14:05:14 +0100 | [diff] [blame] | 514 | } |
Alexander Graf | be8d324 | 2016-03-15 18:38:21 +0100 | [diff] [blame] | 515 | gopobj->ops.query_mode = gop_query_mode; |
| 516 | gopobj->ops.set_mode = gop_set_mode; |
| 517 | gopobj->ops.blt = gop_blt; |
| 518 | gopobj->ops.mode = &gopobj->mode; |
| 519 | |
| 520 | gopobj->mode.max_mode = 1; |
| 521 | gopobj->mode.info = &gopobj->info; |
| 522 | gopobj->mode.info_size = sizeof(gopobj->info); |
Alexander Graf | be8d324 | 2016-03-15 18:38:21 +0100 | [diff] [blame] | 523 | |
Heinrich Schuchardt | db311f0 | 2019-06-15 14:52:53 +0200 | [diff] [blame] | 524 | gopobj->mode.fb_base = fb_base; |
| 525 | gopobj->mode.fb_size = fb_size; |
| 526 | |
| 527 | gopobj->info.version = 0; |
| 528 | gopobj->info.width = col; |
| 529 | gopobj->info.height = row; |
Heinrich Schuchardt | 80ea9b0 | 2018-03-03 15:28:55 +0100 | [diff] [blame] | 530 | if (bpix == VIDEO_BPP32) |
Heinrich Schuchardt | 80ea9b0 | 2018-03-03 15:28:55 +0100 | [diff] [blame] | 531 | { |
Mark Kettenis | 01fcf0e | 2021-09-25 22:47:37 +0200 | [diff] [blame] | 532 | if (format == VIDEO_X2R10G10B10) { |
| 533 | gopobj->info.pixel_format = EFI_GOT_BITMASK; |
| 534 | gopobj->info.pixel_bitmask[0] = 0x3ff00000; /* red */ |
| 535 | gopobj->info.pixel_bitmask[1] = 0x000ffc00; /* green */ |
| 536 | gopobj->info.pixel_bitmask[2] = 0x000003ff; /* blue */ |
| 537 | gopobj->info.pixel_bitmask[3] = 0xc0000000; /* reserved */ |
| 538 | } else { |
| 539 | gopobj->info.pixel_format = EFI_GOT_BGRA8; |
| 540 | } |
Heinrich Schuchardt | db311f0 | 2019-06-15 14:52:53 +0200 | [diff] [blame] | 541 | } else { |
| 542 | gopobj->info.pixel_format = EFI_GOT_BITMASK; |
| 543 | gopobj->info.pixel_bitmask[0] = 0xf800; /* red */ |
| 544 | gopobj->info.pixel_bitmask[1] = 0x07e0; /* green */ |
| 545 | gopobj->info.pixel_bitmask[2] = 0x001f; /* blue */ |
Alexander Graf | 8f661a5 | 2016-06-07 00:57:05 +0200 | [diff] [blame] | 546 | } |
Alexander Graf | a812241 | 2016-06-05 22:34:31 +0200 | [diff] [blame] | 547 | gopobj->info.pixels_per_scanline = col; |
Alexander Graf | a812241 | 2016-06-05 22:34:31 +0200 | [diff] [blame] | 548 | gopobj->bpix = bpix; |
Rob Clark | ca9193d | 2017-07-21 15:00:27 -0400 | [diff] [blame] | 549 | gopobj->fb = fb; |
Alexander Graf | be8d324 | 2016-03-15 18:38:21 +0100 | [diff] [blame] | 550 | |
Heinrich Schuchardt | 80ea9b0 | 2018-03-03 15:28:55 +0100 | [diff] [blame] | 551 | return EFI_SUCCESS; |
Alexander Graf | be8d324 | 2016-03-15 18:38:21 +0100 | [diff] [blame] | 552 | } |