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
0c6cbb6b
Commit
0c6cbb6b
authored
Feb 14, 2003
by
Alan Cox
Committed by
Jens Axboe
Feb 14, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] merge the NEC98 parsing code
This is nice and clean (your tree already knows the idents)
parent
d4bae497
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
1 deletion
+20
-1
arch/i386/kernel/io_apic.c
arch/i386/kernel/io_apic.c
+20
-1
No files found.
arch/i386/kernel/io_apic.c
View file @
0c6cbb6b
...
...
@@ -668,7 +668,9 @@ static int __init find_isa_irq_pin(int irq, int type)
if
((
mp_bus_id_to_type
[
lbus
]
==
MP_BUS_ISA
||
mp_bus_id_to_type
[
lbus
]
==
MP_BUS_EISA
||
mp_bus_id_to_type
[
lbus
]
==
MP_BUS_MCA
)
&&
mp_bus_id_to_type
[
lbus
]
==
MP_BUS_MCA
||
mp_bus_id_to_type
[
lbus
]
==
MP_BUS_NEC98
)
&&
(
mp_irqs
[
i
].
mpc_irqtype
==
type
)
&&
(
mp_irqs
[
i
].
mpc_srcbusirq
==
irq
))
...
...
@@ -762,6 +764,12 @@ static int __init EISA_ELCR(unsigned int irq)
#define default_MCA_trigger(idx) (1)
#define default_MCA_polarity(idx) (0)
/* NEC98 interrupts are always polarity zero edge triggered,
* when listed as conforming in the MP table. */
#define default_NEC98_trigger(idx) (0)
#define default_NEC98_polarity(idx) (0)
static
int
__init
MPBIOS_polarity
(
int
idx
)
{
int
bus
=
mp_irqs
[
idx
].
mpc_srcbus
;
...
...
@@ -796,6 +804,11 @@ static int __init MPBIOS_polarity(int idx)
polarity
=
default_MCA_polarity
(
idx
);
break
;
}
case
MP_BUS_NEC98
:
/* NEC 98 pin */
{
polarity
=
default_NEC98_polarity
(
idx
);
break
;
}
default:
{
printk
(
KERN_WARNING
"broken BIOS!!
\n
"
);
...
...
@@ -865,6 +878,11 @@ static int __init MPBIOS_trigger(int idx)
trigger
=
default_MCA_trigger
(
idx
);
break
;
}
case
MP_BUS_NEC98
:
/* NEC 98 pin */
{
trigger
=
default_NEC98_trigger
(
idx
);
break
;
}
default:
{
printk
(
KERN_WARNING
"broken BIOS!!
\n
"
);
...
...
@@ -926,6 +944,7 @@ static int pin_2_irq(int idx, int apic, int pin)
case
MP_BUS_ISA
:
/* ISA pin */
case
MP_BUS_EISA
:
case
MP_BUS_MCA
:
case
MP_BUS_NEC98
:
{
irq
=
mp_irqs
[
idx
].
mpc_srcbusirq
;
break
;
...
...
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