2024-01-20 03:51:29 +03:00
|
|
|
/* $NetBSD: ehcivar.h,v 1.52 2024/01/20 00:51:29 jmcneill Exp $ */
|
2000-12-24 09:39:01 +03:00
|
|
|
|
|
|
|
/*
|
2001-11-16 02:25:09 +03:00
|
|
|
* Copyright (c) 2001 The NetBSD Foundation, Inc.
|
2000-12-24 09:39:01 +03:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
|
|
|
* by Lennart Augustsson (lennart@augustsson.net).
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2013-01-29 04:00:15 +04:00
|
|
|
#ifndef _EHCIVAR_H_
|
|
|
|
#define _EHCIVAR_H_
|
|
|
|
|
|
|
|
#include <sys/pool.h>
|
|
|
|
|
2001-11-18 03:39:46 +03:00
|
|
|
typedef struct ehci_soft_qtd {
|
|
|
|
ehci_qtd_t qtd;
|
2016-04-23 13:15:27 +03:00
|
|
|
struct ehci_soft_qtd *nextqtd; /* mirrors nextqtd in TD */
|
|
|
|
ehci_physaddr_t physaddr; /* qTD's physical address */
|
|
|
|
usb_dma_t dma; /* qTD's DMA infos */
|
|
|
|
int offs; /* qTD's offset in usb_dma_t */
|
|
|
|
struct usbd_xfer *xfer; /* xfer back pointer */
|
|
|
|
uint16_t len;
|
2001-11-18 03:39:46 +03:00
|
|
|
} ehci_soft_qtd_t;
|
2013-02-02 18:15:55 +04:00
|
|
|
#define EHCI_SQTD_ALIGN MAX(EHCI_QTD_ALIGN, CACHE_LINE_SIZE)
|
2020-03-15 10:56:19 +03:00
|
|
|
#define EHCI_SQTD_SIZE (roundup(sizeof(struct ehci_soft_qtd), EHCI_SQTD_ALIGN))
|
2001-11-18 03:39:46 +03:00
|
|
|
#define EHCI_SQTD_CHUNK (EHCI_PAGE_SIZE / EHCI_SQTD_SIZE)
|
|
|
|
|
|
|
|
typedef struct ehci_soft_qh {
|
|
|
|
ehci_qh_t qh;
|
|
|
|
struct ehci_soft_qh *next;
|
2001-11-20 16:49:23 +03:00
|
|
|
struct ehci_soft_qtd *sqtd;
|
2001-11-18 03:39:46 +03:00
|
|
|
ehci_physaddr_t physaddr;
|
2016-04-23 13:15:27 +03:00
|
|
|
usb_dma_t dma; /* QH's DMA infos */
|
|
|
|
int offs; /* QH's offset in usb_dma_t */
|
2004-10-22 14:38:17 +04:00
|
|
|
int islot;
|
2001-11-18 03:39:46 +03:00
|
|
|
} ehci_soft_qh_t;
|
2020-03-15 10:56:19 +03:00
|
|
|
#define EHCI_SQH_SIZE (roundup(sizeof(struct ehci_soft_qh), EHCI_QH_ALIGN))
|
2001-11-18 03:39:46 +03:00
|
|
|
#define EHCI_SQH_CHUNK (EHCI_PAGE_SIZE / EHCI_SQH_SIZE)
|
|
|
|
|
2008-08-03 02:23:18 +04:00
|
|
|
typedef struct ehci_soft_itd {
|
2016-04-23 13:15:27 +03:00
|
|
|
union {
|
|
|
|
ehci_itd_t itd;
|
|
|
|
ehci_sitd_t sitd;
|
|
|
|
};
|
2008-08-03 02:23:18 +04:00
|
|
|
union {
|
|
|
|
struct {
|
2016-04-23 13:15:27 +03:00
|
|
|
/* soft_itds links in a periodic frame */
|
2008-08-03 02:23:18 +04:00
|
|
|
struct ehci_soft_itd *next;
|
|
|
|
struct ehci_soft_itd *prev;
|
|
|
|
} frame_list;
|
|
|
|
/* circular list of free itds */
|
|
|
|
LIST_ENTRY(ehci_soft_itd) free_list;
|
2016-04-23 13:15:27 +03:00
|
|
|
};
|
2008-08-03 02:23:18 +04:00
|
|
|
struct ehci_soft_itd *xfer_next; /* Next soft_itd in xfer */
|
|
|
|
ehci_physaddr_t physaddr;
|
|
|
|
usb_dma_t dma;
|
|
|
|
int offs;
|
|
|
|
int slot;
|
|
|
|
struct timeval t; /* store free time */
|
|
|
|
} ehci_soft_itd_t;
|
2020-03-15 10:56:19 +03:00
|
|
|
#define EHCI_ITD_SIZE (roundup(sizeof(struct ehci_soft_itd), EHCI_ITD_ALIGN))
|
2008-08-03 02:23:18 +04:00
|
|
|
#define EHCI_ITD_CHUNK (EHCI_PAGE_SIZE / EHCI_ITD_SIZE)
|
|
|
|
|
2016-04-23 13:15:27 +03:00
|
|
|
#define ehci_soft_sitd_t ehci_soft_itd_t
|
|
|
|
#define ehci_soft_sitd ehci_soft_itd
|
|
|
|
#define sc_softsitds sc_softitds
|
2020-03-15 10:56:19 +03:00
|
|
|
#define EHCI_SITD_SIZE (roundup(sizeof(struct ehci_soft_sitd), EHCI_SITD_ALIGN))
|
2016-04-23 13:15:27 +03:00
|
|
|
#define EHCI_SITD_CHUNK (EHCI_PAGE_SIZE / EHCI_SITD_SIZE)
|
|
|
|
|
2001-11-21 15:28:23 +03:00
|
|
|
struct ehci_xfer {
|
2016-04-23 13:15:27 +03:00
|
|
|
struct usbd_xfer ex_xfer;
|
|
|
|
TAILQ_ENTRY(ehci_xfer) ex_next; /* list of active xfers */
|
|
|
|
enum {
|
|
|
|
EX_NONE,
|
|
|
|
EX_CTRL,
|
|
|
|
EX_BULK,
|
|
|
|
EX_INTR,
|
|
|
|
EX_ISOC,
|
|
|
|
EX_FS_ISOC
|
|
|
|
} ex_type;
|
|
|
|
/* ctrl/bulk/intr */
|
|
|
|
struct {
|
|
|
|
ehci_soft_qtd_t **ex_sqtds;
|
|
|
|
size_t ex_nsqtd;
|
|
|
|
};
|
|
|
|
union {
|
|
|
|
/* ctrl */
|
|
|
|
struct {
|
|
|
|
ehci_soft_qtd_t *ex_setup;
|
|
|
|
ehci_soft_qtd_t *ex_data;
|
|
|
|
ehci_soft_qtd_t *ex_status;
|
|
|
|
};
|
|
|
|
/* bulk/intr */
|
|
|
|
struct {
|
|
|
|
ehci_soft_qtd_t *ex_sqtdstart;
|
|
|
|
ehci_soft_qtd_t *ex_sqtdend;
|
|
|
|
};
|
|
|
|
/* isoc */
|
|
|
|
struct {
|
|
|
|
ehci_soft_itd_t *ex_itdstart;
|
|
|
|
ehci_soft_itd_t *ex_itdend;
|
|
|
|
};
|
|
|
|
/* split (aka fs) isoc */
|
|
|
|
struct {
|
|
|
|
ehci_soft_sitd_t *ex_sitdstart;
|
|
|
|
ehci_soft_sitd_t *ex_sitdend;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
bool ex_isdone; /* used only when DIAGNOSTIC is defined */
|
2001-11-21 15:28:23 +03:00
|
|
|
};
|
2016-04-23 13:15:27 +03:00
|
|
|
|
|
|
|
#define EHCI_BUS2SC(bus) ((bus)->ub_hcpriv)
|
|
|
|
#define EHCI_PIPE2SC(pipe) EHCI_BUS2SC((pipe)->up_dev->ud_bus)
|
|
|
|
#define EHCI_XFER2SC(xfer) EHCI_BUS2SC((xfer)->ux_bus)
|
|
|
|
#define EHCI_EPIPE2SC(epipe) EHCI_BUS2SC((epipe)->pipe.up_dev->ud_bus)
|
|
|
|
|
|
|
|
#define EHCI_XFER2EXFER(xfer) ((struct ehci_xfer *)(xfer))
|
|
|
|
|
|
|
|
#define EHCI_XFER2EPIPE(xfer) ((struct ehci_pipe *)((xfer)->ux_pipe))
|
|
|
|
#define EHCI_PIPE2EPIPE(pipe) ((struct ehci_pipe *)(pipe))
|
2001-11-21 15:28:23 +03:00
|
|
|
|
2004-10-22 14:38:17 +04:00
|
|
|
/* Information about an entry in the interrupt list. */
|
|
|
|
struct ehci_soft_islot {
|
|
|
|
ehci_soft_qh_t *sqh; /* Queue Head. */
|
|
|
|
};
|
|
|
|
|
|
|
|
#define EHCI_FRAMELIST_MAXCOUNT 1024
|
|
|
|
#define EHCI_IPOLLRATES 8 /* Poll rates (1ms, 2, 4, 8 .. 128) */
|
|
|
|
#define EHCI_INTRQHS ((1 << EHCI_IPOLLRATES) - 1)
|
2005-04-28 01:23:41 +04:00
|
|
|
#define EHCI_MAX_POLLRATE (1 << (EHCI_IPOLLRATES - 1))
|
2004-10-22 14:38:17 +04:00
|
|
|
#define EHCI_IQHIDX(lev, pos) \
|
|
|
|
((((pos) & ((1 << (lev)) - 1)) | (1 << (lev))) - 1)
|
|
|
|
#define EHCI_ILEV_IVAL(lev) (1 << (lev))
|
|
|
|
|
2001-11-18 03:39:46 +03:00
|
|
|
|
|
|
|
#define EHCI_HASH_SIZE 128
|
2001-11-10 20:06:11 +03:00
|
|
|
#define EHCI_COMPANION_MAX 8
|
2001-11-18 03:39:46 +03:00
|
|
|
|
2008-08-03 02:23:18 +04:00
|
|
|
#define EHCI_FREE_LIST_INTERVAL 100
|
|
|
|
|
2000-12-24 09:39:01 +03:00
|
|
|
typedef struct ehci_softc {
|
2008-03-28 20:14:45 +03:00
|
|
|
device_t sc_dev;
|
2022-03-13 14:29:21 +03:00
|
|
|
kmutex_t sc_rhlock;
|
2012-06-10 10:15:52 +04:00
|
|
|
kmutex_t sc_lock;
|
|
|
|
kmutex_t sc_intr_lock;
|
|
|
|
kcondvar_t sc_doorbell;
|
|
|
|
void *sc_doorbell_si;
|
2022-03-13 14:29:10 +03:00
|
|
|
struct lwp *sc_doorbelllwp;
|
2012-06-10 10:15:52 +04:00
|
|
|
void *sc_pcd_si;
|
2008-03-28 20:14:45 +03:00
|
|
|
struct usbd_bus sc_bus;
|
2000-12-24 09:39:01 +03:00
|
|
|
bus_space_tag_t iot;
|
|
|
|
bus_space_handle_t ioh;
|
|
|
|
bus_size_t sc_size;
|
2021-12-23 00:45:02 +03:00
|
|
|
bus_dma_tag_t sc_dmatag; /* for control data structures */
|
2001-11-06 06:16:17 +03:00
|
|
|
u_int sc_offs; /* offset to operational regs */
|
2006-01-17 15:30:00 +03:00
|
|
|
int sc_flags; /* misc flags */
|
|
|
|
#define EHCIF_DROPPED_INTR_WORKAROUND 0x01
|
2011-01-18 11:29:24 +03:00
|
|
|
#define EHCIF_ETTF 0x02 /* Emb. Transaction Translater func. */
|
2024-01-20 03:51:29 +03:00
|
|
|
#define EHCIF_32BIT_ACCESS 0x04 /* 32-bit MMIO access req'd */
|
2000-12-24 09:39:01 +03:00
|
|
|
|
2016-04-23 13:15:27 +03:00
|
|
|
uint32_t sc_cmd; /* shadow of cmd reg during suspend */
|
2000-12-24 09:39:01 +03:00
|
|
|
|
2001-11-10 20:06:11 +03:00
|
|
|
u_int sc_ncomp;
|
2001-11-16 04:57:08 +03:00
|
|
|
u_int sc_npcomp;
|
2008-03-28 20:14:45 +03:00
|
|
|
device_t sc_comps[EHCI_COMPANION_MAX];
|
2001-11-10 20:06:11 +03:00
|
|
|
|
implement a gross hack to fix "boot -a" on systems with usb keyboards on
systems with ehci handover to uhci (and maybe ohci), and fix a similar
problem for "boot -s".
there is effort to ensure that all devices attached via USB are probed
before RB_ASKNAME or RB_SINGLE attempts to ask any questions on the console,
and largely this works, often by chance, today, for USB disks and root.
i've recently pushed this more into uhub and general USB device attachment
as well, and kept a config_pending reference across the first explore of
a bus. these fix many issues with directly attached hubs.
however, on systems where devices connected to ehci ports are handed over
to a companion uhci or ohci port, it may not be the first, or even second,
bus explore that finds the device finally before attachment, and at this
point all config_pending references are dropped.
there is no direct communication between drivers, the potentials are
looked up but their device_t is only used for generic things like the name,
so informing the correct companion to expect a device and deal with the
config_pending references is not possible without some fairly ugly layer
violations or multi-level callbacks (eg, we have "ehci0", and usually an
the relevant companion, eg, "uhci2", but it is the uhub that uhci2 has
attached that will deal with the device attachment.)
with the above fixes to generic USB code, the disown happens during the
first explore. the hack works by, at this point, checking if (a) root
is not mounted, (b) single user or ask name are set, and (c) if the hack
as not been triggered already. if all 3 conditions are true, then a
config_pending_incr() is called and a callback is triggered for (default)
5 seconds to call config_pending_decr(). ehci detach pauses waiting for
this callback if scheduled.
this allows enough time for the uhub and the ukbd/wskbd to attach before
the RK_ASKROOT prompts appear. testing shows it takes between 1.5 and
2 seconds for the keyboard to appear after the disown occurs.
Index: dev/usb/ehcivar.c
- new sc_compcallout, sc_compcallout, sc_complock, and a state for th
handover hack.
Index: dev/usb/ehci.c
ehci_init():
- use aprint_normal_dev() instead of manual device_xname().
- initialise sc_compcallout, sc_compcallout, sc_complock, and sc_comp_state.
ehci_detach():
- if there are companion controllers, tear own the above, including waiting
if there is a callback scheduled.
ehci_disown_callback():
- new callout to call config_pending_decr() in the the future.
schedule this ca
ehci_disown_sched_callback():
- if booting to single user or asking names, call config_pending_incr() and
schedule the callout above, default 5 second delay.
ehci_disown():
- if disowning a port call ehci_disown_sched_callback().
2018-09-18 05:00:06 +03:00
|
|
|
/* This chunk to handle early RB_ASKNAME hand over. */
|
|
|
|
callout_t sc_compcallout;
|
|
|
|
kmutex_t sc_complock;
|
|
|
|
kcondvar_t sc_compcv;
|
|
|
|
enum {
|
|
|
|
CO_EARLY,
|
|
|
|
CO_SCHED,
|
|
|
|
CO_DONE,
|
|
|
|
} sc_comp_state;
|
|
|
|
|
2001-11-10 20:06:11 +03:00
|
|
|
usb_dma_t sc_fldma;
|
2004-10-22 14:38:17 +04:00
|
|
|
ehci_link_t *sc_flist;
|
2001-11-10 20:06:11 +03:00
|
|
|
u_int sc_flsize;
|
2004-10-22 14:38:17 +04:00
|
|
|
u_int sc_rand; /* XXX need proper intr scheduling */
|
|
|
|
|
|
|
|
struct ehci_soft_islot sc_islots[EHCI_INTRQHS];
|
2001-11-10 20:06:11 +03:00
|
|
|
|
2016-04-23 13:15:27 +03:00
|
|
|
/*
|
|
|
|
* an array matching sc_flist, but with software pointers,
|
2008-08-03 02:23:18 +04:00
|
|
|
* not hardware address pointers
|
|
|
|
*/
|
|
|
|
struct ehci_soft_itd **sc_softitds;
|
|
|
|
|
2008-10-14 22:12:38 +04:00
|
|
|
TAILQ_HEAD(, ehci_xfer) sc_intrhead;
|
2001-11-21 15:28:23 +03:00
|
|
|
|
2001-11-18 03:39:46 +03:00
|
|
|
ehci_soft_qh_t *sc_freeqhs;
|
|
|
|
ehci_soft_qtd_t *sc_freeqtds;
|
2008-08-03 02:23:18 +04:00
|
|
|
LIST_HEAD(sc_freeitds, ehci_soft_itd) sc_freeitds;
|
2016-04-23 13:15:27 +03:00
|
|
|
LIST_HEAD(sc_freesitds, ehci_soft_sitd) sc_freesitds;
|
2001-11-18 03:39:46 +03:00
|
|
|
|
2001-11-16 02:25:09 +03:00
|
|
|
int sc_noport;
|
2016-04-23 13:15:27 +03:00
|
|
|
uint8_t sc_hasppc; /* has Port Power Control */
|
|
|
|
uint8_t sc_istthreshold; /* ISOC Scheduling Threshold (uframes) */
|
|
|
|
struct usbd_xfer *sc_intrxfer;
|
2005-11-20 17:27:25 +03:00
|
|
|
char sc_isreset[EHCI_MAX_PORTS];
|
2001-11-16 04:57:08 +03:00
|
|
|
|
2016-04-23 13:15:27 +03:00
|
|
|
uint32_t sc_eintrs;
|
2001-11-20 16:49:23 +03:00
|
|
|
ehci_soft_qh_t *sc_async_head;
|
2001-11-16 02:25:09 +03:00
|
|
|
|
2013-01-29 04:00:15 +04:00
|
|
|
pool_cache_t sc_xferpool; /* free xfer pool */
|
2001-11-16 02:25:09 +03:00
|
|
|
|
2009-09-04 21:53:12 +04:00
|
|
|
struct callout sc_tmo_intrlist;
|
2001-11-16 04:57:08 +03:00
|
|
|
|
2009-09-04 21:53:12 +04:00
|
|
|
device_t sc_child; /* /dev/usb# device */
|
2001-11-16 02:25:09 +03:00
|
|
|
char sc_dying;
|
2010-10-16 09:23:41 +04:00
|
|
|
|
|
|
|
void (*sc_vendor_init)(struct ehci_softc *);
|
|
|
|
int (*sc_vendor_port_status)(struct ehci_softc *, uint32_t, int);
|
2000-12-24 09:39:01 +03:00
|
|
|
} ehci_softc_t;
|
|
|
|
|
2024-01-20 03:51:29 +03:00
|
|
|
static inline uint8_t
|
|
|
|
ehci_read_1(struct ehci_softc *sc, u_int offset)
|
|
|
|
{
|
|
|
|
if (ISSET(sc->sc_flags, EHCIF_32BIT_ACCESS)) {
|
|
|
|
uint32_t val;
|
|
|
|
|
|
|
|
val = bus_space_read_4(sc->iot, sc->ioh, offset & ~3);
|
|
|
|
return (val >> ((offset & 3) * NBBY)) & 0xff;
|
|
|
|
} else {
|
|
|
|
return bus_space_read_1(sc->iot, sc->ioh, offset);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline uint16_t
|
|
|
|
ehci_read_2(struct ehci_softc *sc, u_int offset)
|
|
|
|
{
|
|
|
|
if (ISSET(sc->sc_flags, EHCIF_32BIT_ACCESS)) {
|
|
|
|
uint32_t val;
|
|
|
|
|
|
|
|
val = bus_space_read_4(sc->iot, sc->ioh, offset & ~3);
|
|
|
|
return (val >> ((offset & 3) * NBBY)) & 0xffff;
|
|
|
|
} else {
|
|
|
|
return bus_space_read_2(sc->iot, sc->ioh, offset);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
ehci_write_1(struct ehci_softc *sc, u_int offset, uint8_t data)
|
|
|
|
{
|
|
|
|
if (ISSET(sc->sc_flags, EHCIF_32BIT_ACCESS)) {
|
|
|
|
const uint32_t mask = 0xffU << ((offset & 3) * NBBY);
|
|
|
|
uint32_t val;
|
|
|
|
|
|
|
|
val = bus_space_read_4(sc->iot, sc->ioh, offset & ~3);
|
|
|
|
val &= ~mask;
|
|
|
|
val |= __SHIFTIN(data, mask);
|
|
|
|
bus_space_write_4(sc->iot, sc->ioh, offset & ~3, val);
|
|
|
|
} else {
|
|
|
|
bus_space_write_1(sc->iot, sc->ioh, offset, data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
ehci_write_2(struct ehci_softc *sc, u_int offset, uint16_t data)
|
|
|
|
{
|
|
|
|
if (ISSET(sc->sc_flags, EHCIF_32BIT_ACCESS)) {
|
|
|
|
const uint32_t mask = 0xffffU << ((offset & 3) * NBBY);
|
|
|
|
uint32_t val;
|
|
|
|
|
|
|
|
val = bus_space_read_4(sc->iot, sc->ioh, offset & ~3);
|
|
|
|
val &= ~mask;
|
|
|
|
val |= __SHIFTIN(data, mask);
|
|
|
|
bus_space_write_4(sc->iot, sc->ioh, offset & ~3, val);
|
|
|
|
} else {
|
|
|
|
bus_space_write_2(sc->iot, sc->ioh, offset, data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#define EREAD1(sc, a) ehci_read_1((sc), (a))
|
|
|
|
#define EREAD2(sc, a) ehci_read_2((sc), (a))
|
2001-11-10 20:06:11 +03:00
|
|
|
#define EREAD4(sc, a) bus_space_read_4((sc)->iot, (sc)->ioh, (a))
|
2024-01-20 03:51:29 +03:00
|
|
|
#define EWRITE1(sc, a, x) ehci_write_1((sc), (a), (x))
|
|
|
|
#define EWRITE2(sc, a, x) ehci_write_2((sc), (a), (x))
|
2001-11-10 20:06:11 +03:00
|
|
|
#define EWRITE4(sc, a, x) bus_space_write_4((sc)->iot, (sc)->ioh, (a), (x))
|
2024-01-20 03:51:29 +03:00
|
|
|
#define EOREAD1(sc, a) ehci_read_1((sc), (sc)->sc_offs+(a))
|
|
|
|
#define EOREAD2(sc, a) ehci_read_2((sc), (sc)->sc_offs+(a))
|
2001-11-06 06:16:17 +03:00
|
|
|
#define EOREAD4(sc, a) bus_space_read_4((sc)->iot, (sc)->ioh, (sc)->sc_offs+(a))
|
2024-01-20 03:51:29 +03:00
|
|
|
#define EOWRITE1(sc, a, x) ehci_write_1((sc), (sc)->sc_offs+(a), (x))
|
|
|
|
#define EOWRITE2(sc, a, x) ehci_write_2((sc), (sc)->sc_offs+(a), (x))
|
2001-11-06 06:16:17 +03:00
|
|
|
#define EOWRITE4(sc, a, x) bus_space_write_4((sc)->iot, (sc)->ioh, (sc)->sc_offs+(a), (x))
|
|
|
|
|
2016-04-23 13:15:27 +03:00
|
|
|
int ehci_init(ehci_softc_t *);
|
2000-12-24 09:39:01 +03:00
|
|
|
int ehci_intr(void *);
|
|
|
|
int ehci_detach(ehci_softc_t *, int);
|
2008-02-23 02:04:52 +03:00
|
|
|
int ehci_activate(device_t, enum devact);
|
|
|
|
void ehci_childdet(device_t, device_t);
|
2010-02-25 01:37:54 +03:00
|
|
|
bool ehci_suspend(device_t, const pmf_qual_t *);
|
|
|
|
bool ehci_resume(device_t, const pmf_qual_t *);
|
2008-03-08 01:32:52 +03:00
|
|
|
bool ehci_shutdown(device_t, int);
|
2013-01-29 04:00:15 +04:00
|
|
|
|
|
|
|
#endif /* _EHCIVAR_H_ */
|