blob: 6a160e3ed53545a27eb2984f97d021264b58662e [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/protocol/platform-defs.h>
extern zx_status_t ft3x27_bind(void* ctx, zx_device_t* parent);
static zx_driver_ops_t focaltech_driver_ops = {
.version = DRIVER_OPS_VERSION,
.bind = ft3x27_bind,
};
// clang-format off
ZIRCON_DRIVER_BEGIN(focaltech_touch, focaltech_driver_ops, "focaltech-touch", "0.1", 3)
BI_ABORT_IF(NE, BIND_PLATFORM_DEV_VID, PDEV_VID_GOOGLE),
BI_ABORT_IF(NE, BIND_PLATFORM_DEV_PID, PDEV_PID_ASTRO),
BI_MATCH_IF(EQ, BIND_PLATFORM_DEV_DID, PDEV_DID_ASTRO_FOCALTOUCH),
ZIRCON_DRIVER_END(focaltech_touch)
// clang-format on