Lines Matching defs:scb
653 struct ie_sys_ctl_block scb;
658 ie2host(sc, IE_IBASE + IE_SCB_OFF, &scb, sizeof scb);
692 struct ie_sys_ctl_block scb;
693 u_long ptr = IE_IBASE + IE_SCB_OFF + sizeof scb;
697 bzero ( &scb, sizeof(scb) );
705 scb.ie_command_list = (u_short)ptr;
708 if ( command_and_wait(sc, IE_CU_START, &scb, &cmd, ptr, sizeof cmd,
805 struct ie_sys_ctl_block scb;
806 bzero ( &scb, sizeof scb );
807 scb.ie_recv_list = (u_short)sc->rframes[0];
808 host2ie(sc, (char *)&scb, (IE_IBASE + IE_SCB_OFF), sizeof scb );
816 struct ie_sys_ctl_block scb;
817 ie2host ( sc, IE_IBASE + IE_SCB_OFF, &scb, sizeof scb );
818 scb.ie_recv_list = (u_short)sc->rframes[0];
819 command_and_wait(sc, IE_RU_START, &scb, 0, 0, 0, 0);
834 struct ie_sys_ctl_block scb;
837 u_long ptr = IE_IBASE + IE_SCB_OFF + sizeof scb;
842 bzero ( &scb, sizeof(scb) );
863 scb.ie_command_list = (u_short)ptr;
865 if ( command_and_wait(sc, IE_CU_START, &scb, &cmd, ptr, sizeof cmd,
887 if ( command_and_wait(sc, IE_CU_START, &scb, &iasetup_cmd, ptr, sizeof cmd,
947 struct ie_sys_ctl_block scb;
950 ie2host ( sc, IE_IBASE + IE_SCB_OFF, &scb, sizeof scb );
952 if ( command_and_wait(sc, IE_RU_DISABLE, &scb, 0, 0, 0, 0) )
976 /* Copy the scb to the card */
1287 struct ie_sys_ctl_block scb;
1307 ie2host ( sc, IE_IBASE + IE_SCB_OFF, &scb, sizeof scb );
1308 sc->sc_ethercom.ec_if.if_ierrors += scb.ie_err_crc +
1309 scb.ie_err_align +
1310 scb.ie_err_resource +
1311 scb.ie_err_overrun;
1312 scb.ie_err_crc = scb.ie_err_align = 0;
1313 scb.ie_err_resource = scb.ie_err_overrun = 0;
1314 host2ie(sc, &scb, IE_SCP_ADDR, sizeof (scb) );
1318 ie2host ( sc, IE_IBASE + IE_SCB_OFF, &scb, sizeof scb );
1320 if ( ((status&IE_FD_RNR)!=0) && ((scb.ie_status&IE_RU_READY)==0) )
1325 scb.ie_recv_list = sc->rframes[0];
1326 host2ie(sc, (char *)&scb, IE_IBASE + IE_SCB_OFF, sizeof (scb) );
1327 command_and_wait(sc, IE_RU_START, &scb, 0, 0, 0, 0);
1412 struct ie_sys_ctl_block scb;
1430 ie2host ( sc, IE_IBASE + IE_SCB_OFF, &scb, sizeof scb );
1431 scb.ie_command_list = sc->xmit_cmds[sc->xctail];
1432 host2ie(sc, (char *)&scb, (IE_IBASE + IE_SCB_OFF), sizeof scb );
1434 command_and_wait(sc, IE_CU_START, &scb, &xc, sc->xmit_cmds[sc->xctail]