linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* Board names for 4xx
@ 2001-09-14  4:44 David Gibson
  2001-09-14  6:05 ` David Gibson
       [not found] ` <20010914072847.R21906@cpe-24-221-152-185.az.sprintbbd.net>
  0 siblings, 2 replies; 10+ messages in thread
From: David Gibson @ 2001-09-14  4:44 UTC (permalink / raw)
  To: linuxppc-embedded


The patch below allows publishing the type of board the kernel is
running on in /proc/cpuinfo (under "machine") for 4xx machines.  It
displays Walnut boards as "IBM Walnut" and (currently) all others
simply as "4xx".  Adding other boards is trivial - just a #define in
the relevant header file.  It also eliminates a warning in
ppc4xx_setup.c

diff -urN ../linuxppc_2_4_devel/arch/ppc/kernel/ppc4xx_setup.c linux-bungo/arch/ppc/kernel/ppc4xx_setup.c
--- ../linuxppc_2_4_devel/arch/ppc/kernel/ppc4xx_setup.c	Mon Sep 10 11:57:26 2001
+++ linux-bungo/arch/ppc/kernel/ppc4xx_setup.c	Wed Sep 12 16:33:15 2001
@@ -86,7 +86,7 @@
 #endif

 #define BOOT_WDT_DEFAULT_PERIOD		120	/* 2 minutes */
-extern board_setup_arch(void);
+extern void board_setup_arch(void);

 void __init
 ppc4xx_setup_arch(void)
@@ -165,6 +165,8 @@
 	int len = 0;
 	bd_t *bip = (bd_t *)__res;

+	len += sprintf(len + buffer,
+		       "machine\t: %s\n", PPC4xx_MACHINE_NAME);
 #ifdef CONFIG_STB03xxx
 	len += sprintf(len + buffer,
 			"plb bus clock\t: %dMHz\n",
diff -urN ../linuxppc_2_4_devel/include/asm-ppc/walnut.h linux-bungo/include/asm-ppc/walnut.h
--- ../linuxppc_2_4_devel/include/asm-ppc/walnut.h	Thu Aug 16 04:45:34 2001
+++ linux-bungo/include/asm-ppc/walnut.h	Wed Sep 12 16:29:23 2001
@@ -78,6 +78,7 @@
 /* Generic 4xx type
 */
 #define _MACH_4xx (_MACH_walnut)
+#define PPC4xx_MACHINE_NAME	"IBM Walnut"

 #endif /* __WALNUT_H__ */
 #endif /* __KERNEL__ */

--
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] 10+ messages in thread

end of thread, other threads:[~2001-09-18  2:08 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-09-14  4:44 Board names for 4xx David Gibson
2001-09-14  6:05 ` David Gibson
     [not found] ` <20010914072847.R21906@cpe-24-221-152-185.az.sprintbbd.net>
2001-09-17  2:28   ` David Gibson
2001-09-17  4:16     ` Tom Rini
2001-09-17 15:56       ` Dan Malek
2001-09-17 16:11         ` Kenneth Johansson
2001-09-17 18:33           ` Tom Rini
2001-09-18  0:35             ` David Gibson
2001-09-18  2:08               ` Tom Rini
2001-09-18  0:38         ` 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).