| // Copyright 2019 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. | |
| library fuchsia.acpi; | |
| extend uint fuchsia.BIND_PROTOCOL { | |
| DEVICE = 30, | |
| }; | |
| extend uint fuchsia.BIND_ACPI_BUS_TYPE { | |
| UNKNOWN = 0xff, | |
| PCI = 1, | |
| SPI = 2, | |
| I2C = 3, | |
| }; | |
| // ACPI HID. | |
| string hid; | |
| // First ACPI CID, until there's a better way to handle lists in bind programs. | |
| string first_cid; |