5 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
8 * James Dougherty, jfd@cs.stanford.edu
10 * See file CREDITS for list of people who contributed to this
13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License as
15 * published by the Free Software Foundation; either version 2 of
16 * the License, or (at your option) any later version.
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
32 #include <asm/processor.h>
33 #include <timestamp.h>
42 ulong busfreq = get_bus_freq (0);
45 puts ("Board: MOUSSE MPC8240/KAHLUA - CHRP (MAP B)\n");
46 printf ("Built: %s at %s\n", U_BOOT_DATE, U_BOOT_TIME);
47 printf ("MPLD: Revision %d\n", SYS_REVID_GET ());
48 printf ("Local Bus: %s MHz\n", strmhz (buf, busfreq));
55 printf ("checkflash\n");
60 phys_size_t initdram (int board_type)
62 return CONFIG_SYS_RAM_SIZE;
68 int year, month, day, hour, minute, second;
70 m48_tod_get (&year, &month, &day, &hour, &minute, &second);
72 printf (" Current date/time: %d/%d/%d %d:%d:%d \n",
73 month, day, year, hour, minute, second);
78 * EPIC, PCI, and I/O devices.
79 * Initialize Mousse Platform, probe for PCI devices,
80 * Query configuration parameters if not set.
82 int misc_init_f (void)
84 m48_tod_init (); /* Init SGS M48T59Y TOD/NVRAM */
85 printf ("RTC: M48T589 TOD/NVRAM (%d) bytes\n", TOD_NVRAM_SIZE);
90 int board_eth_init(bd_t *bis)
92 return pci_eth_init(bis);