2 * Copyright 2002 Momentum Computer Inc.
3 * Author: Matthew Dharm <mdharm@momenco.com>
5 * Louis Hamilton, Red Hat, Inc.
6 * hamilton@redhat.com [MIPS64 modifications]
8 * Based on Ocelot Linux port, which is
9 * Copyright 2001 MontaVista Software Inc.
10 * Author: jsun@mvista.com or jsun@junsun.net
12 * This program is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License as published by the
14 * Free Software Foundation; either version 2 of the License, or (at your
15 * option) any later version.
17 * Added changes for SMP - Manish Lachwani (lachwani@pmc-sierra.com)
19 #include <linux/config.h>
20 #include <linux/init.h>
22 #include <linux/sched.h>
23 #include <linux/bootmem.h>
25 #include <asm/addrspace.h>
26 #include <asm/bootinfo.h>
27 #include <asm/mv64340.h>
30 #include "jaguar_atx_fpga.h"
32 extern void ja_setup_console(void);
34 struct callvectors *debug_vectors;
36 extern unsigned long cpu_clock;
38 const char *get_system_type(void)
40 return "Momentum Jaguar-ATX";
43 #ifdef CONFIG_MV643XX_ETH
44 extern unsigned char prom_mac_addr_base[6];
46 static void burn_clocks(void)
50 /* this loop should burn at least 1us -- this should be plenty */
51 for (i = 0; i < 0x10000; i++)
55 static u8 exchange_bit(u8 val, u8 cs)
58 JAGUAR_FPGA_WRITE((val << 2) | cs, EEPROM_MODE);
61 /* turn the clock on */
62 JAGUAR_FPGA_WRITE((val << 2) | cs | 0x2, EEPROM_MODE);
65 /* turn the clock off and read-strobe */
66 JAGUAR_FPGA_WRITE((val << 2) | cs | 0x10, EEPROM_MODE);
69 return ((JAGUAR_FPGA_READ(EEPROM_MODE) >> 3) & 0x1);
72 void get_mac(char dest[6])
74 u8 read_opcode[12] = {1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
77 for (i = 0; i < 12; i++)
78 exchange_bit(read_opcode[i], 1);
80 for (j = 0; j < 6; j++) {
82 for (i = 0; i < 8; i++) {
84 dest[j] |= exchange_bit(0, 1);
95 unsigned long signext(unsigned long addr)
98 return (unsigned long)((int)addr);
101 void *get_arg(unsigned long args, int arc)
104 unsigned char *puc, uc;
107 ul = (unsigned long)signext(args);
108 puc = (unsigned char *)ul;
112 #ifdef CONFIG_CPU_LITTLE_ENDIAN
114 l = (unsigned long)uc;
116 ul |= (((unsigned long)uc) << 8);
118 ul |= (((unsigned long)uc) << 16);
120 ul |= (((unsigned long)uc) << 24);
123 ul = ((unsigned long)uc) << 24;
125 ul |= (((unsigned long)uc) << 16);
127 ul |= (((unsigned long)uc) << 8);
129 ul |= ((unsigned long)uc);
136 char *arg64(unsigned long addrin, int arg_index)
141 args = signext(addrin);
142 p = (char *)get_arg(args, arg_index);
146 #endif /* CONFIG_64BIT */
148 /* PMON passes arguments in C main() style */
149 void __init prom_init(void)
152 char **arg = (char **) fw_arg1;
153 char **env = (char **) fw_arg2;
154 struct callvectors *cv = (struct callvectors *) fw_arg3;
157 #ifdef CONFIG_SERIAL_8250_CONSOLE
158 // ja_setup_console(); /* The very first thing. */
164 printk("Mips64 Jaguar-ATX\n");
165 /* save the PROM vectors for debugging use */
166 debug_vectors = (struct callvectors *)signext((unsigned long)cv);
168 /* arg[0] is "g", the rest is boot parameters */
169 arcs_cmdline[0] = '\0';
171 for (i = 1; i < argc; i++) {
172 ptr = (char *)arg64((unsigned long)arg, i);
173 if ((strlen(arcs_cmdline) + strlen(ptr) + 1) >=
174 sizeof(arcs_cmdline))
176 strcat(arcs_cmdline, ptr);
177 strcat(arcs_cmdline, " ");
182 ptr = (char *)arg64((unsigned long)env, i);
186 if (strncmp("gtbase", ptr, strlen("gtbase")) == 0) {
187 marvell_base = simple_strtol(ptr + strlen("gtbase="),
190 if ((marvell_base & 0xffffffff00000000) == 0)
191 marvell_base |= 0xffffffff00000000;
193 printk("marvell_base set to 0x%016lx\n", marvell_base);
195 if (strncmp("cpuclock", ptr, strlen("cpuclock")) == 0) {
196 cpu_clock = simple_strtol(ptr + strlen("cpuclock="),
198 printk("cpu_clock set to %d\n", cpu_clock);
202 printk("arcs_cmdline: %s\n", arcs_cmdline);
204 #else /* CONFIG_64BIT */
205 /* save the PROM vectors for debugging use */
208 /* arg[0] is "g", the rest is boot parameters */
209 arcs_cmdline[0] = '\0';
210 for (i = 1; i < argc; i++) {
211 if (strlen(arcs_cmdline) + strlen(arg[i] + 1)
212 >= sizeof(arcs_cmdline))
214 strcat(arcs_cmdline, arg[i]);
215 strcat(arcs_cmdline, " ");
219 if (strncmp("gtbase", *env, strlen("gtbase")) == 0) {
220 marvell_base = simple_strtol(*env + strlen("gtbase="),
223 if (strncmp("cpuclock", *env, strlen("cpuclock")) == 0) {
224 cpu_clock = simple_strtol(*env + strlen("cpuclock="),
229 #endif /* CONFIG_64BIT */
230 mips_machgroup = MACH_GROUP_MOMENCO;
231 mips_machtype = MACH_MOMENCO_JAGUAR_ATX;
233 #ifdef CONFIG_MV643XX_ETH
234 /* get the base MAC address for on-board ethernet ports */
235 get_mac(prom_mac_addr_base);
239 unsigned long __init prom_free_prom_memory(void)
244 void __init prom_fixup_mem_map(unsigned long start, unsigned long end)
248 int prom_boot_secondary(int cpu, unsigned long sp, unsigned long gp)
250 /* Clear the semaphore */
251 *(volatile uint32_t *)(0xbb000a68) = 0x80000000;
256 void prom_init_secondary(void)
258 clear_c0_config(CONF_CM_CMASK);
261 clear_c0_status(ST0_IM);
262 set_c0_status(0x1ffff);
265 void prom_smp_finish(void)