blob: 5d2e628bb1ab187eaa58911e4d77893c134f37b9 [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 <ddk/binding.h>
#include <ddk/driver.h>
#include <ddk/platform-defs.h>
extern zx_status_t sherlock_bind(void* ctx, zx_device_t* parent);
static zx_driver_ops_t sherlock_driver_ops = {
.version = DRIVER_OPS_VERSION,
.bind = sherlock_bind,
};
ZIRCON_DRIVER_BEGIN(sherlock, sherlock_driver_ops, "zircon", "0.1", 3)
BI_ABORT_IF(NE, BIND_PROTOCOL, ZX_PROTOCOL_PBUS),
BI_ABORT_IF(NE, BIND_PLATFORM_DEV_VID, PDEV_VID_GOOGLE),
BI_MATCH_IF(EQ, BIND_PLATFORM_DEV_PID, PDEV_PID_SHERLOCK),
ZIRCON_DRIVER_END(sherlock)