blob: a83e3c62c5a9d04e57a0fc644598d6e41d42c290 [file] [log] [blame]
Matthew Garrettd1ff4b12012-01-31 13:19:20 -05001/*
2 * Copyright 2012 Red Hat, Inc <mjg@redhat.com>
Josh Triplett2223af32012-09-28 17:57:05 -07003 * Copyright 2012 Intel Corporation
Matthew Garrettd1ff4b12012-01-31 13:19:20 -05004 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 */
9
10#include <linux/kernel.h>
11#include <linux/module.h>
12#include <linux/init.h>
13#include <linux/device.h>
14#include <linux/sysfs.h>
Josh Triplett2223af32012-09-28 17:57:05 -070015#include <linux/efi-bgrt.h>
Matthew Garrettd1ff4b12012-01-31 13:19:20 -050016
Matthew Garrettd1ff4b12012-01-31 13:19:20 -050017static struct kobject *bgrt_kobj;
18
Matthew Garrettd1ff4b12012-01-31 13:19:20 -050019static ssize_t show_version(struct device *dev,
20 struct device_attribute *attr, char *buf)
21{
22 return snprintf(buf, PAGE_SIZE, "%d\n", bgrt_tab->version);
23}
24static DEVICE_ATTR(version, S_IRUGO, show_version, NULL);
25
26static ssize_t show_status(struct device *dev,
27 struct device_attribute *attr, char *buf)
28{
29 return snprintf(buf, PAGE_SIZE, "%d\n", bgrt_tab->status);
30}
31static DEVICE_ATTR(status, S_IRUGO, show_status, NULL);
32
33static ssize_t show_type(struct device *dev,
34 struct device_attribute *attr, char *buf)
35{
36 return snprintf(buf, PAGE_SIZE, "%d\n", bgrt_tab->image_type);
37}
38static DEVICE_ATTR(type, S_IRUGO, show_type, NULL);
39
40static ssize_t show_xoffset(struct device *dev,
41 struct device_attribute *attr, char *buf)
42{
43 return snprintf(buf, PAGE_SIZE, "%d\n", bgrt_tab->image_offset_x);
44}
45static DEVICE_ATTR(xoffset, S_IRUGO, show_xoffset, NULL);
46
47static ssize_t show_yoffset(struct device *dev,
48 struct device_attribute *attr, char *buf)
49{
50 return snprintf(buf, PAGE_SIZE, "%d\n", bgrt_tab->image_offset_y);
51}
52static DEVICE_ATTR(yoffset, S_IRUGO, show_yoffset, NULL);
53
Greg KH65f44672013-08-20 17:11:49 -070054static ssize_t image_read(struct file *file, struct kobject *kobj,
Matthew Garrettd1ff4b12012-01-31 13:19:20 -050055 struct bin_attribute *attr, char *buf, loff_t off, size_t count)
56{
Josh Triplett2223af32012-09-28 17:57:05 -070057 memcpy(buf, attr->private + off, count);
Matthew Garrettd1ff4b12012-01-31 13:19:20 -050058 return count;
59}
60
Greg KH65f44672013-08-20 17:11:49 -070061static BIN_ATTR_RO(image, 0); /* size gets filled in later */
Matthew Garrettd1ff4b12012-01-31 13:19:20 -050062
63static struct attribute *bgrt_attributes[] = {
64 &dev_attr_version.attr,
65 &dev_attr_status.attr,
66 &dev_attr_type.attr,
67 &dev_attr_xoffset.attr,
68 &dev_attr_yoffset.attr,
69 NULL,
70};
71
Greg KH65f44672013-08-20 17:11:49 -070072static struct bin_attribute *bgrt_bin_attributes[] = {
73 &bin_attr_image,
74 NULL,
75};
76
Matthew Garrettd1ff4b12012-01-31 13:19:20 -050077static struct attribute_group bgrt_attribute_group = {
78 .attrs = bgrt_attributes,
Greg KH65f44672013-08-20 17:11:49 -070079 .bin_attrs = bgrt_bin_attributes,
Matthew Garrettd1ff4b12012-01-31 13:19:20 -050080};
81
82static int __init bgrt_init(void)
83{
Matthew Garrettd1ff4b12012-01-31 13:19:20 -050084 int ret;
Matthew Garrettd1ff4b12012-01-31 13:19:20 -050085
Josh Triplett2223af32012-09-28 17:57:05 -070086 if (!bgrt_image)
Matthew Garrettd1ff4b12012-01-31 13:19:20 -050087 return -ENODEV;
88
Greg KH65f44672013-08-20 17:11:49 -070089 bin_attr_image.private = bgrt_image;
90 bin_attr_image.size = bgrt_image_size;
Matthew Garrettd1ff4b12012-01-31 13:19:20 -050091
92 bgrt_kobj = kobject_create_and_add("bgrt", acpi_kobj);
Josh Triplett2223af32012-09-28 17:57:05 -070093 if (!bgrt_kobj)
94 return -EINVAL;
Matthew Garrettd1ff4b12012-01-31 13:19:20 -050095
96 ret = sysfs_create_group(bgrt_kobj, &bgrt_attribute_group);
97 if (ret)
98 goto out_kobject;
99
Matthew Garrettd1ff4b12012-01-31 13:19:20 -0500100 return 0;
101
Matthew Garrettd1ff4b12012-01-31 13:19:20 -0500102out_kobject:
103 kobject_put(bgrt_kobj);
Matthew Garrettd1ff4b12012-01-31 13:19:20 -0500104 return ret;
105}
106
Matthew Garrettd1ff4b12012-01-31 13:19:20 -0500107module_init(bgrt_init);
Matthew Garrettd1ff4b12012-01-31 13:19:20 -0500108
Josh Triplett2223af32012-09-28 17:57:05 -0700109MODULE_AUTHOR("Matthew Garrett, Josh Triplett <josh@joshtriplett.org>");
Matthew Garrettd1ff4b12012-01-31 13:19:20 -0500110MODULE_DESCRIPTION("BGRT boot graphic support");
111MODULE_LICENSE("GPL");