Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
4fb9c15b
Commit
4fb9c15b
authored
Jun 25, 2015
by
Vinod Koul
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'topic/xdmac' into for-linus
parents
0e0fa66e
5abecfa5
Changes
4
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
391 additions
and
52 deletions
+391
-52
drivers/dma/at_hdmac.c
drivers/dma/at_hdmac.c
+106
-0
drivers/dma/at_hdmac_regs.h
drivers/dma/at_hdmac_regs.h
+5
-0
drivers/dma/at_xdmac.c
drivers/dma/at_xdmac.c
+253
-52
include/linux/dmaengine.h
include/linux/dmaengine.h
+27
-0
No files found.
drivers/dma/at_hdmac.c
View file @
4fb9c15b
...
@@ -247,6 +247,10 @@ static void atc_dostart(struct at_dma_chan *atchan, struct at_desc *first)
...
@@ -247,6 +247,10 @@ static void atc_dostart(struct at_dma_chan *atchan, struct at_desc *first)
channel_writel
(
atchan
,
CTRLA
,
0
);
channel_writel
(
atchan
,
CTRLA
,
0
);
channel_writel
(
atchan
,
CTRLB
,
0
);
channel_writel
(
atchan
,
CTRLB
,
0
);
channel_writel
(
atchan
,
DSCR
,
first
->
txd
.
phys
);
channel_writel
(
atchan
,
DSCR
,
first
->
txd
.
phys
);
channel_writel
(
atchan
,
SPIP
,
ATC_SPIP_HOLE
(
first
->
src_hole
)
|
ATC_SPIP_BOUNDARY
(
first
->
boundary
));
channel_writel
(
atchan
,
DPIP
,
ATC_DPIP_HOLE
(
first
->
dst_hole
)
|
ATC_DPIP_BOUNDARY
(
first
->
boundary
));
dma_writel
(
atdma
,
CHER
,
atchan
->
mask
);
dma_writel
(
atdma
,
CHER
,
atchan
->
mask
);
vdbg_dump_regs
(
atchan
);
vdbg_dump_regs
(
atchan
);
...
@@ -634,6 +638,104 @@ static dma_cookie_t atc_tx_submit(struct dma_async_tx_descriptor *tx)
...
@@ -634,6 +638,104 @@ static dma_cookie_t atc_tx_submit(struct dma_async_tx_descriptor *tx)
return
cookie
;
return
cookie
;
}
}
/**
* atc_prep_dma_interleaved - prepare memory to memory interleaved operation
* @chan: the channel to prepare operation on
* @xt: Interleaved transfer template
* @flags: tx descriptor status flags
*/
static
struct
dma_async_tx_descriptor
*
atc_prep_dma_interleaved
(
struct
dma_chan
*
chan
,
struct
dma_interleaved_template
*
xt
,
unsigned
long
flags
)
{
struct
at_dma_chan
*
atchan
=
to_at_dma_chan
(
chan
);
struct
data_chunk
*
first
=
xt
->
sgl
;
struct
at_desc
*
desc
=
NULL
;
size_t
xfer_count
;
unsigned
int
dwidth
;
u32
ctrla
;
u32
ctrlb
;
size_t
len
=
0
;
int
i
;
dev_info
(
chan2dev
(
chan
),
"%s: src=0x%08x, dest=0x%08x, numf=%d, frame_size=%d, flags=0x%lx
\n
"
,
__func__
,
xt
->
src_start
,
xt
->
dst_start
,
xt
->
numf
,
xt
->
frame_size
,
flags
);
if
(
unlikely
(
!
xt
||
xt
->
numf
!=
1
||
!
xt
->
frame_size
))
return
NULL
;
/*
* The controller can only "skip" X bytes every Y bytes, so we
* need to make sure we are given a template that fit that
* description, ie a template with chunks that always have the
* same size, with the same ICGs.
*/
for
(
i
=
0
;
i
<
xt
->
frame_size
;
i
++
)
{
struct
data_chunk
*
chunk
=
xt
->
sgl
+
i
;
if
((
chunk
->
size
!=
xt
->
sgl
->
size
)
||
(
dmaengine_get_dst_icg
(
xt
,
chunk
)
!=
dmaengine_get_dst_icg
(
xt
,
first
))
||
(
dmaengine_get_src_icg
(
xt
,
chunk
)
!=
dmaengine_get_src_icg
(
xt
,
first
)))
{
dev_err
(
chan2dev
(
chan
),
"%s: the controller can transfer only identical chunks
\n
"
,
__func__
);
return
NULL
;
}
len
+=
chunk
->
size
;
}
dwidth
=
atc_get_xfer_width
(
xt
->
src_start
,
xt
->
dst_start
,
len
);
xfer_count
=
len
>>
dwidth
;
if
(
xfer_count
>
ATC_BTSIZE_MAX
)
{
dev_err
(
chan2dev
(
chan
),
"%s: buffer is too big
\n
"
,
__func__
);
return
NULL
;
}
ctrla
=
ATC_SRC_WIDTH
(
dwidth
)
|
ATC_DST_WIDTH
(
dwidth
);
ctrlb
=
ATC_DEFAULT_CTRLB
|
ATC_IEN
|
ATC_SRC_ADDR_MODE_INCR
|
ATC_DST_ADDR_MODE_INCR
|
ATC_SRC_PIP
|
ATC_DST_PIP
|
ATC_FC_MEM2MEM
;
/* create the transfer */
desc
=
atc_desc_get
(
atchan
);
if
(
!
desc
)
{
dev_err
(
chan2dev
(
chan
),
"%s: couldn't allocate our descriptor
\n
"
,
__func__
);
return
NULL
;
}
desc
->
lli
.
saddr
=
xt
->
src_start
;
desc
->
lli
.
daddr
=
xt
->
dst_start
;
desc
->
lli
.
ctrla
=
ctrla
|
xfer_count
;
desc
->
lli
.
ctrlb
=
ctrlb
;
desc
->
boundary
=
first
->
size
>>
dwidth
;
desc
->
dst_hole
=
(
dmaengine_get_dst_icg
(
xt
,
first
)
>>
dwidth
)
+
1
;
desc
->
src_hole
=
(
dmaengine_get_src_icg
(
xt
,
first
)
>>
dwidth
)
+
1
;
desc
->
txd
.
cookie
=
-
EBUSY
;
desc
->
total_len
=
desc
->
len
=
len
;
desc
->
tx_width
=
dwidth
;
/* set end-of-link to the last link descriptor of list*/
set_desc_eol
(
desc
);
desc
->
txd
.
flags
=
flags
;
/* client is in control of this ack */
return
&
desc
->
txd
;
}
/**
/**
* atc_prep_dma_memcpy - prepare a memcpy operation
* atc_prep_dma_memcpy - prepare a memcpy operation
* @chan: the channel to prepare operation on
* @chan: the channel to prepare operation on
...
@@ -1609,6 +1711,7 @@ static int __init at_dma_probe(struct platform_device *pdev)
...
@@ -1609,6 +1711,7 @@ static int __init at_dma_probe(struct platform_device *pdev)
/* setup platform data for each SoC */
/* setup platform data for each SoC */
dma_cap_set
(
DMA_MEMCPY
,
at91sam9rl_config
.
cap_mask
);
dma_cap_set
(
DMA_MEMCPY
,
at91sam9rl_config
.
cap_mask
);
dma_cap_set
(
DMA_SG
,
at91sam9rl_config
.
cap_mask
);
dma_cap_set
(
DMA_SG
,
at91sam9rl_config
.
cap_mask
);
dma_cap_set
(
DMA_INTERLEAVE
,
at91sam9g45_config
.
cap_mask
);
dma_cap_set
(
DMA_MEMCPY
,
at91sam9g45_config
.
cap_mask
);
dma_cap_set
(
DMA_MEMCPY
,
at91sam9g45_config
.
cap_mask
);
dma_cap_set
(
DMA_SLAVE
,
at91sam9g45_config
.
cap_mask
);
dma_cap_set
(
DMA_SLAVE
,
at91sam9g45_config
.
cap_mask
);
dma_cap_set
(
DMA_SG
,
at91sam9g45_config
.
cap_mask
);
dma_cap_set
(
DMA_SG
,
at91sam9g45_config
.
cap_mask
);
...
@@ -1713,6 +1816,9 @@ static int __init at_dma_probe(struct platform_device *pdev)
...
@@ -1713,6 +1816,9 @@ static int __init at_dma_probe(struct platform_device *pdev)
atdma
->
dma_common
.
dev
=
&
pdev
->
dev
;
atdma
->
dma_common
.
dev
=
&
pdev
->
dev
;
/* set prep routines based on capability */
/* set prep routines based on capability */
if
(
dma_has_cap
(
DMA_INTERLEAVE
,
atdma
->
dma_common
.
cap_mask
))
atdma
->
dma_common
.
device_prep_interleaved_dma
=
atc_prep_dma_interleaved
;
if
(
dma_has_cap
(
DMA_MEMCPY
,
atdma
->
dma_common
.
cap_mask
))
if
(
dma_has_cap
(
DMA_MEMCPY
,
atdma
->
dma_common
.
cap_mask
))
atdma
->
dma_common
.
device_prep_dma_memcpy
=
atc_prep_dma_memcpy
;
atdma
->
dma_common
.
device_prep_dma_memcpy
=
atc_prep_dma_memcpy
;
...
...
drivers/dma/at_hdmac_regs.h
View file @
4fb9c15b
...
@@ -196,6 +196,11 @@ struct at_desc {
...
@@ -196,6 +196,11 @@ struct at_desc {
size_t
len
;
size_t
len
;
u32
tx_width
;
u32
tx_width
;
size_t
total_len
;
size_t
total_len
;
/* Interleaved data */
size_t
boundary
;
size_t
dst_hole
;
size_t
src_hole
;
};
};
static
inline
struct
at_desc
*
static
inline
struct
at_desc
*
...
...
drivers/dma/at_xdmac.c
View file @
4fb9c15b
This diff is collapsed.
Click to expand it.
include/linux/dmaengine.h
View file @
4fb9c15b
...
@@ -923,6 +923,33 @@ static inline int dma_maxpq(struct dma_device *dma, enum dma_ctrl_flags flags)
...
@@ -923,6 +923,33 @@ static inline int dma_maxpq(struct dma_device *dma, enum dma_ctrl_flags flags)
BUG
();
BUG
();
}
}
static
inline
size_t
dmaengine_get_icg
(
bool
inc
,
bool
sgl
,
size_t
icg
,
size_t
dir_icg
)
{
if
(
inc
)
{
if
(
dir_icg
)
return
dir_icg
;
else
if
(
sgl
)
return
icg
;
}
return
0
;
}
static
inline
size_t
dmaengine_get_dst_icg
(
struct
dma_interleaved_template
*
xt
,
struct
data_chunk
*
chunk
)
{
return
dmaengine_get_icg
(
xt
->
dst_inc
,
xt
->
dst_sgl
,
chunk
->
icg
,
chunk
->
dst_icg
);
}
static
inline
size_t
dmaengine_get_src_icg
(
struct
dma_interleaved_template
*
xt
,
struct
data_chunk
*
chunk
)
{
return
dmaengine_get_icg
(
xt
->
src_inc
,
xt
->
src_sgl
,
chunk
->
icg
,
chunk
->
src_icg
);
}
/* --- public DMA engine API --- */
/* --- public DMA engine API --- */
#ifdef CONFIG_DMA_ENGINE
#ifdef CONFIG_DMA_ENGINE
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment