xref: /freebsd-13-stable/sys/mips/atheros/ar71xx_machdep.c (revision 3bc80996974a61a4223eae4c1ccd47b6ee32a48a)
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause
3  *
4  * Copyright (c) 2009 Oleksandr Tymoshenko
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26  * SUCH DAMAGE.
27  */
28 
29 #include <sys/cdefs.h>
30 #include "opt_ddb.h"
31 #include "opt_ar71xx.h"
32 
33 #include <sys/param.h>
34 #include <sys/conf.h>
35 #include <sys/kernel.h>
36 #include <sys/systm.h>
37 #include <sys/bus.h>
38 #include <sys/cons.h>
39 #include <sys/kdb.h>
40 #include <sys/lock.h>
41 #include <sys/mutex.h>
42 #include <sys/boot.h>
43 #include <sys/reboot.h>
44 
45 #include <vm/vm.h>
46 #include <vm/vm_param.h>
47 #include <vm/vm_page.h>
48 #include <vm/vm_phys.h>
49 #include <vm/vm_dumpset.h>
50 
51 #include <net/ethernet.h>
52 
53 #include <machine/clock.h>
54 #include <machine/cpu.h>
55 #include <machine/cpuregs.h>
56 #include <machine/hwfunc.h>
57 #include <machine/md_var.h>
58 #include <machine/trap.h>
59 
60 #include <mips/atheros/ar71xxreg.h>
61 
62 #include <mips/atheros/ar71xx_setup.h>
63 #include <mips/atheros/ar71xx_cpudef.h>
64 #include <mips/atheros/ar71xx_macaddr.h>
65 
66 extern char edata[], end[];
67 
68 /* 4KB static data aread to keep a copy of the bootload env until
69    the dynamic kenv is setup */
70 char boot1_env[4096];
71 
72 void
platform_cpu_init()73 platform_cpu_init()
74 {
75 	/* Nothing special */
76 }
77 
78 void
platform_reset(void)79 platform_reset(void)
80 {
81 	ar71xx_device_stop(RST_RESET_FULL_CHIP);
82 	/* Wait for reset */
83 	while(1)
84 		;
85 }
86 
87 /*
88  * Obtain the MAC address via the Redboot environment.
89  */
90 static int
ar71xx_redboot_get_macaddr(void)91 ar71xx_redboot_get_macaddr(void)
92 {
93 	char *var;
94 	int count = 0, i;
95 	uint32_t macaddr[ETHER_ADDR_LEN];
96 	uint8_t tmpmac[ETHER_ADDR_LEN];
97 
98 	/*
99 	 * "ethaddr" is passed via envp on RedBoot platforms
100 	 * "kmac" is passed via argv on RouterBOOT platforms
101 	 */
102 	if ((var = kern_getenv("ethaddr")) != NULL ||
103 	    (var = kern_getenv("kmac")) != NULL) {
104 		count = sscanf(var, "%x%*c%x%*c%x%*c%x%*c%x%*c%x",
105 		    &macaddr[0], &macaddr[1],
106 		    &macaddr[2], &macaddr[3],
107 		    &macaddr[4], &macaddr[5]);
108 
109 		if (count < 6) {
110 			memset(macaddr, 0,
111 			    sizeof(macaddr));
112 		} else {
113 			for (i = 0; i < ETHER_ADDR_LEN; i++)
114 				tmpmac[i] = macaddr[i] & 0xff;
115 			(void) ar71xx_mac_addr_init(ar71xx_board_mac_addr,
116 			    tmpmac,
117 			    0, /* offset */
118 			    0); /* is_local */
119 		}
120 		freeenv(var);
121 		return (0);
122 	}
123 	return (-1);
124 }
125 
126 #ifdef	AR71XX_ENV_ROUTERBOOT
127 /*
128  * RouterBoot gives us the board memory in a command line argument.
129  */
130 static int
ar71xx_routerboot_get_mem(int argc,char ** argv)131 ar71xx_routerboot_get_mem(int argc, char **argv)
132 {
133 	int i, board_mem;
134 
135 	/*
136 	 * Protect ourselves from garbage in registers.
137 	 */
138 	if (!MIPS_IS_VALID_PTR(argv))
139 		return (0);
140 
141 	for (i = 0; i < argc; i++) {
142 		if (argv[i] == NULL)
143 			continue;
144 		if (strncmp(argv[i], "mem=", 4) == 0) {
145 			if (sscanf(argv[i] + 4, "%dM", &board_mem) == 1)
146 				return (btoc(board_mem * 1024 * 1024));
147 		}
148 	}
149 
150 	return (0);
151 }
152 #endif
153 
154 /*
155  * Handle initialising the MAC address from a specific EEPROM
156  * offset.
157  *
158  * This is done during (very) early boot.
159  *
160  * hint.ar71xx.0.eeprom_mac_addr=<address to read from>
161  * hint.ar71xx.0.eeprom_mac_isascii=<0|1>
162  */
163 static int
ar71xx_platform_read_eeprom_mac(void)164 ar71xx_platform_read_eeprom_mac(void)
165 {
166 	long eeprom_mac_addr = 0;
167 	const char *mac;
168 	int i, readascii = 0;
169 	uint8_t macaddr[ETHER_ADDR_LEN];
170 
171 	if (resource_long_value("ar71xx", 0, "eeprom_mac_addr",
172 	    &eeprom_mac_addr) != 0)
173 		return (-1);
174 
175 	/* get a pointer to the EEPROM MAC address */
176 
177 	mac = (const char *) MIPS_PHYS_TO_KSEG1(eeprom_mac_addr);
178 
179 	/* Check if it's ASCII or not */
180 	if (resource_int_value("ar71xx", 0, "eeprom_mac_isascii",
181 	    &readascii) == 0 && readascii == 1) {
182 		printf("ar71xx: Overriding MAC from EEPROM (ascii)\n");
183 		for (i = 0; i < 6; i++) {
184 			macaddr[i] = strtol(&(mac[i*3]), NULL, 16);
185 		}
186 	} else {
187 		printf("ar71xx: Overriding MAC from EEPROM\n");
188 		for (i = 0; i < 6; i++) {
189 			macaddr[i] = mac[i];
190 		}
191 	}
192 
193 	/* Set the default board MAC */
194 	(void) ar71xx_mac_addr_init(ar71xx_board_mac_addr,
195 	    macaddr,
196 	    0, /* offset */
197 	    0); /* is_local */
198 	printf("ar71xx: Board MAC: %6D\n", ar71xx_board_mac_addr, ":");
199 	return (0);
200 }
201 
202 /*
203  * Populate a kenv hint for the given device based on the given
204  * MAC address and offset.
205  *
206  * Returns 0 if ok, < 0 on error.
207  */
208 static int
ar71xx_platform_set_mac_hint(const char * dev,int unit,const uint8_t * macaddr,int offset,int islocal)209 ar71xx_platform_set_mac_hint(const char *dev, int unit,
210     const uint8_t *macaddr, int offset, int islocal)
211 {
212 	char macstr[32];
213 	uint8_t lclmac[ETHER_ADDR_LEN];
214 	char devstr[32];
215 
216 	/* Initialise the MAC address, plus/minus the offset */
217 	if (ar71xx_mac_addr_init(lclmac, macaddr, offset, islocal) != 0) {
218 		return (-1);
219 	}
220 
221 	/* Turn it into a string */
222 	snprintf(macstr, 32, "%6D", lclmac, ":");
223 	snprintf(devstr, 32, "hint.%s.%d.macaddr", dev, unit);
224 
225 	printf("  %s => %s\n", devstr, macstr);
226 
227 	/* Call setenv */
228 	if (kern_setenv(devstr, macstr) != 0) {
229 		printf("%s: failed to set hint (%s => %s)\n",
230 		    __func__,
231 		    devstr,
232 		    macstr);
233 		return (-1);
234 	}
235 
236 	return (0);
237 }
238 
239 /*
240  * Iterate through the list of boot time hints that populate
241  * a device MAC address hint based on the "board" MAC address.
242  *
243  * ar71xx_mac_map.X.devid=<device id, eg ath>
244  * ar71xx_mac_map.X.unitid=<unit id, eg 0>
245  * ar71xx_mac_map.X.offset=<mac address value offset>
246  * ar71xx_mac_map.X.is_local=<1 or 0>
247  */
248 static int
ar71xx_platform_check_mac_hints(void)249 ar71xx_platform_check_mac_hints(void)
250 {
251 	int i;
252 	const char *devid;
253 	int offset, is_local, unitid;
254 
255 	for (i = 0; i < 8; i++) {
256 		if (resource_string_value("ar71xx_mac_map", i, "devid",
257 		    &devid) != 0)
258 			break;
259 		if (resource_int_value("ar71xx_mac_map", i, "unitid",
260 		    &unitid) != 0)
261 			break;
262 		if (resource_int_value("ar71xx_mac_map", i, "offset",
263 		    &offset) != 0)
264 			break;
265 		if (resource_int_value("ar71xx_mac_map", i, "is_local",
266 		    &is_local) != 0)
267 			break;
268 		printf("ar71xx: devid '%s.%d', MAC offset '%d'\n",
269 		    devid, unitid, offset);
270 		(void) ar71xx_platform_set_mac_hint(devid, unitid,
271 		    ar71xx_board_mac_addr, offset, is_local);
272 	}
273 
274 	return (0);
275 }
276 
277 void
platform_start(__register_t a0 __unused,__register_t a1 __unused,__register_t a2 __unused,__register_t a3 __unused)278 platform_start(__register_t a0 __unused, __register_t a1 __unused,
279     __register_t a2 __unused, __register_t a3 __unused)
280 {
281 	uint64_t platform_counter_freq;
282 	int argc = 0, i;
283 	char **argv = NULL, **envp = NULL;
284 	vm_offset_t kernend;
285 
286 	/*
287 	 * clear the BSS and SBSS segments, this should be first call in
288 	 * the function
289 	 */
290 	kernend = (vm_offset_t)&end;
291 	memset(&edata, 0, kernend - (vm_offset_t)(&edata));
292 
293 	mips_postboot_fixup();
294 
295 	/* Initialize pcpu stuff */
296 	mips_pcpu0_init();
297 
298 	/*
299 	 * Until some more sensible abstractions for uboot/redboot
300 	 * environment handling, we have to make this a compile-time
301 	 * hack.  The existing code handles the uboot environment
302 	 * very incorrectly so we should just ignore initialising
303 	 * the relevant pointers.
304 	 */
305 #ifndef	AR71XX_ENV_UBOOT
306 	argc = a0;
307 	argv = (char**)a1;
308 	envp = (char**)a2;
309 #endif
310 	/*
311 	 * Protect ourselves from garbage in registers
312 	 */
313 	if (MIPS_IS_VALID_PTR(envp)) {
314 		for (i = 0; envp[i]; i += 2) {
315 			if (strcmp(envp[i], "memsize") == 0)
316 				realmem = btoc(strtoul(envp[i+1], NULL, 16));
317 			else if (strcmp(envp[i], "bootverbose") == 0)
318 				bootverbose = btoc(strtoul(envp[i+1], NULL, 10));
319 		}
320 	}
321 	bootverbose = 1;
322 
323 #ifdef	AR71XX_ENV_ROUTERBOOT
324 	/*
325 	 * RouterBoot informs the board memory as a command line argument.
326 	 */
327 	if (realmem == 0)
328 		realmem = ar71xx_routerboot_get_mem(argc, argv);
329 #endif
330 
331 	/*
332 	 * Just wild guess. RedBoot let us down and didn't reported
333 	 * memory size
334 	 */
335 	if (realmem == 0)
336 		realmem = btoc(32*1024*1024);
337 
338 	/*
339 	 * Allow build-time override in case Redboot lies
340 	 * or in other situations (eg where there's u-boot)
341 	 * where there isn't (yet) a convienent method of
342 	 * being told how much RAM is available.
343 	 *
344 	 * This happens on at least the Ubiquiti LS-SR71A
345 	 * board, where redboot says there's 16mb of RAM
346 	 * but in fact there's 32mb.
347 	 */
348 #if	defined(AR71XX_REALMEM)
349 		realmem = btoc(AR71XX_REALMEM);
350 #endif
351 
352 	/* phys_avail regions are in bytes */
353 	phys_avail[0] = MIPS_KSEG0_TO_PHYS(kernel_kseg0_end);
354 	phys_avail[1] = ctob(realmem);
355 
356 	dump_avail[0] = 0;
357 	dump_avail[1] = phys_avail[1];
358 
359 	physmem = realmem;
360 
361 	/*
362 	 * ns8250 uart code uses DELAY so ticker should be inititalized
363 	 * before cninit. And tick_init_params refers to hz, so * init_param1
364 	 * should be called first.
365 	 */
366 	init_param1();
367 
368 	/* Detect the system type - this is needed for subsequent chipset-specific calls */
369 	ar71xx_detect_sys_type();
370 	ar71xx_detect_sys_frequency();
371 
372 	platform_counter_freq = ar71xx_cpu_freq();
373 	mips_timer_init_params(platform_counter_freq, 1);
374 	cninit();
375 	init_static_kenv(boot1_env, sizeof(boot1_env));
376 
377 	printf("CPU platform: %s\n", ar71xx_get_system_type());
378 	printf("CPU Frequency=%d MHz\n", u_ar71xx_cpu_freq / 1000000);
379 	printf("CPU DDR Frequency=%d MHz\n", u_ar71xx_ddr_freq / 1000000);
380 	printf("CPU AHB Frequency=%d MHz\n", u_ar71xx_ahb_freq / 1000000);
381 	printf("platform frequency: %lld MHz\n", platform_counter_freq / 1000000);
382 	printf("CPU reference clock: %d MHz\n", u_ar71xx_refclk / 1000000);
383 	printf("CPU MDIO clock: %d MHz\n", u_ar71xx_mdio_freq / 1000000);
384 	printf("arguments: \n");
385 	printf("  a0 = %08x\n", a0);
386 	printf("  a1 = %08x\n", a1);
387 	printf("  a2 = %08x\n", a2);
388 	printf("  a3 = %08x\n", a3);
389 
390 	strcpy(cpu_model, ar71xx_get_system_type());
391 
392 	/*
393 	 * XXX this code is very redboot specific.
394 	 */
395 	printf("Cmd line:");
396 	if (MIPS_IS_VALID_PTR(argv)) {
397 		for (i = 0; i < argc; i++) {
398 			printf(" %s", argv[i]);
399 			boothowto |= boot_parse_arg(argv[i]);
400 		}
401 	}
402 	else
403 		printf ("argv is invalid");
404 	printf("\n");
405 
406 	printf("Environment:\n");
407 	if (MIPS_IS_VALID_PTR(envp)) {
408 		for (i = 0; envp[i]; i+=2) {
409 			printf("  %s = %s\n", envp[i], envp[i+1]);
410 			kern_setenv(envp[i], envp[i+1]);
411 		}
412 	}
413 	else
414 		printf ("envp is invalid\n");
415 
416 	/* Platform setup */
417 	init_param2(physmem);
418 	mips_cpu_init();
419 	pmap_bootstrap();
420 	mips_proc0_init();
421 	mutex_init();
422 
423 	/*
424 	 * Reset USB devices
425 	 */
426 	ar71xx_init_usb_peripheral();
427 
428 	/*
429 	 * Reset internal ethernet switch, if one exists
430 	 */
431 	ar71xx_reset_ethernet_switch();
432 
433 	/*
434 	 * Initialise the gmac driver.
435 	 */
436 	ar71xx_init_gmac();
437 
438 	/* Redboot if_arge MAC address is in the environment */
439 	(void) ar71xx_redboot_get_macaddr();
440 
441 	/* Various other boards need things to come out of EEPROM */
442 	(void) ar71xx_platform_read_eeprom_mac();
443 
444 	/* Initialise the MAC address hint map */
445 	ar71xx_platform_check_mac_hints();
446 
447 	kdb_init();
448 #ifdef KDB
449 	if (boothowto & RB_KDB)
450 		kdb_enter(KDB_WHY_BOOTFLAGS, "Boot flags requested debugger");
451 #endif
452 }
453