blob: 00de165fdfa40c61c0640b417f7f80e60033c751 [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/device.h>
#include <ddk/driver.h>
#include <ddk/platform-defs.h>
#include <stdlib.h>
#include <string.h>
extern zx_status_t aml_mipi_bind(void* ctx, zx_device_t* parent);
static zx_driver_ops_t aml_mipi_driver_ops = {
.version = DRIVER_OPS_VERSION,
.bind = aml_mipi_bind,
};
// clang-format off
ZIRCON_DRIVER_BEGIN(aml_mipi, aml_mipi_driver_ops, "aml-mipi-csi2", "0.1", 3)
BI_ABORT_IF(NE, BIND_PLATFORM_DEV_VID, PDEV_VID_AMLOGIC),
BI_ABORT_IF(NE, BIND_PLATFORM_DEV_PID, PDEV_PID_AMLOGIC_T931),
BI_MATCH_IF(EQ, BIND_PLATFORM_DEV_DID, PDEV_DID_AMLOGIC_MIPI),
ZIRCON_DRIVER_END(aml_mipi)