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
edb0f209
Commit
edb0f209
authored
May 04, 2002
by
Paul Mackerras
Browse files
Options
Browse Files
Download
Plain Diff
Merge
bk://24.221.152.185/linux-2.5-misc
into cargo.(none):/home/paulus/kernel/for-linus-ppc
parents
8669b46e
755312de
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
1 deletion
+8
-1
arch/ppc/platforms/prep_setup.c
arch/ppc/platforms/prep_setup.c
+2
-1
arch/ppc/xmon/start.c
arch/ppc/xmon/start.c
+4
-0
include/asm-ppc/mpc10x.h
include/asm-ppc/mpc10x.h
+2
-0
No files found.
arch/ppc/platforms/prep_setup.c
View file @
edb0f209
...
...
@@ -57,6 +57,7 @@
#include <asm/keyboard.h>
#include <asm/vga.h>
#include <asm/time.h>
#include <asm/mpc10x.h>
#include <asm/i8259.h>
#include <asm/open_pic.h>
...
...
@@ -694,7 +695,7 @@ prep_init_IRQ(void)
openpic_init
(
1
,
NUM_8259_INTERRUPTS
,
-
1
);
for
(
i
=
0
;
i
<
NUM_8259_INTERRUPTS
;
i
++
)
irq_desc
[
i
].
handler
=
&
i8259_pic
;
i8259_init
(
0xbffffff0
);
/* PCI interrupt ack address for MPC105 and 106 */
i8259_init
(
MPC10X_MAPA_PCI_INTACK_ADDR
);
}
#if defined(CONFIG_BLK_DEV_IDE) || defined(CONFIG_BLK_DEV_IDE_MODULE)
...
...
arch/ppc/xmon/start.c
View file @
edb0f209
...
...
@@ -95,6 +95,7 @@ static unsigned long chrp_find_phys_io_base(void)
}
#endif
/* CONFIG_ALL_PPC */
#ifdef CONFIG_MAGIC_SYSRQ
static
void
sysrq_handle_xmon
(
int
key
,
struct
pt_regs
*
regs
,
struct
kbd_struct
*
kbd
,
struct
tty_struct
*
tty
)
{
...
...
@@ -107,6 +108,7 @@ static struct sysrq_key_op sysrq_xmon_op =
help_msg:
"Xmon"
,
action_msg:
"Entering xmon
\n
"
,
};
#endif
void
xmon_map_scc
(
void
)
...
...
@@ -218,7 +220,9 @@ xmon_map_scc(void)
DLAB
=
0x80
;
#endif
/* platform */
#ifdef CONFIG_MAGIC_SYSRQ
__sysrq_put_key_op
(
'x'
,
&
sysrq_xmon_op
);
#endif
}
static
int
scc_initialized
=
0
;
...
...
include/asm-ppc/mpc10x.h
View file @
edb0f209
...
...
@@ -59,6 +59,7 @@
#define MPC10X_MAPA_ISA_MEM_BASE 0xc0000000
#define MPC10X_MAPA_DRAM_OFFSET 0x80000000
#define MPC10X_MAPA_PCI_INTACK_ADDR 0xbffffff0
#define MPC10X_MAPA_PCI_IO_START 0x00000000
#define MPC10X_MAPA_PCI_IO_END (0x00800000 - 1)
#define MPC10X_MAPA_PCI_MEM_START 0x00000000
...
...
@@ -75,6 +76,7 @@
#define MPC10X_MAPB_ISA_MEM_BASE 0x80000000
#define MPC10X_MAPB_DRAM_OFFSET 0x00000000
#define MPC10X_MAPB_PCI_INTACK_ADDR 0xfef00000
#define MPC10X_MAPB_PCI_IO_START 0x00000000
#define MPC10X_MAPB_PCI_IO_END (0x00c00000 - 1)
#define MPC10X_MAPB_PCI_MEM_START 0x80000000
...
...
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