1 /***************************************************************************/
4 * m68EZ328.c - 68EZ328 specific config
6 * Copyright (C) 1993 Hamish Macdonald
7 * Copyright (C) 1999 D. Jeff Dionne
9 * This file is subject to the terms and conditions of the GNU General Public
10 * License. See the file COPYING in the main directory of this archive
14 /***************************************************************************/
16 #include <linux/init.h>
17 #include <linux/types.h>
18 #include <linux/kernel.h>
19 #include <linux/rtc.h>
20 #include <asm/pgtable.h>
21 #include <asm/machdep.h>
22 #include <asm/MC68EZ328.h>
24 #include <asm/bootstd.h>
27 /***************************************************************************/
29 int m68328_hwclk(int set
, struct rtc_time
*t
);
31 /***************************************************************************/
33 void m68ez328_reset(void)
37 "moveal #0x10c00000, %a0;\n"
38 "moveb #0, 0xFFFFF300;\n"
39 "moveal 0(%a0), %sp;\n"
40 "moveal 4(%a0), %a0;\n"
45 /***************************************************************************/
47 unsigned char *cs8900a_hwaddr
;
51 _bsc0(char *, getserialnum
)
52 _bsc1(unsigned char *, gethwaddr
, int, a
)
53 _bsc1(char *, getbenv
, char *, a
)
56 void __init
config_BSP(char *command
, int len
)
60 printk(KERN_INFO
"\n68EZ328 DragonBallEZ support (C) 1999 Rt-Control, Inc\n");
63 printk(KERN_INFO
"uCsimm serial string [%s]\n",getserialnum());
64 p
= cs8900a_hwaddr
= gethwaddr(0);
65 printk(KERN_INFO
"uCsimm hwaddr %.2x:%.2x:%.2x:%.2x:%.2x:%.2x\n",
66 p
[0], p
[1], p
[2], p
[3], p
[4], p
[5]);
68 p
= getbenv("APPEND");
69 if (p
) strcpy(p
,command
);
73 mach_hwclk
= m68328_hwclk
;
74 mach_reset
= m68ez328_reset
;
77 /***************************************************************************/