Lines Matching refs:mstirq

484 	uint16_t mstcmd, mstirq, tgtid, tgtirq;  in elanpex_intr()  local
491 mstirq = bus_space_read_2(sc->sc_memt, sc->sc_memh, MMCR_HBMSTIRQSTA); in elanpex_intr()
505 mstcmd = __SHIFTOUT(mstirq, MMCR_HBMSTIRQSTA_M_CMD_IRQ_ID); in elanpex_intr()
508 if ((mstirq & mmsg[i].bit) == 0) in elanpex_intr()
994 uint16_t pcihostmap, mstirq, tgtirq; in elanpex_intr_establish() local
1009 mstirq = bus_space_read_2(sc->sc_memt, sc->sc_memh, MMCR_HBMSTIRQCTL); in elanpex_intr_establish()
1014 mstirq |= MMCR_HBMSTIRQCTL_M_RTRTO_IRQ_ENB; in elanpex_intr_establish()
1015 mstirq |= MMCR_HBMSTIRQCTL_M_TABRT_IRQ_ENB; in elanpex_intr_establish()
1016 mstirq |= MMCR_HBMSTIRQCTL_M_MABRT_IRQ_ENB; in elanpex_intr_establish()
1017 mstirq |= MMCR_HBMSTIRQCTL_M_SERR_IRQ_ENB; in elanpex_intr_establish()
1018 mstirq |= MMCR_HBMSTIRQCTL_M_RPER_IRQ_ENB; in elanpex_intr_establish()
1019 mstirq |= MMCR_HBMSTIRQCTL_M_DPER_IRQ_ENB; in elanpex_intr_establish()
1031 mstirq |= MMCR_HBMSTIRQCTL_M_RTRTO_IRQ_SEL; in elanpex_intr_establish()
1032 mstirq |= MMCR_HBMSTIRQCTL_M_TABRT_IRQ_SEL; in elanpex_intr_establish()
1033 mstirq |= MMCR_HBMSTIRQCTL_M_MABRT_IRQ_SEL; in elanpex_intr_establish()
1034 mstirq |= MMCR_HBMSTIRQCTL_M_SERR_IRQ_SEL; in elanpex_intr_establish()
1035 mstirq |= MMCR_HBMSTIRQCTL_M_RPER_IRQ_SEL; in elanpex_intr_establish()
1036 mstirq |= MMCR_HBMSTIRQCTL_M_DPER_IRQ_SEL; in elanpex_intr_establish()
1045 bus_space_write_2(sc->sc_memt, sc->sc_memh, MMCR_HBMSTIRQCTL, mstirq); in elanpex_intr_establish()
1082 uint16_t pcihostmap, mstirq, tgtirq; in elanpex_shutdown() local
1088 mstirq = bus_space_read_2(sc->sc_memt, sc->sc_memh, MMCR_HBMSTIRQCTL); in elanpex_shutdown()
1089 mstirq &= ~MMCR_HBMSTIRQCTL_M_RTRTO_IRQ_ENB; in elanpex_shutdown()
1090 mstirq &= ~MMCR_HBMSTIRQCTL_M_TABRT_IRQ_ENB; in elanpex_shutdown()
1091 mstirq &= ~MMCR_HBMSTIRQCTL_M_MABRT_IRQ_ENB; in elanpex_shutdown()
1092 mstirq &= ~MMCR_HBMSTIRQCTL_M_SERR_IRQ_ENB; in elanpex_shutdown()
1093 mstirq &= ~MMCR_HBMSTIRQCTL_M_RPER_IRQ_ENB; in elanpex_shutdown()
1094 mstirq &= ~MMCR_HBMSTIRQCTL_M_DPER_IRQ_ENB; in elanpex_shutdown()
1095 bus_space_write_2(sc->sc_memt, sc->sc_memh, MMCR_HBMSTIRQCTL, mstirq); in elanpex_shutdown()