1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
|
/*-
* SPDX-License-Identifier: BSD-2-Clause
*
* Copyright (c) 2003 Matthew N. Dodd <winter@jurai.net>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
#include <sys/malloc.h>
#include <sys/socket.h>
#include <sys/efi.h>
#include <sys/module.h>
#include <sys/bus.h>
#include <machine/bus.h>
#include <machine/resource.h>
#include <sys/rman.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/pmap.h>
#include <machine/md_var.h>
#if defined(__amd64__) || defined(__i386__)
#include <machine/pc/bios.h>
#endif
#include <dev/smbios/smbios.h>
/*
* System Management BIOS Reference Specification, v2.4 Final
* http://www.dmtf.org/standards/published_documents/DSP0134.pdf
*/
struct smbios_softc {
device_t dev;
union {
struct smbios_eps * eps;
struct smbios3_eps * eps3;
};
bool is_eps3;
};
static void smbios_identify (driver_t *, device_t);
static int smbios_probe (device_t);
static int smbios_attach (device_t);
static int smbios_detach (device_t);
static int smbios_modevent (module_t, int, void *);
static int smbios_cksum (void *);
static bool smbios_eps3 (void *);
static void
smbios_identify (driver_t *driver, device_t parent)
{
#ifdef ARCH_MAY_USE_EFI
efi_guid_t efi_smbios = EFI_TABLE_SMBIOS;
efi_guid_t efi_smbios3 = EFI_TABLE_SMBIOS3;
void *addr_efi;
#endif
struct smbios_eps *eps;
struct smbios3_eps *eps3;
void *ptr;
device_t child;
vm_paddr_t addr = 0;
size_t map_size = sizeof(*eps);
uint8_t length;
if (!device_is_alive(parent))
return;
#ifdef ARCH_MAY_USE_EFI
if (!efi_get_table(&efi_smbios3, &addr_efi)) {
addr = (vm_paddr_t)addr_efi;
map_size = sizeof(*eps3);
} else if (!efi_get_table(&efi_smbios, &addr_efi)) {
addr = (vm_paddr_t)addr_efi;
}
#endif
#if defined(__amd64__) || defined(__i386__)
if (addr == 0) {
addr = bios_sigsearch(SMBIOS_START, SMBIOS3_SIG, SMBIOS3_LEN,
SMBIOS_STEP, SMBIOS_OFF);
if (addr != 0)
map_size = sizeof(*eps3);
else
addr = bios_sigsearch(SMBIOS_START,
SMBIOS_SIG, SMBIOS_LEN, SMBIOS_STEP, SMBIOS_OFF);
}
#endif
if (addr == 0)
return;
ptr = pmap_mapbios(addr, map_size);
if (ptr == NULL) {
printf("smbios: Unable to map memory.\n");
return;
}
if (map_size == sizeof(*eps3)) {
eps3 = ptr;
length = eps3->length;
if (memcmp(eps3->anchor_string, SMBIOS3_SIG, SMBIOS3_LEN) != 0)
goto corrupt_sig;
} else {
eps = ptr;
length = eps->length;
if (memcmp(eps->anchor_string, SMBIOS_SIG, SMBIOS_LEN) != 0)
goto corrupt_sig;
}
if (length != map_size) {
/*
* SMBIOS v2.1 implementations might use 0x1e because the
* standard was then erroneous.
*/
if (length == 0x1e && map_size == sizeof(*eps) &&
eps->major_version == 2 && eps->minor_version == 1)
length = map_size;
else {
printf("smbios: %s-bit Entry Point: Invalid length: "
"Got %hhu, expected %zu\n",
map_size == sizeof(*eps3) ? "64" : "32",
length, map_size);
goto unmap_return;
}
}
child = BUS_ADD_CHILD(parent, 5, "smbios", DEVICE_UNIT_ANY);
device_set_driver(child, driver);
/* smuggle the phys addr into probe and attach */
bus_set_resource(child, SYS_RES_MEMORY, 0, addr, length);
device_set_desc(child, "System Management BIOS");
unmap_return:
pmap_unmapbios(ptr, map_size);
return;
corrupt_sig:
{
const char *sig;
const char *table_ver_str;
size_t i, end;
if (map_size == sizeof(*eps3)) {
sig = eps3->anchor_string;
table_ver_str = "64";
end = SMBIOS3_LEN;
} else {
sig = eps->anchor_string;
table_ver_str = "32";
end = SMBIOS_LEN;
}
/* Space after ':' printed by the loop. */
printf("smbios: %s-bit Entry Point: Corrupt signature (hex):",
table_ver_str);
for (i = 0; i < end; ++i)
printf(" %02hhx", sig[i]);
printf("\n");
}
goto unmap_return;
}
static int
smbios_probe (device_t dev)
{
vm_paddr_t pa;
vm_size_t size;
void *va;
int error;
error = 0;
pa = bus_get_resource_start(dev, SYS_RES_MEMORY, 0);
size = bus_get_resource_count(dev, SYS_RES_MEMORY, 0);
va = pmap_mapbios(pa, size);
if (va == NULL) {
device_printf(dev, "Unable to map memory.\n");
return (ENOMEM);
}
if (smbios_cksum(va)) {
device_printf(dev, "SMBIOS checksum failed.\n");
error = ENXIO;
}
pmap_unmapbios(va, size);
return (error);
}
static int
smbios_attach (device_t dev)
{
struct smbios_softc *sc;
void *va;
vm_paddr_t pa;
vm_size_t size;
sc = device_get_softc(dev);
sc->dev = dev;
pa = bus_get_resource_start(dev, SYS_RES_MEMORY, 0);
size = bus_get_resource_count(dev, SYS_RES_MEMORY, 0);
va = pmap_mapbios(pa, size);
if (va == NULL) {
device_printf(dev, "Unable to map memory.\n");
return (ENOMEM);
}
sc->is_eps3 = smbios_eps3(va);
if (sc->is_eps3) {
sc->eps3 = va;
device_printf(dev, "Entry point: v3 (64-bit), Version: %u.%u\n",
sc->eps3->major_version, sc->eps3->minor_version);
if (bootverbose)
device_printf(dev,
"Docrev: %u, Entry Point Revision: %u\n",
sc->eps3->docrev, sc->eps3->entry_point_revision);
} else {
const struct smbios_eps *const eps = va;
const uint8_t bcd = eps->BCD_revision;
sc->eps = va;
device_printf(dev, "Entry point: v2.1 (32-bit), Version: %u.%u",
eps->major_version, eps->minor_version);
if (bcd < LIBKERN_LEN_BCD2BIN && bcd2bin(bcd) != 0)
printf(", BCD Revision: %u.%u\n",
bcd2bin(bcd >> 4), bcd2bin(bcd & 0x0f));
else
printf("\n");
if (bootverbose)
device_printf(dev, "Entry Point Revision: %u\n",
eps->entry_point_revision);
}
return (0);
}
static int
smbios_detach (device_t dev)
{
struct smbios_softc *sc;
vm_size_t size;
void *va;
sc = device_get_softc(dev);
va = (sc->is_eps3 ? (void *)sc->eps3 : (void *)sc->eps);
if (sc->is_eps3)
va = sc->eps3;
else
va = sc->eps;
size = bus_get_resource_count(dev, SYS_RES_MEMORY, 0);
if (va != NULL)
pmap_unmapbios(va, size);
return (0);
}
static int
smbios_modevent (module_t mod, int what, void *arg)
{
device_t * devs;
int count;
int i;
switch (what) {
case MOD_LOAD:
break;
case MOD_UNLOAD:
devclass_get_devices(devclass_find("smbios"), &devs, &count);
for (i = 0; i < count; i++) {
device_delete_child(device_get_parent(devs[i]), devs[i]);
}
free(devs, M_TEMP);
break;
default:
break;
}
return (0);
}
static device_method_t smbios_methods[] = {
/* Device interface */
DEVMETHOD(device_identify, smbios_identify),
DEVMETHOD(device_probe, smbios_probe),
DEVMETHOD(device_attach, smbios_attach),
DEVMETHOD(device_detach, smbios_detach),
{ 0, 0 }
};
static driver_t smbios_driver = {
"smbios",
smbios_methods,
sizeof(struct smbios_softc),
};
DRIVER_MODULE(smbios, nexus, smbios_driver, smbios_modevent, NULL);
#ifdef ARCH_MAY_USE_EFI
MODULE_DEPEND(smbios, efirt, 1, 1, 1);
#endif
MODULE_VERSION(smbios, 1);
static bool
smbios_eps3 (void *v)
{
struct smbios3_eps *e;
e = (struct smbios3_eps *)v;
return (memcmp(e->anchor_string, SMBIOS3_SIG, SMBIOS3_LEN) == 0);
}
static int
smbios_cksum (void *v)
{
const u_int8_t *ptr;
u_int8_t cksum;
u_int8_t length;
int i;
if (smbios_eps3(v)) {
const struct smbios3_eps *eps3 = v;
length = eps3->length;
} else {
const struct smbios_eps *eps = v;
length = eps->length;
}
ptr = v;
cksum = 0;
for (i = 0; i < length; i++)
cksum += ptr[i];
return (cksum);
}
|