Skip to content

Commit

Permalink
dmaengine: omap: add support for setting fi
Browse files Browse the repository at this point in the history
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
  • Loading branch information
Russell King committed Jul 31, 2012
1 parent 3850e22 commit 7c836bc
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions drivers/dma/omap-dma.c
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ struct omap_desc {
enum dma_transfer_direction dir;
dma_addr_t dev_addr;

int16_t fi; /* for OMAP_DMA_SYNC_PACKET */
uint8_t es; /* OMAP_DMA_DATA_TYPE_xxx */
uint8_t sync_mode; /* OMAP_DMA_SYNC_xxx */
uint8_t sync_type; /* OMAP_DMA_xxx_SYNC* */
Expand Down Expand Up @@ -120,10 +121,10 @@ static void omap_dma_start_desc(struct omap_chan *c)

if (d->dir == DMA_DEV_TO_MEM)
omap_set_dma_src_params(c->dma_ch, d->periph_port,
OMAP_DMA_AMODE_CONSTANT, d->dev_addr, 0, 0);
OMAP_DMA_AMODE_CONSTANT, d->dev_addr, 0, d->fi);
else
omap_set_dma_dest_params(c->dma_ch, d->periph_port,
OMAP_DMA_AMODE_CONSTANT, d->dev_addr, 0, 0);
OMAP_DMA_AMODE_CONSTANT, d->dev_addr, 0, d->fi);

omap_dma_start_sg(c, d, 0);
}
Expand Down

0 comments on commit 7c836bc

Please sign in to comment.