Home | History | Annotate | Download | only in pci

Lines Matching refs:bpl

689 cxdtv_risc_buffer(struct cxdtv_softc *sc, uint32_t bpl, uint32_t lines)
694 CX_DPRINTF(("cxdtv_risc_buffer: bpl=0x%x\n", bpl));
696 size = 1 + (bpl * lines) / PAGE_SIZE + lines;
710 cxdtv_risc_field(sc, rm, bpl);
716 cxdtv_risc_field(struct cxdtv_softc *sc, uint32_t *rm, uint32_t bpl)
720 CX_DPRINTF(("cxdtv_risc_field: bpl=0x%x\n", bpl));
739 *(rm++) = (CX_RISC_WRITE|CX_RISC_SOL|CX_RISC_EOL|CX_RISC_IRQ1|bpl);
740 *(rm++) = (DMAADDR(p) + 0 * bpl);
742 *(rm++) = (CX_RISC_WRITE|CX_RISC_SOL|CX_RISC_EOL|CX_RISC_IRQ2|bpl);
743 *(rm++) = (DMAADDR(p) + 1 * bpl);
753 uint32_t bpl)
758 CX_DPRINTF(("cxdtv_sram_ch_setup: bpl=0x%x\n", bpl));
761 bpl = (bpl + 7) & ~7;
762 CX_DPRINTF(("cxdtv_sram_ch_setup: bpl=0x%x\n", bpl));
764 lines = csc->csc_fifosz / bpl;
770 csc->csc_fifo + (bpl * i)));
773 csc->csc_fifo + (bpl * i));
801 csc->csc_cnt1, (bpl >> 3) - 1);