blob: f34350a4f271aa5bd320f597b2f61b504e77a8e8 [file] [log] [blame]
Songmao Tian42d226c2007-06-06 14:52:38 +08001/*
2 * BRIEF MODULE DESCRIPTION
3 * setup.c - board dependent boot routines
4 *
5 * Copyright (C) 2007 Lemote Inc. & Insititute of Computing Technology
6 * Author: Fuxin Zhang, zhangfx@lemote.com
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version.
12 *
13 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
14 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
15 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
16 * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
17 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
18 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
19 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
20 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23 *
24 * You should have received a copy of the GNU General Public License along
25 * with this program; if not, write to the Free Software Foundation, Inc.,
26 * 675 Mass Ave, Cambridge, MA 02139, USA.
27 *
28 */
29#include <linux/bootmem.h>
30#include <linux/init.h>
Songmao Tian42d226c2007-06-06 14:52:38 +080031#include <linux/irq.h>
Songmao Tian42d226c2007-06-06 14:52:38 +080032
33#include <asm/bootinfo.h>
34#include <asm/mc146818-time.h>
35#include <asm/time.h>
36#include <asm/wbflush.h>
37
38#ifdef CONFIG_VT
39#include <linux/console.h>
40#include <linux/screen_info.h>
41#endif
42
43extern void mips_reboot_setup(void);
44
45#ifdef CONFIG_64BIT
46#define PTR_PAD(p) ((0xffffffff00000000)|((unsigned long long)(p)))
47#else
48#define PTR_PAD(p) (p)
49#endif
50
Ralf Baechle348c9132007-07-28 11:46:15 +010051unsigned long cpu_clock_freq;
Songmao Tian42d226c2007-06-06 14:52:38 +080052unsigned long bus_clock;
53unsigned int memsize;
54unsigned int highmemsize = 0;
55
56void __init plat_timer_setup(struct irqaction *irq)
57{
58 setup_irq(MIPS_CPU_IRQ_BASE + 7, irq);
59}
60
61static void __init loongson2e_time_init(void)
62{
63 /* setup mips r4k timer */
Ralf Baechle348c9132007-07-28 11:46:15 +010064 mips_hpt_frequency = cpu_clock_freq / 2;
Songmao Tian42d226c2007-06-06 14:52:38 +080065}
66
67static unsigned long __init mips_rtc_get_time(void)
68{
69 return mc146818_get_cmos_time();
70}
71
72void (*__wbflush)(void);
73EXPORT_SYMBOL(__wbflush);
74
75static void wbflush_loongson2e(void)
76{
77 asm(".set\tpush\n\t"
78 ".set\tnoreorder\n\t"
79 ".set mips3\n\t"
80 "sync\n\t"
81 "nop\n\t"
82 ".set\tpop\n\t"
83 ".set mips0\n\t");
84}
85
86void __init plat_mem_setup(void)
87{
88 set_io_port_base(PTR_PAD(0xbfd00000));
89
90 mips_reboot_setup();
91
92 board_time_init = loongson2e_time_init;
93 rtc_mips_get_time = mips_rtc_get_time;
94
95 __wbflush = wbflush_loongson2e;
96
97 add_memory_region(0x0, (memsize << 20), BOOT_MEM_RAM);
98#ifdef CONFIG_64BIT
99 if (highmemsize > 0) {
100 add_memory_region(0x20000000, highmemsize << 20, BOOT_MEM_RAM);
101 }
102#endif
103
104#ifdef CONFIG_VT
105#if defined(CONFIG_VGA_CONSOLE)
106 conswitchp = &vga_con;
107
108 screen_info = (struct screen_info) {
109 0, 25, /* orig-x, orig-y */
110 0, /* unused */
111 0, /* orig-video-page */
112 0, /* orig-video-mode */
113 80, /* orig-video-cols */
114 0, 0, 0, /* ega_ax, ega_bx, ega_cx */
115 25, /* orig-video-lines */
116 VIDEO_TYPE_VGAC, /* orig-video-isVGA */
117 16 /* orig-video-points */
118 };
119#elif defined(CONFIG_DUMMY_CONSOLE)
120 conswitchp = &dummy_con;
121#endif
122#endif
123
124}