Lines Matching +full:no +full:- +full:read +full:- +full:rollover
1 /* SPDX-License-Identifier: GPL-2.0 */
41 * slots available. That is, host->can_queue and host->sg_tablesize
46 #define QLOGICPTI_REQ_QUEUE_LEN 255 /* must be power of two - 1 */
47 #define QLOGICPTI_MAX_SG(ql) (4 + (((ql) > 0) ? 7*((ql) - 1) : 0))
298 * ---------
322 #define RES_QUEUE_LEN 255 /* Must be power of two - 1 */
327 #define PREV_REQ_PTR(wheee) (((wheee) - 1) & QLOGICPTI_REQ_QUEUE_LEN)
328 #define PREV_RES_PTR(wheee) (((wheee) - 1) & RES_QUEUE_LEN)
352 /* The cmd->handler is only 32-bits, so that things work even on monster
354 * scsi command pointers here. This is essentially what Matt Jacob does. -DaveM
383 is_pti : 1; /* Non-zero if this is a PTI board. */
467 #define RISC_PSR_TOFLOW 0x1000 /* Timer overflow (rollover) */
480 #define RISC_MTREG_P1DFLT 0x1200 /* Default read/write timing, pg1 */
481 #define RISC_MTREG_P0DFLT 0x0012 /* Default read/write timing, pg0 */
482 #define RISC_MTREG_P1ULTRA 0x2300 /* Ultra-mode rw timing, pg1 */
483 #define RISC_MTREG_P0ULTRA 0x0023 /* Ultra-mode rw timing, pg0 */
486 #define HCCTRL_NOP 0x0000 /* CMD: No operation */
505 for((qp) = qptichain; (qp); (qp) = (qp)->next)