#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: ohci_sbus.c,v 1.16 2021/08/07 16:19:02 thorpej Exp $");
#include <sys/param.h>
#include <sys/kmem.h>
#include <sys/mbuf.h>
#include <uvm/uvm_extern.h>
#define _PLAYSTATION2_BUS_DMA_PRIVATE
#include <machine/bus.h>
#include <machine/autoconf.h>
#include <mips/cpuregs.h>
#include <dev/usb/usb.h>
#include <dev/usb/usbdi.h>
#include <dev/usb/usbdivar.h>
#include <dev/usb/usb_mem.h>
#include <dev/usb/ohcireg.h>
#include <dev/usb/ohcivar.h>
#include <playstation2/ee/sifvar.h>
#include <playstation2/ee/dmacvar.h>
#include <playstation2/dev/sbusvar.h>
#ifdef DEBUG
#define STATIC
#else
#define STATIC static
#endif
#define SBUS_OHCI_REGBASE MIPS_PHYS_TO_KSEG1(0x1f801600)
#define SBUS_OHCI_REGSIZE 0x1000
STATIC int ohci_sbus_match(struct device *, struct cfdata *, void *);
STATIC void ohci_sbus_attach(struct device *, struct device *, void *);
STATIC void _ohci_sbus_map_sync(bus_dma_tag_t, bus_dmamap_t, bus_addr_t,
bus_size_t, int);
STATIC int _ohci_sbus_mem_alloc(bus_dma_tag_t, bus_size_t, bus_size_t,
bus_size_t, bus_dma_segment_t *, int, int *, int);
STATIC void _ohci_sbus_mem_free(bus_dma_tag_t, bus_dma_segment_t *, int);
STATIC int _ohci_sbus_mem_map(bus_dma_tag_t, bus_dma_segment_t *, int, size_t,
void **, int);
STATIC void _ohci_sbus_mem_unmap(bus_dma_tag_t, void *, size_t);
struct playstation2_bus_dma_tag ohci_bus_dma_tag = {
_bus_dmamap_create,
_bus_dmamap_destroy,
_bus_dmamap_load,
_bus_dmamap_load_mbuf,
_bus_dmamap_load_uio,
_bus_dmamap_load_raw,
_bus_dmamap_unload,
_ohci_sbus_map_sync,
_ohci_sbus_mem_alloc,
_ohci_sbus_mem_free,
_ohci_sbus_mem_map,
_ohci_sbus_mem_unmap,
_bus_dmamem_mmap,
};
struct ohci_dma_segment {
struct iopdma_segment ds_iopdma_seg;
LIST_ENTRY(ohci_dma_segment) ds_link;
};
struct ohci_sbus_softc {
struct ohci_softc sc;
LIST_HEAD(, ohci_dma_segment) sc_dmaseg_head;
};
CFATTACH_DECL_NEW(ohci_sbus, sizeof(struct ohci_sbus_softc),
ohci_sbus_match, ohci_sbus_attach, NULL, NULL);
int
ohci_sbus_match(struct device *parent, struct cfdata *cf, void *aux)
{
return 1;
}
void
ohci_sbus_attach(struct device *parent, struct device *self, void *aux)
{
struct ohci_sbus_softc *sc = device_private(self);
printf("\n");
sc->sc.sc_dev = self;
sc->sc.sc_bus.ub_hcpriv = sc;
sc->sc.iot = bus_space_create(0, "OHCI I/O space", SBUS_OHCI_REGBASE,
SBUS_OHCI_REGSIZE);
sc->sc.ioh = SBUS_OHCI_REGBASE;
ohci_bus_dma_tag._dmachip_cookie = sc;
sc->sc.sc_bus.ub_dmatag = &ohci_bus_dma_tag;
bus_space_write_4(sc->sc.iot, sc->sc.ioh, OHCI_INTERRUPT_DISABLE,
OHCI_ALL_INTRS);
sbus_intr_establish(SBUS_IRQ_USB, ohci_intr, sc);
LIST_INIT(&sc->sc_dmaseg_head);
int err = ohci_init(&sc->sc);
if (err) {
printf(": init failed. error=%d\n", err);
return;
}
sc->sc.sc_child = config_found(self, &sc->sc.sc_bus, usbctlprint,
CFARGS_NONE);
}
void
_ohci_sbus_map_sync(bus_dma_tag_t t, bus_dmamap_t map, bus_addr_t offset,
bus_size_t len, int ops)
{
dmac_sync_buffer();
}
int
_ohci_sbus_mem_alloc(bus_dma_tag_t t, bus_size_t size, bus_size_t alignment,
bus_size_t boundary, bus_dma_segment_t *segs, int nsegs, int *rsegs,
int flags)
{
struct ohci_sbus_softc *sc = t->_dmachip_cookie;
struct ohci_dma_segment *ds;
struct iopdma_segment *iopdma_seg;
int error;
KDASSERT(sc);
ds = kmem_intr_alloc(sizeof(struct ohci_dma_segment), KM_NOSLEEP);
if (ds == NULL)
return 1;
iopdma_seg = &ds->ds_iopdma_seg;
error = iopdma_allocate_buffer(iopdma_seg, size);
if (error) {
kmem_intr_free(ds, sizeof(*ds));
return 1;
}
segs[0].ds_len = iopdma_seg->size;
segs[0].ds_addr = iopdma_seg->iop_paddr;
segs[0]._ds_vaddr = iopdma_seg->ee_vaddr;
LIST_INSERT_HEAD(&sc->sc_dmaseg_head, ds, ds_link);
*rsegs = 1;
return 0;
}
void
_ohci_sbus_mem_free(bus_dma_tag_t t, bus_dma_segment_t *segs, int nsegs)
{
struct ohci_sbus_softc *sc = t->_dmachip_cookie;
struct ohci_dma_segment *ds;
paddr_t addr = segs[0].ds_addr;
for (ds = LIST_FIRST(&sc->sc_dmaseg_head); ds != NULL;
ds = LIST_NEXT(ds, ds_link)) {
if (ds->ds_iopdma_seg.iop_paddr == addr) {
iopdma_free_buffer(&ds->ds_iopdma_seg);
LIST_REMOVE(ds, ds_link);
kmem_intr_free(ds, sizeof(*ds));
return;
}
}
panic("_dmamem_free: can't find corresponding handle.");
}
int
_ohci_sbus_mem_map(bus_dma_tag_t t, bus_dma_segment_t *segs, int nsegs, size_t size,
void **kvap, int flags)
{
struct ohci_sbus_softc *sc = t->_dmachip_cookie;
struct ohci_dma_segment *ds;
paddr_t addr = segs[0].ds_addr;
for (ds = LIST_FIRST(&sc->sc_dmaseg_head); ds != NULL;
ds = LIST_NEXT(ds, ds_link)) {
if (ds->ds_iopdma_seg.iop_paddr == addr) {
*kvap = (void *)ds->ds_iopdma_seg.ee_vaddr;
return 0;
}
}
return 1;
}
void
_ohci_sbus_mem_unmap(bus_dma_tag_t t, void *kva, size_t size)
{
}