Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci-2.6.23
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci-2.6.23
Commits
48ac5eeb
Commit
48ac5eeb
authored
Oct 12, 2005
by
Kevin Hilman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ARM: OMAP: Undo level2 IRQ fix. Doesn't build on non-P2 platforms.
Signed-off-by:
Kevin Hilman
<
kevin@hilman.org
>
parent
153984dc
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
19 deletions
+10
-19
arch/arm/mach-omap1/irq.c
arch/arm/mach-omap1/irq.c
+4
-7
arch/arm/plat-omap/pm.c
arch/arm/plat-omap/pm.c
+5
-10
include/asm-arm/arch-omap/irqs.h
include/asm-arm/arch-omap/irqs.h
+1
-2
No files found.
arch/arm/mach-omap1/irq.c
View file @
48ac5eeb
...
...
@@ -47,7 +47,6 @@
#include <asm/irq.h>
#include <asm/mach/irq.h>
#include <asm/arch/gpio.h>
#include <asm/arch/cpu.h>
#include <asm/io.h>
...
...
@@ -235,11 +234,9 @@ void __init omap_init_irq(void)
}
/* Unmask level 2 handler */
if
(
cpu_is_omap730
())
if
(
cpu_is_omap730
())
{
omap_unmask_irq
(
INT_730_IH2_IRQ
);
else
if
(
cpu_is_omap1510
())
omap_unmask_irq
(
INT_1510_IH2_IRQ
);
else
if
(
cpu_is_omap16xx
())
omap_unmask_irq
(
INT_1610_IH2_IRQ
);
}
else
{
omap_unmask_irq
(
INT_IH2_IRQ
);
}
}
arch/arm/plat-omap/pm.c
View file @
48ac5eeb
...
...
@@ -121,7 +121,7 @@ void omap_pm_idle(void)
*/
static
void
omap_pm_wakeup_setup
(
void
)
{
u32
level1_wake
;
u32
level1_wake
=
OMAP_IRQ_BIT
(
INT_IH2_IRQ
)
;
u32
level2_wake
=
OMAP_IRQ_BIT
(
INT_UART2
);
/*
...
...
@@ -130,15 +130,10 @@ static void omap_pm_wakeup_setup(void)
* drivers must still separately call omap_set_gpio_wakeup() to
* wake up to a GPIO interrupt.
*/
if
(
cpu_is_omap730
())
level1_wake
=
OMAP_IRQ_BIT
(
INT_730_GPIO_BANK1
)
|
OMAP_IRQ_BIT
(
INT_730_IH2_IRQ
);
else
if
(
cpu_is_omap1510
())
level1_wake
=
OMAP_IRQ_BIT
(
INT_GPIO_BANK1
)
|
OMAP_IRQ_BIT
(
INT_1510_IH2_IRQ
);
else
if
(
cpu_is_omap16xx
())
level1_wake
=
OMAP_IRQ_BIT
(
INT_GPIO_BANK1
)
|
OMAP_IRQ_BIT
(
INT_1610_IH2_IRQ
);
if
(
cpu_is_omap1510
()
||
cpu_is_omap16xx
())
level1_wake
|=
OMAP_IRQ_BIT
(
INT_GPIO_BANK1
);
else
if
(
cpu_is_omap730
())
level1_wake
|=
OMAP_IRQ_BIT
(
INT_730_GPIO_BANK1
);
omap_writel
(
~
level1_wake
,
OMAP_IH1_MIR
);
...
...
include/asm-arm/arch-omap/irqs.h
View file @
48ac5eeb
...
...
@@ -31,6 +31,7 @@
* NOTE: See also the OMAP-1510 and 1610 specific IRQ numbers below
*
*/
#define INT_IH2_IRQ 0
#define INT_CAMERA 1
#define INT_FIQ 3
#define INT_RTDX 6
...
...
@@ -59,7 +60,6 @@
/*
* OMAP-1510 specific IRQ numbers for interrupt handler 1
*/
#define INT_1510_IH2_IRQ 0
#define INT_1510_RES2 2
#define INT_1510_SPI_TX 4
#define INT_1510_SPI_RX 5
...
...
@@ -71,7 +71,6 @@
/*
* OMAP-1610 specific IRQ numbers for interrupt handler 1
*/
#define INT_1610_IH2_IRQ 0
#define INT_1610_IH2_FIQ 2
#define INT_1610_McBSP2_TX 4
#define INT_1610_McBSP2_RX 5
...
...
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