Linux Audio

Check our new training course

Loading...
v5.9
 1/* SPDX-License-Identifier: GPL-2.0-only */
 2/*
 3 * coreboot_table.h
 4 *
 5 * Internal header for coreboot table access.
 6 *
 7 * Copyright 2014 Gerd Hoffmann <kraxel@redhat.com>
 8 * Copyright 2017 Google Inc.
 9 * Copyright 2017 Samuel Holland <samuel@sholland.org>
10 */
11
12#ifndef __COREBOOT_TABLE_H
13#define __COREBOOT_TABLE_H
14
15#include <linux/device.h>
 
16
17/* Coreboot table header structure */
18struct coreboot_table_header {
19	char signature[4];
20	u32 header_bytes;
21	u32 header_checksum;
22	u32 table_bytes;
23	u32 table_checksum;
24	u32 table_entries;
25};
26
27/* List of coreboot entry structures that is used */
28/* Generic */
29struct coreboot_table_entry {
30	u32 tag;
31	u32 size;
32};
33
34/* Points to a CBMEM entry */
35struct lb_cbmem_ref {
36	u32 tag;
37	u32 size;
38
39	u64 cbmem_addr;
40};
41
 
 
 
 
 
 
 
 
 
 
 
 
42/* Describes framebuffer setup by coreboot */
43struct lb_framebuffer {
44	u32 tag;
45	u32 size;
46
47	u64 physical_address;
48	u32 x_resolution;
49	u32 y_resolution;
50	u32 bytes_per_line;
51	u8  bits_per_pixel;
52	u8  red_mask_pos;
53	u8  red_mask_size;
54	u8  green_mask_pos;
55	u8  green_mask_size;
56	u8  blue_mask_pos;
57	u8  blue_mask_size;
58	u8  reserved_mask_pos;
59	u8  reserved_mask_size;
60};
61
62/* A device, additionally with information from coreboot. */
63struct coreboot_device {
64	struct device dev;
65	union {
66		struct coreboot_table_entry entry;
67		struct lb_cbmem_ref cbmem_ref;
 
68		struct lb_framebuffer framebuffer;
 
69	};
70};
71
 
 
 
 
 
72/* A driver for handling devices described in coreboot tables. */
73struct coreboot_driver {
74	int (*probe)(struct coreboot_device *);
75	int (*remove)(struct coreboot_device *);
76	struct device_driver drv;
77	u32 tag;
78};
79
80/* Register a driver that uses the data from a coreboot table. */
81int coreboot_driver_register(struct coreboot_driver *driver);
82
83/* Unregister a driver that uses the data from a coreboot table. */
84void coreboot_driver_unregister(struct coreboot_driver *driver);
85
86/* module_coreboot_driver() - Helper macro for drivers that don't do
87 * anything special in module init/exit.  This eliminates a lot of
88 * boilerplate.  Each module may only use this macro once, and
89 * calling it replaces module_init() and module_exit()
90 */
91#define module_coreboot_driver(__coreboot_driver) \
92	module_driver(__coreboot_driver, coreboot_driver_register, \
93			coreboot_driver_unregister)
94
95#endif /* __COREBOOT_TABLE_H */
v6.9.4
  1/* SPDX-License-Identifier: GPL-2.0-only */
  2/*
  3 * coreboot_table.h
  4 *
  5 * Internal header for coreboot table access.
  6 *
  7 * Copyright 2014 Gerd Hoffmann <kraxel@redhat.com>
  8 * Copyright 2017 Google Inc.
  9 * Copyright 2017 Samuel Holland <samuel@sholland.org>
 10 */
 11
 12#ifndef __COREBOOT_TABLE_H
 13#define __COREBOOT_TABLE_H
 14
 15#include <linux/device.h>
 16#include <linux/mod_devicetable.h>
 17
 18/* Coreboot table header structure */
 19struct coreboot_table_header {
 20	char signature[4];
 21	u32 header_bytes;
 22	u32 header_checksum;
 23	u32 table_bytes;
 24	u32 table_checksum;
 25	u32 table_entries;
 26};
 27
 28/* List of coreboot entry structures that is used */
 29/* Generic */
 30struct coreboot_table_entry {
 31	u32 tag;
 32	u32 size;
 33};
 34
 35/* Points to a CBMEM entry */
 36struct lb_cbmem_ref {
 37	u32 tag;
 38	u32 size;
 39
 40	u64 cbmem_addr;
 41};
 42
 43#define LB_TAG_CBMEM_ENTRY 0x31
 44
 45/* Corresponds to LB_TAG_CBMEM_ENTRY */
 46struct lb_cbmem_entry {
 47	u32 tag;
 48	u32 size;
 49
 50	u64 address;
 51	u32 entry_size;
 52	u32 id;
 53};
 54
 55/* Describes framebuffer setup by coreboot */
 56struct lb_framebuffer {
 57	u32 tag;
 58	u32 size;
 59
 60	u64 physical_address;
 61	u32 x_resolution;
 62	u32 y_resolution;
 63	u32 bytes_per_line;
 64	u8  bits_per_pixel;
 65	u8  red_mask_pos;
 66	u8  red_mask_size;
 67	u8  green_mask_pos;
 68	u8  green_mask_size;
 69	u8  blue_mask_pos;
 70	u8  blue_mask_size;
 71	u8  reserved_mask_pos;
 72	u8  reserved_mask_size;
 73};
 74
 75/* A device, additionally with information from coreboot. */
 76struct coreboot_device {
 77	struct device dev;
 78	union {
 79		struct coreboot_table_entry entry;
 80		struct lb_cbmem_ref cbmem_ref;
 81		struct lb_cbmem_entry cbmem_entry;
 82		struct lb_framebuffer framebuffer;
 83		DECLARE_FLEX_ARRAY(u8, raw);
 84	};
 85};
 86
 87static inline struct coreboot_device *dev_to_coreboot_device(struct device *dev)
 88{
 89	return container_of(dev, struct coreboot_device, dev);
 90}
 91
 92/* A driver for handling devices described in coreboot tables. */
 93struct coreboot_driver {
 94	int (*probe)(struct coreboot_device *);
 95	void (*remove)(struct coreboot_device *);
 96	struct device_driver drv;
 97	const struct coreboot_device_id *id_table;
 98};
 99
100/* Register a driver that uses the data from a coreboot table. */
101int coreboot_driver_register(struct coreboot_driver *driver);
102
103/* Unregister a driver that uses the data from a coreboot table. */
104void coreboot_driver_unregister(struct coreboot_driver *driver);
105
106/* module_coreboot_driver() - Helper macro for drivers that don't do
107 * anything special in module init/exit.  This eliminates a lot of
108 * boilerplate.  Each module may only use this macro once, and
109 * calling it replaces module_init() and module_exit()
110 */
111#define module_coreboot_driver(__coreboot_driver) \
112	module_driver(__coreboot_driver, coreboot_driver_register, \
113			coreboot_driver_unregister)
114
115#endif /* __COREBOOT_TABLE_H */