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
89650870
Commit
89650870
authored
Feb 27, 2010
by
Ralf Baechle
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MIPS: i8259: Convert IRQ controller lock to raw spinlock.
Signed-off-by:
Ralf Baechle
<
ralf@linux-mips.org
>
parent
598c5aba
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
16 deletions
+16
-16
arch/mips/include/asm/i8259.h
arch/mips/include/asm/i8259.h
+3
-3
arch/mips/kernel/i8259.c
arch/mips/kernel/i8259.c
+11
-11
arch/mips/loongson/lemote-2f/irq.c
arch/mips/loongson/lemote-2f/irq.c
+2
-2
No files found.
arch/mips/include/asm/i8259.h
View file @
89650870
...
...
@@ -35,7 +35,7 @@
#define SLAVE_ICW4_DEFAULT 0x01
#define PIC_ICW4_AEOI 2
extern
spinlock_t
i8259A_lock
;
extern
raw_
spinlock_t
i8259A_lock
;
extern
int
i8259A_irq_pending
(
unsigned
int
irq
);
extern
void
make_8259A_irq
(
unsigned
int
irq
);
...
...
@@ -51,7 +51,7 @@ static inline int i8259_irq(void)
{
int
irq
;
spin_lock
(
&
i8259A_lock
);
raw_
spin_lock
(
&
i8259A_lock
);
/* Perform an interrupt acknowledge cycle on controller 1. */
outb
(
0x0C
,
PIC_MASTER_CMD
);
/* prepare for poll */
...
...
@@ -78,7 +78,7 @@ static inline int i8259_irq(void)
irq
=
-
1
;
}
spin_unlock
(
&
i8259A_lock
);
raw_
spin_unlock
(
&
i8259A_lock
);
return
likely
(
irq
>=
0
)
?
irq
+
I8259A_IRQ_BASE
:
irq
;
}
...
...
arch/mips/kernel/i8259.c
View file @
89650870
...
...
@@ -29,7 +29,7 @@
*/
static
int
i8259A_auto_eoi
=
-
1
;
DEFINE_SPINLOCK
(
i8259A_lock
);
DEFINE_
RAW_
SPINLOCK
(
i8259A_lock
);
static
void
disable_8259A_irq
(
unsigned
int
irq
);
static
void
enable_8259A_irq
(
unsigned
int
irq
);
static
void
mask_and_ack_8259A
(
unsigned
int
irq
);
...
...
@@ -65,13 +65,13 @@ static void disable_8259A_irq(unsigned int irq)
irq
-=
I8259A_IRQ_BASE
;
mask
=
1
<<
irq
;
spin_lock_irqsave
(
&
i8259A_lock
,
flags
);
raw_
spin_lock_irqsave
(
&
i8259A_lock
,
flags
);
cached_irq_mask
|=
mask
;
if
(
irq
&
8
)
outb
(
cached_slave_mask
,
PIC_SLAVE_IMR
);
else
outb
(
cached_master_mask
,
PIC_MASTER_IMR
);
spin_unlock_irqrestore
(
&
i8259A_lock
,
flags
);
raw_
spin_unlock_irqrestore
(
&
i8259A_lock
,
flags
);
}
static
void
enable_8259A_irq
(
unsigned
int
irq
)
...
...
@@ -81,13 +81,13 @@ static void enable_8259A_irq(unsigned int irq)
irq
-=
I8259A_IRQ_BASE
;
mask
=
~
(
1
<<
irq
);
spin_lock_irqsave
(
&
i8259A_lock
,
flags
);
raw_
spin_lock_irqsave
(
&
i8259A_lock
,
flags
);
cached_irq_mask
&=
mask
;
if
(
irq
&
8
)
outb
(
cached_slave_mask
,
PIC_SLAVE_IMR
);
else
outb
(
cached_master_mask
,
PIC_MASTER_IMR
);
spin_unlock_irqrestore
(
&
i8259A_lock
,
flags
);
raw_
spin_unlock_irqrestore
(
&
i8259A_lock
,
flags
);
}
int
i8259A_irq_pending
(
unsigned
int
irq
)
...
...
@@ -98,12 +98,12 @@ int i8259A_irq_pending(unsigned int irq)
irq
-=
I8259A_IRQ_BASE
;
mask
=
1
<<
irq
;
spin_lock_irqsave
(
&
i8259A_lock
,
flags
);
raw_
spin_lock_irqsave
(
&
i8259A_lock
,
flags
);
if
(
irq
<
8
)
ret
=
inb
(
PIC_MASTER_CMD
)
&
mask
;
else
ret
=
inb
(
PIC_SLAVE_CMD
)
&
(
mask
>>
8
);
spin_unlock_irqrestore
(
&
i8259A_lock
,
flags
);
raw_
spin_unlock_irqrestore
(
&
i8259A_lock
,
flags
);
return
ret
;
}
...
...
@@ -151,7 +151,7 @@ static void mask_and_ack_8259A(unsigned int irq)
irq
-=
I8259A_IRQ_BASE
;
irqmask
=
1
<<
irq
;
spin_lock_irqsave
(
&
i8259A_lock
,
flags
);
raw_
spin_lock_irqsave
(
&
i8259A_lock
,
flags
);
/*
* Lightweight spurious IRQ detection. We do not want
* to overdo spurious IRQ handling - it's usually a sign
...
...
@@ -183,7 +183,7 @@ static void mask_and_ack_8259A(unsigned int irq)
outb
(
0x60
+
irq
,
PIC_MASTER_CMD
);
/* 'Specific EOI to master */
}
smtc_im_ack_irq
(
irq
);
spin_unlock_irqrestore
(
&
i8259A_lock
,
flags
);
raw_
spin_unlock_irqrestore
(
&
i8259A_lock
,
flags
);
return
;
spurious_8259A_irq:
...
...
@@ -264,7 +264,7 @@ static void init_8259A(int auto_eoi)
i8259A_auto_eoi
=
auto_eoi
;
spin_lock_irqsave
(
&
i8259A_lock
,
flags
);
raw_
spin_lock_irqsave
(
&
i8259A_lock
,
flags
);
outb
(
0xff
,
PIC_MASTER_IMR
);
/* mask all of 8259A-1 */
outb
(
0xff
,
PIC_SLAVE_IMR
);
/* mask all of 8259A-2 */
...
...
@@ -298,7 +298,7 @@ static void init_8259A(int auto_eoi)
outb
(
cached_master_mask
,
PIC_MASTER_IMR
);
/* restore master IRQ mask */
outb
(
cached_slave_mask
,
PIC_SLAVE_IMR
);
/* restore slave IRQ mask */
spin_unlock_irqrestore
(
&
i8259A_lock
,
flags
);
raw_
spin_unlock_irqrestore
(
&
i8259A_lock
,
flags
);
}
/*
...
...
arch/mips/loongson/lemote-2f/irq.c
View file @
89650870
...
...
@@ -38,7 +38,7 @@ int mach_i8259_irq(void)
irq
=
-
1
;
if
((
LOONGSON_INTISR
&
LOONGSON_INTEN
)
&
LOONGSON_INT_BIT_INT0
)
{
spin_lock
(
&
i8259A_lock
);
raw_
spin_lock
(
&
i8259A_lock
);
isr
=
inb
(
PIC_MASTER_CMD
)
&
~
inb
(
PIC_MASTER_IMR
)
&
~
(
1
<<
PIC_CASCADE_IR
);
if
(
!
isr
)
...
...
@@ -56,7 +56,7 @@ int mach_i8259_irq(void)
if
(
~
inb
(
PIC_MASTER_ISR
)
&
0x80
)
irq
=
-
1
;
}
spin_unlock
(
&
i8259A_lock
);
raw_
spin_unlock
(
&
i8259A_lock
);
}
return
irq
;
...
...
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