167 lines
5.2 KiB
C
167 lines
5.2 KiB
C
/* $NetBSD: rockchip_dwctwo.c,v 1.5 2015/08/30 13:02:42 skrll Exp $ */
|
|
|
|
/*-
|
|
* Copyright (c) 2013 The NetBSD Foundation, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
|
* by Nick Hudson
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
|
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
|
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
#include <sys/cdefs.h>
|
|
__KERNEL_RCSID(0, "$NetBSD: rockchip_dwctwo.c,v 1.5 2015/08/30 13:02:42 skrll Exp $");
|
|
|
|
#include <sys/param.h>
|
|
#include <sys/systm.h>
|
|
#include <sys/device.h>
|
|
#include <sys/mutex.h>
|
|
#include <sys/bus.h>
|
|
#include <sys/workqueue.h>
|
|
|
|
#include <arm/rockchip/rockchip_reg.h>
|
|
#include <arm/rockchip/rockchip_var.h>
|
|
|
|
#include <dev/usb/usb.h>
|
|
#include <dev/usb/usbdi.h>
|
|
#include <dev/usb/usbdivar.h>
|
|
#include <dev/usb/usb_mem.h>
|
|
|
|
#include <dwc2/dwc2var.h>
|
|
|
|
#include <dwc2/dwc2.h>
|
|
#include "dwc2_core.h"
|
|
|
|
struct rkdwc2_softc {
|
|
struct dwc2_softc sc_dwc2;
|
|
|
|
void *sc_ih;
|
|
};
|
|
|
|
static struct dwc2_core_params rkdwc2_params = {
|
|
.otg_cap = 2, /* 0 - HNP/SRP capable */
|
|
.otg_ver = 0, /* 0 - 1.3 */
|
|
.dma_enable = 1, /* 1 - DMA (default, if available) */
|
|
.dma_desc_enable = 1, /* 1 - Descriptor DMA (default, if available) */
|
|
.speed = 0, /* 0 - High Speed */
|
|
.enable_dynamic_fifo = 1, /* 1 - Allow dynamic FIFO sizing (default, if available) */
|
|
.en_multiple_tx_fifo = 1, /* Specifies whether dedicated per-endpoint transmit FIFOs are enabled */
|
|
.host_rx_fifo_size = 520, /* 520 DWORDs */
|
|
.host_nperio_tx_fifo_size = 128, /* 128 DWORDs */
|
|
.host_perio_tx_fifo_size = 256, /* 256 DWORDs */
|
|
.max_transfer_size = 65535,/* 2047 to 65,535 */
|
|
.max_packet_count = 511, /* 15 to 511 */
|
|
.host_channels = 8, /* 1 to 16 */
|
|
.phy_type = 1, /* 1- UTMI+ Phy */
|
|
.phy_utmi_width = 8, /* 8 bits */
|
|
.phy_ulpi_ddr = 0, /* Single */
|
|
.phy_ulpi_ext_vbus = 0,
|
|
.i2c_enable = 0,
|
|
.ulpi_fs_ls = 0, /* 0 - No (default) */
|
|
.host_support_fs_ls_low_power = 0, /* 0 - Don't support low power mode (default) */
|
|
.host_ls_low_power_phy_clk = 0, /* 1 - 48 MHz default when phy_type is UTMI+ or ULPI*/
|
|
.ts_dline = 0, /* 0 - No (default) */
|
|
.reload_ctl = 0, /* 0 - No (default for core < 2.92a) */
|
|
.ahbcfg = 0x7, /* INCR16 */
|
|
.uframe_sched = 1, /* True to enable microframe scheduler */
|
|
.external_id_pin_ctl = -1,
|
|
.hibernation = -1,
|
|
};
|
|
|
|
static int rkdwc2_match(device_t, struct cfdata *, void *);
|
|
static void rkdwc2_attach(device_t, device_t, void *);
|
|
static void rkdwc2_deferred(device_t);
|
|
|
|
CFATTACH_DECL_NEW(rkdwctwo, sizeof(struct rkdwc2_softc),
|
|
rkdwc2_match, rkdwc2_attach, NULL, NULL);
|
|
|
|
/* ARGSUSED */
|
|
static int
|
|
rkdwc2_match(device_t parent, struct cfdata *match, void *aux)
|
|
{
|
|
#if 0
|
|
struct obio_attach_args *obio = aux;
|
|
|
|
if (strcmp(obio->obio_name, "dwctwo") != 0)
|
|
return 0;
|
|
#endif
|
|
return 1;
|
|
}
|
|
|
|
/* ARGSUSED */
|
|
static void
|
|
rkdwc2_attach(device_t parent, device_t self, void *aux)
|
|
{
|
|
struct rkdwc2_softc *sc = device_private(self);
|
|
struct obio_attach_args *obio = aux;
|
|
|
|
sc->sc_dwc2.sc_dev = self;
|
|
|
|
sc->sc_dwc2.sc_iot = obio->obio_bst;
|
|
sc->sc_dwc2.sc_bus.dmatag = obio->obio_dmat;
|
|
sc->sc_dwc2.sc_params = &rkdwc2_params;
|
|
|
|
bus_space_subregion(obio->obio_bst, obio->obio_bsh, obio->obio_offset,
|
|
obio->obio_size, &sc->sc_dwc2.sc_ioh);
|
|
|
|
aprint_naive(": USB controller\n");
|
|
aprint_normal(": USB controller\n");
|
|
|
|
sc->sc_ih = intr_establish(obio->obio_intr, IPL_VM,
|
|
IST_LEVEL | IST_MPSAFE, dwc2_intr, &sc->sc_dwc2);
|
|
#if 0
|
|
IST_EDGE, dwc2_intr, &sc->sc_dwc2);
|
|
#endif
|
|
|
|
if (sc->sc_ih == NULL) {
|
|
aprint_error_dev(self, "failed to establish interrupt %d\n",
|
|
obio->obio_intr);
|
|
goto fail;
|
|
}
|
|
config_defer(self, rkdwc2_deferred);
|
|
|
|
return;
|
|
|
|
fail:
|
|
if (sc->sc_ih) {
|
|
intr_disestablish(sc->sc_ih);
|
|
sc->sc_ih = NULL;
|
|
}
|
|
}
|
|
|
|
static void
|
|
rkdwc2_deferred(device_t self)
|
|
{
|
|
struct rkdwc2_softc *sc = device_private(self);
|
|
int error;
|
|
|
|
error = dwc2_init(&sc->sc_dwc2);
|
|
if (error != 0) {
|
|
aprint_error_dev(self, "couldn't initialize host, error=%d\n",
|
|
error);
|
|
return;
|
|
}
|
|
sc->sc_dwc2.sc_child = config_found(sc->sc_dwc2.sc_dev,
|
|
&sc->sc_dwc2.sc_bus, usbctlprint);
|
|
}
|