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
nexedi
linux
Commits
83cb0dca
Commit
83cb0dca
authored
Dec 14, 2016
by
Vinod Koul
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'topic/pxa' into for-linus
parents
db82df3e
556195f4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
28 deletions
+0
-28
drivers/dma/pxa_dma.c
drivers/dma/pxa_dma.c
+0
-28
No files found.
drivers/dma/pxa_dma.c
View file @
83cb0dca
...
...
@@ -413,15 +413,6 @@ static inline void pxad_init_debugfs(struct pxad_device *pdev) {}
static
inline
void
pxad_cleanup_debugfs
(
struct
pxad_device
*
pdev
)
{}
#endif
/*
* In the transition phase where legacy pxa handling is done at the same time as
* mmp_dma, the DMA physical channel split between the 2 DMA providers is done
* through legacy_reserved. Legacy code reserves DMA channels by settings
* corresponding bits in legacy_reserved.
*/
static
u32
legacy_reserved
;
static
u32
legacy_unavailable
;
static
struct
pxad_phy
*
lookup_phy
(
struct
pxad_chan
*
pchan
)
{
int
prio
,
i
;
...
...
@@ -442,14 +433,10 @@ static struct pxad_phy *lookup_phy(struct pxad_chan *pchan)
for
(
i
=
0
;
i
<
pdev
->
nr_chans
;
i
++
)
{
if
(
prio
!=
(
i
&
0xf
)
>>
2
)
continue
;
if
((
i
<
32
)
&&
(
legacy_reserved
&
BIT
(
i
)))
continue
;
phy
=
&
pdev
->
phys
[
i
];
if
(
!
phy
->
vchan
)
{
phy
->
vchan
=
pchan
;
found
=
phy
;
if
(
i
<
32
)
legacy_unavailable
|=
BIT
(
i
);
goto
out_unlock
;
}
}
...
...
@@ -469,7 +456,6 @@ static void pxad_free_phy(struct pxad_chan *chan)
struct
pxad_device
*
pdev
=
to_pxad_dev
(
chan
->
vc
.
chan
.
device
);
unsigned
long
flags
;
u32
reg
;
int
i
;
dev_dbg
(
&
chan
->
vc
.
chan
.
dev
->
device
,
"%s(): freeing
\n
"
,
__func__
);
...
...
@@ -483,9 +469,6 @@ static void pxad_free_phy(struct pxad_chan *chan)
}
spin_lock_irqsave
(
&
pdev
->
phy_lock
,
flags
);
for
(
i
=
0
;
i
<
32
;
i
++
)
if
(
chan
->
phy
==
&
pdev
->
phys
[
i
])
legacy_unavailable
&=
~
BIT
(
i
);
chan
->
phy
->
vchan
=
NULL
;
chan
->
phy
=
NULL
;
spin_unlock_irqrestore
(
&
pdev
->
phy_lock
,
flags
);
...
...
@@ -739,8 +722,6 @@ static irqreturn_t pxad_int_handler(int irq, void *dev_id)
i
=
__ffs
(
dint
);
dint
&=
(
dint
-
1
);
phy
=
&
pdev
->
phys
[
i
];
if
((
i
<
32
)
&&
(
legacy_reserved
&
BIT
(
i
)))
continue
;
if
(
pxad_chan_handler
(
irq
,
phy
)
==
IRQ_HANDLED
)
ret
=
IRQ_HANDLED
;
}
...
...
@@ -1522,15 +1503,6 @@ bool pxad_filter_fn(struct dma_chan *chan, void *param)
}
EXPORT_SYMBOL_GPL
(
pxad_filter_fn
);
int
pxad_toggle_reserved_channel
(
int
legacy_channel
)
{
if
(
legacy_unavailable
&
(
BIT
(
legacy_channel
)))
return
-
EBUSY
;
legacy_reserved
^=
BIT
(
legacy_channel
);
return
0
;
}
EXPORT_SYMBOL_GPL
(
pxad_toggle_reserved_channel
);
module_platform_driver
(
pxad_driver
);
MODULE_DESCRIPTION
(
"Marvell PXA Peripheral DMA Driver"
);
...
...
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