Lines Matching full:scb

3  * Aic94xx SAS/SATA driver SCB management.
19 /* ---------- EMPTY SCB ---------- */
359 * @ascb: pointer to Empty SCB
369 struct empty_scb *escb = &ascb->scb->escb; in asd_invalidate_edb()
384 le64_to_cpu(ascb->scb->header.next_scb), in asd_invalidate_edb()
385 le16_to_cpu(ascb->scb->header.index), in asd_invalidate_edb()
386 ascb->scb->header.opcode); in asd_invalidate_edb()
421 le64_to_cpu(ascb->scb->header.next_scb), in escb_tasklet_complete()
422 le16_to_cpu(ascb->scb->header.index), in escb_tasklet_complete()
423 ascb->scb->header.opcode); in escb_tasklet_complete()
454 ASD_DPRINTK("R_T_A for non TASK scb 0x%x\n", in escb_tasklet_complete()
455 a->scb->header.opcode); in escb_tasklet_complete()
587 le64_to_cpu(ascb->scb->header.next_scb), in escb_tasklet_complete()
588 le16_to_cpu(ascb->scb->header.index), in escb_tasklet_complete()
589 ascb->scb->header.opcode); in escb_tasklet_complete()
620 * This function completes a CONTROL PHY scb and frees the ascb.
630 struct scb *scb = ascb->scb; in control_phy_tasklet_complete() local
631 struct control_phy *control_phy = &scb->control_phy; in control_phy_tasklet_complete()
754 * asd_build_control_phy -- build a CONTROL PHY SCB
759 * This function builds a CONTROL PHY scb. No allocation of any kind
769 struct scb *scb = ascb->scb; in asd_build_control_phy() local
770 struct control_phy *control_phy = &scb->control_phy; in asd_build_control_phy()
772 scb->header.opcode = CONTROL_PHY; in asd_build_control_phy()
820 struct initiate_link_adm *link_adm = &ascb->scb->link_adm;
836 struct scb *scb = ascb->scb;
837 struct initiate_link_adm *link_adm = &scb->link_adm;
839 scb->header.opcode = INITIATE_LINK_ADM_TASK;
850 /* ---------- SCB timer ---------- */
853 * asd_ascb_timedout -- called when a pending SCB's timer has expired
854 * @t: Timer context used to fetch the SCB
858 * resources they have with this SCB, and then call this one at the
869 ASD_DPRINTK("scb:0x%x timed out\n", ascb->scb->header.opcode); in asd_ascb_timedout()