blob: 806541dcbdda1f85f77e035fc69f6c634dad3f20 [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.
#pragma once
#include <ddk/device.h>
#include <ddktl/device.h>
#include <ddktl/protocol/platform/bus.h>
#include <fbl/macros.h>
#include <threads.h>
namespace board_test {
class TestBoard;
using TestBoardType = ddk::Device<TestBoard>;
// This is the main class for the platform bus driver.
class TestBoard : public TestBoardType {
public:
explicit TestBoard(zx_device_t* parent, pbus_protocol_t* pbus)
: TestBoardType(parent), pbus_(pbus) {}
static zx_status_t Create(zx_device_t* parent);
// Device protocol implementation.
void DdkRelease();
private:
DISALLOW_COPY_ASSIGN_AND_MOVE(TestBoard);
zx_status_t Start();
zx_status_t GpioInit();
zx_status_t I2cInit();
zx_status_t PowerInit();
zx_status_t ClockInit();
zx_status_t AudioCodecInit();
zx_status_t TestInit();
int Thread();
ddk::PBusProtocolClient pbus_;
thrd_t thread_;
};
} // namespace board_test
__BEGIN_CDECLS
zx_status_t test_bind(void* ctx, zx_device_t* parent);
__END_CDECLS