| // 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 <vector> |
| |
| #include <ddk/binding.h> |
| #include <ddk/debug.h> |
| #include <ddk/device.h> |
| #include <ddk/driver.h> |
| #include <ddk/platform-defs.h> |
| #include <ddktl/device.h> |
| #include <ddktl/protocol/empty-protocol.h> |
| #include <fbl/alloc_checker.h> |
| |
| class TestCompatibilityHookDriver; |
| using DeviceType = ddk::Device<TestCompatibilityHookDriver, ddk::Unbindable>; |
| class TestCompatibilityHookDriver : public DeviceType, |
| public ddk::EmptyProtocol<ZX_PROTOCOL_TEST_CHILD> { |
| public: |
| TestCompatibilityHookDriver(zx_device_t* parent) |
| : DeviceType(parent) {} |
| zx_status_t Bind(); |
| void DdkUnbind() { |
| DdkRemove(); |
| } |
| void DdkRelease() { |
| delete this; |
| } |
| }; |
| |
| zx_status_t TestCompatibilityHookDriver::Bind() { |
| return DdkAdd("compatibility-test"); |
| } |
| |
| zx_status_t test_compatibility_hook_bind(void* ctx, zx_device_t* device) { |
| fbl::AllocChecker ac; |
| auto dev = fbl::make_unique_checked<TestCompatibilityHookDriver>(&ac, device); |
| if (!ac.check()) { |
| return ZX_ERR_NO_MEMORY; |
| } |
| auto status = dev->Bind(); |
| if (status == ZX_OK) { |
| // devmgr is now in charge of the memory for dev |
| __UNUSED auto ptr = dev.release(); |
| } |
| return status; |
| } |
| |
| static zx_driver_ops_t test_compatibility_hook_driver_ops = []() -> zx_driver_ops_t { |
| zx_driver_ops_t ops; |
| ops.version = DRIVER_OPS_VERSION; |
| ops.bind = test_compatibility_hook_bind; |
| return ops; |
| }(); |
| |
| // clang-format off |
| ZIRCON_DRIVER_BEGIN(TestCompatibilityHook, test_compatibility_hook_driver_ops, "zircon", "0.1", 4) |
| BI_ABORT_IF(NE, BIND_PLATFORM_DEV_VID, PDEV_VID_TEST), |
| BI_MATCH_IF(EQ, BIND_PLATFORM_DEV_PID, PDEV_PID_COMPATIBILITY_TEST), |
| ZIRCON_DRIVER_END(TestCompatibilityHook) |
| // clang-format on |