blob: 22f7a0564e541f8a2bb20c752851893795ac49c2 [file] [log] [blame]
// Copyright 2018 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 <lib/ddk/binding_driver.h>
#include <lib/ddk/debug.h>
#include <lib/ddk/device.h>
#include <lib/ddk/driver.h>
#include <lib/ddk/platform-defs.h>
#include <stdlib.h>
#define DRIVER_NAME "test-child-2"
#define ARRAY_SIZE(x) (sizeof(x) / sizeof(*(x)))
typedef struct {
zx_device_t* zxdev;
} test_t;
static void test_release(void* ctx) { free(ctx); }
static zx_status_t test_rxrpc(void* ctx, zx_handle_t channel) {
if (channel == ZX_HANDLE_INVALID) {
return ZX_OK;
}
// This won't actually get called, since the other half doesn't send
// messages at the moment
__builtin_trap();
}
static zx_protocol_device_t test_device_protocol = {
.version = DEVICE_OPS_VERSION,
.rxrpc = test_rxrpc,
.release = test_release,
};
static zx_status_t test_bind(void* ctx, zx_device_t* parent) {
zx_status_t status;
zxlogf(INFO, "test_bind: %s ", DRIVER_NAME);
test_t* test = calloc(1, sizeof(test_t));
if (!test) {
return ZX_ERR_NO_MEMORY;
}
zx_device_prop_t child_props[] = {
{BIND_PLATFORM_DEV_VID, 0, PDEV_VID_TEST},
{BIND_PLATFORM_DEV_PID, 0, PDEV_PID_PBUS_TEST},
{BIND_PLATFORM_DEV_DID, 0, PDEV_DID_TEST_CHILD_4},
};
device_add_args_t args = {
.version = DEVICE_ADD_ARGS_VERSION,
.name = "child-4",
.ctx = test,
.ops = &test_device_protocol,
.props = child_props,
.prop_count = ARRAY_SIZE(child_props),
.flags = DEVICE_ADD_MUST_ISOLATE | DEVICE_ADD_ALLOW_MULTI_COMPOSITE,
};
status = device_add(parent, &args, &test->zxdev);
if (status != ZX_OK) {
zxlogf(ERROR, "%s: device_add failed: %d", DRIVER_NAME, status);
free(test);
return status;
}
return ZX_OK;
}
static zx_driver_ops_t test_driver_ops = {
.version = DRIVER_OPS_VERSION,
.bind = test_bind,
};
ZIRCON_DRIVER(test_child_2, test_driver_ops, "zircon", "0.1");