blob: 61dc0ce61571f229f790494d1a4659902b8ea67e [file] [log] [blame]
// Copyright 2023 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: [
"driver_component/driver.shard.cml",
"inspect/client.shard.cml",
"syslog/client.shard.cml",
],
program: {
runner: "driver",
binary: "driver/intel-display.so",
bind: "meta/bind/intel-display-bind.bindbc",
colocate: "false",
allowed_scheduler_roles: [ "fuchsia.graphics.display.drivers.intel-display.interrupt" ],
},
capabilities: [
{ service: "fuchsia.hardware.display.engine.Service" },
],
use: [
{
protocol: [
"fuchsia.boot.Items",
"fuchsia.kernel.IoportResource",
"fuchsia.kernel.MmioResource",
"fuchsia.scheduler.RoleManager",
"fuchsia.sysmem.Allocator",
"fuchsia.sysmem2.Allocator",
"fuchsia.system.state.SystemStateTransition",
],
},
{ service: "fuchsia.hardware.pci.Service" },
],
expose: [
{
service: "fuchsia.hardware.display.engine.Service",
from: "self",
},
],
}