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
cdce2663
Commit
cdce2663
authored
Jan 21, 2021
by
Manivannan Sadhasivam
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'mhi-ath11k-immutable' into mhi-next
parents
b91c3b30
6ffcc18d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
2 deletions
+9
-2
drivers/bus/mhi/core/init.c
drivers/bus/mhi/core/init.c
+7
-2
include/linux/mhi.h
include/linux/mhi.h
+2
-0
No files found.
drivers/bus/mhi/core/init.c
View file @
cdce2663
...
...
@@ -151,12 +151,17 @@ int mhi_init_irq_setup(struct mhi_controller *mhi_cntrl)
{
struct
mhi_event
*
mhi_event
=
mhi_cntrl
->
mhi_event
;
struct
device
*
dev
=
&
mhi_cntrl
->
mhi_dev
->
dev
;
unsigned
long
irq_flags
=
IRQF_SHARED
|
IRQF_NO_SUSPEND
;
int
i
,
ret
;
/* if controller driver has set irq_flags, use it */
if
(
mhi_cntrl
->
irq_flags
)
irq_flags
=
mhi_cntrl
->
irq_flags
;
/* Setup BHI_INTVEC IRQ */
ret
=
request_threaded_irq
(
mhi_cntrl
->
irq
[
0
],
mhi_intvec_handler
,
mhi_intvec_threaded_handler
,
IRQF_SHARED
|
IRQF_NO_SUSPEND
,
irq_flags
,
"bhi"
,
mhi_cntrl
);
if
(
ret
)
return
ret
;
...
...
@@ -174,7 +179,7 @@ int mhi_init_irq_setup(struct mhi_controller *mhi_cntrl)
ret
=
request_irq
(
mhi_cntrl
->
irq
[
mhi_event
->
irq
],
mhi_irq_handler
,
IRQF_SHARED
|
IRQF_NO_SUSPEND
,
irq_flags
,
"mhi"
,
mhi_event
);
if
(
ret
)
{
dev_err
(
dev
,
"Error requesting irq:%d for ev:%d
\n
"
,
...
...
include/linux/mhi.h
View file @
cdce2663
...
...
@@ -354,6 +354,7 @@ struct mhi_controller_config {
* @fbc_download: MHI host needs to do complete image transfer (optional)
* @pre_init: MHI host needs to do pre-initialization before power up
* @wake_set: Device wakeup set flag
* @irq_flags: irq flags passed to request_irq (optional)
*
* Fields marked as (required) need to be populated by the controller driver
* before calling mhi_register_controller(). For the fields marked as (optional)
...
...
@@ -446,6 +447,7 @@ struct mhi_controller {
bool
fbc_download
;
bool
pre_init
;
bool
wake_set
;
unsigned
long
irq_flags
;
};
/**
...
...
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