* xmon support for Walnut
@ 2001-09-06 1:19 David Gibson
0 siblings, 0 replies; only message in thread
From: David Gibson @ 2001-09-06 1:19 UTC (permalink / raw)
To: linuxppc-embedded; +Cc: Paul Mackerras
The following patch allows xmon to run on Walnut machines.
diff -urN ../linuxppc_2_4_devel/arch/ppc/xmon/start.c linux-bungo/arch/ppc/xmon/start.c
--- ../linuxppc_2_4_devel/arch/ppc/xmon/start.c Wed Sep 5 13:58:54 2001
+++ linux-bungo/arch/ppc/xmon/start.c Wed Sep 5 14:52:38 2001
@@ -151,6 +151,11 @@
sccd = (volatile unsigned char *) 0xffeffb08;
TXRDY = 0x20;
RXRDY = 1;
+#elif defined(CONFIG_405GP)
+ sccc = (volatile unsigned char *)0xef600305;
+ sccd = (volatile unsigned char *)0xef600300;
+ TXRDY = 0x20;
+ RXRDY = 1;
#endif /* platform */
}
diff -urN ../linuxppc_2_4_devel/arch/ppc/xmon/xmon.c linux-bungo/arch/ppc/xmon/xmon.c
--- ../linuxppc_2_4_devel/arch/ppc/xmon/xmon.c Tue Aug 28 15:06:37 2001
+++ linux-bungo/arch/ppc/xmon/xmon.c Fri Aug 31 15:23:57 2001
@@ -1,5 +1,5 @@
/*
- * BK Id: %F% %I% %G% %U% %#%
+ * BK Id: SCCS/s.xmon.c 1.17 08/19/01 19:15:49 benh
*/
/*
* Routines providing a simple monitor for use on the PowerMac.
@@ -910,6 +910,16 @@
}
#endif
+#ifndef CONFIG_PPC_STD_MMU
+
+static void
+dump_hash_table()
+{
+ printf("Non-standard MMU. Can't print has table.\n");
+}
+
+#else /* CONFIG_PPC_STD_MMU */
+
#ifndef CONFIG_PPC64BRIDGE
static void
dump_hash_table_seg(unsigned seg, unsigned start, unsigned end)
@@ -1056,6 +1066,8 @@
seg_start = seg_end + 0x1000;
}
}
+
+#endif /* CONFIG_PPC_STD_MMU */
int
mread(unsigned adrs, void *buf, int size)
--
David Gibson | For every complex problem there is a
david@gibson.dropbear.id.au | solution which is simple, neat and
| wrong. -- H.L. Mencken
http://www.ozlabs.org/people/dgibson
** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2001-09-06 1:19 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-09-06 1:19 xmon support for Walnut David Gibson
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).