Commit aa182ae2 authored by Jonas Aaberg's avatar Jonas Aaberg Committed by Dan Williams

DMAENGINE: ste_dma40: added support for link jobs in hw

If a new job is added on a physical channel that already has
a job, the new job is linked in hw to the old job instead of
queueing up the jobs.
Signed-off-by: default avatarJonas Aaberg <jonas.aberg@stericsson.com>
Signed-off-by: default avatarLinus Walleij <linus.walleij@stericsson.com>
Signed-off-by: default avatarDan Williams <dan.j.williams@intel.com>
parent 3ae0267f
This diff is collapsed.
...@@ -202,8 +202,6 @@ struct d40_phy_lli { ...@@ -202,8 +202,6 @@ struct d40_phy_lli {
* *
* @src: Register settings for src channel. * @src: Register settings for src channel.
* @dst: Register settings for dst channel. * @dst: Register settings for dst channel.
* @dst_addr: Physical destination address.
* @src_addr: Physical source address.
* *
* All DMA transfers have a source and a destination. * All DMA transfers have a source and a destination.
*/ */
...@@ -211,8 +209,6 @@ struct d40_phy_lli { ...@@ -211,8 +209,6 @@ struct d40_phy_lli {
struct d40_phy_lli_bidir { struct d40_phy_lli_bidir {
struct d40_phy_lli *src; struct d40_phy_lli *src;
struct d40_phy_lli *dst; struct d40_phy_lli *dst;
dma_addr_t dst_addr;
dma_addr_t src_addr;
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment