forked from xinyu391/zircon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbus-acpi.c
681 lines (589 loc) · 23 KB
/
bus-acpi.c
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
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
// Copyright 2017 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <ddk/binding.h>
#include <ddk/device.h>
#include <ddk/driver.h>
#include <ddk/debug.h>
#include <ddk/metadata.h>
#include <ddk/protocol/acpi.h>
#include <ddk/protocol/pciroot.h>
#include <inttypes.h>
#include <limits.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include <sys/stat.h>
#include <threads.h>
#include <acpica/acpi.h>
#include <zircon/compiler.h>
#include <zircon/process.h>
#include <zircon/syscalls/iommu.h>
#include "acpi-private.h"
#include "cpu-trace.h"
#include "dev.h"
#include "errors.h"
#include "init.h"
#include "iommu.h"
#include "methods.h"
#include "nhlt.h"
#include "pci.h"
#include "pciroot.h"
#include "power.h"
#include "resources.h"
zx_handle_t root_resource_handle;
static zx_device_t* publish_device(zx_device_t* parent, ACPI_HANDLE handle,
ACPI_DEVICE_INFO* info, const char* name,
uint32_t protocol_id, void* protocol_ops);
static void acpi_device_release(void* ctx) {
acpi_device_t* dev = (acpi_device_t*)ctx;
free(dev);
}
static zx_protocol_device_t acpi_device_proto = {
.version = DEVICE_OPS_VERSION,
.release = acpi_device_release,
};
typedef struct {
acpi_device_resource_t* resources;
size_t resource_count;
size_t resource_i;
acpi_device_irq_t* irqs;
size_t irq_count;
size_t irq_i;
} acpi_crs_ctx_t;
static ACPI_STATUS report_current_resources_resource_cb(ACPI_RESOURCE* res, void* _ctx) {
acpi_crs_ctx_t* ctx = (acpi_crs_ctx_t*)_ctx;
if (resource_is_memory(res)) {
resource_memory_t mem;
zx_status_t st = resource_parse_memory(res, &mem);
// only expect fixed memory resource. resource_parse_memory sets minimum == maximum
// for this memory resource type.
if ((st != ZX_OK) || (mem.minimum != mem.maximum)) {
return AE_ERROR;
}
ctx->resources[ctx->resource_i].writeable = mem.writeable;
ctx->resources[ctx->resource_i].base_address = mem.minimum;
ctx->resources[ctx->resource_i].alignment = mem.alignment;
ctx->resources[ctx->resource_i].address_length = mem.address_length;
ctx->resource_i += 1;
} else if (resource_is_address(res)) {
resource_address_t addr;
zx_status_t st = resource_parse_address(res, &addr);
if (st != ZX_OK) {
return AE_ERROR;
}
if ((addr.resource_type == RESOURCE_ADDRESS_MEMORY) && addr.min_address_fixed &&
addr.max_address_fixed && (addr.maximum < addr.minimum)) {
ctx->resources[ctx->resource_i].writeable = true;
ctx->resources[ctx->resource_i].base_address = addr.min_address_fixed;
ctx->resources[ctx->resource_i].alignment = 0;
ctx->resources[ctx->resource_i].address_length = addr.address_length;
ctx->resource_i += 1;
}
} else if (resource_is_irq(res)) {
resource_irq_t irq;
zx_status_t st = resource_parse_irq(res, &irq);
if (st != ZX_OK) {
return AE_ERROR;
}
for (size_t i = 0; i < irq.pin_count; i++) {
ctx->irqs[ctx->irq_i].trigger = irq.trigger;
ctx->irqs[ctx->irq_i].polarity = irq.polarity;
ctx->irqs[ctx->irq_i].sharable = irq.sharable;
ctx->irqs[ctx->irq_i].wake_capable = irq.wake_capable;
ctx->irqs[ctx->irq_i].pin = irq.pins[i];
ctx->irq_i += 1;
}
}
return AE_OK;
}
static ACPI_STATUS report_current_resources_count_cb(ACPI_RESOURCE* res, void* _ctx) {
acpi_crs_ctx_t* ctx = (acpi_crs_ctx_t*)_ctx;
if (resource_is_memory(res)) {
resource_memory_t mem;
zx_status_t st = resource_parse_memory(res, &mem);
if ((st != ZX_OK) || (mem.minimum != mem.maximum)) {
return AE_ERROR;
}
ctx->resource_count += 1;
} else if (resource_is_address(res)) {
resource_address_t addr;
zx_status_t st = resource_parse_address(res, &addr);
if (st != ZX_OK) {
return AE_ERROR;
}
if ((addr.resource_type == RESOURCE_ADDRESS_MEMORY) && addr.min_address_fixed &&
addr.max_address_fixed && (addr.maximum < addr.minimum)) {
ctx->resource_count += 1;
}
} else if (resource_is_irq(res)) {
ctx->irq_count += res->Data.Irq.InterruptCount;
}
return AE_OK;
}
static zx_status_t report_current_resources(acpi_device_t* dev) {
acpi_crs_ctx_t ctx;
memset(&ctx, 0, sizeof(ctx));
if (dev->got_resources) {
return ZX_OK;
}
// call _CRS to count number of resources
ACPI_STATUS acpi_status = AcpiWalkResources(dev->ns_node, (char*)"_CRS",
report_current_resources_count_cb, &ctx);
if ((acpi_status != AE_NOT_FOUND) && (acpi_status != AE_OK)) {
return acpi_to_zx_status(acpi_status);
}
if (ctx.resource_count == 0) {
return ZX_OK;
}
// allocate resources
ctx.resources = calloc(ctx.resource_count, sizeof(acpi_device_resource_t));
if (!ctx.resources) {
return ZX_ERR_NO_MEMORY;
}
ctx.irqs = calloc(ctx.irq_count, sizeof(acpi_device_irq_t));
if (!ctx.irqs) {
free(ctx.resources);
return ZX_ERR_NO_MEMORY;
}
// call _CRS again and fill in resources
acpi_status = AcpiWalkResources(dev->ns_node, (char*)"_CRS",
report_current_resources_resource_cb, &ctx);
if ((acpi_status != AE_NOT_FOUND) && (acpi_status != AE_OK)) {
free(ctx.resources);
free(ctx.irqs);
return acpi_to_zx_status(acpi_status);
}
dev->resources = ctx.resources;
dev->resource_count = ctx.resource_count;
dev->irqs = ctx.irqs;
dev->irq_count = ctx.irq_count;
zxlogf(TRACE, "acpi-bus[%s]: found %zd resources %zx irqs\n", device_get_name(dev->zxdev),
dev->resource_count, dev->irq_count);
if (driver_get_log_flags() & DDK_LOG_SPEW) {
zxlogf(SPEW, "resources:\n");
for (size_t i = 0; i < dev->resource_count; i++) {
zxlogf(SPEW, " %02zd: addr=0x%x length=0x%x align=0x%x writeable=%d\n", i,
dev->resources[i].base_address,
dev->resources[i].address_length,
dev->resources[i].alignment,
dev->resources[i].writeable);
}
zxlogf(SPEW, "irqs:\n");
for (size_t i = 0; i < dev->irq_count; i++) {
zxlogf(SPEW, " %02zd: pin=%u %s %s %s %s\n", i,
dev->irqs[i].pin,
dev->irqs[i].trigger ? "edge" : "level",
(dev->irqs[i].polarity == 2) ? "both" :
(dev->irqs[i].polarity ? "low" : "high"),
dev->irqs[i].sharable ? "shared" : "exclusive",
dev->irqs[i].wake_capable ? "wake" : "nowake");
}
}
dev->got_resources = true;
return ZX_OK;
}
static zx_status_t acpi_op_map_resource(void* ctx, uint32_t res_id, uint32_t cache_policy,
void** out_vaddr, size_t* out_size, zx_handle_t* out_handle) {
acpi_device_t* dev = (acpi_device_t*)ctx;
mtx_lock(&dev->lock);
zx_status_t st = report_current_resources(dev);
if (st != ZX_OK) {
goto unlock;
}
if (res_id >= dev->resource_count) {
st = ZX_ERR_NOT_FOUND;
goto unlock;
}
acpi_device_resource_t* res = dev->resources + res_id;
if (((res->base_address & (PAGE_SIZE - 1)) != 0) ||
((res->address_length & (PAGE_SIZE - 1)) != 0)) {
zxlogf(ERROR, "acpi-bus[%s]: resource id=%d addr=0x%08x len=0x%x is not page aligned\n",
device_get_name(dev->zxdev), res_id, res->base_address, res->address_length);
st = ZX_ERR_NOT_FOUND;
goto unlock;
}
zx_handle_t vmo;
zx_vaddr_t vaddr;
size_t size = res->address_length;
st = zx_vmo_create_physical(get_root_resource(), res->base_address, size, &vmo);
if (st != ZX_OK) {
goto unlock;
}
st = zx_vmo_set_cache_policy(vmo, cache_policy);
if (st != ZX_OK) {
zx_handle_close(vmo);
goto unlock;
}
st = zx_vmar_map(zx_vmar_root_self(),
ZX_VM_PERM_READ | ZX_VM_PERM_WRITE | ZX_VM_MAP_RANGE,
0, vmo, 0, size, &vaddr);
if (st != ZX_OK) {
zx_handle_close(vmo);
} else {
*out_handle = vmo;
*out_vaddr = (void*)vaddr;
*out_size = size;
}
unlock:
mtx_unlock(&dev->lock);
return st;
}
static zx_status_t acpi_op_map_interrupt(void* ctx, int64_t which_irq, zx_handle_t* out_handle) {
acpi_device_t* dev = (acpi_device_t*)ctx;
mtx_lock(&dev->lock);
zx_status_t st = report_current_resources(dev);
if (st != ZX_OK) {
goto unlock;
}
if ((uint)which_irq >= dev->irq_count) {
st = ZX_ERR_NOT_FOUND;
goto unlock;
}
acpi_device_irq_t* irq = dev->irqs + which_irq;
zx_handle_t handle;
st = zx_interrupt_create(get_root_resource(), irq->pin, ZX_INTERRUPT_REMAP_IRQ, &handle);
if (st != ZX_OK) {
goto unlock;
}
*out_handle = handle;
unlock:
mtx_unlock(&dev->lock);
return st;
}
// TODO marking unused until we publish some devices
static __attribute__ ((unused)) acpi_protocol_ops_t acpi_proto = {
.map_resource = acpi_op_map_resource,
.map_interrupt = acpi_op_map_interrupt,
};
static zx_protocol_device_t acpi_root_device_proto = {
.version = DEVICE_OPS_VERSION,
};
static zx_status_t sys_device_suspend(void* ctx, uint32_t flags) {
switch (flags & DEVICE_SUSPEND_REASON_MASK) {
case DEVICE_SUSPEND_FLAG_MEXEC: {
AcpiTerminate();
return ZX_OK;
}
case DEVICE_SUSPEND_FLAG_REBOOT:
reboot();
// Kill this driver so that the IPC channel gets closed; devmgr will
// perform a fallback that should shutdown or reboot the machine.
exit(0);
case DEVICE_SUSPEND_FLAG_POWEROFF:
poweroff();
exit(0);
case DEVICE_SUSPEND_FLAG_SUSPEND_RAM:
return suspend_to_ram();
default:
return ZX_ERR_NOT_SUPPORTED;
};
}
static zx_protocol_device_t sys_device_proto = {
.version = DEVICE_OPS_VERSION,
.suspend = sys_device_suspend,
};
static const char* hid_from_acpi_devinfo(ACPI_DEVICE_INFO* info) {
const char* hid = NULL;
if ((info->Valid & ACPI_VALID_HID) &&
(info->HardwareId.Length > 0) &&
((info->HardwareId.Length - 1) <= sizeof(uint64_t))) {
hid = (const char*)info->HardwareId.String;
}
return hid;
}
static zx_device_t* publish_device(zx_device_t* parent,
ACPI_HANDLE handle,
ACPI_DEVICE_INFO* info,
const char* name,
uint32_t protocol_id,
void* protocol_ops) {
zx_device_prop_t props[4];
int propcount = 0;
char acpi_name[5] = { 0 };
if (!name) {
memcpy(acpi_name, &info->Name, sizeof(acpi_name) - 1);
name = (const char*)acpi_name;
}
// Publish HID in device props
const char* hid = hid_from_acpi_devinfo(info);
if (hid) {
props[propcount].id = BIND_ACPI_HID_0_3;
props[propcount++].value = htobe32(*((uint32_t*)(hid)));
props[propcount].id = BIND_ACPI_HID_4_7;
props[propcount++].value = htobe32(*((uint32_t*)(hid + 4)));
}
// Publish the first CID in device props
const char* cid = (const char*)info->CompatibleIdList.Ids[0].String;
if ((info->Valid & ACPI_VALID_CID) &&
(info->CompatibleIdList.Count > 0) &&
((info->CompatibleIdList.Ids[0].Length - 1) <= sizeof(uint64_t))) {
props[propcount].id = BIND_ACPI_CID_0_3;
props[propcount++].value = htobe32(*((uint32_t*)(cid)));
props[propcount].id = BIND_ACPI_CID_4_7;
props[propcount++].value = htobe32(*((uint32_t*)(cid + 4)));
}
if (driver_get_log_flags() & DDK_LOG_SPEW) {
// ACPI names are always 4 characters in a uint32
zxlogf(SPEW, "acpi: got device %s\n", acpi_name);
if (info->Valid & ACPI_VALID_HID) {
zxlogf(SPEW, " HID=%s\n", info->HardwareId.String);
} else {
zxlogf(SPEW, " HID=invalid\n");
}
if (info->Valid & ACPI_VALID_ADR) {
zxlogf(SPEW, " ADR=0x%" PRIx64 "\n", (uint64_t)info->Address);
} else {
zxlogf(SPEW, " ADR=invalid\n");
}
if (info->Valid & ACPI_VALID_CID) {
zxlogf(SPEW, " CIDS=%d\n", info->CompatibleIdList.Count);
for (uint i = 0; i < info->CompatibleIdList.Count; i++) {
zxlogf(SPEW, " [%u] %s\n", i, info->CompatibleIdList.Ids[i].String);
}
} else {
zxlogf(SPEW, " CID=invalid\n");
}
zxlogf(SPEW, " devprops:\n");
for (int i = 0; i < propcount; i++) {
zxlogf(SPEW, " [%d] id=0x%08x value=0x%08x\n", i, props[i].id, props[i].value);
}
}
acpi_device_t* dev = calloc(1, sizeof(acpi_device_t));
if (!dev) {
return NULL;
}
dev->ns_node = handle;
device_add_args_t args = {
.version = DEVICE_ADD_ARGS_VERSION,
.name = name,
.ctx = dev,
.ops = &acpi_device_proto,
.proto_id = protocol_id,
.proto_ops = protocol_ops,
.props = (propcount > 0) ? props : NULL,
.prop_count = propcount,
};
zx_status_t status;
if ((status = device_add(parent, &args, &dev->zxdev)) != ZX_OK) {
zxlogf(ERROR, "acpi: error %d in device_add, parent=%s(%p)\n",
status, device_get_name(parent), parent);
free(dev);
return NULL;
} else {
zxlogf(ERROR, "acpi: published device %s(%p), parent=%s(%p), handle=%p\n",
name, dev, device_get_name(parent), parent, (void*)dev->ns_node);
return dev->zxdev;
}
}
static ACPI_STATUS acpi_ns_walk_callback(ACPI_HANDLE object, uint32_t nesting_level,
void* context, void** status) {
ACPI_DEVICE_INFO* info = NULL;
ACPI_STATUS acpi_status = AcpiGetObjectInfo(object, &info);
if (acpi_status != AE_OK) {
return acpi_status;
}
publish_acpi_device_ctx_t* ctx = (publish_acpi_device_ctx_t*)context;
zx_device_t* parent = ctx->parent;
// TODO: This is a temporary workaround until we have full ACPI device
// enumeration. If this is the I2C1 bus, we run _PS0 so the controller
// is active.
if (!memcmp(&info->Name, "I2C1", 4)) {
acpi_status = AcpiEvaluateObject(object, (char*)"_PS0", NULL, NULL);
if (acpi_status != AE_OK) {
zxlogf(ERROR, "acpi: acpi error 0x%x in I2C1._PS0\n", acpi_status);
}
// Attach the NHLT table as metadata on the HDA device.
// The ACPI node representing the HDA controller is named "HDAS" on Pixelbook.
// TODO: This is a temporary workaround for ACPI device enumeration.
} else if (!memcmp(&info->Name, "HDAS", 4)) {
// We must have already seen at least one PCI root due to traversal order.
if (ctx->last_pci == 0xFF) {
zxlogf(ERROR, "acpi: Found HDAS node, but no prior PCI root was discovered!\n");
} else if (!(info->Valid & ACPI_VALID_ADR)) {
zxlogf(ERROR, "acpi: no valid ADR found for HDA device\n");
} else {
zx_status_t status = nhlt_publish_metadata(parent,
ctx->last_pci,
(uint64_t)info->Address,
object);
if ((status != ZX_OK) && (status != ZX_ERR_NOT_FOUND)) {
zxlogf(ERROR, "acpi: failed to publish NHLT metadata\n");
}
}
}
const char* hid = hid_from_acpi_devinfo(info);
if (hid == 0) {
goto out;
}
const char* cid = NULL;
if ((info->Valid & ACPI_VALID_CID) &&
(info->CompatibleIdList.Count > 0) &&
// IDs may be 7 or 8 bytes, and Length includes the null byte
(info->CompatibleIdList.Ids[0].Length == HID_LENGTH ||
info->CompatibleIdList.Ids[0].Length == HID_LENGTH + 1)) {
cid = (const char*)info->CompatibleIdList.Ids[0].String;
}
if ((!memcmp(hid, PCI_EXPRESS_ROOT_HID_STRING, HID_LENGTH) ||
!memcmp(hid, PCI_ROOT_HID_STRING, HID_LENGTH))) {
// TODO(cja): Stubbed out for userspace PCI development
#ifdef ENABLE_USER_PCI
register_pci_root(object);
#else
if (!ctx->found_pci) {
// Report current resources to kernel PCI driver
zx_status_t status = pci_report_current_resources(get_root_resource());
if (status != ZX_OK) {
zxlogf(ERROR, "acpi: WARNING: ACPI failed to report all current resources!\n");
}
// Initialize kernel PCI driver
zx_pci_init_arg_t* arg;
uint32_t arg_size;
status = get_pci_init_arg(&arg, &arg_size);
if (status != ZX_OK) {
zxlogf(ERROR, "acpi: erorr %d in get_pci_init_arg\n", status);
return AE_ERROR;
}
status = zx_pci_init(get_root_resource(), arg, arg_size);
if (status != ZX_OK) {
zxlogf(ERROR, "acpi: error %d in zx_pci_init\n", status);
return AE_ERROR;
}
free(arg);
// Publish PCI root as top level
// Only publish one PCI root device for all PCI roots
// TODO: store context for PCI root protocol
parent = device_get_parent(parent);
zx_device_t* pcidev = publish_device(parent, object, info, "pci",
ZX_PROTOCOL_PCIROOT, get_pciroot_ops());
ctx->found_pci = (pcidev != NULL);
}
// Get the PCI base bus number
zx_status_t status = acpi_bbn_call(object, &ctx->last_pci);
if (status != ZX_OK) {
zxlogf(ERROR, "acpi: failed to get PCI base bus number for device '%s' "
"(status %u)\n", (const char*)&info->Name, status);
}
zxlogf(TRACE, "acpi: found pci root #%u\n", ctx->last_pci);
#endif
} else if (!memcmp(hid, BATTERY_HID_STRING, HID_LENGTH)) {
battery_init(parent, object);
} else if (!memcmp(hid, PWRSRC_HID_STRING, HID_LENGTH)) {
pwrsrc_init(parent, object);
} else if (!memcmp(hid, EC_HID_STRING, HID_LENGTH)) {
ec_init(parent, object);
} else if (!memcmp(hid, GOOGLE_TBMC_HID_STRING, HID_LENGTH)) {
tbmc_init(parent, object);
} else if (!memcmp(hid, GOOGLE_CROS_EC_HID_STRING, HID_LENGTH)) {
cros_ec_lpc_init(parent, object);
} else if (!memcmp(hid, DPTF_THERMAL_HID_STRING, HID_LENGTH)) {
thermal_init(parent, info, object);
} else if (!memcmp(hid, I8042_HID_STRING, HID_LENGTH) ||
(cid && !memcmp(cid, I8042_HID_STRING, HID_LENGTH))) {
publish_device(parent, object, info, "i8042", ZX_PROTOCOL_ACPI, &acpi_proto);
} else if (!memcmp(hid, RTC_HID_STRING, HID_LENGTH) ||
(cid && !memcmp(cid, RTC_HID_STRING, HID_LENGTH))) {
publish_device(parent, object, info, "rtc", ZX_PROTOCOL_ACPI, &acpi_proto);
}
out:
ACPI_FREE(info);
return AE_OK;
}
static zx_status_t publish_acpi_devices(zx_device_t* parent) {
zx_status_t status = pwrbtn_init(parent);
if (status != ZX_OK) {
zxlogf(ERROR, "acpi: failed to initialize pwrbtn device: %d\n", status);
}
// Walk the ACPI namespace for devices and publish them
// Only publish a single PCI device
publish_acpi_device_ctx_t ctx = {
.parent = parent,
.found_pci = false,
.last_pci = 0xFF,
};
ACPI_STATUS acpi_status = AcpiWalkNamespace(ACPI_TYPE_DEVICE,
ACPI_ROOT_OBJECT,
MAX_NAMESPACE_DEPTH,
acpi_ns_walk_callback,
NULL, &ctx, NULL);
if (acpi_status != AE_OK) {
return ZX_ERR_BAD_STATE;
} else {
return ZX_OK;
}
}
static zx_status_t acpi_drv_create(void* ctx, zx_device_t* parent, const char* name,
const char* _args, zx_handle_t zbi_vmo) {
// ACPI is the root driver for its devhost so run init in the bind thread.
zxlogf(TRACE, "acpi: bind to %s %p\n", device_get_name(parent), parent);
root_resource_handle = get_root_resource();
// We don't need ZBI VMO handle.
zx_handle_close(zbi_vmo);
zx_status_t status = init();
if (status != ZX_OK) {
zxlogf(ERROR, "acpi: failed to initialize ACPI %d \n", status);
return ZX_ERR_INTERNAL;
}
zxlogf(TRACE, "acpi: initialized\n");
// publish sys root
device_add_args_t args = {
.version = DEVICE_ADD_ARGS_VERSION,
.name = name,
.ops = &sys_device_proto,
.flags = DEVICE_ADD_NON_BINDABLE,
};
zx_device_t* sys_root = NULL;
status = device_add(parent, &args, &sys_root);
if (status != ZX_OK) {
zxlogf(ERROR, "acpi: error %d in device_add(sys)\n", status);
return status;
}
zx_handle_t dummy_iommu_handle;
status = iommu_manager_get_dummy_iommu(&dummy_iommu_handle);
if (status != ZX_OK) {
zxlogf(ERROR, "acpi-bus: error %d in iommu_manager_get_dummy_iommu()\n", status);
return status;
}
zx_handle_t cpu_trace_bti;
status = zx_bti_create(dummy_iommu_handle, 0, CPU_TRACE_BTI_ID, &cpu_trace_bti);
if (status != ZX_OK) {
zxlogf(ERROR, "acpi: error %d in bti_create(cpu_trace_bti)\n", status);
return status;
}
status = publish_cpu_trace(cpu_trace_bti, sys_root);
if (status != ZX_OK) {
return status;
}
// publish acpi root
device_add_args_t args2 = {
.version = DEVICE_ADD_ARGS_VERSION,
.name = "acpi",
.ops = &acpi_root_device_proto,
.flags = DEVICE_ADD_NON_BINDABLE,
};
zx_device_t* acpi_root = NULL;
status = device_add(sys_root, &args2, &acpi_root);
if (status != ZX_OK) {
zxlogf(ERROR, "acpi: error %d in device_add(sys/acpi)\n", status);
device_remove(sys_root);
return status;
}
// TODO - retrieve more useful board name from ACPI data
const char board_name[] = { "pc" };
// Publish board name to sysinfo driver
status = device_publish_metadata(acpi_root, "/dev/misc/sysinfo", DEVICE_METADATA_BOARD_NAME,
board_name, sizeof(board_name));
if (status != ZX_OK) {
zxlogf(ERROR, "device_publish_metadata(board_name) failed: %d\n", status);
}
publish_acpi_devices(acpi_root);
return ZX_OK;
}
static zx_driver_ops_t acpi_driver_ops = {
.version = DRIVER_OPS_VERSION,
.create = acpi_drv_create,
};
ZIRCON_DRIVER_BEGIN(acpi, acpi_driver_ops, "zircon", "0.1", 1)
BI_ABORT_IF_AUTOBIND, // loaded by devcoordinator
ZIRCON_DRIVER_END(acpi)