xref: /freebsd/stand/powerpc/ofw/main.c (revision c697fb7f)
1 /*-
2  * Copyright (c) 2000 Benno Rice <benno@jeamland.net>
3  * Copyright (c) 2000 Stephane Potvin <sepotvin@videotron.ca>
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND
16  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25  * SUCH DAMAGE.
26  */
27 
28 #include <sys/cdefs.h>
29 __FBSDID("$FreeBSD$");
30 
31 #include <stand.h>
32 #include "openfirm.h"
33 #include "libofw.h"
34 #include "bootstrap.h"
35 
36 #include <machine/psl.h>
37 
38 struct arch_switch	archsw;		/* MI/MD interface boundary */
39 
40 extern char end[];
41 
42 uint32_t	acells, scells;
43 
44 static char bootargs[128];
45 
46 #define	HEAP_SIZE	0x800000
47 static char heap[HEAP_SIZE]; // In BSS, so uses no space
48 
49 #define OF_puts(fd, text) OF_write(fd, text, strlen(text))
50 
51 static __inline register_t
52 mfmsr(void)
53 {
54 	register_t value;
55 
56 	__asm __volatile ("mfmsr %0" : "=r"(value));
57 
58 	return (value);
59 }
60 
61 void
62 init_heap(void)
63 {
64 	bzero(heap, HEAP_SIZE);
65 
66 	setheap(heap, (void *)((int)heap + HEAP_SIZE));
67 }
68 
69 uint64_t
70 memsize(void)
71 {
72 	phandle_t	memoryp;
73 	cell_t		reg[24];
74 	int		i, sz;
75 	uint64_t	memsz;
76 
77 	memsz = 0;
78 	memoryp = OF_instance_to_package(memory);
79 
80 	sz = OF_getprop(memoryp, "reg", &reg, sizeof(reg));
81 	sz /= sizeof(reg[0]);
82 
83 	for (i = 0; i < sz; i += (acells + scells)) {
84 		if (scells > 1)
85 			memsz += (uint64_t)reg[i + acells] << 32;
86 		memsz += reg[i + acells + scells - 1];
87 	}
88 
89 	return (memsz);
90 }
91 
92 #ifdef CAS
93 extern int ppc64_cas(void);
94 
95 static int
96 ppc64_autoload(void)
97 {
98 	const char *cas;
99 
100 	if ((cas = getenv("cas")) && cas[0] == '1')
101 		if (ppc64_cas() != 0)
102 			return (-1);
103 	return (ofw_autoload());
104 }
105 #endif
106 
107 int
108 main(int (*openfirm)(void *))
109 {
110 	phandle_t	root;
111 	int		i;
112 	char		bootpath[64];
113 	char		*ch;
114 	int		bargc;
115 	char		**bargv;
116 
117 	/*
118 	 * Initialise the Open Firmware routines by giving them the entry point.
119 	 */
120 	OF_init(openfirm);
121 
122 	root = OF_finddevice("/");
123 
124 	scells = acells = 1;
125 	OF_getprop(root, "#address-cells", &acells, sizeof(acells));
126 	OF_getprop(root, "#size-cells", &scells, sizeof(scells));
127 
128 	/*
129 	 * Initialise the heap as early as possible.  Once this is done,
130 	 * alloc() is usable. The stack is buried inside us, so this is
131 	 * safe.
132 	 */
133 	init_heap();
134 
135 	/*
136          * Set up console.
137          */
138 	cons_probe();
139 
140 	/*
141 	 * March through the device switch probing for things.
142 	 */
143 	for (i = 0; devsw[i] != NULL; i++)
144 		if (devsw[i]->dv_init != NULL)
145 			(devsw[i]->dv_init)();
146 
147 	printf("\n%s", bootprog_info);
148 	printf("Memory: %lldKB\n", memsize() / 1024);
149 
150 	OF_getprop(chosen, "bootpath", bootpath, 64);
151 	ch = strchr(bootpath, ':');
152 	*ch = '\0';
153 	printf("Booted from: %s\n", bootpath);
154 
155 	printf("\n");
156 
157 	/*
158 	 * Only parse the first bootarg if present. It should
159 	 * be simple to handle extra arguments
160 	 */
161 	OF_getprop(chosen, "bootargs", bootargs, sizeof(bootargs));
162 	bargc = 0;
163 	parse(&bargc, &bargv, bootargs);
164 	if (bargc == 1)
165 		env_setenv("currdev", EV_VOLATILE, bargv[0], ofw_setcurrdev,
166 		    env_nounset);
167 	else
168 		env_setenv("currdev", EV_VOLATILE, bootpath,
169 			   ofw_setcurrdev, env_nounset);
170 	env_setenv("loaddev", EV_VOLATILE, bootpath, env_noset,
171 	    env_nounset);
172 	setenv("LINES", "24", 1);		/* optional */
173 
174 	/*
175 	 * On non-Apple hardware, where it works reliably, pass flattened
176 	 * device trees to the kernel by default instead of OF CI pointers.
177 	 * Apple hardware is the only virtual-mode OF implementation in
178 	 * existence, so far as I am aware, so use that as a flag.
179 	 */
180 	if (!(mfmsr() & PSL_DR))
181 		setenv("usefdt", "1", 1);
182 
183 	archsw.arch_getdev = ofw_getdev;
184 	archsw.arch_copyin = ofw_copyin;
185 	archsw.arch_copyout = ofw_copyout;
186 	archsw.arch_readin = ofw_readin;
187 #ifdef CAS
188 	setenv("cas", "1", 0);
189 	archsw.arch_autoload = ppc64_autoload;
190 #else
191 	archsw.arch_autoload = ofw_autoload;
192 #endif
193 
194 	interact();				/* doesn't return */
195 
196 	OF_exit();
197 
198 	return 0;
199 }
200 
201 COMMAND_SET(halt, "halt", "halt the system", command_halt);
202 
203 static int
204 command_halt(int argc, char *argv[])
205 {
206 
207 	OF_exit();
208 	return (CMD_OK);
209 }
210 
211 COMMAND_SET(memmap, "memmap", "print memory map", command_memmap);
212 
213 int
214 command_memmap(int argc, char **argv)
215 {
216 
217 	ofw_memmap(acells);
218 	return (CMD_OK);
219 }
220