blob: 2678c224af2237cadc79ff0fc27546a00816bd82 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Host bridge init code for the Marvell/Galileo EV-64260-BP evaluation board
3 * with a GT64260 onboard.
4 *
5 * Author: Mark A. Greer <mgreer@mvista.com>
6 *
7 * 2001 (c) MontaVista Software, Inc. This file is licensed under
8 * the terms of the GNU General Public License version 2. This program
9 * is licensed "as is" without any warranty of any kind, whether express
10 * or implied.
11 */
12
13#include <linux/config.h>
14#include <linux/types.h>
15#include <asm/reg.h>
16#include <asm/io.h>
17#include <asm/mv64x60_defs.h>
18#include <platforms/ev64260.h>
19
20#ifdef CONFIG_SERIAL_MPSC_CONSOLE
21extern u32 mv64x60_console_baud;
22extern u32 mv64x60_mpsc_clk_src;
23extern u32 mv64x60_mpsc_clk_freq;
24#endif
25
26void
27mv64x60_board_init(void __iomem *old_base, void __iomem *new_base)
28{
29 u32 p, v;
30
31 /* DINK doesn't enable 745x timebase, so enable here (Adrian Cox) */
32 p = mfspr(SPRN_PVR);
33 p >>= 16;
34
35 /* Reasonable SWAG at a 745x PVR value */
36 if (((p & 0xfff0) == 0x8000) && (p != 0x800c)) {
37 v = mfspr(SPRN_HID0);
38 v |= HID0_TBEN;
39 mtspr(SPRN_HID0, v);
40 }
41
42#ifdef CONFIG_SERIAL_8250_CONSOLE
43 /*
44 * Change device bus 2 window so that bootoader can do I/O thru
45 * 8250/16550 UART that's mapped in that window.
46 */
47 out_le32(new_base + MV64x60_CPU2DEV_2_BASE, EV64260_UART_BASE >> 20);
48 out_le32(new_base + MV64x60_CPU2DEV_2_SIZE, EV64260_UART_END >> 20);
49 __asm__ __volatile__("sync");
50#elif defined(CONFIG_SERIAL_MPSC_CONSOLE)
51 mv64x60_console_baud = EV64260_DEFAULT_BAUD;
52 mv64x60_mpsc_clk_src = EV64260_MPSC_CLK_SRC;
53 mv64x60_mpsc_clk_freq = EV64260_MPSC_CLK_FREQ;
54#endif
55}