Linux 4.19-rc7
[linux-2.6/btrfs-unstable.git] / drivers / acpi / bgrt.c
blob75af78361ce5bd72a1305b2318aa7f3b728c367c
1 /*
2 * BGRT boot graphic support
3 * Authors: Matthew Garrett, Josh Triplett <josh@joshtriplett.org>
4 * Copyright 2012 Red Hat, Inc <mjg@redhat.com>
5 * Copyright 2012 Intel Corporation
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
12 #include <linux/kernel.h>
13 #include <linux/init.h>
14 #include <linux/device.h>
15 #include <linux/sysfs.h>
16 #include <linux/efi-bgrt.h>
18 static void *bgrt_image;
19 static struct kobject *bgrt_kobj;
21 static ssize_t show_version(struct device *dev,
22 struct device_attribute *attr, char *buf)
24 return snprintf(buf, PAGE_SIZE, "%d\n", bgrt_tab.version);
26 static DEVICE_ATTR(version, S_IRUGO, show_version, NULL);
28 static ssize_t show_status(struct device *dev,
29 struct device_attribute *attr, char *buf)
31 return snprintf(buf, PAGE_SIZE, "%d\n", bgrt_tab.status);
33 static DEVICE_ATTR(status, S_IRUGO, show_status, NULL);
35 static ssize_t show_type(struct device *dev,
36 struct device_attribute *attr, char *buf)
38 return snprintf(buf, PAGE_SIZE, "%d\n", bgrt_tab.image_type);
40 static DEVICE_ATTR(type, S_IRUGO, show_type, NULL);
42 static ssize_t show_xoffset(struct device *dev,
43 struct device_attribute *attr, char *buf)
45 return snprintf(buf, PAGE_SIZE, "%d\n", bgrt_tab.image_offset_x);
47 static DEVICE_ATTR(xoffset, S_IRUGO, show_xoffset, NULL);
49 static ssize_t show_yoffset(struct device *dev,
50 struct device_attribute *attr, char *buf)
52 return snprintf(buf, PAGE_SIZE, "%d\n", bgrt_tab.image_offset_y);
54 static DEVICE_ATTR(yoffset, S_IRUGO, show_yoffset, NULL);
56 static ssize_t image_read(struct file *file, struct kobject *kobj,
57 struct bin_attribute *attr, char *buf, loff_t off, size_t count)
59 memcpy(buf, attr->private + off, count);
60 return count;
63 static BIN_ATTR_RO(image, 0); /* size gets filled in later */
65 static struct attribute *bgrt_attributes[] = {
66 &dev_attr_version.attr,
67 &dev_attr_status.attr,
68 &dev_attr_type.attr,
69 &dev_attr_xoffset.attr,
70 &dev_attr_yoffset.attr,
71 NULL,
74 static struct bin_attribute *bgrt_bin_attributes[] = {
75 &bin_attr_image,
76 NULL,
79 static const struct attribute_group bgrt_attribute_group = {
80 .attrs = bgrt_attributes,
81 .bin_attrs = bgrt_bin_attributes,
84 int __init acpi_parse_bgrt(struct acpi_table_header *table)
86 efi_bgrt_init(table);
87 return 0;
90 static int __init bgrt_init(void)
92 int ret;
94 if (!bgrt_tab.image_address)
95 return -ENODEV;
97 bgrt_image = memremap(bgrt_tab.image_address, bgrt_image_size,
98 MEMREMAP_WB);
99 if (!bgrt_image) {
100 pr_notice("Ignoring BGRT: failed to map image memory\n");
101 return -ENOMEM;
104 bin_attr_image.private = bgrt_image;
105 bin_attr_image.size = bgrt_image_size;
107 bgrt_kobj = kobject_create_and_add("bgrt", acpi_kobj);
108 if (!bgrt_kobj) {
109 ret = -EINVAL;
110 goto out_memmap;
113 ret = sysfs_create_group(bgrt_kobj, &bgrt_attribute_group);
114 if (ret)
115 goto out_kobject;
117 return 0;
119 out_kobject:
120 kobject_put(bgrt_kobj);
121 out_memmap:
122 memunmap(bgrt_image);
123 return ret;
125 device_initcall(bgrt_init);