danube to ifxmips transition
[openwrt.git] / target / linux / ifxmips / files / arch / mips / danube / prom.c
1 /*
2  *   arch/mips/ifxmips/prom.c
3  *
4  *   This program is free software; you can redistribute it and/or modify
5  *   it under the terms of the GNU General Public License as published by
6  *   the Free Software Foundation; either version 2 of the License, or
7  *   (at your option) any later version.
8  *
9  *   This program is distributed in the hope that it will be useful,
10  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *   GNU General Public License for more details.
13  *
14  *   You should have received a copy of the GNU General Public License
15  *   along with this program; if not, write to the Free Software
16  *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
17  *
18  *   Copyright (C) 2005 Wu Qi Ming infineon
19  *
20  *   Rewrite of Infineon IFXMips code, thanks to infineon for the support,
21  *   software and hardware
22  *
23  *   Copyright (C) 2007 John Crispin <blogic@openwrt.org> 
24  *
25  */
26
27 #include <linux/init.h>
28 #include <linux/bootmem.h>
29 #include <asm/bootinfo.h>
30 #include <asm/ifxmips/ifxmips.h>
31
32 static char buf[1024];
33
34 void
35 prom_free_prom_memory (void)
36 {
37 }
38
39 const char *
40 get_system_type (void)
41 {
42         return BOARD_SYSTEM_TYPE;
43 }
44
45 void
46 prom_putchar (char c)
47 {
48         while ((readl(IFXMIPS_ASC1_FSTAT) & ASCFSTAT_TXFFLMASK) >> ASCFSTAT_TXFFLOFF);
49
50         if (c == '\n')
51                 writel('\r', IFXMIPS_ASC1_TBUF);
52         writel(c, IFXMIPS_ASC1_TBUF);
53 }
54
55 void
56 prom_printf (const char * fmt, ...)
57 {
58         va_list args;
59         int l;
60         char *p, *buf_end;
61
62         va_start(args, fmt);
63         l = vsprintf(buf, fmt, args);
64         va_end(args);
65         buf_end = buf + l;
66
67         for (p = buf; p < buf_end; p++)
68         {
69                 prom_putchar(*p);
70         }
71 }
72
73 void __init
74 prom_init(void)
75 {
76         mips_machgroup = MACH_GROUP_IFXMIPS;
77         mips_machtype = MACH_INFINEON_IFXMIPS;
78
79         strcpy(&(arcs_cmdline[0]), "console=ttyS0,115200 rootfstype=squashfs,jffs2 init=/etc/preinit");
80         add_memory_region (0x00000000, 0x2000000, BOOT_MEM_RAM);
81 }