3 * James F. Dougherty, Broadcom Corporation, jfd@broadcom.com
5 * See file CREDITS for list of people who contributed to this
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
35 #include <asm/processor.h>
36 #include <linux/mtd/doc2000.h>
45 ulong busfreq = get_bus_freq(0);
48 puts ("Board: BMW MPC8245/KAHLUA2 - CHRP (MAP B)\n");
49 printf("Built: %s at %s\n", __DATE__ , __TIME__ );
50 /* printf("MPLD: Revision %d\n", SYS_REVID_GET()); */
51 printf("Local Bus at %s MHz\n", strmhz(buf, busfreq));
55 long int initdram(int board_type)
64 int year, month, day, hour, minute, second;
73 printf(" Current date/time: %d/%d/%d %d:%d:%d \n",
74 month, day, year, hour, minute, second);
79 * EPIC, PCI, and I/O devices.
80 * Initialize Mousse Platform, probe for PCI devices,
81 * Query configuration parameters if not set.
83 int misc_init_f (void)
86 m48_tod_init(); /* Init SGS M48T59Y TOD/NVRAM */
87 printf("RTC: M48T589 TOD/NVRAM (%d) bytes\n",
98 * Initialize PCI Devices, report devices found.
100 struct pci_controller hose;
102 void pci_init_board (void)
104 pci_mpc824x_init(&hose);
105 /* pci_dev_init(0); */
109 * Write characters to LCD display.
110 * Note that the bytes for the first character is the last address.
113 sys_led_msg(char* msg)
122 * Map onboard TSOP-16MB DOC FLASH chip.
126 doc_probe(DOC_BASE_ADDR);
129 #define NV_ADDR ((volatile unsigned char *) CFG_ENV_ADDR)
131 /* Read from NVRAM */
133 nvram_read(void *dest, const long src, size_t count)
136 volatile unsigned char* d = (unsigned char*)dest;
137 volatile unsigned char* s = (unsigned char*)src;
139 for( i = 0; i < count;i++)
147 nvram_write(long dest, const void *src, size_t count)
150 volatile unsigned char* d = (unsigned char*)dest;
151 volatile unsigned char* s = (unsigned char*)src;
155 for( i = 0; i < count;i++)