blob: f1980ede889a82e81151dd42a97bfa177848194e [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 "hikey-usb.h"
#include <assert.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ddk/binding.h>
#include <ddk/debug.h>
#include <ddk/device.h>
#include <ddk/driver.h>
#include <ddk/platform-defs.h>
#include <ddk/protocol/gpio.h>
#include <ddk/protocol/platform/device.h>
#include <fbl/algorithm.h>
#include <fbl/unique_ptr.h>
namespace hikey_usb {
zx_status_t HikeyUsb::Create(zx_device_t* parent) {
fbl::AllocChecker ac;
auto bus = fbl::make_unique_checked<HikeyUsb>(&ac, parent);
if (!ac.check()) {
return ZX_ERR_NO_MEMORY;
}
auto status = bus->Init();
if (status != ZX_OK) {
return status;
}
// devmgr is now in charge of the device.
__UNUSED auto* dummy = bus.release();
return ZX_OK;
}
zx_status_t HikeyUsb::Init() {
pdev_protocol_t pdev;
auto status = device_get_protocol(parent(), ZX_PROTOCOL_PDEV, &pdev);
if (status != ZX_OK) {
return status;
}
for (uint32_t i = 0; i < countof(gpios_); i++) {
size_t actual;
status = pdev_get_protocol(&pdev, ZX_PROTOCOL_GPIO, i, &gpios_[i], sizeof(gpios_[i]),
&actual);
if (status != ZX_OK) {
return status;
}
gpio_config_out(&gpios_[i], 0);
}
zx_device_prop_t props[] = {
{BIND_PLATFORM_DEV_VID, 0, PDEV_VID_GENERIC},
{BIND_PLATFORM_DEV_PID, 0, PDEV_PID_GENERIC},
{BIND_PLATFORM_DEV_DID, 0, PDEV_DID_USB_DWC3},
};
return DdkAdd("dwc3", 0, props, countof(props));
}
zx_status_t HikeyUsb::UsbModeSwitchSetMode(usb_mode_t mode) {
if (mode == usb_mode_) {
return ZX_OK;
}
if (mode == USB_MODE_OTG) {
return ZX_ERR_NOT_SUPPORTED;
}
gpio_write(&gpios_[HUB_VDD33_EN], mode == USB_MODE_HOST);
gpio_write(&gpios_[VBUS_TYPEC], mode == USB_MODE_HOST);
gpio_write(&gpios_[USBSW_SW_SEL], mode == USB_MODE_HOST);
usb_mode_ = mode;
return ZX_OK;
return ZX_OK;
}
void HikeyUsb::DdkRelease() {
delete this;
}
__BEGIN_CDECLS
static zx_status_t hikey_usb_bind(void* ctx, zx_device_t* parent) {
return hikey_usb::HikeyUsb::Create(parent);
}
__END_CDECLS
static zx_driver_ops_t driver_ops = [](){
zx_driver_ops_t ops;
ops.version = DRIVER_OPS_VERSION;
ops.bind = hikey_usb_bind;
return ops;
}();
} // namespace hikey_usb
ZIRCON_DRIVER_BEGIN(hikey_usb, hikey_usb::driver_ops, "zircon", "0.1", 4)
BI_ABORT_IF(NE, BIND_PROTOCOL, ZX_PROTOCOL_PDEV),
BI_ABORT_IF(NE, BIND_PLATFORM_DEV_VID, PDEV_VID_96BOARDS),
BI_ABORT_IF(NE, BIND_PLATFORM_DEV_PID, PDEV_PID_HIKEY960),
BI_MATCH_IF(EQ, BIND_PLATFORM_DEV_DID, PDEV_DID_HIKEY960_USB),
ZIRCON_DRIVER_END(hikey_usb)