2 * BRIEF MODULE DESCRIPTION
3 * Momentum Computer Ocelot-C and -CS board dependent boot routines
5 * Copyright (C) 1996, 1997, 2001 Ralf Baechle
6 * Copyright (C) 2000 RidgeRun, Inc.
7 * Copyright (C) 2001 Red Hat, Inc.
8 * Copyright (C) 2002 Momentum Computer
10 * Author: Matthew Dharm, Momentum Computer
13 * Louis Hamilton, Red Hat, Inc.
14 * hamilton@redhat.com [MIPS64 modifications]
16 * Author: RidgeRun, Inc.
17 * glonnon@ridgerun.com, skranz@ridgerun.com, stevej@ridgerun.com
19 * Copyright 2001 MontaVista Software Inc.
20 * Author: jsun@mvista.com or jsun@junsun.net
22 * This program is free software; you can redistribute it and/or modify it
23 * under the terms of the GNU General Public License as published by the
24 * Free Software Foundation; either version 2 of the License, or (at your
25 * option) any later version.
27 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
28 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
29 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
30 * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
31 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
32 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
33 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
34 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
35 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
36 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
38 * You should have received a copy of the GNU General Public License along
39 * with this program; if not, write to the Free Software Foundation, Inc.,
40 * 675 Mass Ave, Cambridge, MA 02139, USA.
43 #include <linux/bcd.h>
44 #include <linux/init.h>
45 #include <linux/kernel.h>
46 #include <linux/types.h>
48 #include <linux/swap.h>
49 #include <linux/ioport.h>
50 #include <linux/sched.h>
51 #include <linux/interrupt.h>
52 #include <linux/pci.h>
54 #include <linux/timex.h>
55 #include <linux/vmalloc.h>
56 #include <linux/mv643xx.h>
59 #include <asm/bootinfo.h>
64 #include <asm/processor.h>
65 #include <asm/reboot.h>
66 #include <asm/marvell.h>
67 #include <linux/bootmem.h>
68 #include <linux/blkdev.h>
69 #include "ocelot_c_fpga.h"
71 unsigned long marvell_base;
72 extern unsigned long mv64340_sram_base;
73 unsigned long cpu_clock;
75 /* These functions are used for rebooting or halting the machine*/
76 extern void momenco_ocelot_restart(char *command);
77 extern void momenco_ocelot_halt(void);
78 extern void momenco_ocelot_power_off(void);
80 void momenco_time_init(void);
82 static char reset_reason;
84 void add_wired_entry(unsigned long entrylo0, unsigned long entrylo1, unsigned long entryhi, unsigned long pagemask);
86 static unsigned long ENTRYLO(unsigned long paddr)
88 return ((paddr & PAGE_MASK) |
89 (_PAGE_PRESENT | __READABLE | __WRITEABLE | _PAGE_GLOBAL |
90 _CACHE_UNCACHED)) >> 6;
93 /* setup code for a handoff from a version 2 PMON 2000 PROM */
94 void PMON_v2_setup(void)
96 /* Some wired TLB entries for the MV64340 and perhiperals. The
97 MV64340 is going to be hit on every IRQ anyway - there's
98 absolutely no point in letting it be a random TLB entry, as
99 it'll just cause needless churning of the TLB. And we use
100 the other half for the serial port, which is just a PITA
103 Device Physical Virtual
104 MV64340 Internal Regs 0xf4000000 0xf4000000
105 Ocelot-C[S] PLD (CS0) 0xfc000000 0xfc000000
106 NVRAM (CS1) 0xfc800000 0xfc800000
107 UARTs (CS2) 0xfd000000 0xfd000000
108 Internal SRAM 0xfe000000 0xfe000000
109 M-Systems DOC (CS3) 0xff000000 0xff000000
111 printk("PMON_v2_setup\n");
114 /* marvell and extra space */
115 add_wired_entry(ENTRYLO(0xf4000000), ENTRYLO(0xf4010000), 0xfffffffff4000000, PM_64K);
116 /* fpga, rtc, and uart */
117 add_wired_entry(ENTRYLO(0xfc000000), ENTRYLO(0xfd000000), 0xfffffffffc000000, PM_16M);
118 /* m-sys and internal SRAM */
119 add_wired_entry(ENTRYLO(0xfe000000), ENTRYLO(0xff000000), 0xfffffffffe000000, PM_16M);
121 marvell_base = 0xfffffffff4000000;
122 mv64340_sram_base = 0xfffffffffe000000;
124 /* marvell and extra space */
125 add_wired_entry(ENTRYLO(0xf4000000), ENTRYLO(0xf4010000), 0xf4000000, PM_64K);
126 /* fpga, rtc, and uart */
127 add_wired_entry(ENTRYLO(0xfc000000), ENTRYLO(0xfd000000), 0xfc000000, PM_16M);
128 /* m-sys and internal SRAM */
129 add_wired_entry(ENTRYLO(0xfe000000), ENTRYLO(0xff000000), 0xfe000000, PM_16M);
131 marvell_base = 0xf4000000;
132 mv64340_sram_base = 0xfe000000;
136 unsigned long m48t37y_get_time(void)
139 unsigned char *rtc_base = (unsigned char*)0xfffffffffc800000;
141 unsigned char* rtc_base = (unsigned char*)0xfc800000;
143 unsigned int year, month, day, hour, min, sec;
146 spin_lock_irqsave(&rtc_lock, flags);
147 /* stop the update */
148 rtc_base[0x7ff8] = 0x40;
150 year = BCD2BIN(rtc_base[0x7fff]);
151 year += BCD2BIN(rtc_base[0x7ff1]) * 100;
153 month = BCD2BIN(rtc_base[0x7ffe]);
155 day = BCD2BIN(rtc_base[0x7ffd]);
157 hour = BCD2BIN(rtc_base[0x7ffb]);
158 min = BCD2BIN(rtc_base[0x7ffa]);
159 sec = BCD2BIN(rtc_base[0x7ff9]);
161 /* start the update */
162 rtc_base[0x7ff8] = 0x00;
163 spin_unlock_irqrestore(&rtc_lock, flags);
165 return mktime(year, month, day, hour, min, sec);
168 int m48t37y_set_time(unsigned long sec)
171 unsigned char* rtc_base = (unsigned char*)0xfffffffffc800000;
173 unsigned char* rtc_base = (unsigned char*)0xfc800000;
178 /* convert to a more useful format -- note months count from 0 */
182 spin_lock_irqsave(&rtc_lock, flags);
184 rtc_base[0x7ff8] = 0x80;
187 rtc_base[0x7fff] = BIN2BCD(tm.tm_year % 100);
188 rtc_base[0x7ff1] = BIN2BCD(tm.tm_year / 100);
191 rtc_base[0x7ffe] = BIN2BCD(tm.tm_mon);
194 rtc_base[0x7ffd] = BIN2BCD(tm.tm_mday);
197 rtc_base[0x7ffb] = BIN2BCD(tm.tm_hour);
198 rtc_base[0x7ffa] = BIN2BCD(tm.tm_min);
199 rtc_base[0x7ff9] = BIN2BCD(tm.tm_sec);
201 /* day of week -- not really used, but let's keep it up-to-date */
202 rtc_base[0x7ffc] = BIN2BCD(tm.tm_wday + 1);
204 /* disable writing */
205 rtc_base[0x7ff8] = 0x00;
206 spin_unlock_irqrestore(&rtc_lock, flags);
211 void __init plat_timer_setup(struct irqaction *irq)
216 void momenco_time_init(void)
218 #ifdef CONFIG_CPU_SR71000
219 mips_hpt_frequency = cpu_clock;
220 #elif defined(CONFIG_CPU_RM7000)
221 mips_hpt_frequency = cpu_clock / 2;
223 #error Unknown CPU for this board
225 printk("momenco_time_init cpu_clock=%d\n", cpu_clock);
227 rtc_mips_get_time = m48t37y_get_time;
228 rtc_mips_set_time = m48t37y_set_time;
231 void __init plat_mem_setup(void)
233 unsigned int tmpword;
235 board_time_init = momenco_time_init;
237 _machine_restart = momenco_ocelot_restart;
238 _machine_halt = momenco_ocelot_halt;
239 pm_power_off = momenco_ocelot_power_off;
242 * initrd_start = (unsigned long)ocelot_initrd_start;
243 * initrd_end = (unsigned long)ocelot_initrd_start + (ulong)ocelot_initrd_size;
244 * initrd_below_start_ok = 1;
247 /* do handoff reconfiguration */
250 /* shut down ethernet ports, just to be sure our memory doesn't get
251 * corrupted by random ethernet traffic.
253 MV_WRITE(MV643XX_ETH_TRANSMIT_QUEUE_COMMAND_REG(0), 0xff << 8);
254 MV_WRITE(MV643XX_ETH_TRANSMIT_QUEUE_COMMAND_REG(1), 0xff << 8);
255 MV_WRITE(MV643XX_ETH_RECEIVE_QUEUE_COMMAND_REG(0), 0xff << 8);
256 MV_WRITE(MV643XX_ETH_RECEIVE_QUEUE_COMMAND_REG(1), 0xff << 8);
258 while (MV_READ(MV643XX_ETH_RECEIVE_QUEUE_COMMAND_REG(0)) & 0xff);
260 while (MV_READ(MV643XX_ETH_RECEIVE_QUEUE_COMMAND_REG(1)) & 0xff);
262 while (MV_READ(MV643XX_ETH_TRANSMIT_QUEUE_COMMAND_REG(0)) & 0xff);
264 while (MV_READ(MV643XX_ETH_TRANSMIT_QUEUE_COMMAND_REG(1)) & 0xff);
265 MV_WRITE(MV643XX_ETH_PORT_SERIAL_CONTROL_REG(0),
266 MV_READ(MV643XX_ETH_PORT_SERIAL_CONTROL_REG(0)) & ~1);
267 MV_WRITE(MV643XX_ETH_PORT_SERIAL_CONTROL_REG(1),
268 MV_READ(MV643XX_ETH_PORT_SERIAL_CONTROL_REG(1)) & ~1);
270 /* Turn off the Bit-Error LED */
271 OCELOT_FPGA_WRITE(0x80, CLR);
273 tmpword = OCELOT_FPGA_READ(BOARDREV);
274 #ifdef CONFIG_CPU_SR71000
276 printk("Momenco Ocelot-CS: Board Assembly Rev. %c\n",
279 printk("Momenco Ocelot-CS: Board Assembly Revision #0x%x\n",
283 printk("Momenco Ocelot-C: Board Assembly Rev. %c\n",
286 printk("Momenco Ocelot-C: Board Assembly Revision #0x%x\n",
290 tmpword = OCELOT_FPGA_READ(FPGA_REV);
291 printk("FPGA Rev: %d.%d\n", tmpword>>4, tmpword&15);
292 tmpword = OCELOT_FPGA_READ(RESET_STATUS);
293 printk("Reset reason: 0x%x\n", tmpword);
296 printk(" - Power-up reset\n");
299 printk(" - Push-button reset\n");
302 printk(" - cPCI bus reset\n");
305 printk(" - Watchdog reset\n");
308 printk(" - Software reset\n");
311 printk(" - Unknown reset cause\n");
313 reset_reason = tmpword;
314 OCELOT_FPGA_WRITE(0xff, RESET_STATUS);
316 tmpword = OCELOT_FPGA_READ(CPCI_ID);
317 printk("cPCI ID register: 0x%02x\n", tmpword);
318 printk(" - Slot number: %d\n", tmpword & 0x1f);
319 printk(" - PCI bus present: %s\n", tmpword & 0x40 ? "yes" : "no");
320 printk(" - System Slot: %s\n", tmpword & 0x20 ? "yes" : "no");
322 tmpword = OCELOT_FPGA_READ(BOARD_STATUS);
323 printk("Board Status register: 0x%02x\n", tmpword);
324 printk(" - User jumper: %s\n", (tmpword & 0x80)?"installed":"absent");
325 printk(" - Boot flash write jumper: %s\n", (tmpword&0x40)?"installed":"absent");
326 printk(" - L3 Cache size: %d MiB\n", (1<<((tmpword&12) >> 2))&~1);
327 printk(" - SDRAM size: %d MiB\n", 1<<(6+(tmpword&3)));
332 add_memory_region(0x0, 0x200<<20, BOOT_MEM_RAM);
336 add_memory_region(0x0, 0x100<<20, BOOT_MEM_RAM);
340 add_memory_region(0x0, 0x80<<20, BOOT_MEM_RAM);
343 /* 1GiB -- needs CONFIG_HIGHMEM */
344 add_memory_region(0x0, 0x400<<20, BOOT_MEM_RAM);
350 /* This needs to be one of the first initcalls, because no I/O port access
351 can work before this */
352 static int io_base_ioremap(void)
354 /* we're mapping PCI accesses from 0xc0000000 to 0xf0000000 */
355 void *io_remap_range = ioremap(0xc0000000, 0x30000000);
357 if (!io_remap_range) {
358 panic("Could not ioremap I/O port range");
360 printk("io_remap_range set at 0x%08x\n", (uint32_t)io_remap_range);
361 set_io_port_base(io_remap_range - 0xc0000000);
366 module_init(io_base_ioremap);