2 * Big Endian PROM code for SNI RM machines
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
12 #include <linux/kernel.h>
13 #include <linux/init.h>
14 #include <linux/memblock.h>
15 #include <linux/string.h>
16 #include <linux/console.h>
18 #include <asm/addrspace.h>
20 #include <asm/mipsprom.h>
21 #include <asm/mipsregs.h>
22 #include <asm/bootinfo.h>
23 #include <asm/setup.h>
25 /* special SNI prom calls */
27 * This does not exist in all proms - SINIX compares
28 * the prom env variable "version" against "2.0008"
29 * or greater. If lesser it tries to probe interesting
32 #define PROM_GET_MEMCONF 58
33 #define PROM_GET_HWCONF 61
35 #define PROM_VEC (u64 *)CKSEG1ADDR(0x1fc00000)
36 #define PROM_ENTRY(x) (PROM_VEC + (x))
38 #define ___prom_putchar ((int *(*)(int))PROM_ENTRY(PROM_PUTCHAR))
39 #define ___prom_getenv ((char *(*)(char *))PROM_ENTRY(PROM_GETENV))
40 #define ___prom_get_memconf ((void (*)(void *))PROM_ENTRY(PROM_GET_MEMCONF))
41 #define ___prom_get_hwconf ((u32 (*)(void))PROM_ENTRY(PROM_GET_HWCONF))
45 /* O32 stack has to be 8-byte aligned. */
46 static u64 o32_stk[4096];
47 #define O32_STK (&o32_stk[ARRAY_SIZE(o32_stk)])
49 #define __PROM_O32(fun, arg) fun arg __asm__(#fun); \
50 __asm__(#fun " = call_o32")
52 int __PROM_O32(__prom_putchar, (int *(*)(int), void *, int));
53 char *__PROM_O32(__prom_getenv, (char *(*)(char *), void *, char *));
54 void __PROM_O32(__prom_get_memconf, (void (*)(void *), void *, void *));
55 u32 __PROM_O32(__prom_get_hwconf, (u32 (*)(void), void *));
57 #define _prom_putchar(x) __prom_putchar(___prom_putchar, O32_STK, x)
58 #define _prom_getenv(x) __prom_getenv(___prom_getenv, O32_STK, x)
59 #define _prom_get_memconf(x) __prom_get_memconf(___prom_get_memconf, O32_STK, x)
60 #define _prom_get_hwconf() __prom_get_hwconf(___prom_get_hwconf, O32_STK)
63 #define _prom_putchar(x) ___prom_putchar(x)
64 #define _prom_getenv(x) ___prom_getenv(x)
65 #define _prom_get_memconf(x) ___prom_get_memconf(x)
66 #define _prom_get_hwconf(x) ___prom_get_hwconf(x)
69 void prom_putchar(char c)
75 char *prom_getenv(char *s)
77 return _prom_getenv(s);
80 void *prom_get_hwconf(void)
82 u32 hwconf = _prom_get_hwconf();
84 if (hwconf == 0xffffffff)
87 return (void *)CKSEG1ADDR(hwconf);
91 * /proc/cpuinfo system type
94 char *system_type = "Unknown";
95 const char *get_system_type(void)
100 static void __init sni_mem_init(void)
110 int brd_type = *(unsigned char *)SNI_IDPROM_BRDTYPE;
113 /* MemSIZE from prom in 16MByte chunks */
114 memsize = *((unsigned char *) SNI_IDPROM_MEMSIZE) * 16;
116 pr_debug("IDProm memsize: %u MByte\n", memsize);
118 /* get memory bank layout from prom */
119 _prom_get_memconf(&memconf);
121 pr_debug("prom_get_mem_conf memory configuration:\n");
122 for (i = 0; i < 8 && memconf[i].size; i++) {
123 if (brd_type == SNI_BRD_PCI_TOWER ||
124 brd_type == SNI_BRD_PCI_TOWER_CPLUS) {
125 if (memconf[i].base >= 0x20000000 &&
126 memconf[i].base < 0x30000000)
127 memconf[i].base -= 0x20000000;
129 pr_debug("Bank%d: %08x @ %08x\n", i,
130 memconf[i].size, memconf[i].base);
131 memblock_add(memconf[i].base, memconf[i].size);
135 void __init prom_init(void)
138 u32 *argv = (u32 *)CKSEG0ADDR(fw_arg1);
143 /* copy prom cmdline parameters to kernel cmdline */
144 for (i = 1; i < argc; i++) {
145 strcat(arcs_cmdline, (char *)CKSEG0ADDR(argv[i]));
147 strcat(arcs_cmdline, " ");