diff options
author | 1999-06-11 06:19:08 +0000 | |
---|---|---|
committer | 1999-06-11 06:19:08 +0000 | |
commit | b8ebf323d031d3faa636a720a0aa551e16f21f79 (patch) | |
tree | 270bae1bca2c80d9a2c1a695bf98dfd34a563c0b | |
parent | egcs crap (diff) | |
download | wireguard-openbsd-b8ebf323d031d3faa636a720a0aa551e16f21f79.tar.xz wireguard-openbsd-b8ebf323d031d3faa636a720a0aa551e16f21f79.zip |
Add Q900 compatible mode serial address.
-rw-r--r-- | sys/arch/mac68k/mac68k/machdep.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sys/arch/mac68k/mac68k/machdep.c b/sys/arch/mac68k/mac68k/machdep.c index f28dc5559dc..d8360f0934f 100644 --- a/sys/arch/mac68k/mac68k/machdep.c +++ b/sys/arch/mac68k/mac68k/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.61 1999/05/24 23:09:03 jason Exp $ */ +/* $OpenBSD: machdep.c,v 1.62 1999/06/11 06:19:08 downsj Exp $ */ /* $NetBSD: machdep.c,v 1.134 1997/02/14 06:15:30 scottr Exp $ */ /* @@ -2414,6 +2414,12 @@ mac68k_set_io_offsets(base) switch (current_mac_model->machineid) { case MACH_MACQ900: case MACH_MACQ950: + /* + * Note that sccA base address is based on having + * the serial port in `compatible' mode (set in + * the Serial Switch control panel before booting). + */ + sccA = (volatile u_char *) base + 0xc020; mac68k_machine.scsi96_2 = 1; case MACH_MACQ700: SCSIBase = base + 0xf000; |