aboutsummaryrefslogtreecommitdiffstats
path: root/arch/ppc/platforms/4xx
diff options
context:
space:
mode:
authorGrant Likely <grant.likely@secretlab.ca>2007-04-27 15:50:05 -0400
committerPaul Mackerras <paulus@samba.org>2007-04-29 21:02:04 -0400
commit9be4dcb606e647854760fafd0bb1cb3e1a804d16 (patch)
treeb73b378b416937f664ff9b18c22580a6990b31e0 /arch/ppc/platforms/4xx
parent30fea61fd01955cc35c6a63260b374d7a6d12c8b (diff)
[POWERPC] Don't define a custom bd_t for Xilixn Virtex based boards.
Why create a platform specific board_info structure that is hacked together, ugly, and dangerous, when we've got a perfectly fine common board_info structure that is hacked-together, ugly and dangerous. Signed-off-by: Grant Likely <grant.likely@secretlab.ca> Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/ppc/platforms/4xx')
-rw-r--r--arch/ppc/platforms/4xx/virtex.h15
1 files changed, 1 insertions, 14 deletions
diff --git a/arch/ppc/platforms/4xx/virtex.h b/arch/ppc/platforms/4xx/virtex.h
index 4fc76da2a4ba..738280420be5 100644
--- a/arch/ppc/platforms/4xx/virtex.h
+++ b/arch/ppc/platforms/4xx/virtex.h
@@ -14,6 +14,7 @@
14#define __ASM_VIRTEX_H__ 14#define __ASM_VIRTEX_H__
15 15
16#include <asm/ibm405.h> 16#include <asm/ibm405.h>
17#include <asm/ppcboot.h>
17 18
18/* Ugly, ugly, ugly! BASE_BAUD defined here to keep 8250.c happy. */ 19/* Ugly, ugly, ugly! BASE_BAUD defined here to keep 8250.c happy. */
19#if !defined(BASE_BAUD) 20#if !defined(BASE_BAUD)
@@ -21,22 +22,8 @@
21#endif 22#endif
22 23
23#ifndef __ASSEMBLY__ 24#ifndef __ASSEMBLY__
24typedef struct board_info {
25 unsigned int bi_memsize; /* DRAM installed, in bytes */
26 unsigned char bi_enetaddr[6]; /* Local Ethernet MAC address */
27 unsigned int bi_intfreq; /* Processor speed, in Hz */
28 unsigned int bi_busfreq; /* PLB Bus speed, in Hz */
29 unsigned int bi_pci_busfreq; /* PCI Bus speed, in Hz */
30} bd_t;
31
32/* Some 4xx parts use a different timebase frequency from the internal clock.
33 * the Virtex 405 does not, so just use a macro to make tbfreq match intfreq
34*/
35#define bi_tbfreq bi_intfreq
36
37extern const char* virtex_machine_name; 25extern const char* virtex_machine_name;
38#define PPC4xx_MACHINE_NAME (virtex_machine_name) 26#define PPC4xx_MACHINE_NAME (virtex_machine_name)
39
40#endif /* !__ASSEMBLY__ */ 27#endif /* !__ASSEMBLY__ */
41 28
42/* We don't need anything mapped. Size of zero will accomplish that. */ 29/* We don't need anything mapped. Size of zero will accomplish that. */