blob: 72321f531d90904161c8faa2a984a1f355b5bea8 [file] [log] [blame]
// Copyright 2022 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: [
'syslog/client.shard.cml',
],
program: {
runner: 'driver',
binary: 'lib/libacpi_controller.so',
bind: 'meta/bind/acpi_controller.bindbc',
// Identifies the device categories, for compatibility tests.
device_categories: [
{ category: 'board', subcategory: 'acpi' },
],
},
use: [
{ protocol: 'fuchsia.device.fs.Exporter' },
{ service: 'fuchsia.driver.compat.Service' },
],
// Provide the ACPI service capability to other components
capabilities: [
{
service: [
'fuchsia.driver.compat.Service',
'fuchsia.hardware.acpi.Service',
]
},
],
expose: [
{
service: [
'fuchsia.driver.compat.Service',
'fuchsia.hardware.acpi.Service',
],
from: 'self',
},
],
}