1 /* SPDX-License-Identifier: GPL-2.0-only */
5 * Internal header for coreboot table access.
7 * Copyright 2014 Gerd Hoffmann <kraxel@redhat.com>
8 * Copyright 2017 Google Inc.
9 * Copyright 2017 Samuel Holland <samuel@sholland.org>
12 #ifndef __COREBOOT_TABLE_H
13 #define __COREBOOT_TABLE_H
15 #include <linux/device.h>
16 #include <linux/mod_devicetable.h>
18 /* Coreboot table header structure */
19 struct coreboot_table_header
{
28 /* List of coreboot entry structures that is used */
30 struct coreboot_table_entry
{
35 /* Points to a CBMEM entry */
43 #define LB_TAG_CBMEM_ENTRY 0x31
45 /* Corresponds to LB_TAG_CBMEM_ENTRY */
46 struct lb_cbmem_entry
{
55 /* Describes framebuffer setup by coreboot */
56 struct lb_framebuffer
{
72 u8 reserved_mask_size
;
75 /* A device, additionally with information from coreboot. */
76 struct coreboot_device
{
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
);
87 static inline struct coreboot_device
*dev_to_coreboot_device(struct device
*dev
)
89 return container_of(dev
, struct coreboot_device
, dev
);
92 /* A driver for handling devices described in coreboot tables. */
93 struct 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
;
100 /* use a macro to avoid include chaining to get THIS_MODULE */
101 #define coreboot_driver_register(driver) \
102 __coreboot_driver_register(driver, THIS_MODULE)
103 /* Register a driver that uses the data from a coreboot table. */
104 int __coreboot_driver_register(struct coreboot_driver
*driver
,
105 struct module
*owner
);
107 /* Unregister a driver that uses the data from a coreboot table. */
108 void coreboot_driver_unregister(struct coreboot_driver
*driver
);
110 /* module_coreboot_driver() - Helper macro for drivers that don't do
111 * anything special in module init/exit. This eliminates a lot of
112 * boilerplate. Each module may only use this macro once, and
113 * calling it replaces module_init() and module_exit()
115 #define module_coreboot_driver(__coreboot_driver) \
116 module_driver(__coreboot_driver, coreboot_driver_register, \
117 coreboot_driver_unregister)
119 #endif /* __COREBOOT_TABLE_H */