Home | History | Annotate | Line # | Download | only in ic
sl811hs.c revision 1.21
      1  1.21  drochner /*	$NetBSD: sl811hs.c,v 1.21 2008/03/28 17:14:45 drochner Exp $	*/
      2   1.1     isaki 
      3   1.1     isaki /*
      4  1.12  kiyohara  * Not (c) 2007 Matthew Orgass
      5  1.12  kiyohara  * This file is public domain, meaning anyone can make any use of part or all
      6  1.12  kiyohara  * of this file including copying into other works without credit.  Any use,
      7  1.12  kiyohara  * modified or not, is solely the responsibility of the user.  If this file is
      8  1.12  kiyohara  * part of a collection then use in the collection is governed by the terms of
      9  1.12  kiyohara  * the collection.
     10  1.12  kiyohara  */
     11  1.12  kiyohara 
     12  1.12  kiyohara /*
     13  1.12  kiyohara  * Cypress/ScanLogic SL811HS/T USB Host Controller
     14  1.12  kiyohara  * Datasheet, Errata, and App Note available at www.cypress.com
     15  1.12  kiyohara  *
     16  1.12  kiyohara  * Uses: Ratoc CFU1U PCMCIA USB Host Controller, Nereid Mac 68k USB HC, ISA
     17  1.12  kiyohara  * HCs.  The Ratoc CFU2 uses a different chip.
     18   1.1     isaki  *
     19  1.12  kiyohara  * This chip puts the serial in USB.  It implements USB by means of an eight
     20  1.12  kiyohara  * bit I/O interface.  It can be used for ISA, PCMCIA/CF, parallel port,
     21  1.12  kiyohara  * serial port, or any eight bit interface.  It has 256 bytes of memory, the
     22  1.12  kiyohara  * first 16 of which are used for register access.  There are two sets of
     23  1.12  kiyohara  * registers for sending individual bus transactions.  Because USB is polled,
     24  1.12  kiyohara  * this organization means that some amount of card access must often be made
     25  1.12  kiyohara  * when devices are attached, even if when they are not directly being used.
     26  1.12  kiyohara  * A per-ms frame interrupt is necessary and many devices will poll with a
     27  1.12  kiyohara  * per-frame bulk transfer.
     28   1.1     isaki  *
     29  1.12  kiyohara  * It is possible to write a little over two bytes to the chip (auto
     30  1.12  kiyohara  * incremented) per full speed byte time on the USB.  Unfortunately,
     31  1.12  kiyohara  * auto-increment does not work reliably so write and bus speed is
     32  1.12  kiyohara  * approximately the same for full speed devices.
     33  1.12  kiyohara  *
     34  1.12  kiyohara  * In addition to the 240 byte packet size limit for isochronous transfers,
     35  1.12  kiyohara  * this chip has no means of determining the current frame number other than
     36  1.12  kiyohara  * getting all 1ms SOF interrupts, which is not always possible even on a fast
     37  1.12  kiyohara  * system.  Isochronous transfers guarantee that transfers will never be
     38  1.12  kiyohara  * retried in a later frame, so this can cause problems with devices beyond
     39  1.12  kiyohara  * the difficulty in actually performing the transfer most frames.  I tried
     40  1.12  kiyohara  * implementing isoc transfers and was able to play CD-derrived audio via an
     41  1.12  kiyohara  * iMic on a 2GHz PC, however it would still be interrupted at times and
     42  1.12  kiyohara  * once interrupted, would stay out of sync.  All isoc support has been
     43  1.12  kiyohara  * removed.
     44  1.12  kiyohara  *
     45  1.12  kiyohara  * BUGS: all chip revisions have problems with low speed devices through hubs.
     46  1.12  kiyohara  * The chip stops generating SOF with hubs that send SE0 during SOF.  See
     47  1.12  kiyohara  * comment in dointr().  All performance enhancing features of this chip seem
     48  1.12  kiyohara  * not to work properly, most confirmed buggy in errata doc.
     49   1.1     isaki  *
     50   1.1     isaki  */
     51   1.1     isaki 
     52   1.1     isaki /*
     53  1.12  kiyohara  * The hard interrupt is the main entry point.  Start, callbacks, and repeat
     54  1.12  kiyohara  * are the only others called frequently.
     55  1.12  kiyohara  *
     56  1.12  kiyohara  * Since this driver attaches to pcmcia, card removal at any point should be
     57  1.12  kiyohara  * expected and not cause panics or infinite loops.
     58  1.12  kiyohara  *
     59  1.12  kiyohara  * This driver does fine grained locking for its own data structures, however
     60  1.12  kiyohara  * the general USB code does not yet have locks, some of which would need to
     61  1.12  kiyohara  * be used in this driver.  This is mostly for debug use on single processor
     62  1.12  kiyohara  * systems.  Actual MP use of this driver would be unreliable on ports where
     63  1.12  kiyohara  * splipi is above splhigh unless splipi can be safely blocked when
     64  1.12  kiyohara  * calculating remaining bus time prior to transfers.
     65  1.12  kiyohara  *
     66  1.12  kiyohara  * The theory of the wait lock is that start is the only function that would
     67  1.12  kiyohara  * be frequently called from arbitrary processors, so it should not need to
     68  1.12  kiyohara  * wait for the rest to be completed.  However, once entering the lock as much
     69  1.12  kiyohara  * device access as possible is done, so any other CPU that tries to service
     70  1.12  kiyohara  * an interrupt would be blocked.  Ideally, the hard and soft interrupt could
     71  1.12  kiyohara  * be assigned to the same CPU and start would normally just put work on the
     72  1.12  kiyohara  * wait queue and generate a soft interrupt.
     73  1.12  kiyohara  *
     74  1.12  kiyohara  * Any use of the main lock must check the wait lock before returning.  The
     75  1.12  kiyohara  * aquisition order is main lock then wait lock, but the wait lock must be
     76  1.12  kiyohara  * released last when clearing the wait queue.
     77   1.1     isaki  */
     78  1.12  kiyohara 
     79  1.12  kiyohara /* XXX TODO:
     80  1.12  kiyohara  *   copy next output packet while transfering
     81  1.12  kiyohara  *   usb suspend
     82  1.12  kiyohara  *   could keep track of known values of all buffer space?
     83  1.12  kiyohara  *   combined print/log function for errors
     84  1.12  kiyohara  *
     85  1.12  kiyohara  *   use_polling support is untested and may not work
     86   1.1     isaki  */
     87   1.1     isaki 
     88   1.1     isaki #include <sys/cdefs.h>
     89  1.21  drochner __KERNEL_RCSID(0, "$NetBSD: sl811hs.c,v 1.21 2008/03/28 17:14:45 drochner Exp $");
     90   1.1     isaki 
     91  1.12  kiyohara #include <sys/cdefs.h>
     92   1.1     isaki #include <sys/param.h>
     93   1.1     isaki #include <sys/systm.h>
     94   1.1     isaki #include <sys/kernel.h>
     95   1.1     isaki #include <sys/proc.h>
     96   1.1     isaki #include <sys/device.h>
     97   1.1     isaki #include <sys/malloc.h>
     98  1.12  kiyohara #include <sys/queue.h>
     99  1.12  kiyohara #include <sys/gcq.h>
    100  1.17        ad #include <sys/simplelock.h>
    101  1.16        ad #include <sys/intr.h>
    102  1.16        ad #include <sys/cpu.h>
    103  1.15        ad #include <sys/bus.h>
    104   1.1     isaki 
    105   1.1     isaki #include <dev/usb/usb.h>
    106   1.1     isaki #include <dev/usb/usbdi.h>
    107   1.1     isaki #include <dev/usb/usbdivar.h>
    108   1.1     isaki #include <dev/usb/usb_mem.h>
    109   1.1     isaki #include <dev/usb/usbdevs.h>
    110  1.20     isaki #include <dev/usb/usbroothub_subr.h>
    111   1.1     isaki 
    112   1.1     isaki #include <dev/ic/sl811hsreg.h>
    113   1.1     isaki #include <dev/ic/sl811hsvar.h>
    114   1.1     isaki 
    115  1.12  kiyohara #define Q_CB 0				/* Control/Bulk */
    116  1.12  kiyohara #define Q_NEXT_CB 1
    117  1.12  kiyohara #define Q_MAX_XFER Q_CB
    118  1.12  kiyohara #define Q_CALLBACKS 2
    119  1.12  kiyohara #define Q_MAX Q_CALLBACKS
    120  1.12  kiyohara 
    121  1.12  kiyohara #define F_AREADY		(0x00000001)
    122  1.12  kiyohara #define F_BREADY		(0x00000002)
    123  1.12  kiyohara #define F_AINPROG		(0x00000004)
    124  1.12  kiyohara #define F_BINPROG		(0x00000008)
    125  1.12  kiyohara #define F_LOWSPEED		(0x00000010)
    126  1.12  kiyohara #define F_UDISABLED		(0x00000020) /* Consider disabled for USB */
    127  1.12  kiyohara #define F_NODEV			(0x00000040)
    128  1.12  kiyohara #define F_ROOTINTR		(0x00000080)
    129  1.12  kiyohara #define F_REALPOWER		(0x00000100) /* Actual power state */
    130  1.12  kiyohara #define F_POWER			(0x00000200) /* USB reported power state */
    131  1.12  kiyohara #define F_ACTIVE		(0x00000400)
    132  1.12  kiyohara #define F_CALLBACK		(0x00000800) /* Callback scheduled */
    133  1.12  kiyohara #define F_SOFCHECK1		(0x00001000)
    134  1.12  kiyohara #define F_SOFCHECK2		(0x00002000)
    135  1.12  kiyohara #define F_CRESET		(0x00004000) /* Reset done not reported */
    136  1.12  kiyohara #define F_CCONNECT		(0x00008000) /* Connect change not reported */
    137  1.12  kiyohara #define F_RESET			(0x00010000)
    138  1.12  kiyohara #define F_ISOC_WARNED		(0x00020000)
    139  1.12  kiyohara #define F_LSVH_WARNED		(0x00040000)
    140  1.12  kiyohara 
    141  1.12  kiyohara #define F_DISABLED		(F_NODEV|F_UDISABLED)
    142  1.12  kiyohara #define F_CHANGE		(F_CRESET|F_CCONNECT)
    143  1.12  kiyohara 
    144  1.12  kiyohara #ifdef SLHCI_TRY_LSVH
    145  1.12  kiyohara unsigned int slhci_try_lsvh = 1;
    146  1.12  kiyohara #else
    147  1.12  kiyohara unsigned int slhci_try_lsvh = 0;
    148  1.12  kiyohara #endif
    149  1.12  kiyohara 
    150  1.12  kiyohara #define ADR 0
    151  1.12  kiyohara #define LEN 1
    152  1.12  kiyohara #define PID 2
    153  1.12  kiyohara #define DEV 3
    154  1.12  kiyohara #define STAT 2
    155  1.12  kiyohara #define CONT 3
    156  1.12  kiyohara 
    157  1.12  kiyohara #define A 0
    158  1.12  kiyohara #define B 1
    159  1.12  kiyohara 
    160  1.12  kiyohara static const uint8_t slhci_tregs[2][4] =
    161  1.12  kiyohara {{SL11_E0ADDR, SL11_E0LEN, SL11_E0PID, SL11_E0DEV },
    162  1.12  kiyohara  {SL11_E1ADDR, SL11_E1LEN, SL11_E1PID, SL11_E1DEV }};
    163  1.12  kiyohara 
    164  1.12  kiyohara #define PT_ROOT_CTRL	0
    165  1.12  kiyohara #define PT_ROOT_INTR	1
    166  1.12  kiyohara #define PT_CTRL_SETUP	2
    167  1.12  kiyohara #define PT_CTRL_DATA	3
    168  1.12  kiyohara #define PT_CTRL_STATUS	4
    169  1.12  kiyohara #define PT_INTR		5
    170  1.12  kiyohara #define PT_BULK		6
    171  1.12  kiyohara #define PT_MAX		6
    172  1.12  kiyohara 
    173  1.12  kiyohara #ifdef SLHCI_DEBUG
    174  1.12  kiyohara #define SLHCI_MEM_ACCOUNTING
    175  1.12  kiyohara static const char *
    176  1.12  kiyohara pnames(int ptype)
    177  1.12  kiyohara {
    178  1.12  kiyohara 	static const char * const names[] = { "ROOT Ctrl", "ROOT Intr",
    179  1.12  kiyohara 	    "Control (setup)", "Control (data)", "Control (status)",
    180  1.12  kiyohara 	    "Interrupt", "Bulk", "BAD PTYPE" };
    181  1.12  kiyohara 
    182  1.12  kiyohara 	KASSERT(sizeof(names) / sizeof(names[0]) == PT_MAX + 2);
    183  1.12  kiyohara 	if (ptype > PT_MAX)
    184  1.12  kiyohara 		ptype = PT_MAX + 1;
    185  1.12  kiyohara 	return names[ptype];
    186  1.12  kiyohara }
    187  1.12  kiyohara #endif
    188  1.12  kiyohara 
    189  1.12  kiyohara #define SLHCI_XFER_TYPE(x) (((struct slhci_pipe *)((x)->pipe))->ptype)
    190  1.12  kiyohara 
    191  1.12  kiyohara /* Maximum allowable reserved bus time.  Since intr/isoc transfers have
    192  1.12  kiyohara  * unconditional priority, this is all that ensures control and bulk transfers
    193  1.12  kiyohara  * get a chance.  It is a single value for all frames since all transfers can
    194  1.12  kiyohara  * use multiple consecutive frames if an error is encountered.  Note that it
    195  1.12  kiyohara  * is not really possible to fill the bus with transfers, so this value should
    196  1.12  kiyohara  * be on the low side.  Defaults to giving a warning unless SLHCI_NO_OVERTIME
    197  1.12  kiyohara  * is defined.  Full time is 12000 - END_BUSTIME. */
    198  1.12  kiyohara #ifndef SLHCI_RESERVED_BUSTIME
    199  1.12  kiyohara #define SLHCI_RESERVED_BUSTIME 5000
    200  1.12  kiyohara #endif
    201  1.12  kiyohara 
    202  1.12  kiyohara /* Rate for "exceeds reserved bus time" warnings (default) or errors.
    203  1.12  kiyohara  * Warnings only happen when an endpoint open causes the time to go above
    204  1.12  kiyohara  * SLHCI_RESERVED_BUSTIME, not if it is already above. */
    205  1.12  kiyohara #ifndef SLHCI_OVERTIME_WARNING_RATE
    206  1.12  kiyohara #define SLHCI_OVERTIME_WARNING_RATE { 60, 0 } /* 60 seconds */
    207  1.12  kiyohara #endif
    208  1.12  kiyohara static const struct timeval reserved_warn_rate = SLHCI_OVERTIME_WARNING_RATE;
    209  1.12  kiyohara 
    210  1.12  kiyohara /* Rate for overflow warnings */
    211  1.12  kiyohara #ifndef SLHCI_OVERFLOW_WARNING_RATE
    212  1.12  kiyohara #define SLHCI_OVERFLOW_WARNING_RATE { 60, 0 } /* 60 seconds */
    213  1.12  kiyohara #endif
    214  1.12  kiyohara static const struct timeval overflow_warn_rate = SLHCI_OVERFLOW_WARNING_RATE;
    215  1.12  kiyohara 
    216  1.12  kiyohara /* For EOF, the spec says 42 bit times, plus (I think) a possible hub skew of
    217  1.12  kiyohara  * 20 bit times.  By default leave 66 bit times to start the transfer beyond
    218  1.12  kiyohara  * the required time.  Units are full-speed bit times (a bit over 5us per 64).
    219  1.12  kiyohara  * Only multiples of 64 are significant. */
    220  1.12  kiyohara #define SLHCI_STANDARD_END_BUSTIME 128
    221  1.12  kiyohara #ifndef SLHCI_EXTRA_END_BUSTIME
    222  1.12  kiyohara #define SLHCI_EXTRA_END_BUSTIME 0
    223  1.12  kiyohara #endif
    224  1.12  kiyohara 
    225  1.12  kiyohara #define SLHCI_END_BUSTIME (SLHCI_STANDARD_END_BUSTIME+SLHCI_EXTRA_END_BUSTIME)
    226  1.12  kiyohara 
    227  1.12  kiyohara /* This is an approximation of the USB worst-case timings presented on p. 54 of
    228  1.12  kiyohara  * the USB 1.1 spec translated to full speed bit times.
    229  1.12  kiyohara  * FS = full speed with handshake, FSII = isoc in, FSIO = isoc out,
    230  1.12  kiyohara  * FSI = isoc (worst case), LS = low speed */
    231  1.12  kiyohara #define SLHCI_FS_CONST		114
    232  1.12  kiyohara #define SLHCI_FSII_CONST	92
    233  1.12  kiyohara #define SLHCI_FSIO_CONST	80
    234  1.12  kiyohara #define SLHCI_FSI_CONST		92
    235  1.12  kiyohara #define SLHCI_LS_CONST		804
    236  1.12  kiyohara #ifndef SLHCI_PRECICE_BUSTIME
    237  1.12  kiyohara /* These values are < 3% too high (compared to the multiply and divide) for
    238  1.12  kiyohara  * max sized packets. */
    239  1.12  kiyohara #define SLHCI_FS_DATA_TIME(len) (((u_int)(len)<<3)+(len)+((len)>>1))
    240  1.12  kiyohara #define SLHCI_LS_DATA_TIME(len) (((u_int)(len)<<6)+((u_int)(len)<<4))
    241  1.12  kiyohara #else
    242  1.12  kiyohara #define SLHCI_FS_DATA_TIME(len) (56*(len)/6)
    243  1.12  kiyohara #define SLHCI_LS_DATA_TIME(len) (449*(len)/6)
    244  1.12  kiyohara #endif
    245  1.12  kiyohara 
    246  1.12  kiyohara /* Set SLHCI_WAIT_SIZE to the desired maximum size of single FS transfer
    247  1.12  kiyohara  * to poll for after starting a transfer.  64 gets all full speed transfers.
    248  1.12  kiyohara  * Note that even if 0 polling will occur if data equal or greater than the
    249  1.12  kiyohara  * transfer size is copied to the chip while the transfer is in progress.
    250  1.12  kiyohara  * Setting SLHCI_WAIT_TIME to -12000 will disable polling.
    251  1.12  kiyohara  */
    252  1.12  kiyohara #ifndef SLHCI_WAIT_SIZE
    253  1.12  kiyohara #define SLHCI_WAIT_SIZE 8
    254  1.12  kiyohara #endif
    255  1.12  kiyohara #ifndef SLHCI_WAIT_TIME
    256  1.12  kiyohara #define SLHCI_WAIT_TIME (SLHCI_FS_CONST + \
    257  1.12  kiyohara     SLHCI_FS_DATA_TIME(SLHCI_WAIT_SIZE))
    258  1.12  kiyohara #endif
    259  1.12  kiyohara const int slhci_wait_time = SLHCI_WAIT_TIME;
    260   1.1     isaki 
    261  1.12  kiyohara /* Root hub intr endpoint */
    262  1.12  kiyohara #define ROOT_INTR_ENDPT        1
    263   1.1     isaki 
    264  1.12  kiyohara #ifndef SLHCI_MAX_RETRIES
    265  1.12  kiyohara #define SLHCI_MAX_RETRIES 3
    266  1.12  kiyohara #endif
    267   1.1     isaki 
    268  1.12  kiyohara /* Check IER values for corruption after this many unrecognized interrupts. */
    269  1.12  kiyohara #ifndef SLHCI_IER_CHECK_FREQUENCY
    270   1.1     isaki #ifdef SLHCI_DEBUG
    271  1.12  kiyohara #define SLHCI_IER_CHECK_FREQUENCY 1
    272   1.1     isaki #else
    273  1.12  kiyohara #define SLHCI_IER_CHECK_FREQUENCY 100
    274   1.1     isaki #endif
    275  1.12  kiyohara #endif
    276  1.12  kiyohara 
    277  1.12  kiyohara /* Note that buffer points to the start of the buffer for this transfer.  */
    278  1.12  kiyohara struct slhci_pipe {
    279  1.12  kiyohara 	struct usbd_pipe pipe;
    280  1.12  kiyohara 	struct usbd_xfer *xfer;		/* xfer in progress */
    281  1.12  kiyohara 	uint8_t		*buffer;	/* I/O buffer (if needed) */
    282  1.12  kiyohara 	struct gcq 	ap;		/* All pipes */
    283  1.12  kiyohara 	struct gcq 	to;		/* Timeout list */
    284  1.12  kiyohara 	struct gcq 	xq;		/* Xfer queues */
    285  1.12  kiyohara 	unsigned int	pflags;		/* Pipe flags */
    286  1.12  kiyohara #define PF_GONE		(0x01)		/* Pipe is on disabled device */
    287  1.12  kiyohara #define PF_TOGGLE 	(0x02)		/* Data toggle status */
    288  1.12  kiyohara #define PF_LS		(0x04)		/* Pipe is low speed */
    289  1.12  kiyohara #define PF_PREAMBLE	(0x08)		/* Needs preamble */
    290  1.12  kiyohara 	Frame		to_frame;	/* Frame number for timeout */
    291  1.12  kiyohara 	Frame		frame;		/* Frame number for intr xfer */
    292  1.12  kiyohara 	Frame		lastframe;	/* Previous frame number for intr */
    293  1.12  kiyohara 	uint16_t	bustime;	/* Worst case bus time usage */
    294  1.12  kiyohara 	uint16_t	newbustime[2];	/* new bustimes (see index below) */
    295  1.12  kiyohara 	uint8_t		tregs[4];	/* ADR, LEN, PID, DEV */
    296  1.12  kiyohara 	uint8_t		newlen[2];	/* 0 = short data, 1 = ctrl data */
    297  1.12  kiyohara 	uint8_t		newpid;		/* for ctrl */
    298  1.12  kiyohara 	uint8_t		wantshort;	/* last xfer must be short */
    299  1.12  kiyohara 	uint8_t		control;	/* Host control register settings */
    300  1.12  kiyohara 	uint8_t		nerrs;		/* Current number of errors */
    301  1.12  kiyohara 	uint8_t 	ptype;		/* Pipe type */
    302  1.12  kiyohara };
    303   1.1     isaki 
    304  1.12  kiyohara #if defined(MULTIPROCESSOR) || defined(LOCKDEBUG)
    305  1.12  kiyohara #define SLHCI_WAITLOCK 1
    306  1.12  kiyohara #endif
    307   1.1     isaki 
    308  1.12  kiyohara #ifdef SLHCI_PROFILE_TRANSFER
    309  1.12  kiyohara #if defined(__mips__)
    310  1.12  kiyohara /* MIPS cycle counter does not directly count cpu cycles but is a different
    311  1.12  kiyohara  * fraction of cpu cycles depending on the cpu. */
    312  1.12  kiyohara typedef u_int32_t cc_type;
    313  1.12  kiyohara #define CC_TYPE_FMT "%u"
    314  1.12  kiyohara #define slhci_cc_set(x) __asm volatile ("mfc0 %[cc], $9\n\tnop\n\tnop\n\tnop" \
    315  1.12  kiyohara     : [cc] "=r"(x))
    316  1.12  kiyohara #elif defined(__i386__)
    317  1.12  kiyohara typedef u_int64_t cc_type;
    318  1.12  kiyohara #define CC_TYPE_FMT "%llu"
    319  1.12  kiyohara #define slhci_cc_set(x) __asm volatile ("rdtsc" : "=A"(x))
    320  1.12  kiyohara #else
    321  1.12  kiyohara #error "SLHCI_PROFILE_TRANSFER not implemented on this MACHINE_ARCH (see sys/dev/ic/sl811hs.c)"
    322  1.12  kiyohara #endif
    323  1.12  kiyohara struct slhci_cc_time {
    324  1.12  kiyohara 	cc_type start;
    325  1.12  kiyohara 	cc_type stop;
    326  1.12  kiyohara 	unsigned int miscdata;
    327  1.12  kiyohara };
    328  1.12  kiyohara #ifndef SLHCI_N_TIMES
    329  1.12  kiyohara #define SLHCI_N_TIMES 200
    330  1.12  kiyohara #endif
    331  1.12  kiyohara struct slhci_cc_times {
    332  1.12  kiyohara 	struct slhci_cc_time times[SLHCI_N_TIMES];
    333  1.12  kiyohara 	int current;
    334  1.12  kiyohara 	int wraparound;
    335   1.1     isaki };
    336   1.1     isaki 
    337  1.12  kiyohara static struct slhci_cc_times t_ab[2];
    338  1.12  kiyohara static struct slhci_cc_times t_abdone;
    339  1.12  kiyohara static struct slhci_cc_times t_copy_to_dev;
    340  1.12  kiyohara static struct slhci_cc_times t_copy_from_dev;
    341  1.12  kiyohara static struct slhci_cc_times t_intr;
    342  1.12  kiyohara static struct slhci_cc_times t_lock;
    343  1.12  kiyohara static struct slhci_cc_times t_delay;
    344  1.12  kiyohara static struct slhci_cc_times t_hard_int;
    345  1.12  kiyohara static struct slhci_cc_times t_callback;
    346  1.12  kiyohara 
    347  1.12  kiyohara static inline void
    348  1.12  kiyohara start_cc_time(struct slhci_cc_times *times, unsigned int misc) {
    349  1.12  kiyohara 	times->times[times->current].miscdata = misc;
    350  1.12  kiyohara 	slhci_cc_set(times->times[times->current].start);
    351  1.12  kiyohara }
    352  1.12  kiyohara static inline void
    353  1.12  kiyohara stop_cc_time(struct slhci_cc_times *times) {
    354  1.12  kiyohara 	slhci_cc_set(times->times[times->current].stop);
    355  1.12  kiyohara 	if (++times->current >= SLHCI_N_TIMES) {
    356  1.12  kiyohara 		times->current = 0;
    357  1.12  kiyohara 		times->wraparound = 1;
    358  1.12  kiyohara 	}
    359  1.12  kiyohara }
    360  1.12  kiyohara 
    361  1.12  kiyohara void slhci_dump_cc_times(int);
    362  1.12  kiyohara 
    363  1.12  kiyohara void
    364  1.12  kiyohara slhci_dump_cc_times(int n) {
    365  1.12  kiyohara 	struct slhci_cc_times *times;
    366  1.12  kiyohara 	int i;
    367  1.12  kiyohara 
    368  1.12  kiyohara 	switch (n) {
    369  1.12  kiyohara 	default:
    370  1.12  kiyohara 	case 0:
    371  1.12  kiyohara 		printf("USBA start transfer to intr:\n");
    372  1.12  kiyohara 		times = &t_ab[A];
    373  1.12  kiyohara 		break;
    374  1.12  kiyohara 	case 1:
    375  1.12  kiyohara 		printf("USBB start transfer to intr:\n");
    376  1.12  kiyohara 		times = &t_ab[B];
    377  1.12  kiyohara 		break;
    378  1.12  kiyohara 	case 2:
    379  1.12  kiyohara 		printf("abdone:\n");
    380  1.12  kiyohara 		times = &t_abdone;
    381  1.12  kiyohara 		break;
    382  1.12  kiyohara 	case 3:
    383  1.12  kiyohara 		printf("copy to device:\n");
    384  1.12  kiyohara 		times = &t_copy_to_dev;
    385  1.12  kiyohara 		break;
    386  1.12  kiyohara 	case 4:
    387  1.12  kiyohara 		printf("copy from device:\n");
    388  1.12  kiyohara 		times = &t_copy_from_dev;
    389  1.12  kiyohara 		break;
    390  1.12  kiyohara 	case 5:
    391  1.12  kiyohara 		printf("intr to intr:\n");
    392  1.12  kiyohara 		times = &t_intr;
    393  1.12  kiyohara 		break;
    394  1.12  kiyohara 	case 6:
    395  1.12  kiyohara 		printf("lock to release:\n");
    396  1.12  kiyohara 		times = &t_lock;
    397  1.12  kiyohara 		break;
    398  1.12  kiyohara 	case 7:
    399  1.12  kiyohara 		printf("delay time:\n");
    400  1.12  kiyohara 		times = &t_delay;
    401  1.12  kiyohara 		break;
    402  1.12  kiyohara 	case 8:
    403  1.12  kiyohara 		printf("hard interrupt enter to exit:\n");
    404  1.12  kiyohara 		times = &t_hard_int;
    405  1.12  kiyohara 		break;
    406  1.12  kiyohara 	case 9:
    407  1.12  kiyohara 		printf("callback:\n");
    408  1.12  kiyohara 		times = &t_callback;
    409  1.12  kiyohara 		break;
    410  1.12  kiyohara 	}
    411  1.12  kiyohara 
    412  1.12  kiyohara 	if (times->wraparound)
    413  1.12  kiyohara 		for (i = times->current + 1; i < SLHCI_N_TIMES; i++)
    414  1.12  kiyohara 			printf("start " CC_TYPE_FMT " stop " CC_TYPE_FMT
    415  1.12  kiyohara 			    " difference %8i miscdata %#x\n",
    416  1.12  kiyohara 			    times->times[i].start, times->times[i].stop,
    417  1.12  kiyohara 			    (int)(times->times[i].stop -
    418  1.12  kiyohara 			    times->times[i].start), times->times[i].miscdata);
    419  1.12  kiyohara 
    420  1.12  kiyohara 	for (i = 0; i < times->current; i++)
    421  1.12  kiyohara 		printf("start " CC_TYPE_FMT " stop " CC_TYPE_FMT
    422  1.12  kiyohara 		    " difference %8i miscdata %#x\n", times->times[i].start,
    423  1.12  kiyohara 		    times->times[i].stop, (int)(times->times[i].stop -
    424  1.12  kiyohara 		    times->times[i].start), times->times[i].miscdata);
    425  1.12  kiyohara }
    426  1.12  kiyohara #else
    427  1.12  kiyohara #define start_cc_time(x, y)
    428  1.12  kiyohara #define stop_cc_time(x)
    429  1.12  kiyohara #endif /* SLHCI_PROFILE_TRANSFER */
    430  1.12  kiyohara 
    431  1.12  kiyohara typedef usbd_status (*LockCallFunc)(struct slhci_softc *, struct slhci_pipe
    432  1.12  kiyohara     *, struct usbd_xfer *);
    433  1.12  kiyohara 
    434  1.12  kiyohara usbd_status slhci_allocm(struct usbd_bus *, usb_dma_t *, u_int32_t);
    435  1.12  kiyohara void slhci_freem(struct usbd_bus *, usb_dma_t *);
    436  1.12  kiyohara struct usbd_xfer * slhci_allocx(struct usbd_bus *);
    437  1.12  kiyohara void slhci_freex(struct usbd_bus *, struct usbd_xfer *);
    438  1.12  kiyohara 
    439  1.12  kiyohara usbd_status slhci_transfer(struct usbd_xfer *);
    440  1.12  kiyohara usbd_status slhci_start(struct usbd_xfer *);
    441  1.12  kiyohara usbd_status slhci_root_start(struct usbd_xfer *);
    442  1.12  kiyohara usbd_status slhci_open(struct usbd_pipe *);
    443  1.12  kiyohara 
    444  1.12  kiyohara /* slhci_supported_rev, slhci_preinit, slhci_attach, slhci_detach,
    445  1.12  kiyohara  * slhci_activate */
    446  1.12  kiyohara 
    447  1.12  kiyohara void slhci_abort(struct usbd_xfer *);
    448  1.12  kiyohara void slhci_close(struct usbd_pipe *);
    449  1.12  kiyohara void slhci_clear_toggle(struct usbd_pipe *);
    450  1.12  kiyohara void slhci_poll(struct usbd_bus *);
    451  1.12  kiyohara void slhci_done(struct usbd_xfer *);
    452  1.12  kiyohara void slhci_void(void *);
    453  1.12  kiyohara 
    454  1.12  kiyohara /* lock entry functions */
    455  1.12  kiyohara 
    456  1.12  kiyohara #ifdef SLHCI_MEM_ACCOUNTING
    457  1.12  kiyohara void slhci_mem_use(struct usbd_bus *, int);
    458  1.12  kiyohara #endif
    459  1.12  kiyohara 
    460  1.12  kiyohara void slhci_reset_entry(void *);
    461  1.12  kiyohara usbd_status slhci_lock_call(struct slhci_softc *, LockCallFunc,
    462  1.12  kiyohara     struct slhci_pipe *, struct usbd_xfer *);
    463  1.12  kiyohara void slhci_start_entry(struct slhci_softc *, struct slhci_pipe *);
    464  1.12  kiyohara void slhci_callback_entry(void *arg);
    465  1.12  kiyohara void slhci_do_callback(struct slhci_softc *, struct usbd_xfer *, int *);
    466  1.12  kiyohara 
    467  1.12  kiyohara /* slhci_intr */
    468  1.12  kiyohara 
    469  1.12  kiyohara void slhci_main(struct slhci_softc *, int *);
    470  1.12  kiyohara 
    471  1.12  kiyohara /* in lock functions */
    472  1.12  kiyohara 
    473  1.12  kiyohara static void slhci_write(struct slhci_softc *, uint8_t, uint8_t);
    474  1.12  kiyohara static uint8_t slhci_read(struct slhci_softc *, uint8_t);
    475  1.12  kiyohara static void slhci_write_multi(struct slhci_softc *, uint8_t, uint8_t *, int);
    476  1.12  kiyohara static void slhci_read_multi(struct slhci_softc *, uint8_t, uint8_t *, int);
    477  1.12  kiyohara 
    478  1.12  kiyohara static void slhci_waitintr(struct slhci_softc *, int);
    479  1.12  kiyohara static int slhci_dointr(struct slhci_softc *);
    480  1.12  kiyohara static void slhci_abdone(struct slhci_softc *, int);
    481  1.12  kiyohara static void slhci_tstart(struct slhci_softc *);
    482  1.12  kiyohara static void slhci_dotransfer(struct slhci_softc *);
    483  1.12  kiyohara 
    484  1.12  kiyohara static void slhci_callback(struct slhci_softc *, int *);
    485  1.12  kiyohara static void slhci_enter_xfer(struct slhci_softc *, struct slhci_pipe *);
    486  1.12  kiyohara #ifdef SLHCI_WAITLOCK
    487  1.12  kiyohara static void slhci_enter_xfers(struct slhci_softc *);
    488  1.12  kiyohara #endif
    489  1.12  kiyohara static void slhci_queue_timed(struct slhci_softc *, struct slhci_pipe *);
    490  1.12  kiyohara static void slhci_xfer_timer(struct slhci_softc *, struct slhci_pipe *);
    491  1.12  kiyohara 
    492  1.12  kiyohara static void slhci_do_repeat(struct slhci_softc *, struct usbd_xfer *);
    493  1.12  kiyohara static void slhci_callback_schedule(struct slhci_softc *);
    494  1.12  kiyohara static void slhci_do_callback_schedule(struct slhci_softc *);
    495  1.12  kiyohara #if 0
    496  1.12  kiyohara void slhci_pollxfer(struct slhci_softc *, struct usbd_xfer *, int *); /* XXX */
    497  1.12  kiyohara #endif
    498  1.12  kiyohara 
    499  1.12  kiyohara static usbd_status slhci_do_poll(struct slhci_softc *, struct slhci_pipe *,
    500  1.12  kiyohara     struct usbd_xfer *);
    501  1.12  kiyohara static usbd_status slhci_lsvh_warn(struct slhci_softc *, struct slhci_pipe *,
    502  1.12  kiyohara     struct usbd_xfer *);
    503  1.12  kiyohara static usbd_status slhci_isoc_warn(struct slhci_softc *, struct slhci_pipe *,
    504  1.12  kiyohara     struct usbd_xfer *);
    505  1.12  kiyohara static usbd_status slhci_open_pipe(struct slhci_softc *, struct slhci_pipe *,
    506  1.12  kiyohara     struct usbd_xfer *);
    507  1.12  kiyohara static usbd_status slhci_close_pipe(struct slhci_softc *, struct slhci_pipe *,
    508  1.12  kiyohara     struct usbd_xfer *);
    509  1.12  kiyohara static usbd_status slhci_do_abort(struct slhci_softc *, struct slhci_pipe *,
    510  1.12  kiyohara     struct usbd_xfer *);
    511  1.12  kiyohara static usbd_status slhci_do_attach(struct slhci_softc *, struct slhci_pipe *,
    512  1.12  kiyohara     struct usbd_xfer *);
    513  1.12  kiyohara static usbd_status slhci_halt(struct slhci_softc *, struct slhci_pipe *,
    514  1.12  kiyohara     struct usbd_xfer *);
    515  1.12  kiyohara 
    516  1.12  kiyohara static void slhci_intrchange(struct slhci_softc *, uint8_t);
    517  1.12  kiyohara static void slhci_drain(struct slhci_softc *);
    518  1.12  kiyohara static void slhci_reset(struct slhci_softc *);
    519  1.12  kiyohara static int slhci_reserve_bustime(struct slhci_softc *, struct slhci_pipe *,
    520  1.12  kiyohara     int);
    521  1.12  kiyohara static void slhci_insert(struct slhci_softc *);
    522  1.12  kiyohara 
    523  1.12  kiyohara static usbd_status slhci_clear_feature(struct slhci_softc *, unsigned int);
    524  1.12  kiyohara static usbd_status slhci_set_feature(struct slhci_softc *, unsigned int);
    525  1.12  kiyohara static void slhci_get_status(struct slhci_softc *, usb_port_status_t *);
    526  1.12  kiyohara static usbd_status slhci_root(struct slhci_softc *, struct slhci_pipe *,
    527  1.12  kiyohara     struct usbd_xfer *);
    528  1.12  kiyohara 
    529  1.12  kiyohara #ifdef SLHCI_DEBUG
    530  1.12  kiyohara void slhci_log_buffer(struct usbd_xfer *);
    531  1.12  kiyohara void slhci_log_req(usb_device_request_t *);
    532  1.12  kiyohara void slhci_log_req_hub(usb_device_request_t *);
    533  1.12  kiyohara void slhci_log_dumpreg(void);
    534  1.12  kiyohara void slhci_log_xfer(struct usbd_xfer *);
    535  1.12  kiyohara void slhci_log_spipe(struct slhci_pipe *);
    536  1.12  kiyohara void slhci_print_intr(void);
    537  1.12  kiyohara void slhci_log_sc(void);
    538  1.12  kiyohara void slhci_log_slreq(struct slhci_pipe *);
    539  1.12  kiyohara 
    540  1.12  kiyohara extern int usbdebug;
    541  1.12  kiyohara 
    542  1.12  kiyohara /* Constified so you can read the values from ddb */
    543  1.12  kiyohara const int SLHCI_D_TRACE =	0x0001;
    544  1.12  kiyohara const int SLHCI_D_MSG = 	0x0002;
    545  1.12  kiyohara const int SLHCI_D_XFER =	0x0004;
    546  1.12  kiyohara const int SLHCI_D_MEM = 	0x0008;
    547  1.12  kiyohara const int SLHCI_D_INTR =	0x0010;
    548  1.12  kiyohara const int SLHCI_D_SXFER =	0x0020;
    549  1.12  kiyohara const int SLHCI_D_ERR = 	0x0080;
    550  1.12  kiyohara const int SLHCI_D_BUF = 	0x0100;
    551  1.12  kiyohara const int SLHCI_D_SOFT =	0x0200;
    552  1.12  kiyohara const int SLHCI_D_WAIT =	0x0400;
    553  1.12  kiyohara const int SLHCI_D_ROOT =	0x0800;
    554  1.12  kiyohara /* SOF/NAK alone normally ignored, SOF also needs D_INTR */
    555  1.12  kiyohara const int SLHCI_D_SOF =		0x1000;
    556  1.12  kiyohara const int SLHCI_D_NAK =		0x2000;
    557  1.12  kiyohara 
    558  1.12  kiyohara int slhci_debug = 0x1cbc; /* 0xc8c; */ /* 0xffff; */ /* 0xd8c; */
    559  1.12  kiyohara struct slhci_softc *ssc;
    560  1.12  kiyohara #ifdef USB_DEBUG
    561  1.12  kiyohara int slhci_usbdebug = -1; /* value to set usbdebug on attach, -1 = leave alone */
    562  1.12  kiyohara #endif
    563  1.12  kiyohara 
    564  1.12  kiyohara /* Add UVMHIST history for debugging:
    565  1.12  kiyohara  *
    566  1.12  kiyohara  *   Before uvm_hist in sys/uvm/uvm_stat.c add:
    567  1.12  kiyohara  *      UVMHIST_DECL(slhcihist);
    568  1.12  kiyohara  *
    569  1.12  kiyohara  *   In uvm_hist add:
    570  1.12  kiyohara  *      if ((bitmask & UVMHIST_SLHCI))
    571  1.12  kiyohara  *              hists[i++] = &slhcihist;
    572  1.12  kiyohara  *
    573  1.12  kiyohara  *   In sys/uvm/uvm_stat.h add UVMHIST_SLHCI define.
    574  1.12  kiyohara  */
    575  1.12  kiyohara 
    576  1.12  kiyohara #include <uvm/uvm_stat.h>
    577  1.12  kiyohara UVMHIST_DECL(slhcihist);
    578  1.12  kiyohara 
    579  1.12  kiyohara #if !defined(UVMHIST) || !defined(UVMHIST_SLHCI)
    580  1.12  kiyohara #error "SLHCI_DEBUG requires UVMHIST (with modifications, see sys/dev/ic/sl81hs.c)"
    581  1.12  kiyohara #endif
    582  1.12  kiyohara 
    583  1.12  kiyohara #ifndef SLHCI_NHIST
    584  1.12  kiyohara #define SLHCI_NHIST 409600
    585  1.12  kiyohara #endif
    586  1.12  kiyohara const unsigned int SLHCI_HISTMASK = UVMHIST_SLHCI;
    587  1.12  kiyohara struct uvm_history_ent slhci_he[SLHCI_NHIST];
    588  1.12  kiyohara 
    589  1.12  kiyohara #define SLHCI_DEXEC(x, y) do { if ((slhci_debug & SLHCI_ ## x)) { y; } \
    590  1.12  kiyohara } while (/*CONSTCOND*/ 0)
    591  1.12  kiyohara #define DDOLOG(f, a, b, c, d) do { const char *_uvmhist_name = __func__; \
    592  1.12  kiyohara     u_long _uvmhist_call = 0; UVMHIST_LOG(slhcihist, f, a, b, c, d);	     \
    593  1.12  kiyohara } while (/*CONSTCOND*/0)
    594  1.12  kiyohara #define DLOG(x, f, a, b, c, d) SLHCI_DEXEC(x, DDOLOG(f, a, b, c, d))
    595  1.12  kiyohara /* DLOGFLAG8 is a macro not a function so that flag name expressions are not
    596  1.12  kiyohara  * evaluated unless the flag bit is set (which could save a register read).
    597  1.12  kiyohara  * x is debug mask, y is flag identifier, z is flag variable,
    598  1.12  kiyohara  * a-h are flag names (must evaluate to string constants, msb first). */
    599  1.12  kiyohara #define DDOLOGFLAG8(y, z, a, b, c, d, e, f, g, h) do { uint8_t _DLF8 = (z);   \
    600  1.12  kiyohara     const char *_uvmhist_name = __func__; u_long _uvmhist_call = 0;	      \
    601  1.12  kiyohara     if (_DLF8 & 0xf0) UVMHIST_LOG(slhcihist, y " %s %s %s %s", _DLF8 & 0x80 ?  \
    602  1.12  kiyohara     (a) : "", _DLF8 & 0x40 ? (b) : "", _DLF8 & 0x20 ? (c) : "", _DLF8 & 0x10 ? \
    603  1.12  kiyohara     (d) : ""); if (_DLF8 & 0x0f) UVMHIST_LOG(slhcihist, y " %s %s %s %s",      \
    604  1.12  kiyohara     _DLF8 & 0x08 ? (e) : "", _DLF8 & 0x04 ? (f) : "", _DLF8 & 0x02 ? (g) : "", \
    605  1.12  kiyohara     _DLF8 & 0x01 ? (h) : "");		      				       \
    606  1.12  kiyohara } while (/*CONSTCOND*/ 0)
    607  1.12  kiyohara #define DLOGFLAG8(x, y, z, a, b, c, d, e, f, g, h) \
    608  1.12  kiyohara     SLHCI_DEXEC(x, DDOLOGFLAG8(y, z, a, b, c, d, e, f, g, h))
    609  1.12  kiyohara /* DDOLOGBUF logs a buffer up to 8 bytes at a time. No identifier so that we
    610  1.12  kiyohara  * can make it a real function. */
    611  1.12  kiyohara static void
    612  1.12  kiyohara DDOLOGBUF(uint8_t *buf, unsigned int length)
    613  1.12  kiyohara {
    614  1.12  kiyohara 	int i;
    615  1.12  kiyohara 
    616  1.12  kiyohara 	for(i=0; i+8 <= length; i+=8)
    617  1.12  kiyohara 		DDOLOG("%.4x %.4x %.4x %.4x", (buf[i] << 8) | buf[i+1],
    618  1.12  kiyohara 		    (buf[i+2] << 8) | buf[i+3], (buf[i+4] << 8) | buf[i+5],
    619  1.12  kiyohara 		    (buf[i+6] << 8) | buf[i+7]);
    620  1.12  kiyohara 	if (length == i+7)
    621  1.12  kiyohara 		DDOLOG("%.4x %.4x %.4x %.2x", (buf[i] << 8) | buf[i+1],
    622  1.12  kiyohara 		    (buf[i+2] << 8) | buf[i+3], (buf[i+4] << 8) | buf[i+5],
    623  1.12  kiyohara 		    buf[i+6]);
    624  1.12  kiyohara 	else if (length == i+6)
    625  1.12  kiyohara 		DDOLOG("%.4x %.4x %.4x", (buf[i] << 8) | buf[i+1],
    626  1.12  kiyohara 		    (buf[i+2] << 8) | buf[i+3], (buf[i+4] << 8) | buf[i+5], 0);
    627  1.12  kiyohara 	else if (length == i+5)
    628  1.12  kiyohara 		DDOLOG("%.4x %.4x %.2x", (buf[i] << 8) | buf[i+1],
    629  1.12  kiyohara 		    (buf[i+2] << 8) | buf[i+3], buf[i+4], 0);
    630  1.12  kiyohara 	else if (length == i+4)
    631  1.12  kiyohara 		DDOLOG("%.4x %.4x", (buf[i] << 8) | buf[i+1],
    632  1.12  kiyohara 		    (buf[i+2] << 8) | buf[i+3], 0,0);
    633  1.12  kiyohara 	else if (length == i+3)
    634  1.12  kiyohara 		DDOLOG("%.4x %.2x", (buf[i] << 8) | buf[i+1], buf[i+2], 0,0);
    635  1.12  kiyohara 	else if (length == i+2)
    636  1.12  kiyohara 		DDOLOG("%.4x", (buf[i] << 8) | buf[i+1], 0,0,0);
    637  1.12  kiyohara 	else if (length == i+1)
    638  1.12  kiyohara 		DDOLOG("%.2x", buf[i], 0,0,0);
    639  1.12  kiyohara }
    640  1.12  kiyohara #define DLOGBUF(x, b, l) SLHCI_DEXEC(x, DDOLOGBUF(b, l))
    641  1.12  kiyohara #else /* now !SLHCI_DEBUG */
    642  1.12  kiyohara #define slhci_log_spipe(spipe) ((void)0)
    643  1.12  kiyohara #define slhci_log_xfer(xfer) ((void)0)
    644  1.12  kiyohara #define SLHCI_DEXEC(x, y) ((void)0)
    645  1.12  kiyohara #define DDOLOG(f, a, b, c, d) ((void)0)
    646  1.12  kiyohara #define DLOG(x, f, a, b, c, d) ((void)0)
    647  1.12  kiyohara #define DDOLOGFLAG8(y, z, a, b, c, d, e, f, g, h) ((void)0)
    648  1.12  kiyohara #define DLOGFLAG8(x, y, z, a, b, c, d, e, f, g, h) ((void)0)
    649  1.12  kiyohara #define DDOLOGBUF(b, l) ((void)0)
    650  1.12  kiyohara #define DLOGBUF(x, b, l) ((void)0)
    651  1.12  kiyohara #endif /* SLHCI_DEBUG */
    652  1.12  kiyohara 
    653  1.12  kiyohara #define SLHCI_MAINLOCKASSERT(sc) ((void)0)
    654  1.12  kiyohara #define SLHCI_LOCKASSERT(sc, main, wait) ((void)0)
    655   1.1     isaki 
    656  1.12  kiyohara #ifdef DIAGNOSTIC
    657  1.12  kiyohara #define LK_SLASSERT(exp, sc, spipe, xfer, ext) do {			\
    658  1.12  kiyohara 	if (!(exp)) {							\
    659  1.12  kiyohara 		printf("%s: assertion %s failed line %u function %s!"	\
    660  1.12  kiyohara 		" halted\n", SC_NAME(sc), #exp, __LINE__, __func__);\
    661  1.12  kiyohara 		DDOLOG("%s: assertion %s failed line %u function %s!"	\
    662  1.12  kiyohara 		" halted\n", SC_NAME(sc), #exp, __LINE__, __func__);\
    663  1.12  kiyohara 		slhci_halt(sc, spipe, xfer);				\
    664  1.12  kiyohara 		ext;							\
    665  1.12  kiyohara 	}								\
    666  1.12  kiyohara } while (/*CONSTCOND*/0)
    667  1.12  kiyohara #define UL_SLASSERT(exp, sc, spipe, xfer, ext) do {			\
    668  1.12  kiyohara 	if (!(exp)) {							\
    669  1.12  kiyohara 		printf("%s: assertion %s failed line %u function %s!"	\
    670  1.12  kiyohara 		" halted\n", SC_NAME(sc), #exp, __LINE__, __func__);	\
    671  1.12  kiyohara 		DDOLOG("%s: assertion %s failed line %u function %s!"	\
    672  1.12  kiyohara 		" halted\n", SC_NAME(sc), #exp, __LINE__, __func__);	\
    673  1.12  kiyohara 		slhci_lock_call(sc, &slhci_halt, spipe, xfer);		\
    674  1.12  kiyohara 		ext;							\
    675  1.12  kiyohara 	}								\
    676  1.12  kiyohara } while (/*CONSTCOND*/0)
    677  1.12  kiyohara #else
    678  1.12  kiyohara #define LK_SLASSERT(exp, sc, spipe, xfer, ext) ((void)0)
    679  1.12  kiyohara #define UL_SLASSERT(exp, sc, spipe, xfer, ext) ((void)0)
    680  1.12  kiyohara #endif
    681  1.12  kiyohara 
    682  1.12  kiyohara const struct usbd_bus_methods slhci_bus_methods = {
    683   1.1     isaki 	slhci_open,
    684  1.12  kiyohara 	slhci_void,
    685   1.1     isaki 	slhci_poll,
    686   1.1     isaki 	slhci_allocm,
    687   1.1     isaki 	slhci_freem,
    688   1.1     isaki 	slhci_allocx,
    689   1.1     isaki 	slhci_freex,
    690   1.1     isaki };
    691   1.1     isaki 
    692  1.12  kiyohara const struct usbd_pipe_methods slhci_pipe_methods = {
    693  1.12  kiyohara 	slhci_transfer,
    694  1.12  kiyohara 	slhci_start,
    695  1.12  kiyohara 	slhci_abort,
    696  1.12  kiyohara 	slhci_close,
    697  1.12  kiyohara 	slhci_clear_toggle,
    698  1.12  kiyohara 	slhci_done,
    699   1.1     isaki };
    700   1.1     isaki 
    701  1.12  kiyohara const struct usbd_pipe_methods slhci_root_methods = {
    702  1.12  kiyohara 	slhci_transfer,
    703  1.12  kiyohara 	slhci_root_start,
    704  1.12  kiyohara 	slhci_abort,
    705  1.12  kiyohara 	(void (*)(struct usbd_pipe *))slhci_void, /* XXX safe? */
    706  1.12  kiyohara 	slhci_clear_toggle,
    707  1.12  kiyohara 	slhci_done,
    708   1.1     isaki };
    709   1.1     isaki 
    710  1.12  kiyohara /* Queue inlines */
    711  1.12  kiyohara 
    712  1.12  kiyohara #define GOT_FIRST_TO(tvar, t) \
    713  1.12  kiyohara     GCQ_GOT_FIRST_TYPED(tvar, &(t)->to, struct slhci_pipe, to)
    714  1.12  kiyohara 
    715  1.12  kiyohara #define FIND_TO(var, t, tvar, cond) \
    716  1.12  kiyohara     GCQ_FIND_TYPED(var, &(t)->to, tvar, struct slhci_pipe, to, cond)
    717  1.12  kiyohara 
    718  1.12  kiyohara #define FOREACH_AP(var, t, tvar) \
    719  1.12  kiyohara     GCQ_FOREACH_TYPED(var, &(t)->ap, tvar, struct slhci_pipe, ap)
    720   1.1     isaki 
    721  1.12  kiyohara #define GOT_FIRST_TIMED_COND(tvar, t, cond) \
    722  1.12  kiyohara     GCQ_GOT_FIRST_COND_TYPED(tvar, &(t)->timed, struct slhci_pipe, xq, cond)
    723   1.1     isaki 
    724  1.12  kiyohara #define GOT_FIRST_CB(tvar, t) \
    725  1.12  kiyohara     GCQ_GOT_FIRST_TYPED(tvar, &(t)->q[Q_CB], struct slhci_pipe, xq)
    726   1.1     isaki 
    727  1.12  kiyohara #define DEQUEUED_CALLBACK(tvar, t) \
    728  1.12  kiyohara     GCQ_DEQUEUED_FIRST_TYPED(tvar, &(t)->q[Q_CALLBACKS], struct slhci_pipe, xq)
    729   1.1     isaki 
    730  1.12  kiyohara #define FIND_TIMED(var, t, tvar, cond) \
    731  1.12  kiyohara    GCQ_FIND_TYPED(var, &(t)->timed, tvar, struct slhci_pipe, xq, cond)
    732   1.1     isaki 
    733  1.12  kiyohara #ifdef SLHCI_WAITLOCK
    734  1.12  kiyohara #define DEQUEUED_WAITQ(tvar, sc) \
    735  1.12  kiyohara     GCQ_DEQUEUED_FIRST_TYPED(tvar, &(sc)->sc_waitq, struct slhci_pipe, xq)
    736   1.1     isaki 
    737  1.12  kiyohara static inline void
    738  1.12  kiyohara enter_waitq(struct slhci_softc *sc, struct slhci_pipe *spipe)
    739   1.1     isaki {
    740  1.12  kiyohara 	gcq_insert_tail(&sc->sc_waitq, &spipe->xq);
    741   1.1     isaki }
    742  1.12  kiyohara #endif
    743   1.1     isaki 
    744   1.1     isaki static inline void
    745  1.12  kiyohara enter_q(struct slhci_transfers *t, struct slhci_pipe *spipe, int i)
    746   1.1     isaki {
    747  1.12  kiyohara 	gcq_insert_tail(&t->q[i], &spipe->xq);
    748   1.1     isaki }
    749   1.1     isaki 
    750   1.1     isaki static inline void
    751  1.12  kiyohara enter_callback(struct slhci_transfers *t, struct slhci_pipe *spipe)
    752   1.1     isaki {
    753  1.12  kiyohara 	gcq_insert_tail(&t->q[Q_CALLBACKS], &spipe->xq);
    754   1.1     isaki }
    755   1.1     isaki 
    756   1.1     isaki static inline void
    757  1.12  kiyohara enter_all_pipes(struct slhci_transfers *t, struct slhci_pipe *spipe)
    758   1.1     isaki {
    759  1.12  kiyohara 	gcq_insert_tail(&t->ap, &spipe->ap);
    760   1.1     isaki }
    761   1.1     isaki 
    762  1.12  kiyohara /* Start out of lock functions. */
    763  1.12  kiyohara 
    764  1.12  kiyohara struct slhci_mem {
    765  1.12  kiyohara 	usb_dma_block_t block;
    766  1.12  kiyohara 	uint8_t data[];
    767  1.12  kiyohara };
    768  1.12  kiyohara 
    769  1.12  kiyohara /* The SL811HS does not do DMA as a host controller, but NetBSD's USB interface
    770  1.12  kiyohara  * assumes DMA is used.  So we fake the DMA block. */
    771  1.12  kiyohara usbd_status
    772  1.12  kiyohara slhci_allocm(struct usbd_bus *bus, usb_dma_t *dma, u_int32_t size)
    773   1.1     isaki {
    774  1.12  kiyohara 	struct slhci_mem *mem;
    775   1.1     isaki 
    776  1.12  kiyohara 	mem = malloc(sizeof(struct slhci_mem) + size, M_USB, M_NOWAIT|M_ZERO);
    777  1.12  kiyohara 
    778  1.12  kiyohara 	DLOG(D_MEM, "allocm %p", mem, 0,0,0);
    779   1.1     isaki 
    780  1.12  kiyohara 	if (mem == NULL)
    781  1.12  kiyohara 		return USBD_NOMEM;
    782   1.1     isaki 
    783  1.12  kiyohara 	dma->block = &mem->block;
    784  1.12  kiyohara 	dma->block->kaddr = mem->data;
    785   1.1     isaki 
    786  1.12  kiyohara 	/* dma->offs = 0; */
    787  1.12  kiyohara 	dma->block->nsegs = 1;
    788  1.12  kiyohara 	dma->block->size = size;
    789  1.12  kiyohara 	dma->block->align = size;
    790  1.12  kiyohara 	dma->block->flags |= USB_DMA_FULLBLOCK;
    791   1.1     isaki 
    792  1.12  kiyohara #ifdef SLHCI_MEM_ACCOUNTING
    793  1.12  kiyohara 	slhci_mem_use(bus, 1);
    794  1.12  kiyohara #endif
    795   1.1     isaki 
    796  1.12  kiyohara 	return USBD_NORMAL_COMPLETION;
    797   1.1     isaki }
    798   1.1     isaki 
    799  1.12  kiyohara void
    800  1.12  kiyohara slhci_freem(struct usbd_bus *bus, usb_dma_t *dma)
    801   1.1     isaki {
    802  1.12  kiyohara 	DLOG(D_MEM, "freem %p", dma->block, 0,0,0);
    803  1.12  kiyohara 
    804  1.12  kiyohara #ifdef SLHCI_MEM_ACCOUNTING
    805  1.12  kiyohara 	slhci_mem_use(bus, -1);
    806  1.12  kiyohara #endif
    807   1.1     isaki 
    808  1.12  kiyohara 	free(dma->block, M_USB);
    809   1.1     isaki }
    810   1.1     isaki 
    811  1.12  kiyohara struct usbd_xfer *
    812  1.12  kiyohara slhci_allocx(struct usbd_bus *bus)
    813   1.1     isaki {
    814  1.12  kiyohara 	struct usbd_xfer *xfer;
    815  1.12  kiyohara 
    816  1.12  kiyohara 	xfer = malloc(sizeof(*xfer), M_USB, M_NOWAIT|M_ZERO);
    817   1.1     isaki 
    818  1.12  kiyohara 	DLOG(D_MEM, "allocx %p", xfer, 0,0,0);
    819  1.12  kiyohara 
    820  1.12  kiyohara #ifdef SLHCI_MEM_ACCOUNTING
    821  1.12  kiyohara 	slhci_mem_use(bus, 1);
    822  1.12  kiyohara #endif
    823  1.12  kiyohara #ifdef DIAGNOSTIC
    824  1.12  kiyohara 	if (xfer != NULL)
    825  1.12  kiyohara 		xfer->busy_free = XFER_BUSY;
    826  1.12  kiyohara #endif
    827  1.12  kiyohara 	return xfer;
    828  1.12  kiyohara }
    829  1.12  kiyohara 
    830  1.12  kiyohara void
    831  1.12  kiyohara slhci_freex(struct usbd_bus *bus, struct usbd_xfer *xfer)
    832  1.12  kiyohara {
    833  1.12  kiyohara 	DLOG(D_MEM, "freex xfer %p spipe %p", xfer, xfer->pipe,0,0);
    834   1.1     isaki 
    835  1.12  kiyohara #ifdef SLHCI_MEM_ACCOUNTING
    836  1.12  kiyohara 	slhci_mem_use(bus, -1);
    837  1.12  kiyohara #endif
    838  1.12  kiyohara #ifdef DIAGNOSTIC
    839  1.12  kiyohara 	if (xfer->busy_free != XFER_BUSY) {
    840  1.21  drochner 		struct slhci_softc *sc = bus->hci_private;
    841  1.12  kiyohara 		printf("%s: slhci_freex: xfer=%p not busy, %#08x halted\n",
    842  1.12  kiyohara 		    SC_NAME(sc), xfer, xfer->busy_free);
    843  1.12  kiyohara 		DDOLOG("%s: slhci_freex: xfer=%p not busy, %#08x halted\n",
    844  1.12  kiyohara 		    SC_NAME(sc), xfer, xfer->busy_free, 0);
    845  1.12  kiyohara 		slhci_lock_call(sc, &slhci_halt, NULL, NULL);
    846  1.12  kiyohara 		return;
    847   1.1     isaki 	}
    848  1.12  kiyohara 	xfer->busy_free = XFER_FREE;
    849  1.12  kiyohara #endif
    850   1.1     isaki 
    851  1.12  kiyohara 	free(xfer, M_USB);
    852  1.12  kiyohara }
    853   1.1     isaki 
    854  1.12  kiyohara usbd_status
    855  1.12  kiyohara slhci_transfer(struct usbd_xfer *xfer)
    856  1.12  kiyohara {
    857  1.12  kiyohara 	usbd_status error;
    858  1.12  kiyohara 	int s;
    859   1.1     isaki 
    860  1.12  kiyohara 	DLOG(D_TRACE, "%s transfer xfer %p spipe %p ",
    861  1.12  kiyohara 	    pnames(SLHCI_XFER_TYPE(xfer)), xfer, xfer->pipe,0);
    862   1.1     isaki 
    863  1.12  kiyohara 	/* Insert last in queue */
    864  1.12  kiyohara 	error = usb_insert_transfer(xfer);
    865  1.12  kiyohara 	if (error) {
    866  1.12  kiyohara 		if (error != USBD_IN_PROGRESS)
    867  1.12  kiyohara 			DLOG(D_ERR, "usb_insert_transfer returns %d!", error,
    868  1.12  kiyohara 			    0,0,0);
    869  1.12  kiyohara 		return error;
    870  1.12  kiyohara 	}
    871   1.1     isaki 
    872  1.12  kiyohara 	/*
    873  1.12  kiyohara 	 * Pipe isn't running (otherwise error would be USBD_INPROG),
    874  1.12  kiyohara 	 * so start it first.
    875  1.12  kiyohara 	 */
    876   1.1     isaki 
    877  1.12  kiyohara 	/* Start next is always done at splsoftusb, so we do this here so
    878  1.12  kiyohara 	 * start functions are always called at softusb. XXX */
    879  1.12  kiyohara 	s = splsoftusb();
    880  1.12  kiyohara 	error = xfer->pipe->methods->start(SIMPLEQ_FIRST(&xfer->pipe->queue));
    881  1.12  kiyohara 	splx(s);
    882   1.1     isaki 
    883  1.12  kiyohara 	return error;
    884   1.1     isaki }
    885   1.1     isaki 
    886  1.12  kiyohara /* It is not safe for start to return anything other than USBD_INPROG. */
    887  1.12  kiyohara usbd_status
    888  1.12  kiyohara slhci_start(struct usbd_xfer *xfer)
    889   1.1     isaki {
    890  1.12  kiyohara 	struct slhci_softc *sc;
    891  1.12  kiyohara 	struct usbd_pipe *pipe;
    892  1.12  kiyohara 	struct slhci_pipe *spipe;
    893  1.12  kiyohara 	struct slhci_transfers *t;
    894  1.12  kiyohara 	usb_endpoint_descriptor_t *ed;
    895  1.12  kiyohara 	unsigned int max_packet;
    896  1.12  kiyohara 
    897  1.12  kiyohara 	pipe = xfer->pipe;
    898  1.21  drochner 	sc = pipe->device->bus->hci_private;
    899  1.12  kiyohara 	spipe = (struct slhci_pipe *)xfer->pipe;
    900  1.12  kiyohara 	t = &sc->sc_transfers;
    901  1.12  kiyohara 	ed = pipe->endpoint->edesc;
    902  1.12  kiyohara 
    903  1.12  kiyohara 	max_packet = UGETW(ed->wMaxPacketSize);
    904  1.12  kiyohara 
    905  1.12  kiyohara 	DLOG(D_TRACE, "%s start xfer %p spipe %p length %d",
    906  1.12  kiyohara 	    pnames(spipe->ptype), xfer, spipe, xfer->length);
    907  1.12  kiyohara 
    908  1.12  kiyohara 	/* root transfers use slhci_root_start */
    909  1.12  kiyohara 
    910  1.12  kiyohara 	KASSERT(spipe->xfer == NULL); /* not SLASSERT */
    911  1.12  kiyohara 
    912  1.12  kiyohara 	xfer->actlen = 0;
    913  1.12  kiyohara 	xfer->status = USBD_IN_PROGRESS;
    914  1.12  kiyohara 
    915  1.12  kiyohara 	spipe->xfer = xfer;
    916  1.12  kiyohara 
    917  1.12  kiyohara 	spipe->nerrs = 0;
    918  1.12  kiyohara 	spipe->frame = t->frame;
    919  1.12  kiyohara 	spipe->control = SL11_EPCTRL_ARM_ENABLE;
    920  1.12  kiyohara 	spipe->tregs[DEV] = pipe->device->address;
    921  1.12  kiyohara 	spipe->tregs[PID] = spipe->newpid = UE_GET_ADDR(ed->bEndpointAddress)
    922  1.12  kiyohara 	    | (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN ? SL11_PID_IN :
    923  1.12  kiyohara 	    SL11_PID_OUT);
    924  1.12  kiyohara 	spipe->newlen[0] = xfer->length % max_packet;
    925  1.12  kiyohara 	spipe->newlen[1] = min(xfer->length, max_packet);
    926  1.12  kiyohara 
    927  1.12  kiyohara 	if (spipe->ptype == PT_BULK || spipe->ptype == PT_INTR) {
    928  1.12  kiyohara 		if (spipe->pflags & PF_TOGGLE)
    929  1.12  kiyohara 			spipe->control |= SL11_EPCTRL_DATATOGGLE;
    930  1.12  kiyohara 		spipe->tregs[LEN] = spipe->newlen[1];
    931  1.12  kiyohara 		if (spipe->tregs[LEN])
    932  1.12  kiyohara 			spipe->buffer = KERNADDR(&xfer->dmabuf, 0);
    933  1.12  kiyohara 		else
    934  1.12  kiyohara 			spipe->buffer = NULL;
    935  1.12  kiyohara 		spipe->lastframe = t->frame;
    936  1.12  kiyohara #if defined(DEBUG) || defined(SLHCI_DEBUG)
    937  1.12  kiyohara 		if (__predict_false(spipe->ptype == PT_INTR &&
    938  1.12  kiyohara 		    xfer->length > spipe->tregs[LEN])) {
    939  1.12  kiyohara 			printf("%s: Long INTR transfer not supported!\n",
    940  1.12  kiyohara 			    SC_NAME(sc));
    941  1.12  kiyohara 			DDOLOG("%s: Long INTR transfer not supported!\n",
    942  1.12  kiyohara 			    SC_NAME(sc), 0,0,0);
    943  1.12  kiyohara 			xfer->status = USBD_INVAL;
    944  1.12  kiyohara 		}
    945   1.1     isaki #endif
    946  1.12  kiyohara 	} else {
    947  1.12  kiyohara 		/* ptype may be currently set to any control transfer type. */
    948  1.12  kiyohara 		SLHCI_DEXEC(D_TRACE, slhci_log_xfer(xfer));
    949   1.1     isaki 
    950  1.12  kiyohara 		/* SETUP contains IN/OUT bits also */
    951  1.12  kiyohara 		spipe->tregs[PID] |= SL11_PID_SETUP;
    952  1.12  kiyohara 		spipe->tregs[LEN] = 8;
    953  1.12  kiyohara 		spipe->buffer = (uint8_t *)&xfer->request;
    954  1.12  kiyohara 		DLOGBUF(D_XFER, spipe->buffer, spipe->tregs[LEN]);
    955  1.12  kiyohara 		spipe->ptype = PT_CTRL_SETUP;
    956  1.12  kiyohara 		spipe->newpid &= ~SL11_PID_BITS;
    957  1.12  kiyohara 		if (xfer->length == 0 || (xfer->request.bmRequestType &
    958  1.12  kiyohara 		    UT_READ))
    959  1.12  kiyohara 			spipe->newpid |= SL11_PID_IN;
    960  1.12  kiyohara 		else
    961  1.12  kiyohara 			spipe->newpid |= SL11_PID_OUT;
    962  1.12  kiyohara 	}
    963  1.12  kiyohara 
    964  1.12  kiyohara 	if (xfer->flags & USBD_FORCE_SHORT_XFER && spipe->tregs[LEN] ==
    965  1.12  kiyohara 	    max_packet && (spipe->newpid & SL11_PID_BITS) == SL11_PID_OUT)
    966  1.12  kiyohara 		spipe->wantshort = 1;
    967  1.12  kiyohara 	else
    968  1.12  kiyohara 		spipe->wantshort = 0;
    969  1.12  kiyohara 
    970  1.12  kiyohara 	/* The goal of newbustime and newlen is to avoid bustime calculation
    971  1.12  kiyohara 	 * in the interrupt.  The calculations are not too complex, but they
    972  1.12  kiyohara 	 * complicate the conditional logic somewhat and doing them all in the
    973  1.12  kiyohara 	 * same place shares constants. Index 0 is "short length" for bulk and
    974  1.12  kiyohara 	 * ctrl data and 1 is "full length" for ctrl data (bulk/intr are
    975  1.12  kiyohara 	 * already set to full length). */
    976  1.12  kiyohara 	if (spipe->pflags & PF_LS) {
    977  1.12  kiyohara 		/* Setting PREAMBLE for directly connnected LS devices will
    978  1.12  kiyohara 		 * lock up the chip. */
    979  1.12  kiyohara 		if (spipe->pflags & PF_PREAMBLE)
    980  1.12  kiyohara 			spipe->control |= SL11_EPCTRL_PREAMBLE;
    981  1.12  kiyohara 		if (max_packet <= 8) {
    982  1.12  kiyohara 			spipe->bustime = SLHCI_LS_CONST +
    983  1.12  kiyohara 			    SLHCI_LS_DATA_TIME(spipe->tregs[LEN]);
    984  1.12  kiyohara 			spipe->newbustime[0] = SLHCI_LS_CONST +
    985  1.12  kiyohara 			    SLHCI_LS_DATA_TIME(spipe->newlen[0]);
    986  1.12  kiyohara 			spipe->newbustime[1] = SLHCI_LS_CONST +
    987  1.12  kiyohara 			    SLHCI_LS_DATA_TIME(spipe->newlen[1]);
    988  1.12  kiyohara 		} else
    989  1.12  kiyohara 			xfer->status = USBD_INVAL;
    990  1.12  kiyohara 	} else {
    991  1.12  kiyohara 		UL_SLASSERT(pipe->device->speed == USB_SPEED_FULL, sc,
    992  1.12  kiyohara 		    spipe, xfer, return USBD_IN_PROGRESS);
    993  1.12  kiyohara 		if (max_packet <= SL11_MAX_PACKET_SIZE) {
    994  1.12  kiyohara 			spipe->bustime = SLHCI_FS_CONST +
    995  1.12  kiyohara 			    SLHCI_FS_DATA_TIME(spipe->tregs[LEN]);
    996  1.12  kiyohara 			spipe->newbustime[0] = SLHCI_FS_CONST +
    997  1.12  kiyohara 			    SLHCI_FS_DATA_TIME(spipe->newlen[0]);
    998  1.12  kiyohara 			spipe->newbustime[1] = SLHCI_FS_CONST +
    999  1.12  kiyohara 			    SLHCI_FS_DATA_TIME(spipe->newlen[1]);
   1000  1.12  kiyohara 		} else
   1001  1.12  kiyohara 			xfer->status = USBD_INVAL;
   1002  1.12  kiyohara 	}
   1003  1.12  kiyohara 
   1004  1.12  kiyohara 	/* The datasheet incorrectly indicates that DIRECTION is for
   1005  1.12  kiyohara 	 * "transmit to host".  It is for OUT and SETUP.  The app note
   1006  1.12  kiyohara 	 * describes its use correctly. */
   1007  1.12  kiyohara 	if ((spipe->tregs[PID] & SL11_PID_BITS) != SL11_PID_IN)
   1008  1.12  kiyohara 		spipe->control |= SL11_EPCTRL_DIRECTION;
   1009  1.12  kiyohara 
   1010  1.12  kiyohara 	slhci_start_entry(sc, spipe);
   1011   1.1     isaki 
   1012  1.12  kiyohara 	return USBD_IN_PROGRESS;
   1013  1.12  kiyohara }
   1014   1.1     isaki 
   1015  1.12  kiyohara usbd_status
   1016  1.12  kiyohara slhci_root_start(struct usbd_xfer *xfer)
   1017  1.12  kiyohara {
   1018  1.12  kiyohara 	struct slhci_softc *sc;
   1019  1.12  kiyohara 	struct slhci_pipe *spipe;
   1020   1.1     isaki 
   1021  1.12  kiyohara 	spipe = (struct slhci_pipe *)xfer->pipe;
   1022  1.21  drochner 	sc = xfer->pipe->device->bus->hci_private;
   1023   1.1     isaki 
   1024  1.12  kiyohara 	return slhci_lock_call(sc, &slhci_root, spipe, xfer);
   1025   1.1     isaki }
   1026   1.1     isaki 
   1027   1.1     isaki usbd_status
   1028  1.12  kiyohara slhci_open(struct usbd_pipe *pipe)
   1029   1.1     isaki {
   1030  1.12  kiyohara 	struct usbd_device *dev;
   1031  1.12  kiyohara 	struct slhci_softc *sc;
   1032  1.12  kiyohara 	struct slhci_pipe *spipe;
   1033  1.12  kiyohara 	usb_endpoint_descriptor_t *ed;
   1034  1.12  kiyohara 	struct slhci_transfers *t;
   1035  1.12  kiyohara 	unsigned int max_packet, pmaxpkt;
   1036  1.12  kiyohara 
   1037  1.12  kiyohara 	dev = pipe->device;
   1038  1.21  drochner 	sc = dev->bus->hci_private;
   1039  1.12  kiyohara 	spipe = (struct slhci_pipe *)pipe;
   1040  1.12  kiyohara 	ed = pipe->endpoint->edesc;
   1041  1.12  kiyohara 	t = &sc->sc_transfers;
   1042  1.12  kiyohara 
   1043  1.12  kiyohara 	DLOG(D_TRACE, "slhci_open(addr=%d,ep=%d,rootaddr=%d)",
   1044  1.12  kiyohara 		dev->address, ed->bEndpointAddress, t->rootaddr, 0);
   1045  1.12  kiyohara 
   1046  1.12  kiyohara 	spipe->pflags = 0;
   1047  1.12  kiyohara 	spipe->frame = 0;
   1048  1.12  kiyohara 	spipe->lastframe = 0;
   1049  1.12  kiyohara 	spipe->xfer = NULL;
   1050  1.12  kiyohara 	spipe->buffer = NULL;
   1051  1.12  kiyohara 
   1052  1.12  kiyohara 	gcq_init(&spipe->ap);
   1053  1.12  kiyohara 	gcq_init(&spipe->to);
   1054  1.12  kiyohara 	gcq_init(&spipe->xq);
   1055  1.12  kiyohara 
   1056  1.12  kiyohara 	/* The endpoint descriptor will not have been set up yet in the case
   1057  1.12  kiyohara 	 * of the standard control pipe, so the max packet checks are also
   1058  1.12  kiyohara 	 * necessary in start. */
   1059  1.12  kiyohara 
   1060  1.12  kiyohara 	max_packet = UGETW(ed->wMaxPacketSize);
   1061  1.12  kiyohara 
   1062  1.12  kiyohara 	if (dev->speed == USB_SPEED_LOW) {
   1063  1.12  kiyohara 		spipe->pflags |= PF_LS;
   1064  1.12  kiyohara 		if (dev->myhub->address != t->rootaddr) {
   1065  1.12  kiyohara 			spipe->pflags |= PF_PREAMBLE;
   1066  1.12  kiyohara 			if (!slhci_try_lsvh)
   1067  1.12  kiyohara 				return slhci_lock_call(sc, &slhci_lsvh_warn,
   1068  1.12  kiyohara 				    spipe, NULL);
   1069  1.12  kiyohara 		}
   1070  1.12  kiyohara 		pmaxpkt = 8;
   1071  1.12  kiyohara 	} else
   1072  1.12  kiyohara 		pmaxpkt = SL11_MAX_PACKET_SIZE;
   1073  1.12  kiyohara 
   1074  1.12  kiyohara 	if (max_packet > pmaxpkt) {
   1075  1.12  kiyohara 		DLOG(D_ERR, "packet too large! size %d spipe %p", max_packet,
   1076  1.12  kiyohara 		    spipe, 0,0);
   1077  1.12  kiyohara 		return USBD_INVAL;
   1078  1.12  kiyohara 	}
   1079   1.1     isaki 
   1080  1.12  kiyohara 	if (dev->address == t->rootaddr) {
   1081   1.1     isaki 		switch (ed->bEndpointAddress) {
   1082   1.1     isaki 		case USB_CONTROL_ENDPOINT:
   1083  1.12  kiyohara 			spipe->ptype = PT_ROOT_CTRL;
   1084  1.12  kiyohara 			pipe->interval = 0;
   1085   1.1     isaki 			break;
   1086  1.12  kiyohara 		case UE_DIR_IN | ROOT_INTR_ENDPT:
   1087  1.12  kiyohara 			spipe->ptype = PT_ROOT_INTR;
   1088  1.12  kiyohara 			pipe->interval = 1;
   1089   1.1     isaki 			break;
   1090   1.1     isaki 		default:
   1091  1.12  kiyohara 			printf("%s: Invalid root endpoint!\n", SC_NAME(sc));
   1092  1.12  kiyohara 			DDOLOG("%s: Invalid root endpoint!\n", SC_NAME(sc),
   1093  1.12  kiyohara 			    0,0,0);
   1094   1.1     isaki 			return USBD_INVAL;
   1095   1.1     isaki 		}
   1096  1.12  kiyohara 		pipe->methods = __UNCONST(&slhci_root_methods);
   1097  1.12  kiyohara 		return USBD_NORMAL_COMPLETION;
   1098   1.1     isaki 	} else {
   1099   1.1     isaki 		switch (ed->bmAttributes & UE_XFERTYPE) {
   1100   1.1     isaki 		case UE_CONTROL:
   1101  1.12  kiyohara 			spipe->ptype = PT_CTRL_SETUP;
   1102  1.12  kiyohara 			pipe->interval = 0;
   1103   1.1     isaki 			break;
   1104   1.1     isaki 		case UE_INTERRUPT:
   1105  1.12  kiyohara 			spipe->ptype = PT_INTR;
   1106  1.12  kiyohara 			if (pipe->interval == USBD_DEFAULT_INTERVAL)
   1107  1.12  kiyohara 				pipe->interval = ed->bInterval;
   1108   1.1     isaki 			break;
   1109   1.1     isaki 		case UE_ISOCHRONOUS:
   1110  1.12  kiyohara 			return slhci_lock_call(sc, &slhci_isoc_warn, spipe,
   1111  1.12  kiyohara 			    NULL);
   1112   1.1     isaki 		case UE_BULK:
   1113  1.12  kiyohara 			spipe->ptype = PT_BULK;
   1114  1.12  kiyohara 			pipe->interval = 0;
   1115   1.1     isaki 			break;
   1116   1.1     isaki 		}
   1117  1.12  kiyohara 
   1118  1.12  kiyohara 		DLOG(D_MSG, "open pipe %s interval %d", pnames(spipe->ptype),
   1119  1.12  kiyohara 		    pipe->interval, 0,0);
   1120  1.12  kiyohara 
   1121  1.12  kiyohara 		pipe->methods = __UNCONST(&slhci_pipe_methods);
   1122  1.12  kiyohara 
   1123  1.12  kiyohara 		return slhci_lock_call(sc, &slhci_open_pipe, spipe, NULL);
   1124   1.1     isaki 	}
   1125   1.1     isaki }
   1126   1.1     isaki 
   1127  1.12  kiyohara int
   1128  1.12  kiyohara slhci_supported_rev(uint8_t rev)
   1129   1.1     isaki {
   1130  1.12  kiyohara 	return (rev >= SLTYPE_SL811HS_R12 && rev <= SLTYPE_SL811HS_R15);
   1131   1.1     isaki }
   1132   1.1     isaki 
   1133  1.12  kiyohara /* Must be called before the ISR is registered. Interrupts can be shared so
   1134  1.12  kiyohara  * slhci_intr could be called as soon as the ISR is registered.
   1135  1.12  kiyohara  * Note max_current argument is actual current, but stored as current/2 */
   1136   1.1     isaki void
   1137  1.12  kiyohara slhci_preinit(struct slhci_softc *sc, PowerFunc pow, bus_space_tag_t iot,
   1138  1.12  kiyohara     bus_space_handle_t ioh, uint16_t max_current, uint8_t stride)
   1139   1.1     isaki {
   1140  1.12  kiyohara 	struct slhci_transfers *t;
   1141  1.12  kiyohara 	int i;
   1142  1.12  kiyohara 
   1143  1.12  kiyohara 	t = &sc->sc_transfers;
   1144  1.12  kiyohara 
   1145  1.12  kiyohara #ifdef SLHCI_DEBUG
   1146  1.12  kiyohara 	UVMHIST_INIT_STATIC(slhcihist, slhci_he);
   1147  1.12  kiyohara #endif
   1148  1.12  kiyohara 	simple_lock_init(&sc->sc_lock);
   1149  1.12  kiyohara #ifdef SLHCI_WAITLOCK
   1150  1.12  kiyohara 	simple_lock_init(&sc->sc_wait_lock);
   1151  1.12  kiyohara #endif
   1152  1.12  kiyohara 	/* sc->sc_ier = 0;	*/
   1153  1.12  kiyohara 	/* t->rootintr = NULL;	*/
   1154  1.12  kiyohara 	t->flags = F_NODEV|F_UDISABLED;
   1155  1.12  kiyohara 	t->pend = INT_MAX;
   1156  1.12  kiyohara 	KASSERT(slhci_wait_time != INT_MAX);
   1157  1.12  kiyohara 	t->len[0] = t->len[1] = -1;
   1158  1.12  kiyohara 	if (max_current > 500)
   1159  1.12  kiyohara 		max_current = 500;
   1160  1.12  kiyohara 	t->max_current = (uint8_t)(max_current / 2);
   1161  1.12  kiyohara 	sc->sc_enable_power = pow;
   1162  1.12  kiyohara 	sc->sc_iot = iot;
   1163  1.12  kiyohara 	sc->sc_ioh = ioh;
   1164  1.12  kiyohara 	sc->sc_stride = stride;
   1165  1.12  kiyohara 
   1166  1.12  kiyohara 	KASSERT(Q_MAX+1 == sizeof(t->q) / sizeof(t->q[0]));
   1167  1.12  kiyohara 
   1168  1.12  kiyohara 	for (i = 0; i <= Q_MAX; i++)
   1169  1.12  kiyohara 		gcq_init_head(&t->q[i]);
   1170  1.12  kiyohara 	gcq_init_head(&t->timed);
   1171  1.12  kiyohara 	gcq_init_head(&t->to);
   1172  1.12  kiyohara 	gcq_init_head(&t->ap);
   1173  1.12  kiyohara #ifdef SLHCI_WAITLOCK
   1174  1.12  kiyohara 	gcq_init_head(&sc->sc_waitq);
   1175  1.12  kiyohara #endif
   1176   1.1     isaki }
   1177   1.1     isaki 
   1178  1.12  kiyohara int
   1179  1.12  kiyohara slhci_attach(struct slhci_softc *sc)
   1180   1.1     isaki {
   1181  1.12  kiyohara 	if (slhci_lock_call(sc, &slhci_do_attach, NULL, NULL) !=
   1182  1.12  kiyohara 	   USBD_NORMAL_COMPLETION)
   1183  1.12  kiyohara 		return -1;
   1184   1.1     isaki 
   1185  1.12  kiyohara 	/* Attach usb and uhub. */
   1186  1.12  kiyohara 	sc->sc_child = config_found(SC_DEV(sc), &sc->sc_bus, usbctlprint);
   1187   1.1     isaki 
   1188  1.12  kiyohara 	if (!sc->sc_child)
   1189  1.12  kiyohara 		return -1;
   1190  1.12  kiyohara 	else
   1191  1.12  kiyohara 		return 0;
   1192   1.1     isaki }
   1193   1.1     isaki 
   1194  1.12  kiyohara int
   1195  1.12  kiyohara slhci_detach(struct slhci_softc *sc, int flags)
   1196   1.1     isaki {
   1197  1.12  kiyohara 	struct slhci_transfers *t;
   1198  1.12  kiyohara 	int ret;
   1199   1.1     isaki 
   1200  1.12  kiyohara 	t = &sc->sc_transfers;
   1201  1.12  kiyohara 
   1202  1.12  kiyohara 	/* By this point bus access is no longer allowed. */
   1203  1.12  kiyohara 
   1204  1.12  kiyohara 	KASSERT(!(t->flags & F_ACTIVE));
   1205  1.12  kiyohara 
   1206  1.13  kiyohara 	/* To be MPSAFE is not sufficient to cancel callouts and soft
   1207  1.13  kiyohara 	 * interrupts and assume they are dead since the code could already be
   1208  1.13  kiyohara 	 * running or about to run.  Wait until they are known to be done.  */
   1209  1.12  kiyohara 	while (t->flags & (F_RESET|F_CALLBACK))
   1210  1.12  kiyohara 		tsleep(&sc, PPAUSE, "slhci_detach", hz);
   1211  1.12  kiyohara 
   1212  1.16        ad 	softint_disestablish(sc->sc_cb_softintr);
   1213  1.12  kiyohara 
   1214  1.12  kiyohara 	ret = 0;
   1215  1.12  kiyohara 
   1216  1.12  kiyohara 	if (sc->sc_child)
   1217  1.12  kiyohara 		ret = config_detach(sc->sc_child, flags);
   1218  1.12  kiyohara 
   1219  1.12  kiyohara #ifdef SLHCI_MEM_ACCOUNTING
   1220  1.12  kiyohara 	if (sc->sc_mem_use) {
   1221  1.12  kiyohara 		printf("%s: Memory still in use after detach! mem_use (count)"
   1222  1.12  kiyohara 		    " = %d\n", SC_NAME(sc), sc->sc_mem_use);
   1223  1.12  kiyohara 		DDOLOG("%s: Memory still in use after detach! mem_use (count)"
   1224  1.12  kiyohara 		    " = %d\n", SC_NAME(sc), sc->sc_mem_use, 0,0);
   1225  1.12  kiyohara 	}
   1226  1.12  kiyohara #endif
   1227  1.12  kiyohara 
   1228  1.12  kiyohara 	return ret;
   1229  1.12  kiyohara }
   1230  1.12  kiyohara 
   1231  1.12  kiyohara int
   1232  1.12  kiyohara slhci_activate(struct device *self, enum devact act)
   1233  1.12  kiyohara {
   1234  1.12  kiyohara 	struct slhci_softc *sc;
   1235  1.12  kiyohara 
   1236  1.21  drochner 	sc = device_private(self);
   1237  1.12  kiyohara 
   1238  1.12  kiyohara 	if (act != DVACT_DEACTIVATE)
   1239  1.12  kiyohara 		return EOPNOTSUPP;
   1240  1.12  kiyohara 
   1241  1.12  kiyohara 	slhci_lock_call(sc, &slhci_halt, NULL, NULL);
   1242  1.12  kiyohara 
   1243  1.12  kiyohara 	if (sc->sc_child)
   1244  1.12  kiyohara 		return config_deactivate(sc->sc_child);
   1245  1.12  kiyohara 	else
   1246  1.12  kiyohara 		return 0;
   1247  1.12  kiyohara }
   1248   1.1     isaki 
   1249   1.1     isaki void
   1250  1.12  kiyohara slhci_abort(struct usbd_xfer *xfer)
   1251   1.1     isaki {
   1252  1.12  kiyohara 	struct slhci_softc *sc;
   1253  1.12  kiyohara 	struct slhci_pipe *spipe;
   1254  1.12  kiyohara 
   1255  1.12  kiyohara 	spipe = (struct slhci_pipe *)xfer->pipe;
   1256  1.12  kiyohara 
   1257  1.12  kiyohara 	if (spipe == NULL)
   1258  1.12  kiyohara 		goto callback;
   1259  1.12  kiyohara 
   1260  1.21  drochner 	sc = spipe->pipe.device->bus->hci_private;
   1261  1.12  kiyohara 
   1262  1.12  kiyohara 	DLOG(D_TRACE, "%s abort xfer %p spipe %p spipe->xfer %p",
   1263  1.12  kiyohara 	    pnames(spipe->ptype), xfer, spipe, spipe->xfer);
   1264  1.12  kiyohara 
   1265  1.12  kiyohara 	slhci_lock_call(sc, &slhci_do_abort, spipe, xfer);
   1266   1.1     isaki 
   1267  1.12  kiyohara callback:
   1268  1.12  kiyohara 	xfer->status = USBD_CANCELLED;
   1269  1.12  kiyohara 	/* Abort happens at splsoftusb. */
   1270  1.12  kiyohara 	usb_transfer_complete(xfer);
   1271   1.1     isaki }
   1272   1.1     isaki 
   1273  1.12  kiyohara void
   1274  1.12  kiyohara slhci_close(struct usbd_pipe *pipe)
   1275   1.1     isaki {
   1276  1.12  kiyohara 	struct slhci_softc *sc;
   1277  1.12  kiyohara 	struct slhci_pipe *spipe;
   1278  1.12  kiyohara 	struct slhci_transfers *t;
   1279   1.1     isaki 
   1280  1.21  drochner 	sc = pipe->device->bus->hci_private;
   1281  1.12  kiyohara 	spipe = (struct slhci_pipe *)pipe;
   1282  1.12  kiyohara 	t = &sc->sc_transfers;
   1283   1.1     isaki 
   1284  1.12  kiyohara 	DLOG(D_TRACE, "%s close spipe %p spipe->xfer %p",
   1285  1.12  kiyohara 	    pnames(spipe->ptype), spipe, spipe->xfer, 0);
   1286   1.1     isaki 
   1287  1.12  kiyohara 	slhci_lock_call(sc, &slhci_close_pipe, spipe, NULL);
   1288   1.1     isaki }
   1289   1.1     isaki 
   1290   1.1     isaki void
   1291  1.12  kiyohara slhci_clear_toggle(struct usbd_pipe *pipe)
   1292   1.1     isaki {
   1293  1.12  kiyohara 	struct slhci_pipe *spipe;
   1294  1.12  kiyohara 
   1295  1.12  kiyohara 	spipe = (struct slhci_pipe *)pipe;
   1296  1.12  kiyohara 
   1297  1.12  kiyohara 	DLOG(D_TRACE, "%s toggle spipe %p", pnames(spipe->ptype),
   1298  1.12  kiyohara 	    spipe,0,0);
   1299   1.1     isaki 
   1300  1.12  kiyohara 	spipe->pflags &= ~PF_TOGGLE;
   1301   1.2     isaki 
   1302   1.2     isaki #ifdef DIAGNOSTIC
   1303  1.12  kiyohara 	if (spipe->xfer != NULL) {
   1304  1.12  kiyohara 		struct slhci_softc *sc = (struct slhci_softc
   1305  1.12  kiyohara 		    *)pipe->device->bus;
   1306  1.12  kiyohara 
   1307  1.12  kiyohara 		printf("%s: Clear toggle on transfer in progress! halted\n",
   1308  1.12  kiyohara 		    SC_NAME(sc));
   1309  1.12  kiyohara 		DDOLOG("%s: Clear toggle on transfer in progress! halted\n",
   1310  1.12  kiyohara 		    SC_NAME(sc), 0,0,0);
   1311  1.12  kiyohara 		slhci_halt(sc, NULL, NULL);
   1312   1.2     isaki 	}
   1313   1.2     isaki #endif
   1314   1.1     isaki }
   1315   1.1     isaki 
   1316   1.1     isaki void
   1317  1.12  kiyohara slhci_poll(struct usbd_bus *bus) /* XXX necessary? */
   1318   1.1     isaki {
   1319  1.12  kiyohara 	struct slhci_softc *sc;
   1320  1.12  kiyohara 
   1321  1.21  drochner 	sc = bus->hci_private;
   1322  1.12  kiyohara 
   1323  1.12  kiyohara 	DLOG(D_TRACE, "slhci_poll", 0,0,0,0);
   1324  1.12  kiyohara 
   1325  1.12  kiyohara 	slhci_lock_call(sc, &slhci_do_poll, NULL, NULL);
   1326   1.1     isaki }
   1327   1.1     isaki 
   1328  1.12  kiyohara void
   1329  1.12  kiyohara slhci_done(struct usbd_xfer *xfer)
   1330  1.12  kiyohara {
   1331  1.12  kiyohara 	/* xfer may not be valid here */
   1332  1.12  kiyohara }
   1333   1.1     isaki 
   1334  1.12  kiyohara void
   1335  1.12  kiyohara slhci_void(void *v) {}
   1336   1.1     isaki 
   1337  1.12  kiyohara /* End out of lock functions. Start lock entry functions. */
   1338   1.1     isaki 
   1339  1.12  kiyohara #ifdef SLHCI_MEM_ACCOUNTING
   1340  1.12  kiyohara void
   1341  1.12  kiyohara slhci_mem_use(struct usbd_bus *bus, int val)
   1342  1.12  kiyohara {
   1343  1.21  drochner 	struct slhci_softc *sc = bus->hci_private;
   1344  1.12  kiyohara 	int s;
   1345   1.1     isaki 
   1346  1.12  kiyohara 	s = splhardusb();
   1347  1.12  kiyohara 	simple_lock(&sc->sc_wait_lock);
   1348  1.12  kiyohara 	sc->sc_mem_use += val;
   1349  1.12  kiyohara 	simple_unlock(&sc->sc_wait_lock);
   1350  1.12  kiyohara 	splx(s);
   1351  1.12  kiyohara }
   1352  1.12  kiyohara #endif
   1353   1.1     isaki 
   1354  1.12  kiyohara void
   1355  1.12  kiyohara slhci_reset_entry(void *arg)
   1356   1.1     isaki {
   1357  1.12  kiyohara 	struct slhci_softc *sc;
   1358  1.12  kiyohara 	int s;
   1359  1.12  kiyohara 
   1360  1.12  kiyohara 	sc = (struct slhci_softc *)arg;
   1361   1.1     isaki 
   1362  1.12  kiyohara 	s = splhardusb();
   1363  1.12  kiyohara 	simple_lock(&sc->sc_lock);
   1364  1.12  kiyohara 	slhci_reset(sc);
   1365  1.12  kiyohara 	/* We cannot call the calback directly since we could then be reset
   1366  1.12  kiyohara 	 * again before finishing and need the callout delay for timing.
   1367  1.12  kiyohara 	 * Scheduling the callout again before we exit would defeat the reap
   1368  1.12  kiyohara 	 * mechanism since we could be unlocked while the reset flag is not
   1369  1.12  kiyohara 	 * set. The callback code will check the wait queue. */
   1370  1.12  kiyohara 	slhci_callback_schedule(sc);
   1371  1.12  kiyohara 	simple_unlock(&sc->sc_lock);
   1372  1.12  kiyohara 	splx(s);
   1373   1.1     isaki }
   1374   1.1     isaki 
   1375   1.1     isaki usbd_status
   1376  1.12  kiyohara slhci_lock_call(struct slhci_softc *sc, LockCallFunc lcf, struct slhci_pipe
   1377  1.12  kiyohara     *spipe, struct usbd_xfer *xfer)
   1378  1.12  kiyohara {
   1379  1.12  kiyohara 	usbd_status ret;
   1380  1.12  kiyohara 	int x, s;
   1381  1.12  kiyohara 
   1382  1.12  kiyohara 	x = splsoftusb();
   1383  1.12  kiyohara 	s = splhardusb();
   1384  1.12  kiyohara 	simple_lock(&sc->sc_lock);
   1385  1.12  kiyohara 	ret = (*lcf)(sc, spipe, xfer);
   1386  1.12  kiyohara 	slhci_main(sc, &s);
   1387  1.12  kiyohara 	splx(s);
   1388  1.12  kiyohara 	splx(x);
   1389  1.12  kiyohara 
   1390  1.12  kiyohara 	return ret;
   1391  1.12  kiyohara }
   1392  1.12  kiyohara 
   1393  1.12  kiyohara void
   1394  1.12  kiyohara slhci_start_entry(struct slhci_softc *sc, struct slhci_pipe *spipe)
   1395   1.1     isaki {
   1396  1.12  kiyohara 	struct slhci_transfers *t;
   1397  1.12  kiyohara 	int s;
   1398   1.1     isaki 
   1399  1.12  kiyohara 	t = &sc->sc_transfers;
   1400   1.1     isaki 
   1401  1.12  kiyohara 	s = splhardusb();
   1402  1.12  kiyohara #ifdef SLHCI_WAITLOCK
   1403  1.12  kiyohara 	if (simple_lock_try(&sc->sc_lock))
   1404  1.12  kiyohara #else
   1405  1.12  kiyohara 	simple_lock(&sc->sc_lock);
   1406  1.12  kiyohara #endif
   1407  1.12  kiyohara 	{
   1408  1.12  kiyohara 		slhci_enter_xfer(sc, spipe);
   1409  1.12  kiyohara 		slhci_dotransfer(sc);
   1410  1.12  kiyohara 		slhci_main(sc, &s);
   1411  1.12  kiyohara #ifdef SLHCI_WAITLOCK
   1412  1.12  kiyohara 	} else {
   1413  1.12  kiyohara 		simple_lock(&sc->sc_wait_lock);
   1414  1.12  kiyohara 		enter_waitq(sc, spipe);
   1415  1.12  kiyohara 		simple_unlock(&sc->sc_wait_lock);
   1416  1.12  kiyohara #endif
   1417   1.1     isaki 	}
   1418  1.12  kiyohara 	splx(s);
   1419   1.1     isaki }
   1420   1.1     isaki 
   1421  1.12  kiyohara void
   1422  1.12  kiyohara slhci_callback_entry(void *arg)
   1423   1.1     isaki {
   1424  1.12  kiyohara 	struct slhci_softc *sc;
   1425  1.12  kiyohara 	struct slhci_transfers *t;
   1426  1.12  kiyohara 	int s, x;
   1427   1.1     isaki 
   1428   1.1     isaki 
   1429  1.12  kiyohara 	sc = (struct slhci_softc *)arg;
   1430   1.1     isaki 
   1431  1.12  kiyohara 	x = splsoftusb();
   1432  1.12  kiyohara 	s = splhardusb();
   1433  1.12  kiyohara 	simple_lock(&sc->sc_lock);
   1434  1.12  kiyohara 	t = &sc->sc_transfers;
   1435  1.12  kiyohara 	DLOG(D_SOFT, "callback_entry flags %#x", t->flags, 0,0,0);
   1436   1.1     isaki 
   1437  1.12  kiyohara #ifdef SLHCI_WAITLOCK
   1438  1.12  kiyohara repeat:
   1439   1.1     isaki #endif
   1440  1.12  kiyohara 	slhci_callback(sc, &s);
   1441   1.1     isaki 
   1442  1.12  kiyohara #ifdef SLHCI_WAITLOCK
   1443  1.12  kiyohara 	simple_lock(&sc->sc_wait_lock);
   1444  1.12  kiyohara 	if (!gcq_empty(&sc->sc_waitq)) {
   1445  1.12  kiyohara 		slhci_enter_xfers(sc);
   1446  1.12  kiyohara 		simple_unlock(&sc->sc_wait_lock);
   1447  1.12  kiyohara 		slhci_dotransfer(sc);
   1448  1.12  kiyohara 		slhci_waitintr(sc, 0);
   1449  1.12  kiyohara 		goto repeat;
   1450  1.12  kiyohara 	}
   1451   1.1     isaki 
   1452  1.12  kiyohara 	t->flags &= ~F_CALLBACK;
   1453  1.12  kiyohara 	simple_unlock(&sc->sc_lock);
   1454  1.12  kiyohara 	simple_unlock(&sc->sc_wait_lock);
   1455  1.12  kiyohara #else
   1456  1.12  kiyohara 	t->flags &= ~F_CALLBACK;
   1457  1.12  kiyohara 	simple_unlock(&sc->sc_lock);
   1458  1.12  kiyohara #endif
   1459   1.1     isaki 	splx(s);
   1460  1.12  kiyohara 	splx(x);
   1461   1.1     isaki }
   1462   1.1     isaki 
   1463   1.1     isaki void
   1464  1.12  kiyohara slhci_do_callback(struct slhci_softc *sc, struct usbd_xfer *xfer, int *s)
   1465   1.1     isaki {
   1466  1.12  kiyohara 	SLHCI_LOCKASSERT(sc, locked, unlocked);
   1467  1.12  kiyohara 
   1468  1.12  kiyohara 	int repeat;
   1469  1.12  kiyohara 
   1470  1.12  kiyohara 	sc->sc_bus.intr_context++;
   1471  1.12  kiyohara 	start_cc_time(&t_callback, (u_int)xfer);
   1472  1.12  kiyohara 	simple_unlock(&sc->sc_lock);
   1473  1.12  kiyohara 	splx(*s);
   1474  1.12  kiyohara 
   1475  1.12  kiyohara 	repeat = xfer->pipe->repeat;
   1476  1.12  kiyohara 
   1477  1.12  kiyohara 	usb_transfer_complete(xfer);
   1478  1.12  kiyohara 
   1479  1.12  kiyohara 	*s = splhardusb();
   1480  1.12  kiyohara 	simple_lock(&sc->sc_lock);
   1481  1.12  kiyohara 	stop_cc_time(&t_callback);
   1482  1.12  kiyohara 	sc->sc_bus.intr_context--;
   1483  1.12  kiyohara 
   1484  1.12  kiyohara 	if (repeat && !sc->sc_bus.use_polling)
   1485  1.12  kiyohara 		slhci_do_repeat(sc, xfer);
   1486   1.1     isaki }
   1487   1.1     isaki 
   1488  1.12  kiyohara int
   1489  1.12  kiyohara slhci_intr(void *arg)
   1490   1.1     isaki {
   1491  1.12  kiyohara 	struct slhci_softc *sc;
   1492  1.12  kiyohara 	int ret;
   1493  1.12  kiyohara 
   1494  1.12  kiyohara 	sc = (struct slhci_softc *)arg;
   1495  1.12  kiyohara 
   1496  1.12  kiyohara 	start_cc_time(&t_hard_int, (unsigned int)arg);
   1497  1.12  kiyohara 	simple_lock(&sc->sc_lock);
   1498  1.12  kiyohara 
   1499  1.12  kiyohara 	ret = slhci_dointr(sc);
   1500  1.12  kiyohara 	slhci_main(sc, NULL);
   1501  1.12  kiyohara 
   1502  1.12  kiyohara 	stop_cc_time(&t_hard_int);
   1503  1.12  kiyohara 	return ret;
   1504   1.1     isaki }
   1505   1.1     isaki 
   1506  1.12  kiyohara /* called with main lock only held, returns with locks released. */
   1507   1.1     isaki void
   1508  1.12  kiyohara slhci_main(struct slhci_softc *sc, int *s)
   1509   1.1     isaki {
   1510  1.12  kiyohara 	struct slhci_transfers *t;
   1511  1.12  kiyohara 
   1512  1.12  kiyohara 	t = &sc->sc_transfers;
   1513   1.1     isaki 
   1514  1.12  kiyohara 	SLHCI_LOCKASSERT(sc, locked, unlocked);
   1515   1.1     isaki 
   1516  1.12  kiyohara #ifdef SLHCI_WAITLOCK
   1517  1.12  kiyohara waitcheck:
   1518  1.12  kiyohara #endif
   1519  1.12  kiyohara 	slhci_waitintr(sc, slhci_wait_time);
   1520   1.1     isaki 
   1521   1.1     isaki 
   1522   1.1     isaki 	/*
   1523  1.12  kiyohara 	 * XXX Directly calling the callback anytime s != NULL
   1524  1.12  kiyohara 	 * causes panic:sbdrop with aue (simultaneously using umass).
   1525  1.12  kiyohara 	 * Doing that affects process accounting, but is supposed to work as
   1526  1.12  kiyohara 	 * far as I can tell.
   1527  1.12  kiyohara 	 *
   1528  1.12  kiyohara 	 * The direct call is needed in the use_polling and disabled cases
   1529  1.12  kiyohara 	 * since the soft interrupt is not available.  In the disabled case,
   1530  1.12  kiyohara 	 * this code can be reached from the usb detach, after the reaping of
   1531  1.12  kiyohara 	 * the soft interrupt.  That test could be !F_ACTIVE (in which case
   1532  1.12  kiyohara 	 * s != NULL could be an assertion), but there is no reason not to
   1533  1.12  kiyohara 	 * make the callbacks directly in the other DISABLED cases.
   1534   1.1     isaki 	 */
   1535  1.12  kiyohara 	if ((t->flags & F_ROOTINTR) || !gcq_empty(&t->q[Q_CALLBACKS])) {
   1536  1.12  kiyohara 		if (__predict_false(sc->sc_bus.use_polling || t->flags &
   1537  1.12  kiyohara 		    F_DISABLED) && s != NULL)
   1538  1.12  kiyohara 			slhci_callback(sc, s);
   1539  1.12  kiyohara 		else
   1540  1.12  kiyohara 			slhci_callback_schedule(sc);
   1541  1.12  kiyohara 	}
   1542  1.12  kiyohara 
   1543  1.12  kiyohara #ifdef SLHCI_WAITLOCK
   1544  1.12  kiyohara 	simple_lock(&sc->sc_wait_lock);
   1545  1.12  kiyohara 
   1546  1.12  kiyohara 	if (!gcq_empty(&sc->sc_waitq)) {
   1547  1.12  kiyohara 		slhci_enter_xfers(sc);
   1548  1.12  kiyohara 		simple_unlock(&sc->sc_wait_lock);
   1549  1.12  kiyohara 		slhci_dotransfer(sc);
   1550  1.12  kiyohara 		goto waitcheck;
   1551  1.12  kiyohara 	}
   1552  1.12  kiyohara 
   1553  1.12  kiyohara 	simple_unlock(&sc->sc_lock);
   1554  1.12  kiyohara 	simple_unlock(&sc->sc_wait_lock);
   1555  1.12  kiyohara #else
   1556  1.12  kiyohara 	simple_unlock(&sc->sc_lock);
   1557  1.12  kiyohara #endif
   1558   1.1     isaki }
   1559   1.1     isaki 
   1560  1.12  kiyohara /* End lock entry functions. Start in lock function. */
   1561  1.12  kiyohara 
   1562  1.12  kiyohara /* Register read/write routines and barriers. */
   1563  1.12  kiyohara #ifdef SLHCI_BUS_SPACE_BARRIERS
   1564  1.12  kiyohara #define BSB(a, b, c, d, e) bus_space_barrier(a, b, c, d, BUS_SPACE_BARRIER_ # e)
   1565  1.12  kiyohara #define BSB_SYNC(a, b, c, d) bus_space_barrier(a, b, c, d, BUS_SPACE_BARRIER_SYNC)
   1566  1.12  kiyohara #else /* now !SLHCI_BUS_SPACE_BARRIERS */
   1567  1.12  kiyohara #define BSB(a, b, c, d, e)
   1568  1.12  kiyohara #define BSB_SYNC(a, b, c, d)
   1569  1.12  kiyohara #endif /* SLHCI_BUS_SPACE_BARRIERS */
   1570  1.12  kiyohara 
   1571  1.12  kiyohara static void
   1572  1.12  kiyohara slhci_write(struct slhci_softc *sc, uint8_t addr, uint8_t data)
   1573   1.1     isaki {
   1574  1.12  kiyohara 	bus_size_t paddr, pdata, pst, psz;
   1575  1.12  kiyohara 	bus_space_tag_t iot;
   1576  1.12  kiyohara 	bus_space_handle_t ioh;
   1577  1.12  kiyohara 
   1578  1.12  kiyohara 	paddr = pst = 0;
   1579  1.12  kiyohara 	pdata = sc->sc_stride;
   1580  1.12  kiyohara 	psz = pdata * 2;
   1581  1.12  kiyohara 	iot = sc->sc_iot;
   1582  1.12  kiyohara 	ioh = sc->sc_ioh;
   1583  1.12  kiyohara 
   1584  1.12  kiyohara 	bus_space_write_1(iot, ioh, paddr, addr);
   1585  1.12  kiyohara 	BSB(iot, ioh, pst, psz, WRITE_BEFORE_WRITE);
   1586  1.12  kiyohara 	bus_space_write_1(iot, ioh, pdata, data);
   1587  1.12  kiyohara 	BSB(iot, ioh, pst, psz, WRITE_BEFORE_WRITE);
   1588  1.12  kiyohara }
   1589  1.12  kiyohara 
   1590  1.12  kiyohara static uint8_t
   1591  1.12  kiyohara slhci_read(struct slhci_softc *sc, uint8_t addr)
   1592  1.12  kiyohara {
   1593  1.12  kiyohara 	bus_size_t paddr, pdata, pst, psz;
   1594  1.12  kiyohara 	bus_space_tag_t iot;
   1595  1.12  kiyohara 	bus_space_handle_t ioh;
   1596  1.12  kiyohara 	uint8_t data;
   1597  1.12  kiyohara 
   1598  1.12  kiyohara 	paddr = pst = 0;
   1599  1.12  kiyohara 	pdata = sc->sc_stride;
   1600  1.12  kiyohara 	psz = pdata * 2;
   1601  1.12  kiyohara 	iot = sc->sc_iot;
   1602  1.12  kiyohara 	ioh = sc->sc_ioh;
   1603  1.12  kiyohara 
   1604  1.12  kiyohara 	bus_space_write_1(iot, ioh, paddr, addr);
   1605  1.12  kiyohara 	BSB(iot, ioh, pst, psz, WRITE_BEFORE_READ);
   1606  1.12  kiyohara 	data = bus_space_read_1(iot, ioh, pdata);
   1607  1.12  kiyohara 	BSB(iot, ioh, pst, psz, READ_BEFORE_WRITE);
   1608  1.12  kiyohara 	return data;
   1609  1.12  kiyohara }
   1610   1.1     isaki 
   1611  1.12  kiyohara #if 0 /* auto-increment mode broken, see errata doc */
   1612  1.12  kiyohara static void
   1613  1.12  kiyohara slhci_write_multi(struct slhci_softc *sc, uint8_t addr, uint8_t *buf, int l)
   1614  1.12  kiyohara {
   1615  1.12  kiyohara 	bus_size_t paddr, pdata, pst, psz;
   1616  1.12  kiyohara 	bus_space_tag_t iot;
   1617  1.12  kiyohara 	bus_space_handle_t ioh;
   1618  1.12  kiyohara 
   1619  1.12  kiyohara 	paddr = pst = 0;
   1620  1.12  kiyohara 	pdata = sc->sc_stride;
   1621  1.12  kiyohara 	psz = pdata * 2;
   1622  1.12  kiyohara 	iot = sc->sc_iot;
   1623  1.12  kiyohara 	ioh = sc->sc_ioh;
   1624  1.12  kiyohara 
   1625  1.12  kiyohara 	bus_space_write_1(iot, ioh, paddr, addr);
   1626  1.12  kiyohara 	BSB(iot, ioh, pst, psz, WRITE_BEFORE_WRITE);
   1627  1.12  kiyohara 	bus_space_write_multi_1(iot, ioh, pdata, buf, l);
   1628  1.12  kiyohara 	BSB(iot, ioh, pst, psz, WRITE_BEFORE_WRITE);
   1629  1.12  kiyohara }
   1630   1.1     isaki 
   1631  1.12  kiyohara static void
   1632  1.12  kiyohara slhci_read_multi(struct slhci_softc *sc, uint8_t addr, uint8_t *buf, int l)
   1633  1.12  kiyohara {
   1634  1.12  kiyohara 	bus_size_t paddr, pdata, pst, psz;
   1635  1.12  kiyohara 	bus_space_tag_t iot;
   1636  1.12  kiyohara 	bus_space_handle_t ioh;
   1637  1.12  kiyohara 
   1638  1.12  kiyohara 	paddr = pst = 0;
   1639  1.12  kiyohara 	pdata = sc->sc_stride;
   1640  1.12  kiyohara 	psz = pdata * 2;
   1641  1.12  kiyohara 	iot = sc->sc_iot;
   1642  1.12  kiyohara 	ioh = sc->sc_ioh;
   1643  1.12  kiyohara 
   1644  1.12  kiyohara 	bus_space_write_1(iot, ioh, paddr, addr);
   1645  1.12  kiyohara 	BSB(iot, ioh, pst, psz, WRITE_BEFORE_READ);
   1646  1.12  kiyohara 	bus_space_read_multi_1(iot, ioh, pdata, buf, l);
   1647  1.12  kiyohara 	BSB(iot, ioh, pst, psz, READ_BEFORE_WRITE);
   1648   1.1     isaki }
   1649  1.12  kiyohara #else
   1650   1.1     isaki static void
   1651  1.12  kiyohara slhci_write_multi(struct slhci_softc *sc, uint8_t addr, uint8_t *buf, int l)
   1652   1.1     isaki {
   1653  1.12  kiyohara #if 1
   1654  1.12  kiyohara 	for (; l; addr++, buf++, l--)
   1655  1.12  kiyohara 		slhci_write(sc, addr, *buf);
   1656  1.12  kiyohara #else
   1657  1.12  kiyohara 	bus_size_t paddr, pdata, pst, psz;
   1658  1.12  kiyohara 	bus_space_tag_t iot;
   1659  1.12  kiyohara 	bus_space_handle_t ioh;
   1660  1.12  kiyohara 
   1661  1.12  kiyohara 	paddr = pst = 0;
   1662  1.12  kiyohara 	pdata = sc->sc_stride;
   1663  1.12  kiyohara 	psz = pdata * 2;
   1664  1.12  kiyohara 	iot = sc->sc_iot;
   1665  1.12  kiyohara 	ioh = sc->sc_ioh;
   1666  1.12  kiyohara 
   1667  1.12  kiyohara 	for (; l; addr++, buf++, l--) {
   1668  1.12  kiyohara 		bus_space_write_1(iot, ioh, paddr, addr);
   1669  1.12  kiyohara 		BSB(iot, ioh, pst, psz, WRITE_BEFORE_WRITE);
   1670  1.12  kiyohara 		bus_space_write_1(iot, ioh, pdata, *buf);
   1671  1.12  kiyohara 		BSB(iot, ioh, pst, psz, WRITE_BEFORE_WRITE);
   1672  1.12  kiyohara 	}
   1673  1.12  kiyohara #endif
   1674   1.1     isaki }
   1675   1.1     isaki 
   1676   1.1     isaki static void
   1677  1.12  kiyohara slhci_read_multi(struct slhci_softc *sc, uint8_t addr, uint8_t *buf, int l)
   1678   1.1     isaki {
   1679  1.12  kiyohara #if 1
   1680  1.12  kiyohara 	for (; l; addr++, buf++, l--)
   1681  1.12  kiyohara 		*buf = slhci_read(sc, addr);
   1682  1.12  kiyohara #else
   1683  1.12  kiyohara 	bus_size_t paddr, pdata, pst, psz;
   1684  1.12  kiyohara 	bus_space_tag_t iot;
   1685  1.12  kiyohara 	bus_space_handle_t ioh;
   1686  1.12  kiyohara 
   1687  1.12  kiyohara 	paddr = pst = 0;
   1688  1.12  kiyohara 	pdata = sc->sc_stride;
   1689  1.12  kiyohara 	psz = pdata * 2;
   1690  1.12  kiyohara 	iot = sc->sc_iot;
   1691  1.12  kiyohara 	ioh = sc->sc_ioh;
   1692  1.12  kiyohara 
   1693  1.12  kiyohara 	for (; l; addr++, buf++, l--) {
   1694  1.12  kiyohara 		bus_space_write_1(iot, ioh, paddr, addr);
   1695  1.12  kiyohara 		BSB(iot, ioh, pst, psz, WRITE_BEFORE_READ);
   1696  1.12  kiyohara 		*buf = bus_space_read_1(iot, ioh, pdata);
   1697  1.12  kiyohara 		BSB(iot, ioh, pst, psz, READ_BEFORE_WRITE);
   1698  1.12  kiyohara 	}
   1699  1.12  kiyohara #endif
   1700  1.12  kiyohara }
   1701  1.12  kiyohara #endif
   1702  1.12  kiyohara 
   1703  1.12  kiyohara /* After calling waitintr it is necessary to either call slhci_callback or
   1704  1.12  kiyohara  * schedule the callback if necessary.  The callback cannot be called directly
   1705  1.12  kiyohara  * from the hard interrupt since it interrupts at a high IPL and callbacks
   1706  1.12  kiyohara  * can do copyout and such. */
   1707  1.12  kiyohara static void
   1708  1.12  kiyohara slhci_waitintr(struct slhci_softc *sc, int wait_time)
   1709  1.12  kiyohara {
   1710  1.12  kiyohara 	struct slhci_transfers *t;
   1711  1.12  kiyohara 
   1712  1.12  kiyohara 	t = &sc->sc_transfers;
   1713  1.12  kiyohara 
   1714  1.12  kiyohara 	SLHCI_LOCKASSERT(sc, locked, unlocked);
   1715  1.12  kiyohara 
   1716  1.12  kiyohara 	if (__predict_false(sc->sc_bus.use_polling))
   1717  1.12  kiyohara 		wait_time = 12000;
   1718  1.12  kiyohara 
   1719  1.12  kiyohara 	while (t->pend <= wait_time) {
   1720  1.12  kiyohara 		DLOG(D_WAIT, "waiting... frame %d pend %d flags %#x",
   1721  1.12  kiyohara 		    t->frame, t->pend, t->flags, 0);
   1722  1.12  kiyohara 		LK_SLASSERT(t->flags & F_ACTIVE, sc, NULL, NULL, return);
   1723  1.12  kiyohara 		LK_SLASSERT(t->flags & (F_AINPROG|F_BINPROG), sc, NULL, NULL,
   1724  1.12  kiyohara 		    return);
   1725  1.12  kiyohara 		slhci_dointr(sc);
   1726  1.12  kiyohara 	}
   1727  1.12  kiyohara }
   1728  1.12  kiyohara 
   1729  1.12  kiyohara static int
   1730  1.12  kiyohara slhci_dointr(struct slhci_softc *sc)
   1731  1.12  kiyohara {
   1732  1.12  kiyohara 	struct slhci_transfers *t;
   1733  1.12  kiyohara 	struct slhci_pipe *tosp;
   1734  1.12  kiyohara 	uint8_t r;
   1735  1.12  kiyohara 
   1736  1.12  kiyohara 	t = &sc->sc_transfers;
   1737  1.12  kiyohara 
   1738  1.12  kiyohara 	SLHCI_LOCKASSERT(sc, locked, unlocked);
   1739  1.12  kiyohara 
   1740  1.12  kiyohara 	if (sc->sc_ier == 0)
   1741  1.12  kiyohara 		return 0;
   1742  1.12  kiyohara 
   1743  1.12  kiyohara 	r = slhci_read(sc, SL11_ISR);
   1744  1.12  kiyohara 
   1745  1.12  kiyohara #ifdef SLHCI_DEBUG
   1746  1.12  kiyohara 	if (slhci_debug & SLHCI_D_INTR && r & sc->sc_ier &&
   1747  1.12  kiyohara 	    ((r & ~(SL11_ISR_SOF|SL11_ISR_DATA)) || slhci_debug &
   1748  1.12  kiyohara 	    SLHCI_D_SOF)) {
   1749  1.12  kiyohara 		uint8_t e, f;
   1750  1.12  kiyohara 
   1751  1.12  kiyohara 		e = slhci_read(sc, SL11_IER);
   1752  1.12  kiyohara 		f = slhci_read(sc, SL11_CTRL);
   1753  1.12  kiyohara 		DDOLOG("Flags=%#x IER=%#x ISR=%#x", t->flags, e, r, 0);
   1754  1.12  kiyohara 		DDOLOGFLAG8("Status=", r, "D+", (f & SL11_CTRL_SUSPEND) ?
   1755  1.12  kiyohara 		    "RESUME" : "NODEV", "INSERT", "SOF", "res", "BABBLE",
   1756  1.12  kiyohara 		    "USBB", "USBA");
   1757  1.12  kiyohara 	}
   1758  1.12  kiyohara #endif
   1759  1.12  kiyohara 
   1760  1.12  kiyohara 	/* check IER for corruption occasionally.  Assume that the above
   1761  1.12  kiyohara 	 * sc_ier == 0 case works correctly. */
   1762  1.12  kiyohara 	if (__predict_false(sc->sc_ier_check++ > SLHCI_IER_CHECK_FREQUENCY)) {
   1763  1.12  kiyohara 		sc->sc_ier_check = 0;
   1764  1.12  kiyohara 		if (sc->sc_ier != slhci_read(sc, SL11_IER)) {
   1765  1.12  kiyohara 			printf("%s: IER value corrupted! halted\n",
   1766  1.12  kiyohara 			    SC_NAME(sc));
   1767  1.12  kiyohara 			DDOLOG("%s: IER value corrupted! halted\n",
   1768  1.12  kiyohara 			    SC_NAME(sc), 0,0,0);
   1769  1.12  kiyohara 			slhci_halt(sc, NULL, NULL);
   1770  1.12  kiyohara 			return 1;
   1771  1.12  kiyohara 		}
   1772  1.12  kiyohara 	}
   1773  1.12  kiyohara 
   1774  1.12  kiyohara 	r &= sc->sc_ier;
   1775  1.12  kiyohara 
   1776  1.12  kiyohara 	if (r == 0)
   1777  1.12  kiyohara 		return 0;
   1778  1.12  kiyohara 
   1779  1.12  kiyohara 	sc->sc_ier_check = 0;
   1780  1.12  kiyohara 
   1781  1.12  kiyohara 	slhci_write(sc, SL11_ISR, r);
   1782  1.12  kiyohara 	BSB_SYNC(sc->iot, sc->ioh, sc->pst, sc->psz);
   1783  1.12  kiyohara 
   1784  1.12  kiyohara 
   1785  1.12  kiyohara 	/* If we have an insertion event we do not care about anything else. */
   1786  1.12  kiyohara 	if (__predict_false(r & SL11_ISR_INSERT)) {
   1787  1.12  kiyohara 		slhci_insert(sc);
   1788  1.12  kiyohara 		return 1;
   1789  1.12  kiyohara 	}
   1790  1.12  kiyohara 
   1791  1.12  kiyohara 	stop_cc_time(&t_intr);
   1792  1.12  kiyohara 	start_cc_time(&t_intr, r);
   1793  1.12  kiyohara 
   1794  1.12  kiyohara 	if (r & SL11_ISR_SOF) {
   1795  1.12  kiyohara 		t->frame++;
   1796  1.12  kiyohara 
   1797  1.12  kiyohara 		gcq_merge_tail(&t->q[Q_CB], &t->q[Q_NEXT_CB]);
   1798  1.12  kiyohara 
   1799  1.12  kiyohara 		/* SOFCHECK flags are cleared in tstart.  Two flags are needed
   1800  1.12  kiyohara 		 * since the first SOF interrupt processed after the transfer
   1801  1.12  kiyohara 		 * is started might have been generated before the transfer
   1802  1.12  kiyohara 		 * was started.  */
   1803  1.12  kiyohara 		if (__predict_false(t->flags & F_SOFCHECK2 && t->flags &
   1804  1.12  kiyohara 		    (F_AINPROG|F_BINPROG))) {
   1805  1.12  kiyohara 			printf("%s: Missed transfer completion. halted\n",
   1806  1.12  kiyohara 			    SC_NAME(sc));
   1807  1.12  kiyohara 			DDOLOG("%s: Missed transfer completion. halted\n",
   1808  1.12  kiyohara 			    SC_NAME(sc), 0,0,0);
   1809  1.12  kiyohara 			slhci_halt(sc, NULL, NULL);
   1810  1.12  kiyohara 			return 1;
   1811  1.12  kiyohara 		} else if (t->flags & F_SOFCHECK1) {
   1812  1.12  kiyohara 			t->flags |= F_SOFCHECK2;
   1813  1.12  kiyohara 		} else
   1814  1.12  kiyohara 			t->flags |= F_SOFCHECK1;
   1815  1.12  kiyohara 
   1816  1.12  kiyohara 		if (t->flags & F_CHANGE)
   1817  1.12  kiyohara 			t->flags |= F_ROOTINTR;
   1818  1.12  kiyohara 
   1819  1.12  kiyohara 		while (__predict_true(GOT_FIRST_TO(tosp, t)) &&
   1820  1.12  kiyohara 		    __predict_false(tosp->to_frame <= t->frame)) {
   1821  1.12  kiyohara 			tosp->xfer->status = USBD_TIMEOUT;
   1822  1.12  kiyohara 			slhci_do_abort(sc, tosp, tosp->xfer);
   1823  1.12  kiyohara 			enter_callback(t, tosp);
   1824  1.12  kiyohara 		}
   1825  1.12  kiyohara 
   1826  1.12  kiyohara 		/* Start any waiting transfers right away.  If none, we will
   1827  1.12  kiyohara 		 * start any new transfers later. */
   1828  1.12  kiyohara 		slhci_tstart(sc);
   1829  1.12  kiyohara 	}
   1830  1.12  kiyohara 
   1831  1.12  kiyohara 	if (r & (SL11_ISR_USBA|SL11_ISR_USBB)) {
   1832  1.12  kiyohara 		int ab;
   1833  1.12  kiyohara 
   1834  1.12  kiyohara 		if ((r & (SL11_ISR_USBA|SL11_ISR_USBB)) ==
   1835  1.12  kiyohara 		    (SL11_ISR_USBA|SL11_ISR_USBB)) {
   1836  1.12  kiyohara 			if (!(t->flags & (F_AINPROG|F_BINPROG)))
   1837  1.12  kiyohara 				return 1; /* presume card pulled */
   1838  1.12  kiyohara 
   1839  1.12  kiyohara 			LK_SLASSERT((t->flags & (F_AINPROG|F_BINPROG)) !=
   1840  1.12  kiyohara 			    (F_AINPROG|F_BINPROG), sc, NULL, NULL, return 1);
   1841  1.12  kiyohara 
   1842  1.12  kiyohara 			/* This should never happen (unless card removal just
   1843  1.12  kiyohara 			 * occurred) but appeared frequently when both
   1844  1.12  kiyohara 			 * transfers were started at the same time and was
   1845  1.12  kiyohara 			 * accompanied by data corruption.  It still happens
   1846  1.12  kiyohara 			 * at times.  I have not seen data correption except
   1847  1.12  kiyohara 			 * when the STATUS bit gets set, which now causes the
   1848  1.12  kiyohara 			 * driver to halt, however this should still not
   1849  1.12  kiyohara 			 * happen so the warning is kept.  See comment in
   1850  1.12  kiyohara 			 * abdone, below.
   1851  1.12  kiyohara 			 */
   1852  1.12  kiyohara 			printf("%s: Transfer reported done but not started! "
   1853  1.12  kiyohara 			    "Verify data integrity if not detaching. "
   1854  1.12  kiyohara 			    " flags %#x r %x\n", SC_NAME(sc), t->flags, r);
   1855  1.12  kiyohara 
   1856  1.12  kiyohara 			if (!(t->flags & F_AINPROG))
   1857  1.12  kiyohara 				r &= ~SL11_ISR_USBA;
   1858  1.12  kiyohara 			else
   1859  1.12  kiyohara 				r &= ~SL11_ISR_USBB;
   1860  1.12  kiyohara 		}
   1861  1.12  kiyohara 		t->pend = INT_MAX;
   1862  1.12  kiyohara 
   1863  1.12  kiyohara 		if (r & SL11_ISR_USBA)
   1864  1.12  kiyohara 			ab = A;
   1865  1.12  kiyohara 		else
   1866  1.12  kiyohara 			ab = B;
   1867  1.12  kiyohara 
   1868  1.12  kiyohara 		/* This happens when a low speed device is attached to
   1869  1.12  kiyohara 		 * a hub with chip rev 1.5.  SOF stops, but a few transfers
   1870  1.12  kiyohara 		 * still work before causing this error.
   1871  1.12  kiyohara 		 */
   1872  1.12  kiyohara 		if (!(t->flags & (ab ? F_BINPROG : F_AINPROG))) {
   1873  1.12  kiyohara 			printf("%s: %s done but not in progress! halted\n",
   1874  1.12  kiyohara 			    SC_NAME(sc), ab ? "B" : "A");
   1875  1.12  kiyohara 			DDOLOG("%s: %s done but not in progress! halted\n",
   1876  1.12  kiyohara 			    SC_NAME(sc), ab ? "B" : "A", 0,0);
   1877  1.12  kiyohara 			slhci_halt(sc, NULL, NULL);
   1878  1.12  kiyohara 			return 1;
   1879  1.12  kiyohara 		}
   1880  1.12  kiyohara 
   1881  1.12  kiyohara 		t->flags &= ~(ab ? F_BINPROG : F_AINPROG);
   1882  1.12  kiyohara 		slhci_tstart(sc);
   1883  1.12  kiyohara 		stop_cc_time(&t_ab[ab]);
   1884  1.12  kiyohara 		start_cc_time(&t_abdone, t->flags);
   1885  1.12  kiyohara 		slhci_abdone(sc, ab);
   1886  1.12  kiyohara 		stop_cc_time(&t_abdone);
   1887  1.12  kiyohara 	}
   1888  1.12  kiyohara 
   1889  1.12  kiyohara 	slhci_dotransfer(sc);
   1890  1.12  kiyohara 
   1891  1.12  kiyohara 	return 1;
   1892  1.12  kiyohara }
   1893  1.12  kiyohara 
   1894  1.12  kiyohara static void
   1895  1.12  kiyohara slhci_abdone(struct slhci_softc *sc, int ab)
   1896  1.12  kiyohara {
   1897  1.12  kiyohara 	struct slhci_transfers *t;
   1898  1.12  kiyohara 	struct slhci_pipe *spipe;
   1899  1.12  kiyohara 	struct usbd_xfer *xfer;
   1900  1.12  kiyohara 	uint8_t status, buf_start;
   1901  1.12  kiyohara 	uint8_t *target_buf;
   1902  1.12  kiyohara 	unsigned int actlen;
   1903  1.12  kiyohara 	int head;
   1904  1.12  kiyohara 
   1905  1.12  kiyohara 	t = &sc->sc_transfers;
   1906  1.12  kiyohara 
   1907  1.12  kiyohara 	SLHCI_LOCKASSERT(sc, locked, unlocked);
   1908  1.12  kiyohara 
   1909  1.12  kiyohara 	DLOG(D_TRACE, "ABDONE flags %#x", t->flags, 0,0,0);
   1910  1.12  kiyohara 
   1911  1.12  kiyohara 	DLOG(D_MSG, "DONE %s spipe %p len %d xfer %p", ab ? "B" : "A",
   1912  1.12  kiyohara 	    t->spipe[ab], t->len[ab], t->spipe[ab] ?
   1913  1.12  kiyohara 	    t->spipe[ab]->xfer : NULL);
   1914  1.12  kiyohara 
   1915  1.12  kiyohara 	spipe = t->spipe[ab];
   1916  1.12  kiyohara 
   1917  1.12  kiyohara 	/* skip this one if aborted; do not call return from the rest of the
   1918  1.12  kiyohara 	 * function unless halting, else t->len will not be cleared. */
   1919  1.12  kiyohara 	if (spipe == NULL)
   1920  1.12  kiyohara 		goto done;
   1921  1.12  kiyohara 
   1922  1.12  kiyohara 	t->spipe[ab] = NULL;
   1923  1.12  kiyohara 
   1924  1.12  kiyohara 	xfer = spipe->xfer;
   1925  1.12  kiyohara 
   1926  1.12  kiyohara 	gcq_remove(&spipe->to);
   1927  1.12  kiyohara 
   1928  1.12  kiyohara 	LK_SLASSERT(xfer != NULL, sc, spipe, NULL, return);
   1929  1.12  kiyohara 
   1930  1.12  kiyohara 	status = slhci_read(sc, slhci_tregs[ab][STAT]);
   1931  1.12  kiyohara 
   1932  1.12  kiyohara 	/*
   1933  1.12  kiyohara 	 * I saw no status or remaining length greater than the requested
   1934  1.12  kiyohara 	 * length in early driver versions in circumstances I assumed caused
   1935  1.12  kiyohara 	 * excess power draw.  I am no longer able to reproduce this when
   1936  1.12  kiyohara 	 * causing excess power draw circumstances.
   1937  1.12  kiyohara 	 *
   1938  1.12  kiyohara 	 * Disabling a power check and attaching aue to a keyboard and hub
   1939  1.12  kiyohara 	 * that is directly attached (to CFU1U, 100mA max, aue 160mA, keyboard
   1940  1.12  kiyohara 	 * 98mA) sometimes works and sometimes fails to configure.  After
   1941  1.12  kiyohara 	 * removing the aue and attaching a self-powered umass dvd reader
   1942  1.12  kiyohara 	 * (unknown if it draws power from the host also) soon a single Error
   1943  1.12  kiyohara 	 * status occurs then only timeouts. The controller soon halts freeing
   1944  1.12  kiyohara 	 * memory due to being ONQU instead of BUSY.  This may be the same
   1945  1.12  kiyohara 	 * basic sequence that caused the no status/bad length errors.  The
   1946  1.12  kiyohara 	 * umass device seems to work (better at least) with the keyboard hub
   1947  1.12  kiyohara 	 * when not first attaching aue (tested once reading an approximately
   1948  1.12  kiyohara 	 * 200MB file).
   1949  1.12  kiyohara 	 *
   1950  1.12  kiyohara 	 * Overflow can indicate that the device and host disagree about how
   1951  1.12  kiyohara 	 * much data has been transfered.  This may indicate a problem at any
   1952  1.12  kiyohara 	 * point during the transfer, not just when the error occurs.  It may
   1953  1.12  kiyohara 	 * indicate data corruption.  A warning message is printed.
   1954  1.12  kiyohara 	 *
   1955  1.12  kiyohara 	 * Trying to use both A and B transfers at the same time results in
   1956  1.12  kiyohara 	 * incorrect transfer completion ISR reports and the status will then
   1957  1.12  kiyohara 	 * include SL11_EPSTAT_SETUP, which is apparently set while the
   1958  1.12  kiyohara 	 * transfer is in progress.  I also noticed data corruption, even
   1959  1.12  kiyohara 	 * after waiting for the transfer to complete. The driver now avoids
   1960  1.12  kiyohara 	 * trying to start both at the same time.
   1961  1.12  kiyohara 	 *
   1962  1.12  kiyohara 	 * I had accidently initialized the B registers before they were valid
   1963  1.12  kiyohara 	 * in some driver versions.  Since every other performance enhancing
   1964  1.12  kiyohara 	 * feature has been confirmed buggy in the errata doc, I have not
   1965  1.12  kiyohara 	 * tried both transfers at once again with the documented
   1966  1.12  kiyohara 	 * initialization order.
   1967  1.12  kiyohara 	 *
   1968  1.12  kiyohara 	 * However, I have seen this problem again ("done but not started"
   1969  1.12  kiyohara 	 * errors), which in some cases cases the SETUP status bit to remain
   1970  1.12  kiyohara 	 * set on future transfers.  In other cases, the SETUP bit is not set
   1971  1.12  kiyohara 	 * and no data corruption occurs.  This occured while using both umass
   1972  1.12  kiyohara 	 * and aue on a powered hub (maybe triggered by some local activity
   1973  1.12  kiyohara 	 * also) and needs several reads of the 200MB file to trigger.  The
   1974  1.12  kiyohara 	 * driver now halts if SETUP is detected.
   1975  1.12  kiyohara  	 */
   1976  1.12  kiyohara 
   1977  1.12  kiyohara 	actlen = 0;
   1978  1.12  kiyohara 
   1979  1.12  kiyohara 	if (__predict_false(!status)) {
   1980  1.12  kiyohara 		DDOLOG("no status! xfer %p spipe %p", xfer, spipe, 0,0);
   1981  1.12  kiyohara 		printf("%s: no status! halted\n", SC_NAME(sc));
   1982  1.12  kiyohara 		slhci_halt(sc, spipe, xfer);
   1983  1.12  kiyohara 		return;
   1984  1.12  kiyohara 	}
   1985  1.12  kiyohara 
   1986  1.12  kiyohara #ifdef SLHCI_DEBUG
   1987  1.12  kiyohara 	if (slhci_debug & SLHCI_D_NAK || (status & SL11_EPSTAT_ERRBITS) !=
   1988  1.12  kiyohara 	    SL11_EPSTAT_NAK)
   1989  1.12  kiyohara 		DLOGFLAG8(D_XFER, "STATUS=", status, "STALL", "NAK",
   1990  1.12  kiyohara 		    "Overflow", "Setup", "Data Toggle", "Timeout", "Error",
   1991  1.12  kiyohara 		    "ACK");
   1992  1.12  kiyohara #endif
   1993  1.12  kiyohara 
   1994  1.12  kiyohara 	if (!(status & SL11_EPSTAT_ERRBITS)) {
   1995  1.12  kiyohara 		unsigned int cont;
   1996  1.12  kiyohara 		cont = slhci_read(sc, slhci_tregs[ab][CONT]);
   1997  1.12  kiyohara 		if (cont != 0)
   1998  1.12  kiyohara 			DLOG(D_XFER, "cont %d len %d", cont,
   1999  1.12  kiyohara 			    spipe->tregs[LEN], 0,0);
   2000  1.12  kiyohara 		if (__predict_false(cont > spipe->tregs[LEN])) {
   2001  1.12  kiyohara 			DDOLOG("cont > len! cont %d len %d xfer->length %d "
   2002  1.12  kiyohara 			    "spipe %p", cont, spipe->tregs[LEN], xfer->length,
   2003  1.12  kiyohara 			    spipe);
   2004  1.12  kiyohara 			printf("%s: cont > len! cont %d len %d xfer->length "
   2005  1.12  kiyohara 			    "%d", SC_NAME(sc), cont, spipe->tregs[LEN],
   2006  1.12  kiyohara 			    xfer->length);
   2007  1.12  kiyohara 			slhci_halt(sc, spipe, xfer);
   2008  1.12  kiyohara 			return;
   2009  1.12  kiyohara 		} else {
   2010  1.12  kiyohara 			spipe->nerrs = 0;
   2011  1.12  kiyohara 			actlen = spipe->tregs[LEN] - cont;
   2012  1.12  kiyohara 		}
   2013  1.12  kiyohara 	}
   2014  1.12  kiyohara 
   2015  1.12  kiyohara 	/* Actual copyin done after starting next transfer. */
   2016  1.12  kiyohara 	if (actlen && (spipe->tregs[PID] & SL11_PID_BITS) == SL11_PID_IN) {
   2017  1.12  kiyohara 		target_buf = spipe->buffer;
   2018  1.12  kiyohara 		buf_start = spipe->tregs[ADR];
   2019  1.12  kiyohara 	} else {
   2020  1.12  kiyohara 		target_buf = NULL;
   2021  1.12  kiyohara 		buf_start = 0; /* XXX gcc uninitialized warnings */
   2022  1.12  kiyohara 	}
   2023  1.12  kiyohara 
   2024  1.12  kiyohara 	if (status & SL11_EPSTAT_ERRBITS) {
   2025  1.12  kiyohara 		status &= SL11_EPSTAT_ERRBITS;
   2026  1.12  kiyohara 		if (status & SL11_EPSTAT_SETUP) {
   2027  1.12  kiyohara 			printf("%s: Invalid controller state detected! "
   2028  1.12  kiyohara 			    "halted\n", SC_NAME(sc));
   2029  1.12  kiyohara 			DDOLOG("%s: Invalid controller state detected! "
   2030  1.12  kiyohara 			    "halted\n", SC_NAME(sc), 0,0,0);
   2031  1.12  kiyohara 			slhci_halt(sc, spipe, xfer);
   2032  1.12  kiyohara 			return;
   2033  1.12  kiyohara 		} else if (__predict_false(sc->sc_bus.use_polling)) {
   2034  1.12  kiyohara 			if (status == SL11_EPSTAT_STALL)
   2035  1.12  kiyohara 				xfer->status = USBD_STALLED;
   2036  1.12  kiyohara 			else if (status == SL11_EPSTAT_TIMEOUT)
   2037  1.12  kiyohara 				xfer->status = USBD_TIMEOUT;
   2038  1.12  kiyohara 			else if (status == SL11_EPSTAT_NAK)
   2039  1.12  kiyohara 				xfer->status = USBD_TIMEOUT; /*XXX*/
   2040  1.12  kiyohara 			else
   2041  1.12  kiyohara 				xfer->status = USBD_IOERROR;
   2042  1.12  kiyohara 			head = Q_CALLBACKS;
   2043  1.12  kiyohara 		} else if (status == SL11_EPSTAT_NAK) {
   2044  1.12  kiyohara 			if (spipe->pipe.interval) {
   2045  1.12  kiyohara 				spipe->lastframe = spipe->frame =
   2046  1.12  kiyohara 				    t->frame + spipe->pipe.interval;
   2047  1.12  kiyohara 				slhci_queue_timed(sc, spipe);
   2048  1.12  kiyohara 				goto queued;
   2049  1.12  kiyohara 			}
   2050  1.12  kiyohara 			head = Q_NEXT_CB;
   2051  1.12  kiyohara 		} else if (++spipe->nerrs > SLHCI_MAX_RETRIES ||
   2052  1.12  kiyohara 		    status == SL11_EPSTAT_STALL) {
   2053  1.12  kiyohara 			if (status == SL11_EPSTAT_STALL)
   2054  1.12  kiyohara 				xfer->status = USBD_STALLED;
   2055  1.12  kiyohara 			else if (status == SL11_EPSTAT_TIMEOUT)
   2056  1.12  kiyohara 				xfer->status = USBD_TIMEOUT;
   2057  1.12  kiyohara 			else
   2058  1.12  kiyohara 				xfer->status = USBD_IOERROR;
   2059  1.12  kiyohara 
   2060  1.12  kiyohara 			DLOG(D_ERR, "Max retries reached! status %#x "
   2061  1.12  kiyohara 			    "xfer->status %#x", status, xfer->status, 0,0);
   2062  1.12  kiyohara 			DLOGFLAG8(D_ERR, "STATUS=", status, "STALL",
   2063  1.12  kiyohara 			    "NAK", "Overflow", "Setup", "Data Toggle",
   2064  1.12  kiyohara 			    "Timeout", "Error", "ACK");
   2065  1.12  kiyohara 
   2066  1.12  kiyohara 			if (status == SL11_EPSTAT_OVERFLOW &&
   2067  1.12  kiyohara 			    ratecheck(&sc->sc_overflow_warn_rate,
   2068  1.12  kiyohara 			    &overflow_warn_rate)) {
   2069  1.12  kiyohara 				printf("%s: Overflow condition: "
   2070  1.12  kiyohara 				    "data corruption possible\n",
   2071  1.12  kiyohara 				    SC_NAME(sc));
   2072  1.12  kiyohara 				DDOLOG("%s: Overflow condition: "
   2073  1.12  kiyohara 				    "data corruption possible\n",
   2074  1.12  kiyohara 				    SC_NAME(sc), 0,0,0);
   2075  1.12  kiyohara 			}
   2076  1.12  kiyohara 			head = Q_CALLBACKS;
   2077  1.12  kiyohara 		} else {
   2078  1.12  kiyohara 			head = Q_NEXT_CB;
   2079  1.12  kiyohara 		}
   2080  1.12  kiyohara 	} else if (spipe->ptype == PT_CTRL_SETUP) {
   2081  1.12  kiyohara 		spipe->tregs[PID] = spipe->newpid;
   2082  1.12  kiyohara 
   2083  1.12  kiyohara 		if (xfer->length) {
   2084  1.12  kiyohara 			LK_SLASSERT(spipe->newlen[1] != 0, sc, spipe, xfer,
   2085  1.12  kiyohara 			    return);
   2086  1.12  kiyohara 			spipe->tregs[LEN] = spipe->newlen[1];
   2087  1.12  kiyohara 			spipe->bustime = spipe->newbustime[1];
   2088  1.12  kiyohara 			spipe->buffer = KERNADDR(&xfer->dmabuf, 0);
   2089  1.12  kiyohara 			spipe->ptype = PT_CTRL_DATA;
   2090  1.12  kiyohara 		} else {
   2091  1.12  kiyohara status_setup:
   2092  1.12  kiyohara 			/* CTRL_DATA swaps direction in PID then jumps here */
   2093  1.12  kiyohara 			spipe->tregs[LEN] = 0;
   2094  1.12  kiyohara 			if (spipe->pflags & PF_LS)
   2095  1.12  kiyohara 				spipe->bustime = SLHCI_LS_CONST;
   2096  1.12  kiyohara 			else
   2097  1.12  kiyohara 				spipe->bustime = SLHCI_FS_CONST;
   2098  1.12  kiyohara 			spipe->ptype = PT_CTRL_STATUS;
   2099  1.12  kiyohara 			spipe->buffer = NULL;
   2100  1.12  kiyohara 		}
   2101  1.12  kiyohara 
   2102  1.12  kiyohara 		/* Status or first data packet must be DATA1. */
   2103  1.12  kiyohara 		spipe->control |= SL11_EPCTRL_DATATOGGLE;
   2104  1.12  kiyohara 		if ((spipe->tregs[PID] & SL11_PID_BITS) == SL11_PID_IN)
   2105  1.12  kiyohara 			spipe->control &= ~SL11_EPCTRL_DIRECTION;
   2106  1.12  kiyohara 		else
   2107  1.12  kiyohara 			spipe->control |= SL11_EPCTRL_DIRECTION;
   2108  1.12  kiyohara 
   2109  1.12  kiyohara 		head = Q_CB;
   2110  1.12  kiyohara 	} else if (spipe->ptype == PT_CTRL_STATUS) {
   2111  1.12  kiyohara 		head = Q_CALLBACKS;
   2112  1.12  kiyohara 	} else { /* bulk, intr, control data */
   2113  1.12  kiyohara 		xfer->actlen += actlen;
   2114  1.12  kiyohara 		spipe->control ^= SL11_EPCTRL_DATATOGGLE;
   2115  1.12  kiyohara 
   2116  1.12  kiyohara 		if (actlen == spipe->tregs[LEN] && (xfer->length >
   2117  1.12  kiyohara 		    xfer->actlen || spipe->wantshort)) {
   2118  1.12  kiyohara 			spipe->buffer += actlen;
   2119  1.12  kiyohara 			LK_SLASSERT(xfer->length >= xfer->actlen, sc,
   2120  1.12  kiyohara 			    spipe, xfer, return);
   2121  1.12  kiyohara 			if (xfer->length - xfer->actlen < actlen) {
   2122  1.12  kiyohara 				spipe->wantshort = 0;
   2123  1.12  kiyohara 				spipe->tregs[LEN] = spipe->newlen[0];
   2124  1.12  kiyohara 				spipe->bustime = spipe->newbustime[0];
   2125  1.12  kiyohara 				LK_SLASSERT(xfer->actlen +
   2126  1.12  kiyohara 				    spipe->tregs[LEN] == xfer->length, sc,
   2127  1.12  kiyohara 				    spipe, xfer, return);
   2128  1.12  kiyohara 			}
   2129  1.12  kiyohara 			head = Q_CB;
   2130  1.12  kiyohara 		} else if (spipe->ptype == PT_CTRL_DATA) {
   2131  1.12  kiyohara 			spipe->tregs[PID] ^= SLHCI_PID_SWAP_IN_OUT;
   2132  1.12  kiyohara 			goto status_setup;
   2133  1.12  kiyohara 		} else {
   2134  1.12  kiyohara 			if (spipe->ptype == PT_INTR) {
   2135  1.12  kiyohara 				spipe->lastframe +=
   2136  1.12  kiyohara 				    spipe->pipe.interval;
   2137  1.12  kiyohara 				/* If ack, we try to keep the
   2138  1.12  kiyohara 				 * interrupt rate by using lastframe
   2139  1.12  kiyohara 				 * instead of the current frame. */
   2140  1.12  kiyohara 				spipe->frame = spipe->lastframe +
   2141  1.12  kiyohara 				    spipe->pipe.interval;
   2142  1.12  kiyohara 			}
   2143  1.12  kiyohara 
   2144  1.12  kiyohara 			/* Set the toggle for the next transfer.  It
   2145  1.12  kiyohara 			 * has already been toggled above, so the
   2146  1.12  kiyohara 			 * current setting will apply to the next
   2147  1.12  kiyohara 			 * transfer. */
   2148  1.12  kiyohara 			if (spipe->control & SL11_EPCTRL_DATATOGGLE)
   2149  1.12  kiyohara 				spipe->pflags |= PF_TOGGLE;
   2150  1.12  kiyohara 			else
   2151  1.12  kiyohara 				spipe->pflags &= ~PF_TOGGLE;
   2152  1.12  kiyohara 
   2153  1.12  kiyohara 			head = Q_CALLBACKS;
   2154  1.12  kiyohara 		}
   2155  1.12  kiyohara 	}
   2156  1.12  kiyohara 
   2157  1.12  kiyohara 	if (head == Q_CALLBACKS) {
   2158  1.12  kiyohara 		gcq_remove(&spipe->to);
   2159  1.12  kiyohara 
   2160  1.12  kiyohara 	 	if (xfer->status == USBD_IN_PROGRESS) {
   2161  1.12  kiyohara 			LK_SLASSERT(xfer->actlen <= xfer->length, sc,
   2162  1.12  kiyohara 			    spipe, xfer, return);
   2163  1.12  kiyohara 			xfer->status = USBD_NORMAL_COMPLETION;
   2164  1.12  kiyohara #if 0 /* usb_transfer_complete will do this */
   2165  1.12  kiyohara 			if (xfer->length == xfer->actlen || xfer->flags &
   2166  1.12  kiyohara 			    USBD_SHORT_XFER_OK)
   2167  1.12  kiyohara 				xfer->status = USBD_NORMAL_COMPLETION;
   2168  1.12  kiyohara 			else
   2169  1.12  kiyohara 				xfer->status = USBD_SHORT_XFER;
   2170  1.12  kiyohara #endif
   2171  1.12  kiyohara 		}
   2172  1.12  kiyohara 	}
   2173  1.12  kiyohara 
   2174  1.12  kiyohara 	enter_q(t, spipe, head);
   2175  1.12  kiyohara 
   2176  1.12  kiyohara queued:
   2177  1.12  kiyohara 	if (target_buf != NULL) {
   2178  1.12  kiyohara 		slhci_dotransfer(sc);
   2179  1.12  kiyohara 		start_cc_time(&t_copy_from_dev, actlen);
   2180  1.12  kiyohara 		slhci_read_multi(sc, buf_start, target_buf, actlen);
   2181  1.12  kiyohara 		stop_cc_time(&t_copy_from_dev);
   2182  1.12  kiyohara 		DLOGBUF(D_BUF, target_buf, actlen);
   2183  1.12  kiyohara 		t->pend -= SLHCI_FS_CONST + SLHCI_FS_DATA_TIME(actlen);
   2184  1.12  kiyohara 	}
   2185  1.12  kiyohara 
   2186  1.12  kiyohara done:
   2187  1.12  kiyohara 	t->len[ab] = -1;
   2188  1.12  kiyohara }
   2189  1.12  kiyohara 
   2190  1.12  kiyohara static void
   2191  1.12  kiyohara slhci_tstart(struct slhci_softc *sc)
   2192  1.12  kiyohara {
   2193  1.12  kiyohara 	struct slhci_transfers *t;
   2194  1.12  kiyohara 	struct slhci_pipe *spipe;
   2195  1.12  kiyohara 	int remaining_bustime;
   2196  1.12  kiyohara 	int s;
   2197  1.12  kiyohara 
   2198  1.12  kiyohara 	t = &sc->sc_transfers;
   2199  1.12  kiyohara 
   2200  1.12  kiyohara 	SLHCI_LOCKASSERT(sc, locked, unlocked);
   2201  1.12  kiyohara 
   2202  1.12  kiyohara 	if (!(t->flags & (F_AREADY|F_BREADY)))
   2203  1.12  kiyohara 		return;
   2204  1.12  kiyohara 
   2205  1.12  kiyohara 	if (t->flags & (F_AINPROG|F_BINPROG|F_DISABLED))
   2206  1.12  kiyohara 		return;
   2207  1.12  kiyohara 
   2208  1.12  kiyohara 	/* We have about 6 us to get from the bus time check to
   2209  1.12  kiyohara 	 * starting the transfer or we might babble or the chip might fail to
   2210  1.12  kiyohara 	 * signal transfer complete.  This leaves no time for any other
   2211  1.12  kiyohara 	 * interrupts.  Some ports have splipi (MP only) higher than splhigh
   2212  1.12  kiyohara 	 * which might cause longer delays. */
   2213  1.12  kiyohara 	s = splhigh();
   2214  1.12  kiyohara 	remaining_bustime = (int)(slhci_read(sc, SL811_CSOF)) << 6;
   2215  1.12  kiyohara 	remaining_bustime -= SLHCI_END_BUSTIME;
   2216  1.12  kiyohara 
   2217  1.12  kiyohara 	/* Start one transfer only, clearing any aborted transfers that are
   2218  1.12  kiyohara 	 * not yet in progress and skipping missed isoc. It is easier to copy
   2219  1.12  kiyohara 	 * & paste most of the A/B sections than to make the logic work
   2220  1.12  kiyohara 	 * otherwise and this allows better constant use. */
   2221  1.12  kiyohara 	if (t->flags & F_AREADY) {
   2222  1.12  kiyohara 		spipe = t->spipe[A];
   2223  1.12  kiyohara 		if (spipe == NULL) {
   2224  1.12  kiyohara 			t->flags &= ~F_AREADY;
   2225  1.12  kiyohara 			t->len[A] = -1;
   2226  1.12  kiyohara 		} else if (remaining_bustime >= spipe->bustime) {
   2227  1.12  kiyohara 			t->flags &= ~(F_AREADY|F_SOFCHECK1|F_SOFCHECK2);
   2228  1.12  kiyohara 			t->flags |= F_AINPROG;
   2229  1.12  kiyohara 			start_cc_time(&t_ab[A], spipe->tregs[LEN]);
   2230  1.12  kiyohara 			slhci_write(sc, SL11_E0CTRL, spipe->control);
   2231  1.12  kiyohara 			goto pend;
   2232  1.12  kiyohara 		}
   2233  1.12  kiyohara 	}
   2234  1.12  kiyohara 	if (t->flags & F_BREADY) {
   2235  1.12  kiyohara 		spipe = t->spipe[B];
   2236  1.12  kiyohara 		if (spipe == NULL) {
   2237  1.12  kiyohara 			t->flags &= ~F_BREADY;
   2238  1.12  kiyohara 			t->len[B] = -1;
   2239  1.12  kiyohara 		} else if (remaining_bustime >= spipe->bustime) {
   2240  1.12  kiyohara 			t->flags &= ~(F_BREADY|F_SOFCHECK1|F_SOFCHECK2);
   2241  1.12  kiyohara 			t->flags |= F_BINPROG;
   2242  1.12  kiyohara 			start_cc_time(&t_ab[B], spipe->tregs[LEN]);
   2243  1.12  kiyohara 			slhci_write(sc, SL11_E1CTRL, spipe->control);
   2244  1.12  kiyohara pend:
   2245  1.12  kiyohara 			t->pend = spipe->bustime;
   2246  1.12  kiyohara 		}
   2247  1.12  kiyohara 	}
   2248  1.12  kiyohara 	splx(s);
   2249  1.12  kiyohara }
   2250  1.12  kiyohara 
   2251  1.12  kiyohara static void
   2252  1.12  kiyohara slhci_dotransfer(struct slhci_softc *sc)
   2253  1.12  kiyohara {
   2254  1.12  kiyohara 	struct slhci_transfers *t;
   2255  1.12  kiyohara 	struct slhci_pipe *spipe;
   2256  1.12  kiyohara 	int ab, i;
   2257  1.12  kiyohara 
   2258  1.12  kiyohara 	t = &sc->sc_transfers;
   2259  1.12  kiyohara 
   2260  1.12  kiyohara 	SLHCI_LOCKASSERT(sc, locked, unlocked);
   2261  1.12  kiyohara 
   2262  1.12  kiyohara  	while ((t->len[A] == -1 || t->len[B] == -1) &&
   2263  1.12  kiyohara 	    (GOT_FIRST_TIMED_COND(spipe, t, spipe->frame <= t->frame) ||
   2264  1.12  kiyohara 	    GOT_FIRST_CB(spipe, t))) {
   2265  1.12  kiyohara 		LK_SLASSERT(spipe->xfer != NULL, sc, spipe, NULL, return);
   2266  1.12  kiyohara 		LK_SLASSERT(spipe->ptype != PT_ROOT_CTRL && spipe->ptype !=
   2267  1.12  kiyohara 		    PT_ROOT_INTR, sc, spipe, NULL, return);
   2268  1.12  kiyohara 
   2269  1.12  kiyohara 		/* Check that this transfer can fit in the remaining memory. */
   2270  1.12  kiyohara 		if (t->len[A] + t->len[B] + spipe->tregs[LEN] + 1 >
   2271  1.12  kiyohara 		    SL11_MAX_PACKET_SIZE) {
   2272  1.12  kiyohara 			DLOG(D_XFER, "Transfer does not fit. alen %d blen %d "
   2273  1.12  kiyohara 			    "len %d", t->len[A], t->len[B], spipe->tregs[LEN],
   2274  1.12  kiyohara 			    0);
   2275  1.12  kiyohara 			return;
   2276  1.12  kiyohara 		}
   2277  1.12  kiyohara 
   2278  1.12  kiyohara 		gcq_remove(&spipe->xq);
   2279  1.12  kiyohara 
   2280  1.12  kiyohara 		if (t->len[A] == -1) {
   2281  1.12  kiyohara 			ab = A;
   2282  1.12  kiyohara 			spipe->tregs[ADR] = SL11_BUFFER_START;
   2283  1.12  kiyohara 		} else {
   2284  1.12  kiyohara 			ab = B;
   2285  1.12  kiyohara 			spipe->tregs[ADR] = SL11_BUFFER_END -
   2286  1.12  kiyohara 			    spipe->tregs[LEN];
   2287  1.12  kiyohara 		}
   2288  1.12  kiyohara 
   2289  1.12  kiyohara 		t->len[ab] = spipe->tregs[LEN];
   2290  1.12  kiyohara 
   2291  1.12  kiyohara 		if (spipe->tregs[LEN] && (spipe->tregs[PID] & SL11_PID_BITS)
   2292  1.12  kiyohara 		    != SL11_PID_IN) {
   2293  1.12  kiyohara 			start_cc_time(&t_copy_to_dev,
   2294  1.12  kiyohara 			    spipe->tregs[LEN]);
   2295  1.12  kiyohara 			slhci_write_multi(sc, spipe->tregs[ADR],
   2296  1.12  kiyohara 			    spipe->buffer, spipe->tregs[LEN]);
   2297  1.12  kiyohara 			stop_cc_time(&t_copy_to_dev);
   2298  1.12  kiyohara 			t->pend -= SLHCI_FS_CONST +
   2299  1.12  kiyohara 			    SLHCI_FS_DATA_TIME(spipe->tregs[LEN]);
   2300  1.12  kiyohara 		}
   2301  1.12  kiyohara 
   2302  1.12  kiyohara 		DLOG(D_MSG, "NEW TRANSFER %s flags %#x alen %d blen %d",
   2303  1.12  kiyohara 		    ab ? "B" : "A", t->flags, t->len[0], t->len[1]);
   2304  1.12  kiyohara 
   2305  1.12  kiyohara 		if (spipe->tregs[LEN])
   2306  1.12  kiyohara 			i = 0;
   2307  1.12  kiyohara 		else
   2308  1.12  kiyohara 			i = 1;
   2309  1.12  kiyohara 
   2310  1.12  kiyohara 		for (; i <= 3; i++)
   2311  1.12  kiyohara 			if (t->current_tregs[ab][i] != spipe->tregs[i]) {
   2312  1.12  kiyohara 				t->current_tregs[ab][i] = spipe->tregs[i];
   2313  1.12  kiyohara 				slhci_write(sc, slhci_tregs[ab][i],
   2314  1.12  kiyohara 				    spipe->tregs[i]);
   2315  1.12  kiyohara 			}
   2316  1.12  kiyohara 
   2317  1.12  kiyohara 		DLOG(D_SXFER, "Transfer len %d pid %#x dev %d type %s",
   2318  1.12  kiyohara 		    spipe->tregs[LEN], spipe->tregs[PID], spipe->tregs[DEV],
   2319  1.12  kiyohara 	    	    pnames(spipe->ptype));
   2320  1.12  kiyohara 
   2321  1.12  kiyohara 		t->spipe[ab] = spipe;
   2322  1.12  kiyohara 		t->flags |= ab ? F_BREADY : F_AREADY;
   2323  1.12  kiyohara 
   2324  1.12  kiyohara 		slhci_tstart(sc);
   2325  1.12  kiyohara 	}
   2326  1.12  kiyohara }
   2327  1.12  kiyohara 
   2328  1.12  kiyohara /* slhci_callback is called after the lock is taken from splsoftusb.
   2329  1.12  kiyohara  * s is pointer to old spl (splsoftusb). */
   2330  1.12  kiyohara static void
   2331  1.12  kiyohara slhci_callback(struct slhci_softc *sc, int *s)
   2332  1.12  kiyohara {
   2333  1.12  kiyohara 	struct slhci_transfers *t;
   2334  1.12  kiyohara 	struct slhci_pipe *spipe;
   2335  1.12  kiyohara 	struct usbd_xfer *xfer;
   2336  1.12  kiyohara 
   2337  1.12  kiyohara 	t = &sc->sc_transfers;
   2338  1.12  kiyohara 
   2339  1.12  kiyohara 	SLHCI_LOCKASSERT(sc, locked, unlocked);
   2340  1.12  kiyohara 
   2341  1.12  kiyohara 	DLOG(D_SOFT, "CB flags %#x", t->flags, 0,0,0);
   2342  1.12  kiyohara 	for (;;) {
   2343  1.12  kiyohara 		if (__predict_false(t->flags & F_ROOTINTR)) {
   2344  1.12  kiyohara 			t->flags &= ~F_ROOTINTR;
   2345  1.12  kiyohara 			if (t->rootintr != NULL) {
   2346  1.12  kiyohara 				u_char *p;
   2347  1.12  kiyohara 
   2348  1.12  kiyohara 				p = KERNADDR(&t->rootintr->dmabuf, 0);
   2349  1.12  kiyohara 				p[0] = 2;
   2350  1.12  kiyohara 				t->rootintr->actlen = 1;
   2351  1.12  kiyohara 				t->rootintr->status = USBD_NORMAL_COMPLETION;
   2352  1.12  kiyohara 				xfer = t->rootintr;
   2353  1.12  kiyohara 				goto do_callback;
   2354  1.12  kiyohara 			}
   2355  1.12  kiyohara 		}
   2356  1.12  kiyohara 
   2357  1.12  kiyohara 
   2358  1.12  kiyohara 		if (!DEQUEUED_CALLBACK(spipe, t))
   2359  1.12  kiyohara 			return;
   2360  1.12  kiyohara 
   2361  1.12  kiyohara 		xfer = spipe->xfer;
   2362  1.12  kiyohara 		LK_SLASSERT(xfer != NULL, sc, spipe, NULL, return);
   2363  1.12  kiyohara 		spipe->xfer = NULL;
   2364  1.12  kiyohara 		DLOG(D_XFER, "xfer callback length %d actlen %d spipe %x "
   2365  1.12  kiyohara 		    "type %s", xfer->length, xfer->actlen, spipe,
   2366  1.12  kiyohara 		    pnames(spipe->ptype));
   2367  1.12  kiyohara do_callback:
   2368  1.12  kiyohara 		slhci_do_callback(sc, xfer, s);
   2369  1.12  kiyohara 	}
   2370  1.12  kiyohara }
   2371  1.12  kiyohara 
   2372  1.12  kiyohara static void
   2373  1.12  kiyohara slhci_enter_xfer(struct slhci_softc *sc, struct slhci_pipe *spipe)
   2374  1.12  kiyohara {
   2375  1.12  kiyohara 	struct slhci_transfers *t;
   2376  1.12  kiyohara 
   2377  1.12  kiyohara 	t = &sc->sc_transfers;
   2378  1.12  kiyohara 
   2379  1.12  kiyohara 	SLHCI_MAINLOCKASSERT(sc);
   2380  1.12  kiyohara 
   2381  1.12  kiyohara 	if (__predict_false(t->flags & F_DISABLED) ||
   2382  1.12  kiyohara 	    __predict_false(spipe->pflags & PF_GONE)) {
   2383  1.12  kiyohara 		DLOG(D_MSG, "slhci_enter_xfer: DISABLED or GONE", 0,0,0,0);
   2384  1.12  kiyohara 		spipe->xfer->status = USBD_CANCELLED;
   2385  1.12  kiyohara 	}
   2386  1.12  kiyohara 
   2387  1.12  kiyohara 	if (spipe->xfer->status == USBD_IN_PROGRESS) {
   2388  1.12  kiyohara 		if (spipe->xfer->timeout) {
   2389  1.12  kiyohara 			spipe->to_frame = t->frame + spipe->xfer->timeout;
   2390  1.12  kiyohara 			slhci_xfer_timer(sc, spipe);
   2391  1.12  kiyohara 		}
   2392  1.12  kiyohara 		if (spipe->pipe.interval)
   2393  1.12  kiyohara 			slhci_queue_timed(sc, spipe);
   2394  1.12  kiyohara 		else
   2395  1.12  kiyohara 			enter_q(t, spipe, Q_CB);
   2396  1.12  kiyohara 	} else
   2397  1.12  kiyohara 		enter_callback(t, spipe);
   2398  1.12  kiyohara }
   2399  1.12  kiyohara 
   2400  1.12  kiyohara #ifdef SLHCI_WAITLOCK
   2401  1.12  kiyohara static void
   2402  1.12  kiyohara slhci_enter_xfers(struct slhci_softc *sc)
   2403  1.12  kiyohara {
   2404  1.12  kiyohara 	struct slhci_pipe *spipe;
   2405  1.12  kiyohara 
   2406  1.12  kiyohara 	SLHCI_LOCKASSERT(sc, locked, locked);
   2407  1.12  kiyohara 
   2408  1.12  kiyohara 	while (DEQUEUED_WAITQ(spipe, sc))
   2409  1.12  kiyohara 		slhci_enter_xfer(sc, spipe);
   2410  1.12  kiyohara }
   2411  1.12  kiyohara #endif
   2412  1.12  kiyohara 
   2413  1.12  kiyohara static void
   2414  1.12  kiyohara slhci_queue_timed(struct slhci_softc *sc, struct slhci_pipe *spipe)
   2415  1.12  kiyohara {
   2416  1.12  kiyohara 	struct slhci_transfers *t;
   2417  1.12  kiyohara 	struct gcq *q;
   2418  1.12  kiyohara 	struct slhci_pipe *spp;
   2419  1.12  kiyohara 
   2420  1.12  kiyohara 	t = &sc->sc_transfers;
   2421  1.12  kiyohara 
   2422  1.12  kiyohara 	SLHCI_MAINLOCKASSERT(sc);
   2423  1.12  kiyohara 
   2424  1.12  kiyohara 	FIND_TIMED(q, t, spp, spp->frame > spipe->frame);
   2425  1.12  kiyohara 	gcq_insert_before(q, &spipe->xq);
   2426  1.12  kiyohara }
   2427  1.12  kiyohara 
   2428  1.12  kiyohara static void
   2429  1.12  kiyohara slhci_xfer_timer(struct slhci_softc *sc, struct slhci_pipe *spipe)
   2430  1.12  kiyohara {
   2431  1.12  kiyohara 	struct slhci_transfers *t;
   2432  1.12  kiyohara 	struct gcq *q;
   2433  1.12  kiyohara 	struct slhci_pipe *spp;
   2434  1.12  kiyohara 
   2435  1.12  kiyohara 	t = &sc->sc_transfers;
   2436  1.12  kiyohara 
   2437  1.12  kiyohara 	SLHCI_MAINLOCKASSERT(sc);
   2438  1.12  kiyohara 
   2439  1.12  kiyohara 	FIND_TO(q, t, spp, spp->to_frame >= spipe->to_frame);
   2440  1.12  kiyohara 	gcq_insert_before(q, &spipe->to);
   2441  1.12  kiyohara }
   2442  1.12  kiyohara 
   2443  1.12  kiyohara static void
   2444  1.12  kiyohara slhci_do_repeat(struct slhci_softc *sc, struct usbd_xfer *xfer)
   2445  1.12  kiyohara {
   2446  1.12  kiyohara 	struct slhci_transfers *t;
   2447  1.12  kiyohara 	struct slhci_pipe *spipe;
   2448  1.12  kiyohara 
   2449  1.12  kiyohara 	t = &sc->sc_transfers;
   2450  1.12  kiyohara 	spipe = (struct slhci_pipe *)xfer->pipe;
   2451  1.12  kiyohara 
   2452  1.12  kiyohara 	if (xfer == t->rootintr)
   2453  1.12  kiyohara 		return;
   2454  1.12  kiyohara 
   2455  1.12  kiyohara 	DLOG(D_TRACE, "REPEAT: xfer %p actlen %d frame %u now %u",
   2456  1.12  kiyohara 	    xfer, xfer->actlen, spipe->frame, sc->sc_transfers.frame);
   2457  1.12  kiyohara 
   2458  1.12  kiyohara 	xfer->actlen = 0;
   2459  1.12  kiyohara 	spipe->xfer = xfer;
   2460  1.12  kiyohara 	if (spipe->tregs[LEN])
   2461  1.12  kiyohara 		KASSERT(spipe->buffer == KERNADDR(&xfer->dmabuf, 0));
   2462  1.12  kiyohara 	slhci_queue_timed(sc, spipe);
   2463  1.12  kiyohara 	slhci_dotransfer(sc);
   2464  1.12  kiyohara }
   2465  1.12  kiyohara 
   2466  1.12  kiyohara static void
   2467  1.12  kiyohara slhci_callback_schedule(struct slhci_softc *sc)
   2468  1.12  kiyohara {
   2469  1.12  kiyohara 	struct slhci_transfers *t;
   2470  1.12  kiyohara 
   2471  1.12  kiyohara 	t = &sc->sc_transfers;
   2472  1.12  kiyohara 
   2473  1.12  kiyohara 	SLHCI_LOCKASSERT(sc, locked, unlocked);
   2474  1.12  kiyohara 
   2475  1.12  kiyohara 	if (t->flags & F_ACTIVE)
   2476  1.12  kiyohara 		slhci_do_callback_schedule(sc);
   2477  1.12  kiyohara }
   2478  1.12  kiyohara 
   2479  1.12  kiyohara static void
   2480  1.12  kiyohara slhci_do_callback_schedule(struct slhci_softc *sc)
   2481  1.12  kiyohara {
   2482  1.12  kiyohara 	struct slhci_transfers *t;
   2483  1.12  kiyohara 
   2484  1.12  kiyohara 	t = &sc->sc_transfers;
   2485  1.12  kiyohara 
   2486  1.12  kiyohara 	SLHCI_LOCKASSERT(sc, locked, unlocked);
   2487  1.12  kiyohara 
   2488  1.12  kiyohara 	if (!(t->flags & F_CALLBACK)) {
   2489  1.12  kiyohara 		t->flags |= F_CALLBACK;
   2490  1.16        ad 		softint_schedule(sc->sc_cb_softintr);
   2491  1.12  kiyohara 	}
   2492  1.12  kiyohara }
   2493  1.12  kiyohara 
   2494  1.12  kiyohara #if 0
   2495  1.12  kiyohara /* must be called with lock taken from splsoftusb */
   2496  1.12  kiyohara /* XXX static */ void
   2497  1.12  kiyohara slhci_pollxfer(struct slhci_softc *sc, struct usbd_xfer *xfer, int *s)
   2498  1.12  kiyohara {
   2499  1.12  kiyohara 	SLHCI_LOCKASSERT(sc, locked, unlocked);
   2500  1.12  kiyohara 	slhci_dotransfer(sc);
   2501  1.12  kiyohara 	do {
   2502  1.12  kiyohara 		slhci_dointr(sc);
   2503  1.12  kiyohara 	} while (xfer->status == USBD_IN_PROGRESS);
   2504  1.12  kiyohara 	slhci_do_callback(sc, xfer, s);
   2505  1.12  kiyohara }
   2506  1.12  kiyohara #endif
   2507  1.12  kiyohara 
   2508  1.12  kiyohara static usbd_status
   2509  1.12  kiyohara slhci_do_poll(struct slhci_softc *sc, struct slhci_pipe *spipe, struct
   2510  1.12  kiyohara     usbd_xfer *xfer)
   2511  1.12  kiyohara {
   2512  1.12  kiyohara 	slhci_waitintr(sc, 0);
   2513  1.12  kiyohara 
   2514  1.12  kiyohara 	return USBD_NORMAL_COMPLETION;
   2515  1.12  kiyohara }
   2516  1.12  kiyohara 
   2517  1.12  kiyohara static usbd_status
   2518  1.12  kiyohara slhci_lsvh_warn(struct slhci_softc *sc, struct slhci_pipe *spipe, struct
   2519  1.12  kiyohara     usbd_xfer *xfer)
   2520  1.12  kiyohara {
   2521  1.12  kiyohara 	struct slhci_transfers *t;
   2522  1.12  kiyohara 
   2523  1.12  kiyohara 	t = &sc->sc_transfers;
   2524  1.12  kiyohara 
   2525  1.12  kiyohara 	if (!(t->flags & F_LSVH_WARNED)) {
   2526  1.12  kiyohara 		printf("%s: Low speed device via hub disabled, "
   2527  1.12  kiyohara 		    "see slhci(4)\n", SC_NAME(sc));
   2528  1.12  kiyohara 		DDOLOG("%s: Low speed device via hub disabled, "
   2529  1.12  kiyohara 		    "see slhci(4)\n", SC_NAME(sc), 0,0,0);
   2530  1.12  kiyohara 		t->flags |= F_LSVH_WARNED;
   2531  1.12  kiyohara 	}
   2532  1.12  kiyohara 	return USBD_INVAL;
   2533  1.12  kiyohara }
   2534  1.12  kiyohara 
   2535  1.12  kiyohara static usbd_status
   2536  1.12  kiyohara slhci_isoc_warn(struct slhci_softc *sc, struct slhci_pipe *spipe, struct
   2537  1.12  kiyohara     usbd_xfer *xfer)
   2538  1.12  kiyohara {
   2539  1.12  kiyohara 	struct slhci_transfers *t;
   2540  1.12  kiyohara 
   2541  1.12  kiyohara 	t = &sc->sc_transfers;
   2542  1.12  kiyohara 
   2543  1.12  kiyohara 	if (!(t->flags & F_ISOC_WARNED)) {
   2544  1.12  kiyohara 		printf("%s: ISOC transfer not supported "
   2545  1.12  kiyohara 		    "(see slhci(4))\n", SC_NAME(sc));
   2546  1.12  kiyohara 		DDOLOG("%s: ISOC transfer not supported "
   2547  1.12  kiyohara 		    "(see slhci(4))\n", SC_NAME(sc), 0,0,0);
   2548  1.12  kiyohara 		t->flags |= F_ISOC_WARNED;
   2549  1.12  kiyohara 	}
   2550  1.12  kiyohara 	return USBD_INVAL;
   2551  1.12  kiyohara }
   2552  1.12  kiyohara 
   2553  1.12  kiyohara static usbd_status
   2554  1.12  kiyohara slhci_open_pipe(struct slhci_softc *sc, struct slhci_pipe *spipe, struct
   2555  1.12  kiyohara     usbd_xfer *xfer)
   2556  1.12  kiyohara {
   2557  1.12  kiyohara 	struct slhci_transfers *t;
   2558  1.12  kiyohara 	struct usbd_pipe *pipe;
   2559  1.12  kiyohara 
   2560  1.12  kiyohara 	t = &sc->sc_transfers;
   2561  1.12  kiyohara 	pipe = &spipe->pipe;
   2562  1.12  kiyohara 
   2563  1.12  kiyohara 	if (t->flags & F_DISABLED)
   2564  1.12  kiyohara 		return USBD_CANCELLED;
   2565  1.12  kiyohara 	else if (pipe->interval && !slhci_reserve_bustime(sc, spipe, 1))
   2566  1.12  kiyohara 		return USBD_PENDING_REQUESTS;
   2567  1.12  kiyohara 	else {
   2568  1.12  kiyohara 		enter_all_pipes(t, spipe);
   2569  1.12  kiyohara 		return USBD_NORMAL_COMPLETION;
   2570  1.12  kiyohara 	}
   2571  1.12  kiyohara }
   2572  1.12  kiyohara 
   2573  1.12  kiyohara static usbd_status
   2574  1.12  kiyohara slhci_close_pipe(struct slhci_softc *sc, struct slhci_pipe *spipe, struct
   2575  1.12  kiyohara     usbd_xfer *xfer)
   2576  1.12  kiyohara {
   2577  1.12  kiyohara 	struct slhci_transfers *t;
   2578  1.12  kiyohara 	struct usbd_pipe *pipe;
   2579  1.12  kiyohara 
   2580  1.12  kiyohara 	t = &sc->sc_transfers;
   2581  1.12  kiyohara 	pipe = &spipe->pipe;
   2582  1.12  kiyohara 
   2583  1.12  kiyohara 	if (pipe->interval && spipe->ptype != PT_ROOT_INTR)
   2584  1.12  kiyohara 		slhci_reserve_bustime(sc, spipe, 0);
   2585  1.12  kiyohara 	gcq_remove(&spipe->ap);
   2586  1.12  kiyohara 	return USBD_NORMAL_COMPLETION;
   2587  1.12  kiyohara }
   2588  1.12  kiyohara 
   2589  1.12  kiyohara static usbd_status
   2590  1.12  kiyohara slhci_do_abort(struct slhci_softc *sc, struct slhci_pipe *spipe, struct
   2591  1.12  kiyohara     usbd_xfer *xfer)
   2592  1.12  kiyohara {
   2593  1.12  kiyohara 	struct slhci_transfers *t;
   2594  1.12  kiyohara 
   2595  1.12  kiyohara 	t = &sc->sc_transfers;
   2596  1.12  kiyohara 
   2597  1.12  kiyohara 	SLHCI_MAINLOCKASSERT(sc);
   2598  1.12  kiyohara 
   2599  1.12  kiyohara 	if (spipe->xfer == xfer) {
   2600  1.12  kiyohara 		if (spipe->ptype == PT_ROOT_INTR) {
   2601  1.12  kiyohara 			if (t->rootintr == spipe->xfer) /* XXX assert? */
   2602  1.12  kiyohara 				t->rootintr = NULL;
   2603  1.12  kiyohara 		} else {
   2604  1.12  kiyohara 			gcq_remove(&spipe->to);
   2605  1.12  kiyohara 			gcq_remove(&spipe->xq);
   2606  1.12  kiyohara 
   2607  1.12  kiyohara 			if (t->spipe[A] == spipe) {
   2608  1.12  kiyohara 				t->spipe[A] = NULL;
   2609  1.12  kiyohara 				if (!(t->flags & F_AINPROG))
   2610  1.12  kiyohara 					t->len[A] = -1;
   2611  1.12  kiyohara 			} else if (t->spipe[B] == spipe) {
   2612  1.12  kiyohara 					t->spipe[B] = NULL;
   2613  1.12  kiyohara 				if (!(t->flags & F_BINPROG))
   2614  1.12  kiyohara 					t->len[B] = -1;
   2615  1.12  kiyohara 			}
   2616  1.12  kiyohara 		}
   2617  1.12  kiyohara 
   2618  1.12  kiyohara 		if (xfer->status != USBD_TIMEOUT) {
   2619  1.12  kiyohara 			spipe->xfer = NULL;
   2620  1.12  kiyohara 			spipe->pipe.repeat = 0; /* XXX timeout? */
   2621  1.12  kiyohara 		}
   2622  1.12  kiyohara 	}
   2623  1.12  kiyohara 
   2624  1.12  kiyohara 	return USBD_NORMAL_COMPLETION;
   2625  1.12  kiyohara }
   2626  1.12  kiyohara 
   2627  1.12  kiyohara static usbd_status
   2628  1.12  kiyohara slhci_do_attach(struct slhci_softc *sc, struct slhci_pipe *spipe, struct
   2629  1.12  kiyohara     usbd_xfer *xfer)
   2630  1.12  kiyohara {
   2631  1.12  kiyohara 	struct slhci_transfers *t;
   2632  1.12  kiyohara 	const char *rev;
   2633  1.12  kiyohara 
   2634  1.12  kiyohara 	t = &sc->sc_transfers;
   2635  1.12  kiyohara 
   2636  1.12  kiyohara 	SLHCI_LOCKASSERT(sc, locked, unlocked);
   2637  1.12  kiyohara 
   2638  1.12  kiyohara 	/* Detect and check the controller type */
   2639  1.12  kiyohara 	t->sltype = SL11_GET_REV(slhci_read(sc, SL11_REV));
   2640  1.12  kiyohara 
   2641  1.12  kiyohara 	/* SL11H not supported */
   2642  1.12  kiyohara 	if (!slhci_supported_rev(t->sltype)) {
   2643  1.12  kiyohara 		if (t->sltype == SLTYPE_SL11H)
   2644  1.12  kiyohara 			printf("%s: SL11H unsupported or bus error!\n",
   2645  1.12  kiyohara 			    SC_NAME(sc));
   2646  1.12  kiyohara 		else
   2647  1.12  kiyohara 			printf("%s: Unknown chip revision!\n", SC_NAME(sc));
   2648  1.12  kiyohara 		return USBD_INVAL;
   2649  1.12  kiyohara 	}
   2650  1.12  kiyohara 
   2651  1.13  kiyohara 	callout_init(&sc->sc_timer, CALLOUT_MPSAFE);
   2652  1.12  kiyohara 	callout_setfunc(&sc->sc_timer, slhci_reset_entry, sc);
   2653  1.12  kiyohara 
   2654  1.12  kiyohara 	/* It is not safe to call the soft interrupt directly as
   2655  1.12  kiyohara 	 * usb_schedsoftintr does in the use_polling case (due to locking).
   2656  1.12  kiyohara 	 */
   2657  1.16        ad 	sc->sc_cb_softintr = softint_establish(SOFTINT_NET,
   2658  1.12  kiyohara 	    slhci_callback_entry, sc);
   2659  1.12  kiyohara 
   2660  1.12  kiyohara #ifdef SLHCI_DEBUG
   2661  1.12  kiyohara 	ssc = sc;
   2662  1.12  kiyohara #ifdef USB_DEBUG
   2663  1.12  kiyohara 	if (slhci_usbdebug >= 0)
   2664  1.12  kiyohara 		usbdebug = slhci_usbdebug;
   2665  1.12  kiyohara #endif
   2666  1.14  kiyohara #endif
   2667  1.12  kiyohara 
   2668  1.12  kiyohara 	if (t->sltype == SLTYPE_SL811HS_R12)
   2669  1.12  kiyohara 		rev = " (rev 1.2)";
   2670  1.12  kiyohara 	else if (t->sltype == SLTYPE_SL811HS_R14)
   2671  1.12  kiyohara 		rev = " (rev 1.4 or 1.5)";
   2672  1.12  kiyohara 	else
   2673  1.12  kiyohara 		rev = " (unknown revision)";
   2674  1.12  kiyohara 
   2675  1.12  kiyohara 	aprint_normal("%s: ScanLogic SL811HS/T USB Host Controller %s\n",
   2676  1.12  kiyohara 	    SC_NAME(sc), rev);
   2677  1.12  kiyohara 
   2678  1.12  kiyohara 	aprint_normal("%s: Max Current %u mA (value by code, not by probe)\n",
   2679  1.12  kiyohara 	    SC_NAME(sc), t->max_current * 2);
   2680  1.12  kiyohara 
   2681  1.12  kiyohara #if defined(SLHCI_DEBUG) || defined(SLHCI_NO_OVERTIME) || \
   2682  1.12  kiyohara     defined(SLHCI_TRY_LSVH) || defined(SLHCI_PROFILE_TRANSFER)
   2683  1.12  kiyohara 	aprint_normal("%s: driver options:"
   2684  1.12  kiyohara #ifdef SLHCI_DEBUG
   2685  1.12  kiyohara 	" SLHCI_DEBUG"
   2686  1.12  kiyohara #endif
   2687  1.12  kiyohara #ifdef SLHCI_TRY_LSVH
   2688  1.12  kiyohara 	" SLHCI_TRY_LSVH"
   2689  1.12  kiyohara #endif
   2690  1.12  kiyohara #ifdef SLHCI_NO_OVERTIME
   2691  1.12  kiyohara 	" SLHCI_NO_OVERTIME"
   2692  1.12  kiyohara #endif
   2693  1.12  kiyohara #ifdef SLHCI_PROFILE_TRANSFER
   2694  1.12  kiyohara 	" SLHCI_PROFILE_TRANSFER"
   2695  1.12  kiyohara #endif
   2696  1.12  kiyohara 	"\n", SC_NAME(sc));
   2697  1.12  kiyohara #endif
   2698  1.12  kiyohara 	sc->sc_bus.usbrev = USBREV_1_1;
   2699  1.12  kiyohara 	sc->sc_bus.methods = __UNCONST(&slhci_bus_methods);
   2700  1.12  kiyohara 	sc->sc_bus.pipe_size = sizeof(struct slhci_pipe);
   2701  1.12  kiyohara 
   2702  1.12  kiyohara 	if (!sc->sc_enable_power)
   2703  1.12  kiyohara 		t->flags |= F_REALPOWER;
   2704  1.12  kiyohara 
   2705  1.12  kiyohara 	t->flags |= F_ACTIVE;
   2706  1.12  kiyohara 
   2707  1.12  kiyohara 	return USBD_NORMAL_COMPLETION;
   2708  1.12  kiyohara }
   2709  1.12  kiyohara 
   2710  1.12  kiyohara /* Called to deactivate or stop use of the controller instead of panicing.
   2711  1.12  kiyohara  * Will cancel the xfer correctly even when not on a list.
   2712  1.12  kiyohara  */
   2713  1.12  kiyohara static usbd_status
   2714  1.12  kiyohara slhci_halt(struct slhci_softc *sc, struct slhci_pipe *spipe, struct usbd_xfer
   2715  1.12  kiyohara     *xfer)
   2716  1.12  kiyohara {
   2717  1.12  kiyohara 	struct slhci_transfers *t;
   2718  1.12  kiyohara 
   2719  1.12  kiyohara 	SLHCI_LOCKASSERT(sc, locked, unlocked);
   2720  1.12  kiyohara 
   2721  1.12  kiyohara 	t = &sc->sc_transfers;
   2722  1.12  kiyohara 
   2723  1.12  kiyohara 	DDOLOG("Halt! sc %p spipe %p xfer %p", sc, spipe, xfer, 0);
   2724  1.12  kiyohara 
   2725  1.12  kiyohara 	if (spipe != NULL)
   2726  1.12  kiyohara 		slhci_log_spipe(spipe);
   2727  1.12  kiyohara 
   2728  1.12  kiyohara 	if (xfer != NULL)
   2729  1.12  kiyohara 		slhci_log_xfer(xfer);
   2730  1.12  kiyohara 
   2731  1.12  kiyohara 	if (spipe != NULL && xfer != NULL && spipe->xfer == xfer &&
   2732  1.12  kiyohara 	    !gcq_onlist(&spipe->xq) && t->spipe[A] != spipe && t->spipe[B] !=
   2733  1.12  kiyohara 	    spipe) {
   2734  1.12  kiyohara 		xfer->status = USBD_CANCELLED;
   2735  1.12  kiyohara 		enter_callback(t, spipe);
   2736  1.12  kiyohara 	}
   2737  1.12  kiyohara 
   2738  1.12  kiyohara 	if (t->flags & F_ACTIVE) {
   2739  1.12  kiyohara 		slhci_intrchange(sc, 0);
   2740  1.12  kiyohara 		/* leave power on when halting in case flash devices or disks
   2741  1.12  kiyohara 		 * are attached, which may be writing and could be damaged
   2742  1.12  kiyohara 		 * by abrupt power loss.  The root hub clear power feature
   2743  1.12  kiyohara 		 * should still work after halting.
   2744  1.12  kiyohara 		 */
   2745  1.12  kiyohara 	}
   2746  1.12  kiyohara 
   2747  1.12  kiyohara 	t->flags &= ~F_ACTIVE;
   2748  1.12  kiyohara 	t->flags |= F_UDISABLED;
   2749  1.12  kiyohara 	if (!(t->flags & F_NODEV))
   2750  1.12  kiyohara 		t->flags |= F_NODEV|F_CCONNECT|F_ROOTINTR;
   2751  1.12  kiyohara 	slhci_drain(sc);
   2752   1.1     isaki 
   2753  1.12  kiyohara 	/* One last callback for the drain and device removal. */
   2754  1.12  kiyohara 	slhci_do_callback_schedule(sc);
   2755   1.1     isaki 
   2756  1.12  kiyohara 	return USBD_NORMAL_COMPLETION;
   2757   1.1     isaki }
   2758   1.1     isaki 
   2759  1.12  kiyohara /* There are three interrupt states: no interrupts during reset and after
   2760  1.12  kiyohara  * device deactivation, INSERT only for no device present but power on, and
   2761  1.12  kiyohara  * SOF, INSERT, ADONE, and BDONE when device is present.
   2762  1.12  kiyohara  */
   2763   1.1     isaki static void
   2764  1.12  kiyohara slhci_intrchange(struct slhci_softc *sc, uint8_t new_ier)
   2765   1.1     isaki {
   2766  1.12  kiyohara 	SLHCI_MAINLOCKASSERT(sc);
   2767  1.12  kiyohara 	if (sc->sc_ier != new_ier) {
   2768  1.12  kiyohara 		sc->sc_ier = new_ier;
   2769  1.12  kiyohara 		slhci_write(sc, SL11_IER, new_ier);
   2770  1.12  kiyohara 		BSB_SYNC(sc->iot, sc->ioh, sc->pst, sc->psz);
   2771  1.12  kiyohara 	}
   2772   1.1     isaki }
   2773   1.1     isaki 
   2774  1.12  kiyohara /* Drain: cancel all pending transfers and put them on the callback list and
   2775  1.12  kiyohara  * set the UDISABLED flag.  UDISABLED is cleared only by reset. */
   2776  1.12  kiyohara static void
   2777  1.12  kiyohara slhci_drain(struct slhci_softc *sc)
   2778   1.1     isaki {
   2779  1.12  kiyohara 	struct slhci_transfers *t;
   2780  1.12  kiyohara 	struct slhci_pipe *spipe;
   2781  1.12  kiyohara 	struct gcq *q;
   2782  1.12  kiyohara 	int i;
   2783   1.1     isaki 
   2784  1.12  kiyohara  	SLHCI_LOCKASSERT(sc, locked, unlocked);
   2785   1.1     isaki 
   2786  1.12  kiyohara 	t = &sc->sc_transfers;
   2787   1.1     isaki 
   2788  1.12  kiyohara 	DLOG(D_MSG, "DRAIN flags %#x", t->flags, 0,0,0);
   2789   1.1     isaki 
   2790  1.12  kiyohara 	t->pend = INT_MAX;
   2791   1.1     isaki 
   2792  1.12  kiyohara 	for (i=0; i<=1; i++) {
   2793  1.12  kiyohara 		t->len[i] = -1;
   2794  1.12  kiyohara 		if (t->spipe[i] != NULL) {
   2795  1.12  kiyohara 			enter_callback(t, t->spipe[i]);
   2796  1.12  kiyohara 			t->spipe[i] = NULL;
   2797  1.12  kiyohara 		}
   2798   1.1     isaki 	}
   2799   1.1     isaki 
   2800  1.12  kiyohara 	/* Merge the queues into the callback queue. */
   2801  1.12  kiyohara 	gcq_merge_tail(&t->q[Q_CALLBACKS], &t->q[Q_CB]);
   2802  1.12  kiyohara 	gcq_merge_tail(&t->q[Q_CALLBACKS], &t->q[Q_NEXT_CB]);
   2803  1.12  kiyohara 	gcq_merge_tail(&t->q[Q_CALLBACKS], &t->timed);
   2804   1.1     isaki 
   2805  1.12  kiyohara 	/* Cancel all pipes.  Note that not all of these may be on the
   2806  1.12  kiyohara 	 * callback queue yet; some could be in slhci_start, for example. */
   2807  1.12  kiyohara 	FOREACH_AP(q, t, spipe) {
   2808  1.12  kiyohara 		spipe->pflags = PF_GONE;
   2809  1.12  kiyohara 		spipe->pipe.repeat = 0;
   2810  1.12  kiyohara 		spipe->pipe.aborting = 1;
   2811  1.12  kiyohara 		if (spipe->xfer != NULL)
   2812  1.12  kiyohara 			spipe->xfer->status = USBD_CANCELLED;
   2813   1.1     isaki 	}
   2814   1.1     isaki 
   2815  1.12  kiyohara 	gcq_remove_all(&t->to);
   2816   1.1     isaki 
   2817  1.12  kiyohara 	t->flags |= F_UDISABLED;
   2818  1.12  kiyohara 	t->flags &= ~(F_AREADY|F_BREADY|F_AINPROG|F_BINPROG|F_LOWSPEED);
   2819   1.1     isaki }
   2820   1.1     isaki 
   2821  1.12  kiyohara /* RESET: SL11_CTRL_RESETENGINE=1 and SL11_CTRL_JKSTATE=0 for 50ms
   2822  1.12  kiyohara  * reconfigure SOF after reset, must wait 2.5us before USB bus activity (SOF)
   2823  1.12  kiyohara  * check attached device speed.
   2824  1.12  kiyohara  * must wait 100ms before USB transaction according to app note, 10ms
   2825  1.12  kiyohara  * by spec.  uhub does this delay
   2826  1.12  kiyohara  *
   2827  1.12  kiyohara  * Started from root hub set feature reset, which does step one.
   2828  1.12  kiyohara  * use_polling will call slhci_reset directly, otherwise the callout goes
   2829  1.12  kiyohara  * through slhci_reset_entry.
   2830  1.12  kiyohara  */
   2831  1.12  kiyohara void
   2832  1.12  kiyohara slhci_reset(struct slhci_softc *sc)
   2833   1.1     isaki {
   2834  1.12  kiyohara 	struct slhci_transfers *t;
   2835  1.12  kiyohara 	uint8_t r, pol, ctrl;
   2836   1.1     isaki 
   2837  1.12  kiyohara 	t = &sc->sc_transfers;
   2838  1.12  kiyohara 	SLHCI_MAINLOCKASSERT(sc);
   2839   1.1     isaki 
   2840  1.12  kiyohara 	stop_cc_time(&t_delay);
   2841   1.1     isaki 
   2842  1.12  kiyohara 	KASSERT(t->flags & F_ACTIVE);
   2843   1.1     isaki 
   2844  1.12  kiyohara 	start_cc_time(&t_delay, 0);
   2845  1.12  kiyohara 	stop_cc_time(&t_delay);
   2846   1.1     isaki 
   2847  1.12  kiyohara 	slhci_write(sc, SL11_CTRL, 0);
   2848  1.12  kiyohara 	start_cc_time(&t_delay, 3);
   2849  1.12  kiyohara 	DELAY(3);
   2850  1.12  kiyohara 	stop_cc_time(&t_delay);
   2851  1.12  kiyohara 	slhci_write(sc, SL11_ISR, 0xff);
   2852   1.1     isaki 
   2853  1.12  kiyohara 	r = slhci_read(sc, SL11_ISR);
   2854   1.1     isaki 
   2855  1.12  kiyohara 	if (r & SL11_ISR_INSERT)
   2856  1.12  kiyohara 		slhci_write(sc, SL11_ISR, SL11_ISR_INSERT);
   2857   1.1     isaki 
   2858  1.12  kiyohara 	if (r & SL11_ISR_NODEV) {
   2859  1.12  kiyohara 		DLOG(D_MSG, "NC", 0,0,0,0);
   2860  1.12  kiyohara 		/* Normally, the hard interrupt insert routine will issue
   2861  1.12  kiyohara 		 * CCONNECT, however we need to do it here if the detach
   2862  1.12  kiyohara 		 * happened during reset. */
   2863  1.12  kiyohara 		if (!(t->flags & F_NODEV))
   2864  1.12  kiyohara 			t->flags |= F_CCONNECT|F_ROOTINTR|F_NODEV;
   2865  1.12  kiyohara 		slhci_intrchange(sc, SL11_IER_INSERT);
   2866  1.12  kiyohara 	} else {
   2867  1.12  kiyohara 		if (t->flags & F_NODEV)
   2868  1.12  kiyohara 			t->flags |= F_CCONNECT;
   2869  1.12  kiyohara 		t->flags &= ~(F_NODEV|F_LOWSPEED);
   2870  1.12  kiyohara 		if (r & SL11_ISR_DATA) {
   2871  1.12  kiyohara 			DLOG(D_MSG, "FS", 0,0,0,0);
   2872  1.12  kiyohara 			pol = ctrl = 0;
   2873  1.12  kiyohara 		} else {
   2874  1.12  kiyohara 			DLOG(D_MSG, "LS", 0,0,0,0);
   2875  1.12  kiyohara 			pol  = SL811_CSOF_POLARITY;
   2876  1.12  kiyohara 			ctrl = SL11_CTRL_LOWSPEED;
   2877  1.12  kiyohara 			t->flags |= F_LOWSPEED;
   2878  1.12  kiyohara 		}
   2879   1.1     isaki 
   2880  1.12  kiyohara 		/* Enable SOF auto-generation */
   2881  1.12  kiyohara 		t->frame = 0;	/* write to SL811_CSOF will reset frame */
   2882  1.12  kiyohara 		slhci_write(sc, SL11_SOFTIME, 0xe0);
   2883  1.12  kiyohara 		slhci_write(sc, SL811_CSOF, pol|SL811_CSOF_MASTER|0x2e);
   2884  1.12  kiyohara 		slhci_write(sc, SL11_CTRL, ctrl|SL11_CTRL_ENABLESOF);
   2885  1.12  kiyohara 
   2886  1.12  kiyohara 		/* According to the app note, ARM must be set
   2887  1.12  kiyohara 		 * for SOF generation to work.  We initialize all
   2888  1.12  kiyohara 		 * USBA registers here for current_tregs. */
   2889  1.12  kiyohara 		slhci_write(sc, SL11_E0ADDR, SL11_BUFFER_START);
   2890  1.12  kiyohara 		slhci_write(sc, SL11_E0LEN, 0);
   2891  1.12  kiyohara 		slhci_write(sc, SL11_E0PID, SL11_PID_SOF);
   2892  1.12  kiyohara 		slhci_write(sc, SL11_E0DEV, 0);
   2893  1.12  kiyohara 		slhci_write(sc, SL11_E0CTRL, SL11_EPCTRL_ARM);
   2894  1.12  kiyohara 
   2895  1.12  kiyohara 		/* Initialize B registers.  This can't be done earlier since
   2896  1.12  kiyohara 		 * they are not valid until the SL811_CSOF register is written
   2897  1.12  kiyohara 		 * above due to SL11H compatability. */
   2898  1.12  kiyohara 		slhci_write(sc, SL11_E1ADDR, SL11_BUFFER_END - 8);
   2899  1.12  kiyohara 		slhci_write(sc, SL11_E1LEN, 0);
   2900  1.12  kiyohara 		slhci_write(sc, SL11_E1PID, 0);
   2901  1.12  kiyohara 		slhci_write(sc, SL11_E1DEV, 0);
   2902  1.12  kiyohara 
   2903  1.12  kiyohara 		t->current_tregs[0][ADR] = SL11_BUFFER_START;
   2904  1.12  kiyohara 		t->current_tregs[0][LEN] = 0;
   2905  1.12  kiyohara 		t->current_tregs[0][PID] = SL11_PID_SOF;
   2906  1.12  kiyohara 		t->current_tregs[0][DEV] = 0;
   2907  1.12  kiyohara 		t->current_tregs[1][ADR] = SL11_BUFFER_END - 8;
   2908  1.12  kiyohara 		t->current_tregs[1][LEN] = 0;
   2909  1.12  kiyohara 		t->current_tregs[1][PID] = 0;
   2910  1.12  kiyohara 		t->current_tregs[1][DEV] = 0;
   2911  1.12  kiyohara 
   2912  1.12  kiyohara 		/* SOF start will produce USBA interrupt */
   2913  1.12  kiyohara 		t->len[A] = 0;
   2914  1.12  kiyohara 		t->flags |= F_AINPROG;
   2915  1.12  kiyohara 
   2916  1.12  kiyohara 		slhci_intrchange(sc, SLHCI_NORMAL_INTERRUPTS);
   2917  1.12  kiyohara 	}
   2918  1.12  kiyohara 
   2919  1.12  kiyohara 	t->flags &= ~(F_UDISABLED|F_RESET);
   2920  1.12  kiyohara 	t->flags |= F_CRESET|F_ROOTINTR;
   2921  1.12  kiyohara 	DLOG(D_MSG, "RESET done flags %#x", t->flags, 0,0,0);
   2922   1.1     isaki }
   2923   1.1     isaki 
   2924  1.12  kiyohara /* returns 1 if succeeded, 0 if failed, reserve == 0 is unreserve */
   2925  1.12  kiyohara static int
   2926  1.12  kiyohara slhci_reserve_bustime(struct slhci_softc *sc, struct slhci_pipe *spipe, int
   2927  1.12  kiyohara     reserve)
   2928   1.1     isaki {
   2929  1.12  kiyohara 	struct slhci_transfers *t;
   2930  1.12  kiyohara 	int bustime, max_packet;
   2931  1.12  kiyohara 
   2932  1.12  kiyohara 	SLHCI_LOCKASSERT(sc, locked, unlocked);
   2933  1.12  kiyohara 
   2934  1.12  kiyohara 	t = &sc->sc_transfers;
   2935  1.12  kiyohara 	max_packet = UGETW(spipe->pipe.endpoint->edesc->wMaxPacketSize);
   2936  1.12  kiyohara 
   2937  1.12  kiyohara 	if (spipe->pflags & PF_LS)
   2938  1.12  kiyohara 		bustime = SLHCI_LS_CONST + SLHCI_LS_DATA_TIME(max_packet);
   2939  1.12  kiyohara 	else
   2940  1.12  kiyohara 		bustime = SLHCI_FS_CONST + SLHCI_FS_DATA_TIME(max_packet);
   2941   1.1     isaki 
   2942  1.12  kiyohara 	if (!reserve) {
   2943  1.12  kiyohara 		t->reserved_bustime -= bustime;
   2944  1.12  kiyohara #ifdef DIAGNOSTIC
   2945  1.12  kiyohara 		if (t->reserved_bustime < 0) {
   2946  1.12  kiyohara 			printf("%s: reserved_bustime %d < 0!\n",
   2947  1.12  kiyohara 			    SC_NAME(sc), t->reserved_bustime);
   2948  1.12  kiyohara 			DDOLOG("%s: reserved_bustime %d < 0!\n",
   2949  1.12  kiyohara 			    SC_NAME(sc), t->reserved_bustime, 0,0);
   2950  1.12  kiyohara 			t->reserved_bustime = 0;
   2951  1.12  kiyohara 		}
   2952  1.12  kiyohara #endif
   2953  1.12  kiyohara 		return 1;
   2954  1.12  kiyohara 	}
   2955   1.1     isaki 
   2956  1.12  kiyohara 	if (t->reserved_bustime + bustime > SLHCI_RESERVED_BUSTIME) {
   2957  1.12  kiyohara 		if (ratecheck(&sc->sc_reserved_warn_rate,
   2958  1.12  kiyohara 		    &reserved_warn_rate))
   2959  1.12  kiyohara #ifdef SLHCI_NO_OVERTIME
   2960  1.12  kiyohara 		{
   2961  1.12  kiyohara 			printf("%s: Max reserved bus time exceeded! "
   2962  1.12  kiyohara 			    "Erroring request.\n", SC_NAME(sc));
   2963  1.12  kiyohara 			DDOLOG("%s: Max reserved bus time exceeded! "
   2964  1.12  kiyohara 			    "Erroring request.\n", SC_NAME(sc), 0,0,0);
   2965  1.12  kiyohara 		}
   2966  1.12  kiyohara 		return 0;
   2967  1.12  kiyohara #else
   2968  1.12  kiyohara 		{
   2969  1.12  kiyohara 			printf("%s: Reserved bus time exceeds %d!\n",
   2970  1.12  kiyohara 			    SC_NAME(sc), SLHCI_RESERVED_BUSTIME);
   2971  1.12  kiyohara 			DDOLOG("%s: Reserved bus time exceeds %d!\n",
   2972  1.12  kiyohara 			    SC_NAME(sc), SLHCI_RESERVED_BUSTIME, 0,0);
   2973  1.12  kiyohara 		}
   2974  1.12  kiyohara #endif
   2975   1.1     isaki 	}
   2976   1.1     isaki 
   2977  1.12  kiyohara 	t->reserved_bustime += bustime;
   2978  1.12  kiyohara 	return 1;
   2979   1.1     isaki }
   2980   1.1     isaki 
   2981  1.12  kiyohara /* Device insertion/removal interrupt */
   2982   1.1     isaki static void
   2983  1.12  kiyohara slhci_insert(struct slhci_softc *sc)
   2984   1.1     isaki {
   2985  1.12  kiyohara 	struct slhci_transfers *t;
   2986  1.12  kiyohara 
   2987  1.12  kiyohara 	t = &sc->sc_transfers;
   2988   1.1     isaki 
   2989  1.12  kiyohara 	SLHCI_LOCKASSERT(sc, locked, unlocked);
   2990   1.1     isaki 
   2991  1.12  kiyohara 	if (t->flags & F_NODEV)
   2992  1.12  kiyohara 		slhci_intrchange(sc, 0);
   2993  1.12  kiyohara 	else {
   2994  1.12  kiyohara 		slhci_drain(sc);
   2995  1.12  kiyohara 		slhci_intrchange(sc, SL11_IER_INSERT);
   2996   1.1     isaki 	}
   2997  1.12  kiyohara 	t->flags ^= F_NODEV;
   2998  1.12  kiyohara 	t->flags |= F_ROOTINTR|F_CCONNECT;
   2999  1.12  kiyohara 	DLOG(D_MSG, "INSERT intr: flags after %#x", t->flags, 0,0,0);
   3000   1.1     isaki }
   3001   1.1     isaki 
   3002  1.12  kiyohara /*
   3003  1.12  kiyohara  * Data structures and routines to emulate the root hub.
   3004  1.12  kiyohara  */
   3005  1.12  kiyohara static const usb_device_descriptor_t slhci_devd = {
   3006  1.12  kiyohara 	USB_DEVICE_DESCRIPTOR_SIZE,
   3007  1.12  kiyohara 	UDESC_DEVICE,		/* type */
   3008  1.12  kiyohara 	{0x01, 0x01},		/* USB version */
   3009  1.12  kiyohara 	UDCLASS_HUB,		/* class */
   3010  1.12  kiyohara 	UDSUBCLASS_HUB,		/* subclass */
   3011  1.12  kiyohara 	0,			/* protocol */
   3012  1.12  kiyohara 	64,			/* max packet */
   3013  1.12  kiyohara 	{USB_VENDOR_SCANLOGIC & 0xff,	/* vendor ID (low)  */
   3014  1.12  kiyohara 	 USB_VENDOR_SCANLOGIC >> 8  },	/* vendor ID (high) */
   3015  1.12  kiyohara 	{0} /* ? */,		/* product ID */
   3016  1.12  kiyohara 	{0},			/* device */
   3017  1.12  kiyohara 	1,			/* index to manufacturer */
   3018  1.12  kiyohara 	2,			/* index to product */
   3019  1.12  kiyohara 	0,			/* index to serial number */
   3020  1.12  kiyohara 	1			/* number of configurations */
   3021  1.12  kiyohara };
   3022  1.12  kiyohara 
   3023  1.12  kiyohara static const struct slhci_confd_t {
   3024  1.12  kiyohara 	const usb_config_descriptor_t confd;
   3025  1.12  kiyohara 	const usb_interface_descriptor_t ifcd;
   3026  1.12  kiyohara 	const usb_endpoint_descriptor_t endpd;
   3027  1.12  kiyohara } UPACKED slhci_confd = {
   3028  1.12  kiyohara 	{ /* Configuration */
   3029  1.12  kiyohara 		USB_CONFIG_DESCRIPTOR_SIZE,
   3030  1.12  kiyohara 		UDESC_CONFIG,
   3031  1.12  kiyohara 		{USB_CONFIG_DESCRIPTOR_SIZE +
   3032  1.12  kiyohara 		 USB_INTERFACE_DESCRIPTOR_SIZE +
   3033  1.12  kiyohara 		 USB_ENDPOINT_DESCRIPTOR_SIZE},
   3034  1.12  kiyohara 		1,			/* number of interfaces */
   3035  1.12  kiyohara 		1,			/* configuration value */
   3036  1.12  kiyohara 		0,			/* index to configuration */
   3037  1.12  kiyohara 		UC_SELF_POWERED,	/* attributes */
   3038  1.12  kiyohara 		0			/* max current, filled in later */
   3039  1.12  kiyohara 	}, { /* Interface */
   3040  1.12  kiyohara 		USB_INTERFACE_DESCRIPTOR_SIZE,
   3041  1.12  kiyohara 		UDESC_INTERFACE,
   3042  1.12  kiyohara 		0,			/* interface number */
   3043  1.12  kiyohara 		0,			/* alternate setting */
   3044  1.12  kiyohara 		1,			/* number of endpoint */
   3045  1.12  kiyohara 		UICLASS_HUB,		/* class */
   3046  1.12  kiyohara 		UISUBCLASS_HUB,		/* subclass */
   3047  1.12  kiyohara 		0,			/* protocol */
   3048  1.12  kiyohara 		0			/* index to interface */
   3049  1.12  kiyohara 	}, { /* Endpoint */
   3050  1.12  kiyohara 		USB_ENDPOINT_DESCRIPTOR_SIZE,
   3051  1.12  kiyohara 		UDESC_ENDPOINT,
   3052  1.12  kiyohara 		UE_DIR_IN | ROOT_INTR_ENDPT,	/* endpoint address */
   3053  1.12  kiyohara 		UE_INTERRUPT,			/* attributes */
   3054  1.12  kiyohara 		{240, 0},			/* max packet size */
   3055  1.12  kiyohara 		255				/* interval */
   3056  1.12  kiyohara 	}
   3057  1.12  kiyohara };
   3058  1.12  kiyohara 
   3059  1.12  kiyohara static const usb_hub_descriptor_t slhci_hubd = {
   3060  1.12  kiyohara 	USB_HUB_DESCRIPTOR_SIZE,
   3061  1.12  kiyohara 	UDESC_HUB,
   3062  1.12  kiyohara 	1,			/* number of ports */
   3063  1.12  kiyohara 	{UHD_PWR_INDIVIDUAL | UHD_OC_NONE, 0},	/* hub characteristics */
   3064  1.12  kiyohara 	50,			/* 5:power on to power good, units of 2ms */
   3065  1.12  kiyohara 	0,			/* 6:maximum current, filled in later */
   3066  1.12  kiyohara 	{ 0x00 },		/* port is removable */
   3067  1.12  kiyohara 	{ 0x00 }		/* port power control mask */
   3068  1.12  kiyohara };
   3069  1.12  kiyohara 
   3070   1.1     isaki static usbd_status
   3071  1.12  kiyohara slhci_clear_feature(struct slhci_softc *sc, unsigned int what)
   3072   1.1     isaki {
   3073  1.12  kiyohara 	struct slhci_transfers *t;
   3074  1.12  kiyohara 	usbd_status error;
   3075   1.1     isaki 
   3076  1.12  kiyohara 	t = &sc->sc_transfers;
   3077  1.12  kiyohara 	error = USBD_NORMAL_COMPLETION;
   3078   1.1     isaki 
   3079  1.12  kiyohara 	SLHCI_LOCKASSERT(sc, locked, unlocked);
   3080   1.1     isaki 
   3081  1.12  kiyohara 	if (what == UHF_PORT_POWER) {
   3082  1.12  kiyohara 		DLOG(D_MSG, "POWER_OFF", 0,0,0,0);
   3083  1.12  kiyohara 		t->flags &= ~F_POWER;
   3084  1.12  kiyohara 		if (!(t->flags & F_NODEV))
   3085  1.12  kiyohara 			t->flags |= F_NODEV|F_CCONNECT|F_ROOTINTR;
   3086  1.12  kiyohara 		/* for x68k Nereid USB controller */
   3087  1.12  kiyohara 		if (sc->sc_enable_power && (t->flags & F_REALPOWER)) {
   3088  1.12  kiyohara 			t->flags &= ~F_REALPOWER;
   3089  1.12  kiyohara 			sc->sc_enable_power(sc, POWER_OFF);
   3090  1.12  kiyohara 		}
   3091  1.12  kiyohara 		slhci_intrchange(sc, 0);
   3092  1.12  kiyohara 		slhci_drain(sc);
   3093  1.12  kiyohara 	} else if (what == UHF_C_PORT_CONNECTION) {
   3094  1.12  kiyohara 		t->flags &= ~F_CCONNECT;
   3095  1.12  kiyohara 	} else if (what == UHF_C_PORT_RESET) {
   3096  1.12  kiyohara 		t->flags &= ~F_CRESET;
   3097  1.12  kiyohara 	} else if (what == UHF_PORT_ENABLE) {
   3098  1.12  kiyohara 		slhci_drain(sc);
   3099  1.12  kiyohara 	} else if (what != UHF_PORT_SUSPEND) {
   3100  1.12  kiyohara 		DDOLOG("ClrPortFeatERR:value=%#.4x", what, 0,0,0);
   3101  1.12  kiyohara 		error = USBD_IOERROR;
   3102  1.12  kiyohara 	}
   3103   1.1     isaki 
   3104  1.12  kiyohara 	return error;
   3105   1.1     isaki }
   3106   1.1     isaki 
   3107   1.1     isaki static usbd_status
   3108  1.12  kiyohara slhci_set_feature(struct slhci_softc *sc, unsigned int what)
   3109   1.1     isaki {
   3110  1.12  kiyohara 	struct slhci_transfers *t;
   3111  1.12  kiyohara 	uint8_t r;
   3112  1.12  kiyohara 
   3113  1.12  kiyohara 	t = &sc->sc_transfers;
   3114  1.12  kiyohara 
   3115  1.12  kiyohara 	SLHCI_LOCKASSERT(sc, locked, unlocked);
   3116  1.12  kiyohara 
   3117  1.12  kiyohara 	if (what == UHF_PORT_RESET) {
   3118  1.12  kiyohara 		if (!(t->flags & F_ACTIVE)) {
   3119  1.12  kiyohara 			DDOLOG("SET PORT_RESET when not ACTIVE!",
   3120  1.12  kiyohara 			    0,0,0,0);
   3121  1.12  kiyohara 			return USBD_INVAL;
   3122  1.12  kiyohara 		}
   3123  1.12  kiyohara 		if (!(t->flags & F_POWER)) {
   3124  1.12  kiyohara 			DDOLOG("SET PORT_RESET without PORT_POWER! flags %p",
   3125  1.12  kiyohara 			    t->flags, 0,0,0);
   3126  1.12  kiyohara 			return USBD_INVAL;
   3127  1.12  kiyohara 		}
   3128  1.12  kiyohara 		if (t->flags & F_RESET)
   3129  1.12  kiyohara 			return USBD_NORMAL_COMPLETION;
   3130  1.12  kiyohara 		DLOG(D_MSG, "RESET flags %#x", t->flags, 0,0,0);
   3131  1.12  kiyohara 		slhci_intrchange(sc, 0);
   3132  1.12  kiyohara 		slhci_drain(sc);
   3133  1.12  kiyohara 		slhci_write(sc, SL11_CTRL, SL11_CTRL_RESETENGINE);
   3134  1.12  kiyohara 		/* usb spec says delay >= 10ms, app note 50ms */
   3135  1.12  kiyohara  		start_cc_time(&t_delay, 50000);
   3136  1.12  kiyohara 		if (sc->sc_bus.use_polling) {
   3137  1.12  kiyohara 			DELAY(50000);
   3138  1.12  kiyohara 			slhci_reset(sc);
   3139  1.12  kiyohara 		} else {
   3140  1.12  kiyohara 			t->flags |= F_RESET;
   3141  1.12  kiyohara 			callout_schedule(&sc->sc_timer, max(mstohz(50), 2));
   3142  1.12  kiyohara 		}
   3143  1.12  kiyohara 	} else if (what == UHF_PORT_SUSPEND) {
   3144  1.12  kiyohara 		printf("%s: USB Suspend not implemented!\n", SC_NAME(sc));
   3145  1.12  kiyohara 		DDOLOG("%s: USB Suspend not implemented!\n", SC_NAME(sc),
   3146  1.12  kiyohara 		    0,0,0);
   3147  1.12  kiyohara 	} else if (what == UHF_PORT_POWER) {
   3148  1.12  kiyohara 		DLOG(D_MSG, "PORT_POWER", 0,0,0,0);
   3149  1.12  kiyohara 		/* for x68k Nereid USB controller */
   3150  1.12  kiyohara 		if (!(t->flags & F_ACTIVE))
   3151  1.12  kiyohara 			return USBD_INVAL;
   3152  1.12  kiyohara 		if (t->flags & F_POWER)
   3153  1.12  kiyohara 			return USBD_NORMAL_COMPLETION;
   3154  1.12  kiyohara 		if (!(t->flags & F_REALPOWER)) {
   3155  1.12  kiyohara 			if (sc->sc_enable_power)
   3156  1.12  kiyohara 				sc->sc_enable_power(sc, POWER_ON);
   3157  1.12  kiyohara 			t->flags |= F_REALPOWER;
   3158  1.12  kiyohara 		}
   3159  1.12  kiyohara 		t->flags |= F_POWER;
   3160  1.12  kiyohara 		r = slhci_read(sc, SL11_ISR);
   3161  1.12  kiyohara 		if (r & SL11_ISR_INSERT)
   3162  1.12  kiyohara 			slhci_write(sc, SL11_ISR, SL11_ISR_INSERT);
   3163  1.12  kiyohara 		if (r & SL11_ISR_NODEV) {
   3164  1.12  kiyohara 			slhci_intrchange(sc, SL11_IER_INSERT);
   3165  1.12  kiyohara 			t->flags |= F_NODEV;
   3166  1.12  kiyohara 		} else {
   3167  1.12  kiyohara 			t->flags &= ~F_NODEV;
   3168  1.12  kiyohara 			t->flags |= F_CCONNECT|F_ROOTINTR;
   3169  1.12  kiyohara 		}
   3170  1.12  kiyohara 	} else {
   3171  1.12  kiyohara 		DDOLOG("SetPortFeatERR=%#.8x", what, 0,0,0);
   3172  1.12  kiyohara 		return USBD_IOERROR;
   3173  1.12  kiyohara 	}
   3174   1.1     isaki 
   3175   1.1     isaki 	return USBD_NORMAL_COMPLETION;
   3176   1.1     isaki }
   3177   1.1     isaki 
   3178   1.1     isaki static void
   3179  1.12  kiyohara slhci_get_status(struct slhci_softc *sc, usb_port_status_t *ps)
   3180   1.1     isaki {
   3181  1.12  kiyohara 	struct slhci_transfers *t;
   3182  1.12  kiyohara 	unsigned int status, change;
   3183  1.12  kiyohara 
   3184  1.12  kiyohara 	t = &sc->sc_transfers;
   3185  1.12  kiyohara 
   3186  1.12  kiyohara 	SLHCI_LOCKASSERT(sc, locked, unlocked);
   3187   1.1     isaki 
   3188  1.12  kiyohara 	/* We do not have a way to detect over current or bable and
   3189  1.12  kiyohara 	 * suspend is currently not implemented, so connect and reset
   3190  1.12  kiyohara 	 * are the only changes that need to be reported.  */
   3191  1.12  kiyohara 	change = 0;
   3192  1.12  kiyohara 	if (t->flags & F_CCONNECT)
   3193  1.12  kiyohara 		change |= UPS_C_CONNECT_STATUS;
   3194  1.12  kiyohara 	if (t->flags & F_CRESET)
   3195  1.12  kiyohara 		change |= UPS_C_PORT_RESET;
   3196  1.12  kiyohara 
   3197  1.12  kiyohara 	status = 0;
   3198  1.12  kiyohara 	if (!(t->flags & F_NODEV))
   3199  1.12  kiyohara 		status |= UPS_CURRENT_CONNECT_STATUS;
   3200  1.12  kiyohara 	if (!(t->flags & F_UDISABLED))
   3201  1.12  kiyohara 		status |= UPS_PORT_ENABLED;
   3202  1.12  kiyohara 	if (t->flags & F_RESET)
   3203  1.12  kiyohara 		status |= UPS_RESET;
   3204  1.12  kiyohara 	if (t->flags & F_POWER)
   3205  1.12  kiyohara 		status |= UPS_PORT_POWER;
   3206  1.12  kiyohara 	if (t->flags & F_LOWSPEED)
   3207  1.12  kiyohara 		status |= UPS_LOW_SPEED;
   3208  1.12  kiyohara 	USETW(ps->wPortStatus, status);
   3209  1.12  kiyohara 	USETW(ps->wPortChange, change);
   3210  1.12  kiyohara 	DLOG(D_ROOT, "status=%#.4x, change=%#.4x", status, change, 0,0);
   3211   1.1     isaki }
   3212   1.1     isaki 
   3213  1.12  kiyohara static usbd_status
   3214  1.12  kiyohara slhci_root(struct slhci_softc *sc, struct slhci_pipe *spipe, struct usbd_xfer
   3215  1.12  kiyohara     *xfer)
   3216   1.1     isaki {
   3217  1.12  kiyohara 	struct slhci_transfers *t;
   3218  1.12  kiyohara 	usb_device_request_t *req;
   3219  1.12  kiyohara 	unsigned int len, value, index, actlen, type;
   3220  1.12  kiyohara 	uint8_t *buf;
   3221  1.12  kiyohara 	usbd_status error;
   3222   1.1     isaki 
   3223  1.12  kiyohara 	t = &sc->sc_transfers;
   3224  1.12  kiyohara 	buf = NULL;
   3225   1.1     isaki 
   3226  1.12  kiyohara 	LK_SLASSERT(spipe != NULL && xfer != NULL, sc, spipe, xfer, return
   3227  1.12  kiyohara 	    USBD_CANCELLED);
   3228   1.1     isaki 
   3229  1.12  kiyohara 	DLOG(D_TRACE, "%s start", pnames(SLHCI_XFER_TYPE(xfer)), 0,0,0);
   3230  1.12  kiyohara 	SLHCI_LOCKASSERT(sc, locked, unlocked);
   3231   1.1     isaki 
   3232  1.12  kiyohara 	if (spipe->ptype == PT_ROOT_INTR) {
   3233  1.12  kiyohara 		LK_SLASSERT(t->rootintr == NULL, sc, spipe, xfer, return
   3234  1.12  kiyohara 		    USBD_CANCELLED);
   3235  1.12  kiyohara 		t->rootintr = xfer;
   3236  1.12  kiyohara 		if (t->flags & F_CHANGE)
   3237  1.12  kiyohara 			t->flags |= F_ROOTINTR;
   3238  1.12  kiyohara 		return USBD_IN_PROGRESS;
   3239   1.1     isaki 	}
   3240   1.1     isaki 
   3241  1.12  kiyohara 	error = USBD_IOERROR; /* XXX should be STALL */
   3242  1.12  kiyohara 	actlen = 0;
   3243  1.12  kiyohara 	req = &xfer->request;
   3244  1.12  kiyohara 
   3245  1.12  kiyohara 	len = UGETW(req->wLength);
   3246  1.12  kiyohara 	value = UGETW(req->wValue);
   3247  1.12  kiyohara 	index = UGETW(req->wIndex);
   3248   1.1     isaki 
   3249  1.12  kiyohara 	type = req->bmRequestType;
   3250   1.1     isaki 
   3251  1.12  kiyohara 	if (len)
   3252  1.12  kiyohara 		buf = KERNADDR(&xfer->dmabuf, 0);
   3253   1.1     isaki 
   3254  1.12  kiyohara 	SLHCI_DEXEC(D_TRACE, slhci_log_req_hub(req));
   3255   1.1     isaki 
   3256  1.12  kiyohara 	/*
   3257  1.12  kiyohara 	 * USB requests for hubs have two basic types, standard and class.
   3258  1.12  kiyohara 	 * Each could potentially have recipients of device, interface,
   3259  1.12  kiyohara 	 * endpoint, or other.  For the hub class, CLASS_OTHER means the port
   3260  1.12  kiyohara 	 * and CLASS_DEVICE means the hub.  For standard requests, OTHER
   3261  1.12  kiyohara 	 * is not used.  Standard request are described in section 9.4 of the
   3262  1.12  kiyohara 	 * standard, hub class requests in 11.16.  Each request is either read
   3263  1.12  kiyohara 	 * or write.
   3264  1.12  kiyohara 	 *
   3265  1.12  kiyohara 	 * Clear Feature, Set Feature, and Status are defined for each of the
   3266  1.12  kiyohara 	 * used recipients.  Get Descriptor and Set Descriptor are defined for
   3267  1.12  kiyohara 	 * both standard and hub class types with different descriptors.
   3268  1.12  kiyohara 	 * Other requests have only one defined recipient and type.  These
   3269  1.12  kiyohara 	 * include: Get/Set Address, Get/Set Configuration, Get/Set Interface,
   3270  1.12  kiyohara 	 * and Synch Frame for standard requests and Get Bus State for hub
   3271  1.12  kiyohara 	 * class.
   3272  1.12  kiyohara 	 *
   3273  1.12  kiyohara 	 * When a device is first powered up it has address 0 until the
   3274  1.12  kiyohara 	 * address is set.
   3275  1.12  kiyohara 	 *
   3276  1.12  kiyohara 	 * Hubs are only allowed to support one interface and may not have
   3277  1.12  kiyohara 	 * isochronous endpoints.  The results of the related requests are
   3278  1.12  kiyohara 	 * undefined.
   3279  1.12  kiyohara 	 *
   3280  1.12  kiyohara 	 * The standard requires invalid or unsupported requests to return
   3281  1.12  kiyohara 	 * STALL in the data stage, however this does not work well with
   3282  1.12  kiyohara 	 * current error handling. XXX
   3283  1.12  kiyohara 	 *
   3284  1.12  kiyohara 	 * Some unsupported fields:
   3285  1.12  kiyohara 	 * Clear Hub Feature is for C_HUB_LOCAL_POWER and C_HUB_OVER_CURRENT
   3286  1.12  kiyohara 	 * Set Device Features is for ENDPOINT_HALT and DEVICE_REMOTE_WAKEUP
   3287  1.12  kiyohara 	 * Get Bus State is optional sample of D- and D+ at EOF2
   3288  1.12  kiyohara 	 */
   3289   1.1     isaki 
   3290  1.12  kiyohara 	switch (req->bRequest) {
   3291  1.12  kiyohara 	/* Write Requests */
   3292  1.12  kiyohara 	case UR_CLEAR_FEATURE:
   3293  1.12  kiyohara 		if (type == UT_WRITE_CLASS_OTHER) {
   3294  1.12  kiyohara 			if (index == 1 /* Port */)
   3295  1.12  kiyohara 				error = slhci_clear_feature(sc, value);
   3296  1.12  kiyohara 			else
   3297  1.12  kiyohara 				DLOG(D_ROOT, "Clear Port Feature "
   3298  1.12  kiyohara 				    "index = %#.4x", index, 0,0,0);
   3299  1.12  kiyohara 		}
   3300  1.12  kiyohara 		break;
   3301  1.12  kiyohara 	case UR_SET_FEATURE:
   3302  1.12  kiyohara 		if (type == UT_WRITE_CLASS_OTHER) {
   3303  1.12  kiyohara 			if (index == 1 /* Port */)
   3304  1.12  kiyohara 				error = slhci_set_feature(sc, value);
   3305  1.12  kiyohara 			else
   3306  1.12  kiyohara 				DLOG(D_ROOT, "Set Port Feature "
   3307  1.12  kiyohara 				    "index = %#.4x", index, 0,0,0);
   3308  1.12  kiyohara 		} else if (type != UT_WRITE_CLASS_DEVICE)
   3309  1.12  kiyohara 			DLOG(D_ROOT, "Set Device Feature "
   3310  1.12  kiyohara 			    "ENDPOINT_HALT or DEVICE_REMOTE_WAKEUP "
   3311  1.12  kiyohara 			    "not supported", 0,0,0,0);
   3312  1.12  kiyohara 		break;
   3313  1.12  kiyohara 	case UR_SET_ADDRESS:
   3314  1.12  kiyohara 		if (type == UT_WRITE_DEVICE) {
   3315  1.12  kiyohara 			DLOG(D_ROOT, "Set Address %#.4x", value, 0,0,0);
   3316  1.12  kiyohara 			if (value < USB_MAX_DEVICES) {
   3317  1.12  kiyohara 				t->rootaddr = value;
   3318  1.12  kiyohara 				error = USBD_NORMAL_COMPLETION;
   3319  1.12  kiyohara 			}
   3320  1.12  kiyohara 		}
   3321  1.12  kiyohara 		break;
   3322  1.12  kiyohara 	case UR_SET_CONFIG:
   3323  1.12  kiyohara 		if (type == UT_WRITE_DEVICE) {
   3324  1.12  kiyohara 			DLOG(D_ROOT, "Set Config %#.4x", value, 0,0,0);
   3325  1.12  kiyohara 			if (value == 0 || value == 1) {
   3326  1.12  kiyohara 				t->rootconf = value;
   3327  1.12  kiyohara 				error = USBD_NORMAL_COMPLETION;
   3328  1.12  kiyohara 			}
   3329  1.12  kiyohara 		}
   3330  1.12  kiyohara 		break;
   3331  1.12  kiyohara 	/* Read Requests */
   3332  1.12  kiyohara 	case UR_GET_STATUS:
   3333  1.12  kiyohara 		if (type == UT_READ_CLASS_OTHER) {
   3334  1.12  kiyohara 			if (index == 1 /* Port */ && len == /* XXX >=? */
   3335  1.12  kiyohara 			    sizeof(usb_port_status_t)) {
   3336  1.12  kiyohara 				slhci_get_status(sc, (usb_port_status_t *)
   3337  1.12  kiyohara 				    buf);
   3338  1.12  kiyohara 				actlen = sizeof(usb_port_status_t);
   3339  1.12  kiyohara 				error = USBD_NORMAL_COMPLETION;
   3340  1.12  kiyohara 			} else
   3341  1.12  kiyohara 				DLOG(D_ROOT, "Get Port Status index = %#.4x "
   3342  1.12  kiyohara 				    "len = %#.4x", index, len, 0,0);
   3343  1.12  kiyohara 		} else if (type == UT_READ_CLASS_DEVICE) { /* XXX index? */
   3344  1.12  kiyohara 			if (len == sizeof(usb_hub_status_t)) {
   3345  1.12  kiyohara 				DLOG(D_ROOT, "Get Hub Status",
   3346  1.12  kiyohara 				    0,0,0,0);
   3347  1.12  kiyohara 				actlen = sizeof(usb_hub_status_t);
   3348  1.12  kiyohara 				memset(buf, 0, actlen);
   3349  1.12  kiyohara 				error = USBD_NORMAL_COMPLETION;
   3350  1.12  kiyohara 			} else
   3351  1.12  kiyohara 				DLOG(D_ROOT, "Get Hub Status bad len %#.4x",
   3352  1.12  kiyohara 				    len, 0,0,0);
   3353  1.12  kiyohara 		} else if (type == UT_READ_DEVICE) {
   3354  1.12  kiyohara 			if (len >= 2) {
   3355  1.12  kiyohara 				USETW(((usb_status_t *)buf)->wStatus, UDS_SELF_POWERED);
   3356  1.12  kiyohara 				actlen = 2;
   3357  1.12  kiyohara 				error = USBD_NORMAL_COMPLETION;
   3358  1.12  kiyohara 			}
   3359  1.12  kiyohara 		} else if (type == (UT_READ_INTERFACE|UT_READ_ENDPOINT)) {
   3360  1.12  kiyohara 			if (len >= 2) {
   3361  1.12  kiyohara 				USETW(((usb_status_t *)buf)->wStatus, 0);
   3362  1.12  kiyohara 				actlen = 2;
   3363  1.12  kiyohara 				error = USBD_NORMAL_COMPLETION;
   3364  1.12  kiyohara 			}
   3365  1.12  kiyohara 		}
   3366  1.12  kiyohara 		break;
   3367  1.12  kiyohara 	case UR_GET_CONFIG:
   3368  1.12  kiyohara 		if (type == UT_READ_DEVICE) {
   3369  1.12  kiyohara 			DLOG(D_ROOT, "Get Config", 0,0,0,0);
   3370  1.12  kiyohara 			if (len > 0) {
   3371  1.12  kiyohara 				*buf = t->rootconf;
   3372  1.12  kiyohara 				actlen = 1;
   3373  1.12  kiyohara 				error = USBD_NORMAL_COMPLETION;
   3374  1.12  kiyohara 			}
   3375  1.12  kiyohara 		}
   3376  1.12  kiyohara 		break;
   3377  1.12  kiyohara 	case UR_GET_INTERFACE:
   3378  1.12  kiyohara 		if (type == UT_READ_INTERFACE) {
   3379  1.12  kiyohara 			if (len > 0) {
   3380  1.12  kiyohara 				*buf = 0;
   3381  1.12  kiyohara 				actlen = 1;
   3382  1.12  kiyohara 				error = USBD_NORMAL_COMPLETION;
   3383  1.12  kiyohara 			}
   3384  1.12  kiyohara 		}
   3385  1.12  kiyohara 		break;
   3386  1.12  kiyohara 	case UR_GET_DESCRIPTOR:
   3387  1.12  kiyohara 		if (type == UT_READ_DEVICE) {
   3388  1.12  kiyohara 			/* value is type (&0xff00) and index (0xff) */
   3389  1.12  kiyohara 			if (value == (UDESC_DEVICE<<8)) {
   3390  1.12  kiyohara 				actlen = min(len, sizeof(slhci_devd));
   3391  1.12  kiyohara 				memcpy(buf, &slhci_devd, actlen);
   3392  1.12  kiyohara 				error = USBD_NORMAL_COMPLETION;
   3393  1.12  kiyohara 			} else if (value == (UDESC_CONFIG<<8)) {
   3394  1.12  kiyohara 				actlen = min(len, sizeof(slhci_confd));
   3395  1.12  kiyohara 				memcpy(buf, &slhci_confd, actlen);
   3396  1.12  kiyohara 				if (actlen > offsetof(usb_config_descriptor_t,
   3397  1.12  kiyohara 				    bMaxPower))
   3398  1.12  kiyohara 					((usb_config_descriptor_t *)
   3399  1.12  kiyohara 					    buf)->bMaxPower = t->max_current;
   3400  1.12  kiyohara 					    /* 2 mA units */
   3401  1.12  kiyohara 				error = USBD_NORMAL_COMPLETION;
   3402  1.12  kiyohara 			} else if (value == (UDESC_STRING<<8)) {
   3403  1.12  kiyohara 				/* language table XXX */
   3404  1.12  kiyohara 			} else if (value == ((UDESC_STRING<<8)|1)) {
   3405  1.12  kiyohara 				/* Vendor */
   3406  1.20     isaki 				actlen = usb_makestrdesc((usb_string_descriptor_t *)
   3407  1.12  kiyohara 				    buf, len, "ScanLogic/Cypress");
   3408  1.12  kiyohara 				error = USBD_NORMAL_COMPLETION;
   3409  1.12  kiyohara 			} else if (value == ((UDESC_STRING<<8)|2)) {
   3410  1.12  kiyohara 				/* Product */
   3411  1.20     isaki 				actlen = usb_makestrdesc((usb_string_descriptor_t *)
   3412  1.12  kiyohara 				    buf, len, "SL811HS/T root hub");
   3413  1.12  kiyohara 				error = USBD_NORMAL_COMPLETION;
   3414  1.12  kiyohara 			} else
   3415  1.12  kiyohara 				DDOLOG("Unknown Get Descriptor %#.4x",
   3416  1.12  kiyohara 				    value, 0,0,0);
   3417  1.12  kiyohara 		} else if (type == UT_READ_CLASS_DEVICE) {
   3418  1.12  kiyohara 			/* Descriptor number is 0 */
   3419  1.12  kiyohara 			if (value == (UDESC_HUB<<8)) {
   3420  1.12  kiyohara 				actlen = min(len, sizeof(slhci_hubd));
   3421  1.12  kiyohara 				memcpy(buf, &slhci_hubd, actlen);
   3422  1.12  kiyohara 				if (actlen > offsetof(usb_config_descriptor_t,
   3423  1.12  kiyohara 				    bMaxPower))
   3424  1.12  kiyohara 					((usb_hub_descriptor_t *)
   3425  1.12  kiyohara 					    buf)->bHubContrCurrent = 500 -
   3426  1.12  kiyohara 					    t->max_current;
   3427  1.12  kiyohara 				error = USBD_NORMAL_COMPLETION;
   3428  1.12  kiyohara 			} else
   3429  1.12  kiyohara 				DDOLOG("Unknown Get Hub Descriptor %#.4x",
   3430  1.12  kiyohara 				    value, 0,0,0);
   3431  1.12  kiyohara 		}
   3432  1.12  kiyohara 		break;
   3433   1.1     isaki 	}
   3434   1.1     isaki 
   3435  1.12  kiyohara 	if (error == USBD_NORMAL_COMPLETION)
   3436  1.12  kiyohara 		xfer->actlen = actlen;
   3437  1.12  kiyohara 	xfer->status = error;
   3438  1.12  kiyohara 	KASSERT(spipe->xfer == NULL);
   3439  1.12  kiyohara 	spipe->xfer = xfer;
   3440  1.12  kiyohara 	enter_callback(t, spipe);
   3441  1.12  kiyohara 
   3442  1.12  kiyohara 	return USBD_IN_PROGRESS;
   3443   1.1     isaki }
   3444   1.1     isaki 
   3445  1.12  kiyohara /* End in lock functions. Start debug functions. */
   3446  1.12  kiyohara 
   3447  1.12  kiyohara #ifdef SLHCI_DEBUG
   3448   1.1     isaki void
   3449  1.12  kiyohara slhci_log_buffer(struct usbd_xfer *xfer)
   3450   1.1     isaki {
   3451  1.12  kiyohara 	u_char *buf;
   3452   1.1     isaki 
   3453  1.12  kiyohara 	if(xfer->length > 0 &&
   3454  1.12  kiyohara 	    UE_GET_DIR(xfer->pipe->endpoint->edesc->bEndpointAddress) ==
   3455  1.12  kiyohara 	    UE_DIR_IN) {
   3456  1.12  kiyohara 		buf = KERNADDR(&xfer->dmabuf, 0);
   3457  1.12  kiyohara 		DDOLOGBUF(buf, xfer->actlen);
   3458  1.12  kiyohara 		DDOLOG("len %d actlen %d short %d", xfer->length,
   3459  1.12  kiyohara 		    xfer->actlen, xfer->length - xfer->actlen, 0);
   3460  1.12  kiyohara 	}
   3461   1.1     isaki }
   3462   1.1     isaki 
   3463   1.1     isaki void
   3464  1.12  kiyohara slhci_log_req(usb_device_request_t *r)
   3465   1.1     isaki {
   3466  1.12  kiyohara 	static const char *xmes[]={
   3467   1.1     isaki 		"GETSTAT",
   3468   1.1     isaki 		"CLRFEAT",
   3469   1.1     isaki 		"res",
   3470   1.1     isaki 		"SETFEAT",
   3471   1.1     isaki 		"res",
   3472   1.1     isaki 		"SETADDR",
   3473   1.1     isaki 		"GETDESC",
   3474   1.1     isaki 		"SETDESC",
   3475   1.1     isaki 		"GETCONF",
   3476   1.1     isaki 		"SETCONF",
   3477   1.1     isaki 		"GETIN/F",
   3478   1.1     isaki 		"SETIN/F",
   3479  1.12  kiyohara 		"SYNC_FR",
   3480  1.12  kiyohara 		"UNKNOWN"
   3481   1.1     isaki 	};
   3482  1.12  kiyohara 	int req, mreq, type, value, index, len;
   3483   1.1     isaki 
   3484   1.1     isaki 	req   = r->bRequest;
   3485  1.12  kiyohara 	mreq  = (req > 13) ? 13 : req;
   3486   1.1     isaki 	type  = r->bmRequestType;
   3487   1.1     isaki 	value = UGETW(r->wValue);
   3488   1.1     isaki 	index = UGETW(r->wIndex);
   3489   1.1     isaki 	len   = UGETW(r->wLength);
   3490   1.1     isaki 
   3491  1.12  kiyohara 	DDOLOG("request: %s %#x", xmes[mreq], type, 0,0);
   3492  1.12  kiyohara 	DDOLOG("request: r=%d,v=%d,i=%d,l=%d ", req, value, index, len);
   3493   1.1     isaki }
   3494   1.1     isaki 
   3495   1.1     isaki void
   3496  1.12  kiyohara slhci_log_req_hub(usb_device_request_t *r)
   3497   1.1     isaki {
   3498  1.12  kiyohara 	static const struct {
   3499   1.1     isaki 		int req;
   3500   1.1     isaki 		int type;
   3501   1.9  christos 		const char *str;
   3502   1.1     isaki 	} conf[] = {
   3503   1.1     isaki 		{ 1, 0x20, "ClrHubFeat"  },
   3504   1.1     isaki 		{ 1, 0x23, "ClrPortFeat" },
   3505   1.1     isaki 		{ 2, 0xa3, "GetBusState" },
   3506   1.1     isaki 		{ 6, 0xa0, "GetHubDesc"  },
   3507   1.1     isaki 		{ 0, 0xa0, "GetHubStat"  },
   3508   1.1     isaki 		{ 0, 0xa3, "GetPortStat" },
   3509   1.1     isaki 		{ 7, 0x20, "SetHubDesc"  },
   3510   1.1     isaki 		{ 3, 0x20, "SetHubFeat"  },
   3511   1.1     isaki 		{ 3, 0x23, "SetPortFeat" },
   3512   1.1     isaki 		{-1, 0, NULL},
   3513   1.1     isaki 	};
   3514   1.1     isaki 	int i;
   3515   1.1     isaki 	int value, index, len;
   3516  1.12  kiyohara 	const char *str;
   3517   1.1     isaki 
   3518   1.1     isaki 	value = UGETW(r->wValue);
   3519   1.1     isaki 	index = UGETW(r->wIndex);
   3520   1.1     isaki 	len   = UGETW(r->wLength);
   3521   1.1     isaki 	for (i = 0; ; i++) {
   3522  1.12  kiyohara 		if (conf[i].req == -1 ) {
   3523  1.12  kiyohara 			slhci_log_req(r);
   3524  1.12  kiyohara 			return;
   3525  1.12  kiyohara 		}
   3526   1.1     isaki 		if (r->bmRequestType == conf[i].type && r->bRequest == conf[i].req) {
   3527  1.12  kiyohara 			str = conf[i].str;
   3528   1.1     isaki 			break;
   3529   1.1     isaki 		}
   3530   1.1     isaki 	}
   3531  1.12  kiyohara 	DDOLOG("hub request: %s v=%d,i=%d,l=%d ", str, value, index, len);
   3532   1.1     isaki }
   3533   1.1     isaki 
   3534   1.1     isaki void
   3535  1.12  kiyohara slhci_log_dumpreg(void)
   3536   1.1     isaki {
   3537  1.12  kiyohara 	uint8_t r;
   3538  1.12  kiyohara 	unsigned int aaddr, alen, baddr, blen;
   3539  1.12  kiyohara 	static u_char buf[240];
   3540  1.12  kiyohara 
   3541  1.12  kiyohara 	r = slhci_read(ssc, SL11_E0CTRL);
   3542  1.12  kiyohara 	DDOLOG("USB A Host Control = %#.2x", r, 0,0,0);
   3543  1.12  kiyohara 	DDOLOGFLAG8("E0CTRL=", r, "Preamble", "Data Toggle",  "SOF Sync",
   3544  1.12  kiyohara 	    "ISOC", "res", "Out", "Enable", "Arm");
   3545  1.12  kiyohara 	aaddr = slhci_read(ssc, SL11_E0ADDR);
   3546  1.12  kiyohara 	DDOLOG("USB A Base Address = %u", aaddr, 0,0,0);
   3547  1.12  kiyohara 	alen = slhci_read(ssc, SL11_E0LEN);
   3548  1.12  kiyohara 	DDOLOG("USB A Length = %u", alen, 0,0,0);
   3549  1.12  kiyohara 	r = slhci_read(ssc, SL11_E0STAT);
   3550  1.12  kiyohara 	DDOLOG("USB A Status = %#.2x", r, 0,0,0);
   3551  1.12  kiyohara 	DDOLOGFLAG8("E0STAT=", r, "STALL", "NAK", "Overflow", "Setup",
   3552  1.12  kiyohara 	    "Data Toggle", "Timeout", "Error", "ACK");
   3553  1.12  kiyohara 	r = slhci_read(ssc, SL11_E0CONT);
   3554  1.12  kiyohara 	DDOLOG("USB A Remaining or Overflow Length = %u", r, 0,0,0);
   3555  1.12  kiyohara 	r = slhci_read(ssc, SL11_E1CTRL);
   3556  1.12  kiyohara 	DDOLOG("USB B Host Control = %#.2x", r, 0,0,0);
   3557  1.12  kiyohara 	DDOLOGFLAG8("E1CTRL=", r, "Preamble", "Data Toggle",  "SOF Sync",
   3558  1.12  kiyohara 	    "ISOC", "res", "Out", "Enable", "Arm");
   3559  1.12  kiyohara 	baddr = slhci_read(ssc, SL11_E1ADDR);
   3560  1.12  kiyohara 	DDOLOG("USB B Base Address = %u", baddr, 0,0,0);
   3561  1.12  kiyohara 	blen = slhci_read(ssc, SL11_E1LEN);
   3562  1.12  kiyohara 	DDOLOG("USB B Length = %u", blen, 0,0,0);
   3563  1.12  kiyohara 	r = slhci_read(ssc, SL11_E1STAT);
   3564  1.12  kiyohara 	DDOLOG("USB B Status = %#.2x", r, 0,0,0);
   3565  1.12  kiyohara 	DDOLOGFLAG8("E1STAT=", r, "STALL", "NAK", "Overflow", "Setup",
   3566  1.12  kiyohara 	    "Data Toggle", "Timeout", "Error", "ACK");
   3567  1.12  kiyohara 	r = slhci_read(ssc, SL11_E1CONT);
   3568  1.12  kiyohara 	DDOLOG("USB B Remaining or Overflow Length = %u", r, 0,0,0);
   3569  1.12  kiyohara 
   3570  1.12  kiyohara 	r = slhci_read(ssc, SL11_CTRL);
   3571  1.12  kiyohara 	DDOLOG("Control = %#.2x", r, 0,0,0);
   3572  1.12  kiyohara 	DDOLOGFLAG8("CTRL=", r, "res", "Suspend", "LOW Speed",
   3573  1.12  kiyohara 	    "J-K State Force", "Reset", "res", "res", "SOF");
   3574  1.12  kiyohara 	r = slhci_read(ssc, SL11_IER);
   3575  1.12  kiyohara 	DDOLOG("Interrupt Enable = %#.2x", r, 0,0,0);
   3576  1.12  kiyohara 	DDOLOGFLAG8("IER=", r, "D+ **IER!**", "Device Detect/Resume",
   3577  1.12  kiyohara 	    "Insert/Remove", "SOF", "res", "res", "USBB", "USBA");
   3578  1.12  kiyohara 	r = slhci_read(ssc, SL11_ISR);
   3579  1.12  kiyohara 	DDOLOG("Interrupt Status = %#.2x", r, 0,0,0);
   3580  1.12  kiyohara 	DDOLOGFLAG8("ISR=", r, "D+", "Device Detect/Resume",
   3581  1.12  kiyohara 	    "Insert/Remove", "SOF", "res", "res", "USBB", "USBA");
   3582  1.12  kiyohara 	r = slhci_read(ssc, SL11_REV);
   3583  1.12  kiyohara 	DDOLOG("Revision = %#.2x", r, 0,0,0);
   3584  1.12  kiyohara 	r = slhci_read(ssc, SL811_CSOF);
   3585  1.12  kiyohara 	DDOLOG("SOF Counter = %#.2x", r, 0,0,0);
   3586  1.12  kiyohara 
   3587  1.12  kiyohara 	if (alen && aaddr >= SL11_BUFFER_START && aaddr < SL11_BUFFER_END &&
   3588  1.12  kiyohara 	    alen <= SL11_MAX_PACKET_SIZE && aaddr + alen <= SL11_BUFFER_END) {
   3589  1.12  kiyohara 		slhci_read_multi(ssc, aaddr, buf, alen);
   3590  1.12  kiyohara 		DDOLOG("USBA Buffer: start %u len %u", aaddr, alen, 0,0);
   3591  1.12  kiyohara 		DDOLOGBUF(buf, alen);
   3592  1.12  kiyohara 	} else if (alen)
   3593  1.12  kiyohara 		DDOLOG("USBA Buffer Invalid", 0,0,0,0);
   3594  1.12  kiyohara 
   3595  1.12  kiyohara 	if (blen && baddr >= SL11_BUFFER_START && baddr < SL11_BUFFER_END &&
   3596  1.12  kiyohara 	    blen <= SL11_MAX_PACKET_SIZE && baddr + blen <= SL11_BUFFER_END) {
   3597  1.12  kiyohara 		slhci_read_multi(ssc, baddr, buf, blen);
   3598  1.12  kiyohara 		DDOLOG("USBB Buffer: start %u len %u", baddr, blen, 0,0);
   3599  1.12  kiyohara 		DDOLOGBUF(buf, blen);
   3600  1.12  kiyohara 	} else if (blen)
   3601  1.12  kiyohara 		DDOLOG("USBB Buffer Invalid", 0,0,0,0);
   3602   1.1     isaki }
   3603   1.1     isaki 
   3604   1.1     isaki void
   3605  1.12  kiyohara slhci_log_xfer(struct usbd_xfer *xfer)
   3606   1.1     isaki {
   3607  1.12  kiyohara 	DDOLOG("xfer: length=%u, actlen=%u, flags=%#x, timeout=%u,",
   3608   1.1     isaki 		xfer->length, xfer->actlen, xfer->flags, xfer->timeout);
   3609  1.12  kiyohara 	if (xfer->dmabuf.block)
   3610  1.12  kiyohara 		DDOLOG("buffer=%p", KERNADDR(&xfer->dmabuf, 0), 0,0,0);
   3611  1.12  kiyohara 	slhci_log_req_hub(&xfer->request);
   3612  1.12  kiyohara }
   3613  1.12  kiyohara 
   3614  1.12  kiyohara void
   3615  1.12  kiyohara slhci_log_spipe(struct slhci_pipe *spipe)
   3616  1.12  kiyohara {
   3617  1.12  kiyohara 	DDOLOG("spipe %p onlists: %s %s %s", spipe, gcq_onlist(&spipe->ap) ?
   3618  1.12  kiyohara 	    "AP" : "", gcq_onlist(&spipe->to) ? "TO" : "",
   3619  1.12  kiyohara 	    gcq_onlist(&spipe->xq) ? "XQ" : "");
   3620  1.12  kiyohara 	DDOLOG("spipe: xfer %p buffer %p pflags %#x ptype %s",
   3621  1.12  kiyohara 	    spipe->xfer, spipe->buffer, spipe->pflags, pnames(spipe->ptype));
   3622  1.12  kiyohara }
   3623  1.12  kiyohara 
   3624  1.12  kiyohara void
   3625  1.12  kiyohara slhci_print_intr(void)
   3626  1.12  kiyohara {
   3627  1.12  kiyohara 	unsigned int ier, isr;
   3628  1.12  kiyohara 	ier = slhci_read(ssc, SL11_IER);
   3629  1.12  kiyohara 	isr = slhci_read(ssc, SL11_ISR);
   3630  1.12  kiyohara 	printf("IER: %#x ISR: %#x \n", ier, isr);
   3631  1.12  kiyohara }
   3632  1.12  kiyohara 
   3633  1.12  kiyohara #if 0
   3634  1.12  kiyohara void
   3635  1.12  kiyohara slhci_log_sc()
   3636  1.12  kiyohara {
   3637  1.12  kiyohara 	struct slhci_transfers *t;
   3638  1.12  kiyohara 	int i;
   3639  1.12  kiyohara 
   3640  1.12  kiyohara 	t = &ssc->sc_transfers;
   3641  1.12  kiyohara 
   3642  1.12  kiyohara 	DDOLOG("Flags=%#x", t->flags, 0,0,0);
   3643  1.12  kiyohara 	DDOLOG("a = %p Alen=%d b = %p Blen=%d", t->spipe[0], t->len[0],
   3644  1.12  kiyohara 	    t->spipe[1], t->len[1]);
   3645  1.12  kiyohara 
   3646  1.12  kiyohara 	for (i=0; i<=Q_MAX; i++)
   3647  1.12  kiyohara 		DDOLOG("Q %d: %p", i, gcq_first(&t->q[i]), 0,0);
   3648  1.12  kiyohara 
   3649  1.12  kiyohara 	DDOLOG("TIMED: %p", GCQ_ITEM(gcq_first(&t->to),
   3650  1.12  kiyohara 	    struct slhci_pipe, to), 0,0,0);
   3651  1.12  kiyohara 
   3652  1.12  kiyohara 	DDOLOG("frame=%d rootintr=%p", t->frame, t->rootintr, 0,0);
   3653  1.12  kiyohara 
   3654  1.12  kiyohara 	DDOLOG("use_polling=%d intr_context=%d", ssc->sc_bus.use_polling,
   3655  1.12  kiyohara 	    ssc->sc_bus.intr_context, 0,0);
   3656  1.12  kiyohara }
   3657  1.12  kiyohara 
   3658  1.12  kiyohara void
   3659  1.12  kiyohara slhci_log_slreq(struct slhci_pipe *r)
   3660  1.12  kiyohara {
   3661  1.12  kiyohara 	DDOLOG("next: %p", r->q.next.sqe_next, 0,0,0);
   3662  1.12  kiyohara 	DDOLOG("xfer: %p", r->xfer, 0,0,0);
   3663  1.12  kiyohara 	DDOLOG("buffer: %p", r->buffer, 0,0,0);
   3664  1.12  kiyohara 	DDOLOG("bustime: %u", r->bustime, 0,0,0);
   3665  1.12  kiyohara 	DDOLOG("control: %#x", r->control, 0,0,0);
   3666  1.12  kiyohara 	DDOLOGFLAG8("control=", r->control, "Preamble", "Data Toggle",
   3667  1.12  kiyohara 	    "SOF Sync", "ISOC", "res", "Out", "Enable", "Arm");
   3668  1.12  kiyohara 	DDOLOG("pid: %#x", r->tregs[PID], 0,0,0);
   3669  1.12  kiyohara 	DDOLOG("dev: %u", r->tregs[DEV], 0,0,0);
   3670  1.12  kiyohara 	DDOLOG("len: %u", r->tregs[LEN], 0,0,0);
   3671  1.12  kiyohara 
   3672  1.12  kiyohara 	if (r->xfer)
   3673  1.12  kiyohara 		slhci_log_xfer(r->xfer);
   3674   1.1     isaki }
   3675  1.12  kiyohara #endif
   3676   1.1     isaki #endif /* SLHCI_DEBUG */
   3677  1.12  kiyohara /* End debug functions. */
   3678