Home | History | Annotate | Download | only in pci

Lines Matching defs:rm

935 	uint32_t *rm;
945 rm = (uint32_t *)sc->sc_riscbuf;
946 coram_risc_field(sc, rm, bpl);
952 coram_risc_field(struct coram_softc *sc, uint32_t *rm, uint32_t bpl)
966 rm = sc->sc_riscbuf;
971 *(rm++) = (CX_RISC_SYNC|0);
973 *(rm++) = (CX_RISC_WRITE|CX_RISC_SOL|CX_RISC_EOL|CX_RISC_IRQ1|bpl);
974 *(rm++) = (DMAADDR(p) + 0 * bpl);
975 *(rm++) = 0; /* high dword */
977 *(rm++) = (CX_RISC_WRITE|CX_RISC_SOL|CX_RISC_EOL|CX_RISC_IRQ2|bpl);
978 *(rm++) = (DMAADDR(p) + 1 * bpl);
979 *(rm++) = 0;
981 *(rm++) = (CX_RISC_JUMP|1);
982 *(rm++) = (coram_sram_chs[CORAM_SRAM_CH6].csc_risc + 4);
983 *(rm++) = 0;