GNU Linux-libre 4.4.285-gnu1
[releases.git] / arch / x86 / platform / efi / efi-bgrt.c
1 /*
2  * Copyright 2012 Intel Corporation
3  * Author: Josh Triplett <josh@joshtriplett.org>
4  *
5  * Based on the bgrt driver:
6  * Copyright 2012 Red Hat, Inc <mjg@redhat.com>
7  * Author: Matthew Garrett
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License version 2 as
11  * published by the Free Software Foundation.
12  */
13 #include <linux/kernel.h>
14 #include <linux/init.h>
15 #include <linux/acpi.h>
16 #include <linux/efi.h>
17 #include <linux/efi-bgrt.h>
18
19 struct acpi_table_bgrt *bgrt_tab;
20 void *__initdata bgrt_image;
21 size_t __initdata bgrt_image_size;
22
23 struct bmp_header {
24         u16 id;
25         u32 size;
26 } __packed;
27
28 void __init efi_bgrt_init(void)
29 {
30         acpi_status status;
31         void *image;
32         struct bmp_header bmp_header;
33
34         if (acpi_disabled)
35                 return;
36
37         status = acpi_get_table("BGRT", 0,
38                                 (struct acpi_table_header **)&bgrt_tab);
39         if (ACPI_FAILURE(status))
40                 return;
41
42         if (bgrt_tab->header.length < sizeof(*bgrt_tab)) {
43                 pr_err("Ignoring BGRT: invalid length %u (expected %zu)\n",
44                        bgrt_tab->header.length, sizeof(*bgrt_tab));
45                 return;
46         }
47         if (bgrt_tab->version != 1) {
48                 pr_err("Ignoring BGRT: invalid version %u (expected 1)\n",
49                        bgrt_tab->version);
50                 return;
51         }
52         if (bgrt_tab->status & 0xfe) {
53                 pr_err("Ignoring BGRT: reserved status bits are non-zero %u\n",
54                        bgrt_tab->status);
55                 return;
56         }
57         if (bgrt_tab->status != 1) {
58                 pr_debug("Ignoring BGRT: invalid status %u (expected 1)\n",
59                          bgrt_tab->status);
60                 return;
61         }
62         if (bgrt_tab->image_type != 0) {
63                 pr_err("Ignoring BGRT: invalid image type %u (expected 0)\n",
64                        bgrt_tab->image_type);
65                 return;
66         }
67         if (!bgrt_tab->image_address) {
68                 pr_err("Ignoring BGRT: null image address\n");
69                 return;
70         }
71
72         image = memremap(bgrt_tab->image_address, sizeof(bmp_header), MEMREMAP_WB);
73         if (!image) {
74                 pr_err("Ignoring BGRT: failed to map image header memory\n");
75                 return;
76         }
77
78         memcpy(&bmp_header, image, sizeof(bmp_header));
79         memunmap(image);
80         bgrt_image_size = bmp_header.size;
81
82         bgrt_image = kmalloc(bgrt_image_size, GFP_KERNEL | __GFP_NOWARN);
83         if (!bgrt_image) {
84                 pr_err("Ignoring BGRT: failed to allocate memory for image (wanted %zu bytes)\n",
85                        bgrt_image_size);
86                 return;
87         }
88
89         image = memremap(bgrt_tab->image_address, bmp_header.size, MEMREMAP_WB);
90         if (!image) {
91                 pr_err("Ignoring BGRT: failed to map image memory\n");
92                 kfree(bgrt_image);
93                 bgrt_image = NULL;
94                 return;
95         }
96
97         memcpy(bgrt_image, image, bgrt_image_size);
98         memunmap(image);
99 }