Skip to content

Commit

Permalink
dma: pl330: Alloc dma_parms for the dma device
Browse files Browse the repository at this point in the history
In order to be able to set a maximum segment size for the device we need to
allocate a dma_parameters struct for the device first.

Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
  • Loading branch information
Lars-Peter Clausen authored and Vinod Koul committed Dec 16, 2013
1 parent 319e2e3 commit b714b84
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions drivers/dma/pl330.c
Original file line number Diff line number Diff line change
Expand Up @@ -578,6 +578,9 @@ struct dma_pl330_dmac {
/* DMA-Engine Device */
struct dma_device ddma;

/* Holds info about sg limitations */
struct device_dma_parameters dma_parms;

/* Pool of descriptors available for the DMAC's channels */
struct list_head desc_pool;
/* To protect desc_pool manipulation */
Expand Down Expand Up @@ -3023,6 +3026,9 @@ pl330_probe(struct amba_device *adev, const struct amba_id *id)
"unable to register DMA to the generic DT DMA helpers\n");
}
}

adev->dev.dma_parms = &pdmac->dma_parms;

/*
* This is the limit for transfers with a buswidth of 1, larger
* buswidths will have larger limits.
Expand Down

0 comments on commit b714b84

Please sign in to comment.