#include "opt_thunderbolt.h"
#include <sys/types.h>
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
#include <sys/module.h>
#include <sys/bus.h>
#include <sys/conf.h>
#include <sys/malloc.h>
#include <sys/queue.h>
#include <sys/sysctl.h>
#include <sys/lock.h>
#include <sys/mutex.h>
#include <sys/taskqueue.h>
#include <sys/gsb_crc32.h>
#include <sys/endian.h>
#include <vm/vm.h>
#include <vm/pmap.h>
#include <machine/bus.h>
#include <machine/stdarg.h>
#include <dev/thunderbolt/nhi_reg.h>
#include <dev/thunderbolt/nhi_var.h>
#include <dev/thunderbolt/tb_reg.h>
#include <dev/thunderbolt/tb_var.h>
#include <dev/thunderbolt/tb_debug.h>
#include <dev/thunderbolt/hcm_var.h>
#include <dev/thunderbolt/tbcfg_reg.h>
#include <dev/thunderbolt/router_var.h>
#include <dev/thunderbolt/tb_dev.h>
#include "tb_if.h"
static int nhi_alloc_ring(struct nhi_softc *, int, int, int,
struct nhi_ring_pair **);
static void nhi_free_ring(struct nhi_ring_pair *);
static void nhi_free_rings(struct nhi_softc *);
static int nhi_configure_ring(struct nhi_softc *, struct nhi_ring_pair *);
static int nhi_activate_ring(struct nhi_ring_pair *);
static int nhi_deactivate_ring(struct nhi_ring_pair *);
static int nhi_alloc_ring0(struct nhi_softc *);
static void nhi_free_ring0(struct nhi_softc *);
static void nhi_fill_rx_ring(struct nhi_softc *, struct nhi_ring_pair *);
static int nhi_init(struct nhi_softc *);
static void nhi_post_init(void *);
static int nhi_tx_enqueue(struct nhi_ring_pair *, struct nhi_cmd_frame *);
static int nhi_setup_sysctl(struct nhi_softc *);
SYSCTL_NODE(_hw, OID_AUTO, nhi, CTLFLAG_RD, 0, "NHI Driver Parameters");
MALLOC_DEFINE(M_NHI, "nhi", "nhi driver memory");
#ifndef NHI_DEBUG_LEVEL
#define NHI_DEBUG_LEVEL 0
#endif
void
nhi_get_tunables(struct nhi_softc *sc)
{
devclass_t dc;
device_t ufp;
char tmpstr[80], oid[80];
u_int val;
sc->debug = NHI_DEBUG_LEVEL;
sc->max_ring_count = NHI_DEFAULT_NUM_RINGS;
val = TB_GET_DEBUG(sc->dev, &sc->debug);
if (val != 0) {
dc = devclass_find("tbolt");
if (dc != NULL) {
ufp = devclass_get_device(dc, device_get_unit(sc->dev));
if (ufp != NULL)
TB_GET_DEBUG(ufp, &sc->debug);
} else {
if (TUNABLE_STR_FETCH("hw.tbolt.debug_level", oid,
80) != 0)
tb_parse_debug(&sc->debug, oid);
}
}
bzero(oid, 80);
if (TUNABLE_STR_FETCH("hw.nhi.debug_level", oid, 80) != 0)
tb_parse_debug(&sc->debug, oid);
if (TUNABLE_INT_FETCH("hw.nhi.max_rings", &val) != 0) {
val = min(val, NHI_MAX_NUM_RINGS);
sc->max_ring_count = max(val, 1);
}
bzero(oid, 80);
snprintf(tmpstr, sizeof(tmpstr), "dev.nhi.%d.debug_level",
device_get_unit(sc->dev));
if (TUNABLE_STR_FETCH(tmpstr, oid, 80) != 0)
tb_parse_debug(&sc->debug, oid);
snprintf(tmpstr, sizeof(tmpstr), "dev.nhi.%d.max_rings",
device_get_unit(sc->dev));
if (TUNABLE_INT_FETCH(tmpstr, &val) != 0) {
val = min(val, NHI_MAX_NUM_RINGS);
sc->max_ring_count = max(val, 1);
}
return;
}
struct nhi_cmd_frame *
nhi_alloc_tx_frame(struct nhi_ring_pair *r)
{
struct nhi_cmd_frame *cmd;
mtx_lock(&r->mtx);
cmd = nhi_alloc_tx_frame_locked(r);
mtx_unlock(&r->mtx);
return (cmd);
}
void
nhi_free_tx_frame(struct nhi_ring_pair *r, struct nhi_cmd_frame *cmd)
{
mtx_lock(&r->mtx);
nhi_free_tx_frame_locked(r, cmd);
mtx_unlock(&r->mtx);
}
int
nhi_inmail_cmd(struct nhi_softc *sc, uint32_t cmd, uint32_t data)
{
uint32_t val;
u_int error, timeout;
mtx_lock(&sc->nhi_mtx);
if (sc->hwflags & NHI_MBOX_BUSY) {
mtx_unlock(&sc->nhi_mtx);
tb_debug(sc, DBG_MBOX, "Driver busy with mailbox\n");
return (EBUSY);
}
sc->hwflags |= NHI_MBOX_BUSY;
val = nhi_read_reg(sc, TBT_INMAILCMD);
tb_debug(sc, DBG_MBOX|DBG_FULL, "Reading INMAILCMD= 0x%08x\n", val);
if (val & INMAILCMD_ERROR)
tb_debug(sc, DBG_MBOX, "Error already set in INMAILCMD\n");
if (val & INMAILCMD_OPREQ) {
mtx_unlock(&sc->nhi_mtx);
tb_debug(sc, DBG_MBOX,
"INMAILCMD request already in progress\n");
return (EBUSY);
}
nhi_write_reg(sc, TBT_INMAILDATA, data);
nhi_write_reg(sc, TBT_INMAILCMD, cmd | INMAILCMD_OPREQ);
timeout = NHI_MAILBOX_TIMEOUT;
while (timeout--) {
DELAY(1000000);
val = nhi_read_reg(sc, TBT_INMAILCMD);
tb_debug(sc, DBG_MBOX|DBG_EXTRA,
"Polling INMAILCMD= 0x%08x\n", val);
if ((val & INMAILCMD_OPREQ) == 0)
break;
}
sc->hwflags &= ~NHI_MBOX_BUSY;
mtx_unlock(&sc->nhi_mtx);
error = 0;
if (val & INMAILCMD_OPREQ) {
tb_printf(sc, "Timeout waiting for mailbox\n");
error = ETIMEDOUT;
}
if (val & INMAILCMD_ERROR) {
tb_printf(sc, "Firmware reports error in mailbox\n");
error = EINVAL;
}
return (error);
}
int
nhi_outmail_cmd(struct nhi_softc *sc, uint32_t *val)
{
if (val == NULL)
return (EINVAL);
*val = nhi_read_reg(sc, TBT_OUTMAILCMD);
return (0);
}
int
nhi_attach(struct nhi_softc *sc)
{
uint32_t val;
int error = 0;
if ((error = nhi_setup_sysctl(sc)) != 0)
return (error);
mtx_init(&sc->nhi_mtx, "nhimtx", "NHI Control Mutex", MTX_DEF);
val = GET_HOST_CAPS_PATHS(nhi_read_reg(sc, NHI_HOST_CAPS));
tb_debug(sc, DBG_INIT|DBG_NOISY, "Total Paths= %d\n", val);
if (val == 0 || val > 21) {
tb_printf(sc, "WARN: unexpected number of paths: %d\n", val);
}
sc->path_count = val;
SLIST_INIT(&sc->ring_list);
error = nhi_pci_configure_interrupts(sc);
if (error == 0)
error = nhi_alloc_ring0(sc);
if (error == 0) {
nhi_configure_ring(sc, sc->ring0);
nhi_activate_ring(sc->ring0);
nhi_fill_rx_ring(sc, sc->ring0);
}
if (error == 0)
error = tbdev_add_interface(sc);
error = hcm_attach(sc);
if (error == 0)
error = nhi_init(sc);
return (error);
}
int
nhi_detach(struct nhi_softc *sc)
{
hcm_detach(sc);
if (sc->root_rsc != NULL)
tb_router_detach(sc->root_rsc);
tbdev_remove_interface(sc);
nhi_pci_disable_interrupts(sc);
nhi_pci_free_interrupts(sc);
nhi_free_ring0(sc);
nhi_free_rings(sc);
mtx_destroy(&sc->nhi_mtx);
return (0);
}
static void
nhi_memaddr_cb(void *arg, bus_dma_segment_t *segs, int nsegs, int error)
{
bus_addr_t *addr;
addr = arg;
if (error == 0 && nsegs == 1) {
*addr = segs[0].ds_addr;
} else
*addr = 0;
}
static int
nhi_alloc_ring(struct nhi_softc *sc, int ringnum, int tx_depth, int rx_depth,
struct nhi_ring_pair **rp)
{
bus_dma_template_t t;
bus_addr_t ring_busaddr;
struct nhi_ring_pair *r;
int ring_size, error;
u_int rxring_len, txring_len;
char *ring;
if (ringnum >= sc->max_ring_count) {
tb_debug(sc, DBG_INIT, "Tried to allocate ring number %d\n",
ringnum);
return (EINVAL);
}
rxring_len = rx_depth * sizeof(void *);
txring_len = tx_depth * sizeof(void *);
r = malloc(sizeof(struct nhi_ring_pair) + rxring_len + txring_len,
M_NHI, M_NOWAIT|M_ZERO);
if (r == NULL) {
tb_printf(sc, "ERROR: Cannot allocate ring memory\n");
return (ENOMEM);
}
r->sc = sc;
TAILQ_INIT(&r->tx_head);
TAILQ_INIT(&r->rx_head);
r->ring_num = ringnum;
r->tx_ring_depth = tx_depth;
r->tx_ring_mask = tx_depth - 1;
r->rx_ring_depth = rx_depth;
r->rx_ring_mask = rx_depth - 1;
r->rx_pici_reg = NHI_RX_RING_PICI + ringnum * 16;
r->tx_pici_reg = NHI_TX_RING_PICI + ringnum * 16;
r->rx_cmd_ring = (struct nhi_cmd_frame **)((uint8_t *)r + sizeof (*r));
r->tx_cmd_ring = (struct nhi_cmd_frame **)((uint8_t *)r->rx_cmd_ring +
rxring_len);
snprintf(r->name, NHI_RING_NAMELEN, "nhiring%d\n", ringnum);
mtx_init(&r->mtx, r->name, "NHI Ring Lock", MTX_DEF);
tb_debug(sc, DBG_INIT | DBG_FULL, "Allocated ring context at %p, "
"mutex %p\n", r, &r->mtx);
ring_size = sizeof(struct nhi_tx_buffer_desc) * r->tx_ring_depth;
ring_size += sizeof(struct nhi_rx_buffer_desc) * r->rx_ring_depth;
tb_debug(sc, DBG_INIT | DBG_FULL, "Ring %d ring_size= %d\n",
ringnum, ring_size);
bus_dma_template_init(&t, sc->parent_dmat);
t.alignment = 4;
t.maxsize = t.maxsegsize = ring_size;
t.nsegments = 1;
if ((error = bus_dma_template_tag(&t, &r->ring_dmat)) != 0) {
tb_printf(sc, "Cannot allocate ring %d DMA tag: %d\n",
ringnum, error);
return (ENOMEM);
}
if (bus_dmamem_alloc(r->ring_dmat, (void **)&ring, BUS_DMA_NOWAIT,
&r->ring_map)) {
tb_printf(sc, "Cannot allocate ring memory\n");
return (ENOMEM);
}
bzero(ring, ring_size);
bus_dmamap_load(r->ring_dmat, r->ring_map, ring, ring_size,
nhi_memaddr_cb, &ring_busaddr, 0);
r->ring = ring;
r->tx_ring = (union nhi_ring_desc *)(ring);
r->tx_ring_busaddr = ring_busaddr;
ring += sizeof(struct nhi_tx_buffer_desc) * r->tx_ring_depth;
ring_busaddr += sizeof(struct nhi_tx_buffer_desc) * r->tx_ring_depth;
r->rx_ring = (union nhi_ring_desc *)(ring);
r->rx_ring_busaddr = ring_busaddr;
tb_debug(sc, DBG_INIT | DBG_EXTRA, "Ring %d: RX %p [0x%jx] "
"TX %p [0x%jx]\n", ringnum, r->tx_ring, r->tx_ring_busaddr,
r->rx_ring, r->rx_ring_busaddr);
*rp = r;
return (0);
}
static void
nhi_free_ring(struct nhi_ring_pair *r)
{
tb_debug(r->sc, DBG_INIT, "Freeing ring %d resources\n", r->ring_num);
nhi_deactivate_ring(r);
if (r->tx_ring_busaddr != 0) {
bus_dmamap_unload(r->ring_dmat, r->ring_map);
r->tx_ring_busaddr = 0;
}
if (r->ring != NULL) {
bus_dmamem_free(r->ring_dmat, r->ring, r->ring_map);
r->ring = NULL;
}
if (r->ring_dmat != NULL) {
bus_dma_tag_destroy(r->ring_dmat);
r->ring_dmat = NULL;
}
mtx_destroy(&r->mtx);
}
static void
nhi_free_rings(struct nhi_softc *sc)
{
struct nhi_ring_pair *r;
while ((r = SLIST_FIRST(&sc->ring_list)) != NULL) {
nhi_free_ring(r);
mtx_lock(&sc->nhi_mtx);
SLIST_REMOVE_HEAD(&sc->ring_list, ring_link);
mtx_unlock(&sc->nhi_mtx);
free(r, M_NHI);
}
return;
}
static int
nhi_configure_ring(struct nhi_softc *sc, struct nhi_ring_pair *ring)
{
bus_addr_t busaddr;
uint32_t val;
int idx;
idx = ring->ring_num * 16;
busaddr = ring->tx_ring_busaddr;
nhi_write_reg(sc, NHI_TX_RING_ADDR_LO + idx, busaddr & 0xffffffff);
nhi_write_reg(sc, NHI_TX_RING_ADDR_HI + idx, busaddr >> 32);
nhi_write_reg(sc, NHI_TX_RING_SIZE + idx, ring->tx_ring_depth);
nhi_write_reg(sc, NHI_TX_RING_TABLE_TIMESTAMP + idx, 0x0);
tb_debug(sc, DBG_INIT, "TX Ring %d TX_RING_SIZE= 0x%x\n",
ring->ring_num, ring->tx_ring_depth);
busaddr = ring->rx_ring_busaddr;
val = (ring->rx_buffer_size << 16) | ring->rx_ring_depth;
nhi_write_reg(sc, NHI_RX_RING_ADDR_LO + idx, busaddr & 0xffffffff);
nhi_write_reg(sc, NHI_RX_RING_ADDR_HI + idx, busaddr >> 32);
nhi_write_reg(sc, NHI_RX_RING_SIZE + idx, val);
nhi_write_reg(sc, NHI_RX_RING_TABLE_BASE1 + idx, 0xffffffff);
tb_debug(sc, DBG_INIT, "RX Ring %d RX_RING_SIZE= 0x%x\n",
ring->ring_num, val);
return (0);
}
static int
nhi_activate_ring(struct nhi_ring_pair *ring)
{
struct nhi_softc *sc = ring->sc;
int idx;
nhi_pci_enable_interrupt(ring);
idx = ring->ring_num * 32;
tb_debug(sc, DBG_INIT, "Activating ring %d at idx %d\n",
ring->ring_num, idx);
nhi_write_reg(sc, NHI_TX_RING_TABLE_BASE0 + idx,
TX_TABLE_RAW | TX_TABLE_VALID);
nhi_write_reg(sc, NHI_RX_RING_TABLE_BASE0 + idx,
RX_TABLE_RAW | RX_TABLE_VALID);
return (0);
}
static int
nhi_deactivate_ring(struct nhi_ring_pair *r)
{
struct nhi_softc *sc = r->sc;
int idx;
idx = r->ring_num * 32;
tb_debug(sc, DBG_INIT, "Deactiving ring %d at idx %d\n",
r->ring_num, idx);
nhi_write_reg(sc, NHI_TX_RING_TABLE_BASE0 + idx, 0);
nhi_write_reg(sc, NHI_RX_RING_TABLE_BASE0 + idx, 0);
idx = r->ring_num * 16;
tb_debug(sc, DBG_INIT, "Setting ring %d sizes to 0\n", r->ring_num);
nhi_write_reg(sc, NHI_TX_RING_SIZE + idx, 0);
nhi_write_reg(sc, NHI_RX_RING_SIZE + idx, 0);
return (0);
}
static int
nhi_alloc_ring0(struct nhi_softc *sc)
{
bus_addr_t frames_busaddr;
bus_dma_template_t t;
struct nhi_intr_tracker *trkr;
struct nhi_ring_pair *r;
struct nhi_cmd_frame *cmd;
char *frames;
int error, size, i;
if ((error = nhi_alloc_ring(sc, 0, NHI_RING0_TX_DEPTH,
NHI_RING0_RX_DEPTH, &r)) != 0) {
tb_printf(sc, "Error allocating control ring\n");
return (error);
}
r->rx_buffer_size = NHI_RING0_FRAME_SIZE;
size = r->tx_ring_depth * NHI_RING0_FRAME_SIZE;
size += r->rx_ring_depth * NHI_RING0_FRAME_SIZE;
bus_dma_template_init(&t, sc->parent_dmat);
t.maxsize = t.maxsegsize = size;
t.nsegments = 1;
if (bus_dma_template_tag(&t, &sc->ring0_dmat)) {
tb_printf(sc, "Error allocating control ring buffer tag\n");
return (ENOMEM);
}
if (bus_dmamem_alloc(sc->ring0_dmat, (void **)&frames, BUS_DMA_NOWAIT,
&sc->ring0_map) != 0) {
tb_printf(sc, "Error allocating control ring memory\n");
return (ENOMEM);
}
bzero(frames, size);
bus_dmamap_load(sc->ring0_dmat, sc->ring0_map, frames, size,
nhi_memaddr_cb, &frames_busaddr, 0);
sc->ring0_frames_busaddr = frames_busaddr;
sc->ring0_frames = frames;
sc->ring0_cmds = malloc(sizeof(struct nhi_cmd_frame) *
(r->tx_ring_depth + r->rx_ring_depth), M_NHI, M_NOWAIT | M_ZERO);
if (sc->ring0_cmds == NULL)
return (ENOMEM);
mtx_lock(&r->mtx);
for (i = 0; i < r->rx_ring_depth; i++) {
cmd = &sc->ring0_cmds[i];
cmd->data = (uint32_t *)(frames + NHI_RING0_FRAME_SIZE * i);
cmd->data_busaddr = frames_busaddr + NHI_RING0_FRAME_SIZE * i;
cmd->flags = CMD_MAPPED;
cmd->idx = i;
TAILQ_INSERT_TAIL(&r->rx_head, cmd, cm_link);
}
for ( ; i < r->tx_ring_depth + r->rx_ring_depth - 1; i++) {
cmd = &sc->ring0_cmds[i];
cmd->data = (uint32_t *)(frames + NHI_RING0_FRAME_SIZE * i);
cmd->data_busaddr = frames_busaddr + NHI_RING0_FRAME_SIZE * i;
cmd->flags = CMD_MAPPED;
cmd->idx = i;
nhi_free_tx_frame_locked(r, cmd);
}
mtx_unlock(&r->mtx);
trkr = &sc->intr_trackers[0];
trkr->ring = r;
r->tracker = trkr;
sc->ring0 = r;
SLIST_INSERT_HEAD(&sc->ring_list, r, ring_link);
return (0);
}
static void
nhi_free_ring0(struct nhi_softc *sc)
{
if (sc->ring0_cmds != NULL) {
free(sc->ring0_cmds, M_NHI);
sc->ring0_cmds = NULL;
}
if (sc->ring0_frames_busaddr != 0) {
bus_dmamap_unload(sc->ring0_dmat, sc->ring0_map);
sc->ring0_frames_busaddr = 0;
}
if (sc->ring0_frames != NULL) {
bus_dmamem_free(sc->ring0_dmat, sc->ring0_frames,
sc->ring0_map);
sc->ring0_frames = NULL;
}
if (sc->ring0_dmat != NULL)
bus_dma_tag_destroy(sc->ring0_dmat);
return;
}
static void
nhi_fill_rx_ring(struct nhi_softc *sc, struct nhi_ring_pair *rp)
{
struct nhi_cmd_frame *cmd;
struct nhi_rx_buffer_desc *desc;
u_int ci;
rp->rx_ci = ci = 0;
rp->rx_pi = 0;
do {
cmd = TAILQ_FIRST(&rp->rx_head);
if (cmd == NULL)
break;
TAILQ_REMOVE(&rp->rx_head, cmd, cm_link);
desc = &rp->rx_ring[ci].rx;
if ((cmd->flags & CMD_MAPPED) == 0)
panic("Need rx buffer mapping code");
desc->addr_lo = cmd->data_busaddr & 0xffffffff;
desc->addr_hi = (cmd->data_busaddr >> 32) & 0xffffffff;
desc->offset = 0;
desc->flags = RX_BUFFER_DESC_RS | RX_BUFFER_DESC_IE;
rp->rx_ci = ci;
rp->rx_cmd_ring[ci] = cmd;
tb_debug(sc, DBG_RXQ | DBG_FULL,
"Updating ring%d ci= %d cmd= %p, busaddr= 0x%jx\n",
rp->ring_num, ci, cmd, cmd->data_busaddr);
ci = (rp->rx_ci + 1) & rp->rx_ring_mask;
} while (ci != rp->rx_pi);
tb_debug(sc, DBG_RXQ, "Writing RX CI= %d\n", rp->rx_ci);
nhi_write_reg(sc, rp->rx_pici_reg, rp->rx_ci);
return;
}
static int
nhi_init(struct nhi_softc *sc)
{
tb_route_t root_route = {0x0, 0x0};
uint32_t val;
int error;
tb_debug(sc, DBG_INIT, "Initializing NHI\n");
val = nhi_read_reg(sc, NHI_DMA_MISC);
tb_debug(sc, DBG_INIT|DBG_FULL, "Read NHI_DMA_MISC= 0x%08x\n", val);
val |= DMA_MISC_INT_AUTOCLEAR;
tb_debug(sc, DBG_INIT, "Setting interrupt auto-ACK, 0x%08x\n", val);
nhi_write_reg(sc, NHI_DMA_MISC, val);
if ((error = tb_router_attach_root(sc, root_route)) != 0)
tb_printf(sc, "tb_router_attach_root() error."
" The driver should be loaded at boot\n");
if (error == 0) {
sc->ich.ich_func = nhi_post_init;
sc->ich.ich_arg = sc;
error = config_intrhook_establish(&sc->ich);
if (error)
tb_printf(sc, "Failed to establish config hook\n");
}
return (error);
}
static void
nhi_post_init(void *arg)
{
struct nhi_softc *sc;
uint8_t *u;
int error;
sc = (struct nhi_softc *)arg;
tb_debug(sc, DBG_INIT | DBG_EXTRA, "nhi_post_init\n");
bzero(sc->lc_uuid, 16);
error = tb_config_get_lc_uuid(sc->root_rsc, sc->lc_uuid);
if (error == 0) {
u = sc->lc_uuid;
tb_printf(sc, "Root Router LC UUID: %02x%02x%02x%02x-"
"%02x%02x-%02x%02x-%02x%02x-%02x%02x%02x%02x%02x%02x\n",
u[15], u[14], u[13], u[12], u[11], u[10], u[9], u[8], u[7],
u[6], u[5], u[4], u[3], u[2], u[1], u[0]);
} else
tb_printf(sc, "Error finding LC registers: %d\n", error);
u = sc->uuid;
tb_printf(sc, "Root Router UUID: %02x%02x%02x%02x-"
"%02x%02x-%02x%02x-%02x%02x-%02x%02x%02x%02x%02x%02x\n",
u[15], u[14], u[13], u[12], u[11], u[10], u[9], u[8], u[7],
u[6], u[5], u[4], u[3], u[2], u[1], u[0]);
config_intrhook_disestablish(&sc->ich);
}
static int
nhi_tx_enqueue(struct nhi_ring_pair *r, struct nhi_cmd_frame *cmd)
{
struct nhi_softc *sc;
struct nhi_tx_buffer_desc *desc;
uint16_t pi;
sc = r->sc;
if (cmd->req_len > TX_BUFFER_DESC_LEN_MASK + 1) {
tb_debug(sc, DBG_TXQ, "Error: TX frame too big\n");
return (EINVAL);
}
cmd->req_len &= TX_BUFFER_DESC_LEN_MASK;
mtx_lock(&r->mtx);
desc = &r->tx_ring[r->tx_pi].tx;
pi = (r->tx_pi + 1) & r->tx_ring_mask;
if (pi == r->tx_ci) {
mtx_unlock(&r->mtx);
return (EBUSY);
}
r->tx_cmd_ring[r->tx_pi] = cmd;
r->tx_pi = pi;
desc->addr_lo = htole32(cmd->data_busaddr & 0xffffffff);
desc->addr_hi = htole32(cmd->data_busaddr >> 32);
desc->eof_len = htole16((cmd->pdf << TX_BUFFER_DESC_EOF_SHIFT) |
cmd->req_len);
desc->flags_sof = cmd->pdf | TX_BUFFER_DESC_IE | TX_BUFFER_DESC_RS;
desc->offset = 0;
desc->payload_time = 0;
tb_debug(sc, DBG_TXQ, "enqueue TXdescIdx= %d cmdidx= %d len= %d, "
"busaddr= 0x%jx\n", r->tx_pi, cmd->idx, cmd->req_len,
cmd->data_busaddr);
nhi_write_reg(sc, r->tx_pici_reg, pi << TX_RING_PI_SHIFT | r->tx_ci);
mtx_unlock(&r->mtx);
return (0);
}
int
nhi_tx_schedule(struct nhi_ring_pair *r, struct nhi_cmd_frame *cmd)
{
int error;
error = nhi_tx_enqueue(r, cmd);
if (error == EBUSY)
nhi_write_reg(r->sc, r->tx_pici_reg, r->tx_pi << TX_RING_PI_SHIFT | r->tx_ci);
return (error);
}
int
nhi_tx_synchronous(struct nhi_ring_pair *r, struct nhi_cmd_frame *cmd)
{
struct nhi_softc *sc __diagused;
int error, count;
sc = r->sc;
if ((error = nhi_tx_schedule(r, cmd)) != 0)
return (error);
if (cmd->flags & CMD_POLLED) {
error = 0;
count = cmd->timeout * 100;
while ((count-- > 0) && (cmd->flags & CMD_REQ_COMPLETE) == 0) {
DELAY(10000);
rmb();
nhi_intr(r->tracker);
}
} else {
error = msleep(cmd, &r->mtx, PCATCH, "nhi_tx", cmd->timeout);
if ((error == 0) && (cmd->flags & CMD_REQ_COMPLETE) != 0)
error = EWOULDBLOCK;
}
if ((cmd->flags & CMD_REQ_COMPLETE) == 0)
error = ETIMEDOUT;
tb_debug(sc, DBG_TXQ|DBG_FULL, "tx_synchronous done waiting, "
"err= %d, TX_COMPLETE= %d\n", error,
!!(cmd->flags & CMD_REQ_COMPLETE));
if (error == ERESTART) {
tb_printf(sc, "TX command interrupted\n");
} else if ((error == EWOULDBLOCK) || (error == ETIMEDOUT)) {
tb_printf(sc, "TX command timed out\n");
} else if (error != 0) {
tb_printf(sc, "TX command failed error= %d\n", error);
}
return (error);
}
static int
nhi_tx_complete(struct nhi_ring_pair *r, struct nhi_tx_buffer_desc *desc,
struct nhi_cmd_frame *cmd)
{
struct nhi_softc *sc __maybe_unused;
struct nhi_pdf_dispatch *txpdf;
u_int sof;
sc = r->sc;
sof = desc->flags_sof & TX_BUFFER_DESC_SOF_MASK;
tb_debug(sc, DBG_TXQ, "Recovered TX pdf= %s cmdidx= %d flags= 0x%x\n",
tb_get_string(sof, nhi_frame_pdf), cmd->idx, desc->flags_sof);
if ((desc->flags_sof & TX_BUFFER_DESC_DONE) == 0)
tb_debug(sc, DBG_TXQ,
"warning, TX descriptor DONE flag not set\n");
cmd->flags |= CMD_REQ_COMPLETE;
txpdf = &r->tracker->txpdf[sof];
if (txpdf->cb != NULL) {
tb_debug(sc, DBG_INTR|DBG_TXQ, "Calling PDF TX callback\n");
txpdf->cb(txpdf->context, (union nhi_ring_desc *)desc, cmd);
return (0);
}
tb_debug(sc, DBG_TXQ, "Unhandled TX complete %s\n",
tb_get_string(sof, nhi_frame_pdf));
nhi_free_tx_frame(r, cmd);
return (0);
}
static int
nhi_rx_complete(struct nhi_ring_pair *r, struct nhi_rx_post_desc *desc,
struct nhi_cmd_frame *cmd)
{
struct nhi_softc *sc __maybe_unused;
struct nhi_pdf_dispatch *rxpdf;
u_int eof;
u_int len __maybe_unused;
sc = r->sc;
eof = desc->eof_len >> RX_BUFFER_DESC_EOF_SHIFT;
len = desc->eof_len & RX_BUFFER_DESC_LEN_MASK;
tb_debug(sc, DBG_INTR|DBG_RXQ,
"Recovered RX pdf= %s len= %d cmdidx= %d, busaddr= 0x%jx\n",
tb_get_string(eof, nhi_frame_pdf), len, cmd->idx,
cmd->data_busaddr);
rxpdf = &r->tracker->rxpdf[eof];
if (rxpdf->cb != NULL) {
tb_debug(sc, DBG_INTR|DBG_RXQ, "Calling PDF RX callback\n");
rxpdf->cb(rxpdf->context, (union nhi_ring_desc *)desc, cmd);
return (0);
}
tb_debug(sc, DBG_INTR, "Unhandled RX frame %s\n",
tb_get_string(eof, nhi_frame_pdf));
return (0);
}
int
nhi_register_pdf(struct nhi_ring_pair *rp, struct nhi_dispatch *tx,
struct nhi_dispatch *rx)
{
struct nhi_intr_tracker *trkr;
struct nhi_pdf_dispatch *slot;
KASSERT(rp != NULL, ("ring_pair is null\n"));
tb_debug(rp->sc, DBG_INTR|DBG_EXTRA, "nhi_register_pdf called\n");
trkr = rp->tracker;
if (trkr == NULL) {
tb_debug(rp->sc, DBG_INTR, "Invalid tracker\n");
return (EINVAL);
}
tb_debug(rp->sc, DBG_INTR|DBG_EXTRA, "Registering TX interrupts\n");
if (tx != NULL) {
while (tx->cb != NULL) {
if ((tx->pdf < 0) || (tx->pdf > 15))
return (EINVAL);
slot = &trkr->txpdf[tx->pdf];
if (slot->cb != NULL) {
tb_debug(rp->sc, DBG_INTR,
"Attempted to register busy callback\n");
return (EBUSY);
}
slot->cb = tx->cb;
slot->context = tx->context;
tb_debug(rp->sc, DBG_INTR,
"Registered TX callback for PDF %d\n", tx->pdf);
tx++;
}
}
tb_debug(rp->sc, DBG_INTR|DBG_EXTRA, "Registering RX interrupts\n");
if (rx != NULL) {
while (rx->cb != NULL) {
if ((rx->pdf < 0) || (rx->pdf > 15))
return (EINVAL);
slot = &trkr->rxpdf[rx->pdf];
if (slot->cb != NULL) {
tb_debug(rp->sc, DBG_INTR,
"Attempted to register busy callback\n");
return (EBUSY);
}
slot->cb = rx->cb;
slot->context = rx->context;
tb_debug(rp->sc, DBG_INTR,
"Registered RX callback for PDF %d\n", rx->pdf);
rx++;
}
}
return (0);
}
int
nhi_deregister_pdf(struct nhi_ring_pair *rp, struct nhi_dispatch *tx,
struct nhi_dispatch *rx)
{
struct nhi_intr_tracker *trkr;
struct nhi_pdf_dispatch *slot;
tb_debug(rp->sc, DBG_INTR|DBG_EXTRA, "nhi_register_pdf called\n");
trkr = rp->tracker;
if (tx != NULL) {
while (tx->cb != NULL) {
if ((tx->pdf < 0) || (tx->pdf > 15))
return (EINVAL);
slot = &trkr->txpdf[tx->pdf];
slot->cb = NULL;
slot->context = NULL;
tx++;
}
}
if (rx != NULL) {
while (rx->cb != NULL) {
if ((rx->pdf < 0) || (rx->pdf > 15))
return (EINVAL);
slot = &trkr->rxpdf[rx->pdf];
slot->cb = NULL;
slot->context = NULL;
rx++;
}
}
return (0);
}
void
nhi_intr(void *data)
{
union nhi_ring_desc *rxd;
struct nhi_cmd_frame *cmd;
struct nhi_intr_tracker *trkr = data;
struct nhi_softc *sc;
struct nhi_ring_pair *r;
struct nhi_tx_buffer_desc *txd;
uint32_t val, old_ci;
u_int count;
sc = trkr->sc;
tb_debug(sc, DBG_INTR|DBG_FULL, "Interrupt @ vector %d\n",
trkr->vector);
if ((r = trkr->ring) == NULL)
return;
count = r->tx_ring_depth;
while (count-- > 0) {
txd = &r->tx_ring[r->tx_ci].tx;
if ((txd->flags_sof & TX_BUFFER_DESC_DONE) == 0)
break;
cmd = r->tx_cmd_ring[r->tx_ci];
tb_debug(sc, DBG_INTR|DBG_TXQ|DBG_FULL,
"Found tx cmdidx= %d cmd= %p\n", r->tx_ci, cmd);
nhi_tx_complete(r, txd, cmd);
txd->flags_sof = 0;
r->tx_ci = (r->tx_ci + 1) & r->tx_ring_mask;
}
count = r->rx_ring_depth;
old_ci = r->rx_ci;
while (count-- > 0) {
tb_debug(sc, DBG_INTR|DBG_RXQ|DBG_FULL,
"Checking RX descriptor at %d\n", r->rx_pi);
rxd = &r->rx_ring[r->rx_pi];
tb_debug(sc, DBG_INTR|DBG_RXQ|DBG_FULL,
"rx desc len= 0x%04x flags= 0x%04x\n", rxd->rxpost.eof_len,
rxd->rxpost.flags_sof);
if ((rxd->rxpost.flags_sof & RX_BUFFER_DESC_DONE) == 0)
break;
cmd = r->rx_cmd_ring[r->rx_pi];
tb_debug(sc, DBG_INTR|DBG_RXQ|DBG_FULL,
"Found rx cmdidx= %d cmd= %p\n", r->rx_pi, cmd);
nhi_rx_complete(r, &rxd->rxpost, cmd);
rxd->rxpost.eof_len = 0;
rxd->rx.flags = RX_BUFFER_DESC_RS | RX_BUFFER_DESC_IE;
r->rx_ci = (r->rx_ci + 1) & r->rx_ring_mask;
r->rx_pi = (r->rx_pi + 1) & r->rx_ring_mask;
}
if (r->rx_ci != old_ci) {
val = r->rx_pi << RX_RING_PI_SHIFT | r->rx_ci;
tb_debug(sc, DBG_INTR | DBG_RXQ,
"Writing new RX PICI= 0x%08x\n", val);
nhi_write_reg(sc, r->rx_pici_reg, val);
}
}
static int
nhi_setup_sysctl(struct nhi_softc *sc)
{
struct sysctl_ctx_list *ctx = NULL;
struct sysctl_oid *tree = NULL;
ctx = device_get_sysctl_ctx(sc->dev);
if (ctx != NULL)
tree = device_get_sysctl_tree(sc->dev);
if (tree == NULL) {
tb_printf(sc, "Error: cannot create sysctl nodes\n");
return (EINVAL);
}
sc->sysctl_tree = tree;
sc->sysctl_ctx = ctx;
SYSCTL_ADD_PROC(ctx, SYSCTL_CHILDREN(tree),
OID_AUTO, "debug_level", CTLTYPE_STRING|CTLFLAG_RW|CTLFLAG_MPSAFE,
&sc->debug, 0, tb_debug_sysctl, "A", "Thunderbolt debug level");
SYSCTL_ADD_U16(ctx, SYSCTL_CHILDREN(tree), OID_AUTO,
"max_rings", CTLFLAG_RD, &sc->max_ring_count, 0,
"Max number of rings available");
return (0);
}