2023-04-09 23:41:28 +03:00
|
|
|
/* $NetBSD: xhcivar.h,v 1.24 2023/04/09 20:41:29 riastradh Exp $ */
|
2013-09-14 04:40:31 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2013 Jonathan A. Kollasch
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* 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 COPYRIGHT HOLDERS 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 COPYRIGHT HOLDER 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _DEV_USB_XHCIVAR_H_
|
|
|
|
#define _DEV_USB_XHCIVAR_H_
|
|
|
|
|
2022-03-03 09:09:03 +03:00
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
#include <sys/condvar.h>
|
|
|
|
#include <sys/device.h>
|
|
|
|
#include <sys/mutex.h>
|
|
|
|
#include <sys/pmf.h>
|
2013-09-14 04:40:31 +04:00
|
|
|
#include <sys/pool.h>
|
|
|
|
|
2022-03-03 09:09:03 +03:00
|
|
|
#include <dev/usb/usbdi.h>
|
|
|
|
#include <dev/usb/usbdivar.h>
|
|
|
|
|
2020-04-02 14:37:23 +03:00
|
|
|
#define XHCI_MAX_DCI 31
|
2016-04-23 13:15:27 +03:00
|
|
|
|
2019-01-07 06:00:39 +03:00
|
|
|
struct xhci_soft_trb {
|
|
|
|
uint64_t trb_0;
|
|
|
|
uint32_t trb_2;
|
|
|
|
uint32_t trb_3;
|
|
|
|
};
|
|
|
|
|
2013-09-14 04:40:31 +04:00
|
|
|
struct xhci_xfer {
|
|
|
|
struct usbd_xfer xx_xfer;
|
2020-05-21 16:47:10 +03:00
|
|
|
struct xhci_soft_trb *xx_trb;
|
|
|
|
u_int xx_ntrb;
|
2020-08-21 23:46:03 +03:00
|
|
|
u_int xx_isoc_done;
|
2013-09-14 04:40:31 +04:00
|
|
|
};
|
|
|
|
|
2016-04-23 13:15:27 +03:00
|
|
|
#define XHCI_BUS2SC(bus) ((bus)->ub_hcpriv)
|
|
|
|
#define XHCI_PIPE2SC(pipe) XHCI_BUS2SC((pipe)->up_dev->ud_bus)
|
|
|
|
#define XHCI_XFER2SC(xfer) XHCI_BUS2SC((xfer)->ux_bus)
|
2017-01-19 19:05:00 +03:00
|
|
|
#define XHCI_XFER2BUS(xfer) ((xfer)->ux_bus)
|
2016-04-23 13:15:27 +03:00
|
|
|
#define XHCI_XPIPE2SC(d) XHCI_BUS2SC((d)->xp_pipe.up_dev->ud_bus)
|
|
|
|
|
|
|
|
#define XHCI_XFER2XXFER(xfer) ((struct xhci_xfer *)(xfer))
|
|
|
|
|
2013-09-14 04:40:31 +04:00
|
|
|
struct xhci_ring {
|
|
|
|
usb_dma_t xr_dma;
|
|
|
|
kmutex_t xr_lock;
|
|
|
|
struct xhci_trb * xr_trb;
|
|
|
|
void **xr_cookies;
|
|
|
|
u_int xr_ntrb; /* number of elements for above */
|
|
|
|
u_int xr_ep; /* enqueue pointer */
|
|
|
|
u_int xr_cs; /* cycle state */
|
|
|
|
bool is_halted;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct xhci_slot {
|
|
|
|
usb_dma_t xs_dc_dma; /* device context page */
|
|
|
|
usb_dma_t xs_ic_dma; /* input context page */
|
2020-04-02 14:37:23 +03:00
|
|
|
struct xhci_ring *xs_xr[XHCI_MAX_DCI + 1];
|
2020-04-02 14:52:41 +03:00
|
|
|
/* transfer rings */
|
2013-09-14 04:40:31 +04:00
|
|
|
u_int xs_idx; /* slot index */
|
|
|
|
};
|
|
|
|
|
|
|
|
struct xhci_softc {
|
|
|
|
device_t sc_dev;
|
|
|
|
device_t sc_child;
|
2017-01-19 19:05:00 +03:00
|
|
|
device_t sc_child2;
|
2013-09-14 04:40:31 +04:00
|
|
|
bus_size_t sc_ios;
|
|
|
|
bus_space_tag_t sc_iot;
|
|
|
|
bus_space_handle_t sc_ioh; /* Base */
|
|
|
|
bus_space_handle_t sc_cbh; /* Capability Base */
|
|
|
|
bus_space_handle_t sc_obh; /* Operational Base */
|
|
|
|
bus_space_handle_t sc_rbh; /* Runtime Base */
|
|
|
|
bus_space_handle_t sc_dbh; /* Doorbell Registers */
|
2017-01-19 19:05:00 +03:00
|
|
|
struct usbd_bus sc_bus; /* USB 3 bus */
|
|
|
|
struct usbd_bus sc_bus2; /* USB 2 bus */
|
2013-09-14 04:40:31 +04:00
|
|
|
|
2022-03-13 14:30:04 +03:00
|
|
|
kmutex_t sc_rhlock;
|
2013-09-14 04:40:31 +04:00
|
|
|
kmutex_t sc_lock;
|
|
|
|
kmutex_t sc_intr_lock;
|
|
|
|
|
|
|
|
pool_cache_t sc_xferpool;
|
|
|
|
|
|
|
|
bus_size_t sc_pgsz; /* xHCI page size */
|
|
|
|
uint32_t sc_ctxsz;
|
|
|
|
int sc_maxslots;
|
|
|
|
int sc_maxintrs;
|
2013-10-28 21:49:33 +04:00
|
|
|
int sc_maxspbuf;
|
2013-09-14 04:40:31 +04:00
|
|
|
|
2017-01-19 19:05:00 +03:00
|
|
|
/*
|
|
|
|
* Port routing and root hub - xHCI 4.19.7
|
|
|
|
*/
|
|
|
|
int sc_maxports; /* number of controller ports */
|
There is an xHCI device which has USB 2 port only. Support it.
- Example:
xhci4 at pci17 dev 0 function 0: AMD product 15b8 (rev. 0x00)
xhci4: 64-bit DMA
allocated pic msix10 type edge pin 0 level 6 to cpu0 slot 32 idt entry 107
xhci4: interrupting at msix10 vec 0
xhci4: xHCI version 1.20
xhci4: hcs1=1000840 hcs2=140000f1 hcs3=7000a
xhci4: hcc=0x110ffc5<XECP=0x110,MAXPSA=0xf,CFC,SEC,SPC,PAE,NSS,LTC,CSZ,AC64>
xhci4: xECP 440
xhci4: hcc2=0x3f<CIC,LEC,CTC,FSC,CMC,U3C>
xhci4: ECR: 0x00000401
xhci4: ECR: 0x02000402
xhci4: SP: 0x02000402 0x20425355 0x00180101 0x00000000
xhci4: hs ports 1 - 1
xhci4: ECR: 0x000f000a
xhci4: PAGESIZE 0x00000001
xhci4: sc_pgsz 0x00001000
xhci4: sc_maxslots 0x00000040
xhci4: sc_maxports 1
xhci4: sc_maxspbuf 2
xhci4: eventst: 0x000000013ee60fc0 0xffffb08826f5afc0 1000
xhci4: dcbaa: 0x000000013ee63000 0xffffb08826f5b000 1000
xhci4: current IMOD 0
(snip)
usb8 at xhci4: USB revision 3.1
usb9 at xhci4: USB revision 2.0
uhub8 at usb8: NetBSD (0x0000) xHCI root hub (0x0000), class 9/0, rev 3.00/1.00, addr 0
uhub8: 0 ports with 0 removable, self powered
uhub8: no ports, hub ignored
uhub8: WARNING: power management not supported
autoconfiguration error: usb8: root device is not a hub
usb8: WARNING: power management not supported
uhub9 at usb9: NetBSD (0x0000) xHCI root hub (0x0000), class 9/0, rev 2.00/1.00, addr 0
uhub9: 1 port with 1 removable, self powered
- To resolve this problem, keep number of ports of SS and HS and use
it to attach child device(s).
- Tested on ASUS TUF GAMING X670E-PLUS.
- OK'd by skrll@.
2022-10-11 12:18:22 +03:00
|
|
|
int sc_usb3nports;
|
|
|
|
int sc_usb2nports;
|
2017-01-19 19:05:00 +03:00
|
|
|
|
|
|
|
uint8_t *sc_ctlrportbus; /* a bus bit per port */
|
|
|
|
|
|
|
|
int *sc_ctlrportmap;
|
|
|
|
int *sc_rhportmap[2];
|
|
|
|
int sc_rhportcount[2];
|
|
|
|
struct usbd_xfer *sc_intrxfer[2];
|
2023-04-07 12:39:48 +03:00
|
|
|
bool sc_intrxfer_deferred[2];
|
2013-09-14 04:40:31 +04:00
|
|
|
|
|
|
|
struct xhci_slot * sc_slots;
|
|
|
|
|
2020-04-02 14:37:23 +03:00
|
|
|
struct xhci_ring *sc_cr; /* command ring */
|
|
|
|
struct xhci_ring *sc_er; /* event ring */
|
2013-09-14 04:40:31 +04:00
|
|
|
|
|
|
|
usb_dma_t sc_eventst_dma;
|
|
|
|
usb_dma_t sc_dcbaa_dma;
|
2013-10-28 21:49:33 +04:00
|
|
|
usb_dma_t sc_spbufarray_dma;
|
|
|
|
usb_dma_t *sc_spbuf_dma;
|
2013-09-14 04:40:31 +04:00
|
|
|
|
2017-01-19 19:05:00 +03:00
|
|
|
kcondvar_t sc_cmdbusy_cv;
|
2013-09-14 04:40:31 +04:00
|
|
|
kcondvar_t sc_command_cv;
|
|
|
|
bus_addr_t sc_command_addr;
|
2019-01-07 06:00:39 +03:00
|
|
|
struct xhci_soft_trb sc_result_trb;
|
2017-01-19 19:05:00 +03:00
|
|
|
bool sc_resultpending;
|
2013-09-14 04:40:31 +04:00
|
|
|
|
|
|
|
bool sc_dying;
|
2023-04-09 23:41:28 +03:00
|
|
|
bool sc_suspendresume_failed;
|
2021-05-24 00:12:28 +03:00
|
|
|
struct lwp *sc_suspender;
|
2013-09-14 04:40:31 +04:00
|
|
|
|
2016-04-23 13:15:27 +03:00
|
|
|
void (*sc_vendor_init)(struct xhci_softc *);
|
|
|
|
int (*sc_vendor_port_status)(struct xhci_softc *, uint32_t, int);
|
|
|
|
|
|
|
|
int sc_quirks;
|
2016-05-03 16:14:44 +03:00
|
|
|
#define XHCI_QUIRK_INTEL __BIT(0) /* Intel xhci chip */
|
2017-09-25 03:03:10 +03:00
|
|
|
#define XHCI_DEFERRED_START __BIT(1)
|
2020-08-21 23:16:39 +03:00
|
|
|
uint32_t sc_hcc; /* copy of HCCPARAMS1 */
|
|
|
|
uint32_t sc_hcc2; /* copy of HCCPARAMS2 */
|
2021-05-23 14:49:45 +03:00
|
|
|
|
|
|
|
struct xhci_registers {
|
|
|
|
uint32_t usbcmd;
|
|
|
|
uint32_t dnctrl;
|
|
|
|
uint64_t dcbaap;
|
|
|
|
uint32_t config;
|
|
|
|
uint32_t erstsz0;
|
|
|
|
uint64_t erstba0;
|
|
|
|
uint64_t erdp0;
|
|
|
|
uint32_t iman0;
|
|
|
|
uint32_t imod0;
|
|
|
|
} sc_regs;
|
2013-09-14 04:40:31 +04:00
|
|
|
};
|
|
|
|
|
2014-03-10 17:12:02 +04:00
|
|
|
int xhci_init(struct xhci_softc *);
|
2017-09-25 03:03:10 +03:00
|
|
|
void xhci_start(struct xhci_softc *);
|
2014-03-10 17:12:02 +04:00
|
|
|
int xhci_intr(void *);
|
|
|
|
int xhci_detach(struct xhci_softc *, int);
|
|
|
|
int xhci_activate(device_t, enum devact);
|
|
|
|
void xhci_childdet(device_t, device_t);
|
|
|
|
bool xhci_suspend(device_t, const pmf_qual_t *);
|
|
|
|
bool xhci_resume(device_t, const pmf_qual_t *);
|
|
|
|
bool xhci_shutdown(device_t, int);
|
2013-09-14 04:40:31 +04:00
|
|
|
|
|
|
|
#define XHCI_TRANSFER_RING_TRBS 256
|
|
|
|
|
|
|
|
#endif /* _DEV_USB_XHCIVAR_H_ */
|