| // Copyright 2019 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 "as370.h" |
| |
| #include <ddk/binding.h> |
| #include <ddk/debug.h> |
| #include <ddk/platform-defs.h> |
| #include <fbl/alloc_checker.h> |
| #include <fbl/unique_ptr.h> |
| |
| namespace board_as370 { |
| |
| zx_status_t As370::Create(void* ctx, zx_device_t* parent) { |
| fbl::AllocChecker ac; |
| auto board = fbl::make_unique_checked<As370>(&ac, parent); |
| if (!ac.check()) { |
| return ZX_ERR_NO_MEMORY; |
| } |
| |
| zx_status_t status = board->DdkAdd("as370", DEVICE_ADD_NON_BINDABLE); |
| if (status != ZX_OK) { |
| return status; |
| } |
| |
| __UNUSED auto* dummy = board.release(); |
| |
| return ZX_OK; |
| } |
| |
| } // namespace board_as370 |
| |
| static zx_driver_ops_t driver_ops = []() { |
| zx_driver_ops_t ops; |
| ops.version = DRIVER_OPS_VERSION; |
| ops.bind = board_as370::As370::Create; |
| return ops; |
| }(); |
| |
| ZIRCON_DRIVER_BEGIN(as370, 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_SYNAPTICS), |
| BI_MATCH_IF(EQ, BIND_PLATFORM_DEV_PID, PDEV_PID_SYNAPTICS_AS370), |
| ZIRCON_DRIVER_END(as370) |