2 * File: arch/blackfin/kernel/early_printk.c
3 * Based on: arch/x86_64/kernel/early_printk.c
4 * Author: Robin Getz <rgetz@blackfin.uclinux.org
7 * Description: allow a console to be used for early printk
10 * Copyright 2004-2007 Analog Devices Inc.
12 * Bugs: Enter bugs at http://blackfin.uclinux.org/
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
25 #include <linux/kernel.h>
26 #include <linux/init.h>
27 #include <linux/serial_core.h>
28 #include <linux/console.h>
29 #include <linux/string.h>
30 #include <asm/blackfin.h>
31 #include <asm/irq_handler.h>
32 #include <asm/early_printk.h>
34 #ifdef CONFIG_SERIAL_BFIN
35 extern struct console *bfin_earlyserial_init(unsigned int port,
39 static struct console *early_console;
42 #define DEFAULT_PORT 0
43 #define DEFAULT_CFLAG CS8|B57600
45 /* Default console for early crashes */
46 #define DEFAULT_EARLY_PORT "serial,uart0,57600"
48 #ifdef CONFIG_SERIAL_CORE
49 /* What should get here is "0,57600" */
50 static struct console * __init earlyserial_init(char *buf)
54 unsigned int serial_port = DEFAULT_PORT;
55 unsigned int cflag = DEFAULT_CFLAG;
57 serial_port = simple_strtoul(buf, &buf, 10);
61 baud = simple_strtoul(buf, &buf, 10);
99 bit = simple_strtoul(buf, &buf, 10);
114 #ifdef CONFIG_SERIAL_BFIN
115 return bfin_earlyserial_init(serial_port, cflag);
123 int __init setup_early_printk(char *buf)
126 /* Crashing in here would be really bad, so check both the var
127 and the pointer before we start using it
135 if (early_console != NULL)
138 #ifdef CONFIG_SERIAL_BFIN
139 /* Check for Blackfin Serial */
140 if (!strncmp(buf, "serial,uart", 11)) {
142 early_console = earlyserial_init(buf);
146 /* TODO: add framebuffer console support */
149 if (likely(early_console)) {
150 early_console->flags |= CON_BOOT;
152 register_console(early_console);
153 printk(KERN_INFO "early printk enabled on %s%d\n",
155 early_console->index);
162 * Set up a temporary Event Vector Table, so if something bad happens before
163 * the kernel is fully started, it doesn't vector off into somewhere we don't
167 asmlinkage void __init init_early_exception_vectors(void)
171 /* cannot program in software:
172 * evt0 - emulation (jtag)
175 bfin_write_EVT2(early_trap);
176 bfin_write_EVT3(early_trap);
177 bfin_write_EVT5(early_trap);
178 bfin_write_EVT6(early_trap);
179 bfin_write_EVT7(early_trap);
180 bfin_write_EVT8(early_trap);
181 bfin_write_EVT9(early_trap);
182 bfin_write_EVT10(early_trap);
183 bfin_write_EVT11(early_trap);
184 bfin_write_EVT12(early_trap);
185 bfin_write_EVT13(early_trap);
186 bfin_write_EVT14(early_trap);
187 bfin_write_EVT15(early_trap);
190 /* Set all the return from interrupt, exception, NMI to a known place
191 * so if we do a RETI, RETX or RETN by mistake - we go somewhere known
192 * Note - don't change RETS - we are in a subroutine, or
193 * RETE - since it might screw up if emulator is attached
195 asm("\tRETI = %0; RETX = %0; RETN = %0;\n"
196 : : "p"(early_trap));
200 asmlinkage void __init early_trap_c(struct pt_regs *fp, void *retaddr)
202 /* This can happen before the uart is initialized, so initialize
205 if (likely(early_console == NULL))
206 setup_early_printk(DEFAULT_EARLY_PORT);
210 dump_bfin_trace_buffer();
215 early_param("earlyprintk", setup_early_printk);