• Home
  • Raw
  • Download

Lines Matching refs:rp

76 static __le32* cx88_risc_field(__le32 *rp, struct scatterlist *sglist,  in cx88_risc_field()  argument
86 *(rp++) = cpu_to_le32(RISC_RESYNC | sync_line); in cx88_risc_field()
101 *(rp++)=cpu_to_le32(RISC_WRITE|sol|RISC_EOL|bpl); in cx88_risc_field()
102 *(rp++)=cpu_to_le32(sg_dma_address(sg)+offset); in cx88_risc_field()
107 *(rp++)=cpu_to_le32(RISC_WRITE|sol| in cx88_risc_field()
109 *(rp++)=cpu_to_le32(sg_dma_address(sg)+offset); in cx88_risc_field()
114 *(rp++)=cpu_to_le32(RISC_WRITE| in cx88_risc_field()
116 *(rp++)=cpu_to_le32(sg_dma_address(sg)); in cx88_risc_field()
120 *(rp++)=cpu_to_le32(RISC_WRITE|RISC_EOL|todo); in cx88_risc_field()
121 *(rp++)=cpu_to_le32(sg_dma_address(sg)); in cx88_risc_field()
127 return rp; in cx88_risc_field()
136 __le32 *rp; in cx88_risc_buffer() local
155 rp = risc->cpu; in cx88_risc_buffer()
157 rp = cx88_risc_field(rp, sglist, top_offset, 0, in cx88_risc_buffer()
160 rp = cx88_risc_field(rp, sglist, bottom_offset, 0x200, in cx88_risc_buffer()
164 risc->jmp = rp; in cx88_risc_buffer()
174 __le32 *rp; in cx88_risc_databuffer() local
187 rp = risc->cpu; in cx88_risc_databuffer()
188 rp = cx88_risc_field(rp, sglist, 0, NO_SYNC_LINE, bpl, 0, lines, lpi); in cx88_risc_databuffer()
191 risc->jmp = rp; in cx88_risc_databuffer()
199 __le32 *rp; in cx88_risc_stopper() local
206 rp = risc->cpu; in cx88_risc_stopper()
207 *(rp++) = cpu_to_le32(RISC_WRITECR | RISC_IRQ2 | RISC_IMM); in cx88_risc_stopper()
208 *(rp++) = cpu_to_le32(reg); in cx88_risc_stopper()
209 *(rp++) = cpu_to_le32(value); in cx88_risc_stopper()
210 *(rp++) = cpu_to_le32(mask); in cx88_risc_stopper()
211 *(rp++) = cpu_to_le32(RISC_JUMP); in cx88_risc_stopper()
212 *(rp++) = cpu_to_le32(risc->dma); in cx88_risc_stopper()