Pull kmalloc into release branch
[pandora-kernel.git] / arch / mips / sgi-ip32 / ip32-setup.c
1 /*
2  * IP32 basic setup
3  *
4  * This file is subject to the terms and conditions of the GNU General Public
5  * License.  See the file "COPYING" in the main directory of this archive
6  * for more details.
7  *
8  * Copyright (C) 2000 Harald Koerfgen
9  * Copyright (C) 2002, 2003, 2005 Ilya A. Volynets
10  */
11 #include <linux/console.h>
12 #include <linux/init.h>
13 #include <linux/interrupt.h>
14 #include <linux/mc146818rtc.h>
15 #include <linux/param.h>
16 #include <linux/sched.h>
17
18 #include <asm/bootinfo.h>
19 #include <asm/mc146818-time.h>
20 #include <asm/mipsregs.h>
21 #include <asm/mmu_context.h>
22 #include <asm/sgialib.h>
23 #include <asm/time.h>
24 #include <asm/traps.h>
25 #include <asm/io.h>
26 #include <asm/ip32/crime.h>
27 #include <asm/ip32/mace.h>
28 #include <asm/ip32/ip32_ints.h>
29
30 extern void ip32_be_init(void);
31 extern void crime_init(void);
32
33 #ifdef CONFIG_SGI_O2MACE_ETH
34 /*
35  * This is taken care of in here 'cause they say using Arc later on is
36  * problematic
37  */
38 extern char o2meth_eaddr[8];
39 static inline unsigned char str2hexnum(unsigned char c)
40 {
41         if (c >= '0' && c <= '9')
42                 return c - '0';
43         if (c >= 'a' && c <= 'f')
44                 return c - 'a' + 10;
45         return 0; /* foo */
46 }
47
48 static inline void str2eaddr(unsigned char *ea, unsigned char *str)
49 {
50         int i;
51
52         for (i = 0; i < 6; i++) {
53                 unsigned char num;
54
55                 if(*str == ':')
56                         str++;
57                 num = str2hexnum(*str++) << 4;
58                 num |= (str2hexnum(*str++));
59                 ea[i] = num;
60         }
61 }
62 #endif
63
64 #ifdef CONFIG_SERIAL_8250
65 #include <linux/tty.h>
66 #include <linux/serial.h>
67 #include <linux/serial_core.h>
68 #endif /* CONFIG_SERIAL_8250 */
69
70 /* An arbitrary time; this can be decreased if reliability looks good */
71 #define WAIT_MS 10
72
73 void __init ip32_time_init(void)
74 {
75         printk(KERN_INFO "Calibrating system timer... ");
76         write_c0_count(0);
77         crime->timer = 0;
78         while (crime->timer < CRIME_MASTER_FREQ * WAIT_MS / 1000) ;
79         mips_hpt_frequency = read_c0_count() * 1000 / WAIT_MS;
80         printk("%d MHz CPU detected\n", mips_hpt_frequency * 2 / 1000000);
81 }
82
83 void __init ip32_timer_setup(struct irqaction *irq)
84 {
85         irq->handler = no_action;
86         setup_irq(IP32_R4K_TIMER_IRQ, irq);
87 }
88
89 void __init plat_mem_setup(void)
90 {
91         board_be_init = ip32_be_init;
92
93         rtc_mips_get_time = mc146818_get_cmos_time;
94         rtc_mips_set_mmss = mc146818_set_rtc_mmss;
95
96         board_time_init = ip32_time_init;
97         board_timer_setup = ip32_timer_setup;
98
99 #ifdef CONFIG_SERIAL_8250
100         {
101                 static struct uart_port o2_serial[2];
102
103                 memset(o2_serial, 0, sizeof(o2_serial));
104                 o2_serial[0].type       = PORT_16550A;
105                 o2_serial[0].line       = 0;
106                 o2_serial[0].irq        = MACEISA_SERIAL1_IRQ;
107                 o2_serial[0].flags      = UPF_SKIP_TEST;
108                 o2_serial[0].uartclk    = 1843200;
109                 o2_serial[0].iotype     = UPIO_MEM;
110                 o2_serial[0].membase    = (char *)&mace->isa.serial1;
111                 o2_serial[0].fifosize   = 14;
112                 /* How much to shift register offset by. Each UART register
113                  * is replicated over 256 byte space */
114                 o2_serial[0].regshift   = 8;
115                 o2_serial[1].type       = PORT_16550A;
116                 o2_serial[1].line       = 1;
117                 o2_serial[1].irq        = MACEISA_SERIAL2_IRQ;
118                 o2_serial[1].flags      = UPF_SKIP_TEST;
119                 o2_serial[1].uartclk    = 1843200;
120                 o2_serial[1].iotype     = UPIO_MEM;
121                 o2_serial[1].membase    = (char *)&mace->isa.serial2;
122                 o2_serial[1].fifosize   = 14;
123                 o2_serial[1].regshift   = 8;
124
125                 early_serial_setup(&o2_serial[0]);
126                 early_serial_setup(&o2_serial[1]);
127         }
128 #endif
129 #ifdef CONFIG_SGI_O2MACE_ETH
130         {
131                 char *mac = ArcGetEnvironmentVariable("eaddr");
132                 str2eaddr(o2meth_eaddr, mac);
133         }
134 #endif
135
136 #if defined(CONFIG_SERIAL_CORE_CONSOLE)
137         {
138                 char* con = ArcGetEnvironmentVariable("console");
139                 if (con && *con == 'd') {
140                         static char options[8];
141                         char *baud = ArcGetEnvironmentVariable("dbaud");
142                         if (baud)
143                                 strcpy(options, baud);
144                         add_preferred_console("ttyS", *(con + 1) == '2' ? 1 : 0,
145                                               baud ? options : NULL);
146                 }
147         }
148 #endif
149 }