Home | History | Annotate | Download | only in marvell

Lines Matching defs:cause

561 	uint32_t cause;
564 cause = bus_space_read_4(sc->sc_iot, sc->sc_ioh, ia->ia_cause);
565 DPRINTF(("IDMAC intr: cause=0x%x\n", cause));
566 bus_space_write_4(sc->sc_iot, sc->sc_ioh, ia->ia_cause, ~cause);
569 while (cause) {
571 if (cause & GTIDMAC_I_ADDRMISS) {
575 if (cause & GTIDMAC_I_ACCPROT) {
580 if (cause & GTIDMAC_I_WRPROT) {
584 if (cause & GTIDMAC_I_OWN) {
594 if (cause & GTIDMAC_I_ERROR) {
611 if (cause & (GTIDMAC_I_COMP | GTIDMAC_I_ERROR)) {
619 cause >>= GTIDMAC_I_BITS;
645 uint32_t cause;
648 cause =
650 DPRINTF(("XORE port %d intr: cause=0x%x\n", port, cause));
652 MVXORE_XEICR(sc, port), ~cause);
655 while (cause) {
657 if (cause & MVXORE_I_ADDRDECODE) {
661 if (cause & MVXORE_I_ACCPROT) {
666 if (cause & MVXORE_I_WRPROT) {
670 if (cause & MVXORE_I_OWN) {
674 if (cause & MVXORE_I_INTPARITY) {
678 if (cause & MVXORE_I_XBAR) {
690 if (cause & MVXORE_I_ERROR) {
708 if (cause & (MVXORE_I_EOC | MVXORE_I_ERROR)) {
716 cause >>= MVXORE_I_BITS;