aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ar71xx/files/arch/mips/ar71xx/prom.c
blob: 69425d50c01cd04b1a9a85a6af8bf4c690e67056 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
/*
 *  Atheros AR71xx SoC specific prom routines
 *
 *  Copyright (C) 2008 Gabor Juhos <juhosg@openwrt.org>
 *  Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org>
 *
 *  This program is free software; you can redistribute it and/or modify it
 *  under the terms of the GNU General Public License version 2 as published
 *  by the Free Software Foundation.
 */

#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/io.h>
#include <linux/serial_reg.h>

#include <asm/bootinfo.h>
#include <asm/addrspace.h>

#include <asm/mach-ar71xx/ar71xx.h>
#include <asm/mach-ar71xx/platform.h>

struct board_rec {
	char		*name;
	unsigned long	mach_type;
};

static int ar71xx_prom_argc __initdata;
static char **ar71xx_prom_argv __initdata;
static char **ar71xx_prom_envp __initdata;

static struct board_rec boards[] __initdata = {
	{
		.name		= "411",
		.mach_type	= MACH_AR71XX_RB_411,
	}, {
		.name		= "433",
		.mach_type	= MACH_AR71XX_RB_433,
	}, {
		.name		= "450",
		.mach_type	= MACH_AR71XX_RB_450,
	}
};

static __init void routerboot_printargs(void)
{
	int i;

	for (i = 0; i < ar71xx_prom_argc; i++)
		printk(KERN_DEBUG "prom: routerboot envp[%d]: %s\n",
				i, ar71xx_prom_argv[i]);
}

static __init char *routerboot_getenv(const char *envname)
{
	int len = strlen(envname);
	int i;

	for (i = 0; i < ar71xx_prom_argc; i++) {
		char *env = ar71xx_prom_argv[i];
		if (strncmp(envname, env, len) == 0 && (env)[len] == '=')
			return env + len + 1;
	}

	return NULL;
}

static __init char *redboot_getenv(const char *envname)
{
	int len = strlen(envname);
	char **env;

	for (env = ar71xx_prom_envp; *env != NULL; env++)
		if (strncmp(envname, *env, len) == 0 && (*env)[len] == '=')
			return *env + len + 1;

	return NULL;
}

static __init unsigned long find_board_byname(char *name)
{
	int i;

	for (i = 0; i < ARRAY_SIZE(boards); i++)
		if (strcmp(name, boards[i].name) == 0)
			return boards[i].mach_type;

	return MACH_AR71XX_GENERIC;
}

void __init prom_init(void)
{
	char *board = NULL;
	char *mac = NULL;

	printk(KERN_DEBUG "prom: fw_arg0=%08x, fw_arg1=%08x, "
			"fw_arg2=%08x, fw_arg3=%08x\n",
			(unsigned int)fw_arg0, (unsigned int)fw_arg1,
			(unsigned int)fw_arg2, (unsigned int)fw_arg3);

	if ((fw_arg0 == 7) && (fw_arg2 == 0) && (fw_arg3 == 0)) {
		 /* assume RouterBOOT */
		ar71xx_prom_argc = fw_arg0;
		ar71xx_prom_argv = (char **)fw_arg1;
		routerboot_printargs();
		board = routerboot_getenv("board");
		mac = routerboot_getenv("kmac");
	} else {
		/* assume Redboot */
		ar71xx_prom_argc = fw_arg0;
		ar71xx_prom_argv = (char **)fw_arg1;
		ar71xx_prom_envp = (char **)fw_arg2;
		mac = redboot_getenv("ethaddr");
	}

	if (board)
		mips_machtype = find_board_byname(board);
	else
		mips_machtype = MACH_AR71XX_GENERIC;

	if (mac)
		ar71xx_set_mac_base(mac);

	ar71xx_print_cmdline();
}

void __init prom_free_prom_memory(void)
{
	/* We do not have to prom memory to free */
}

#define UART_READ(r) \
	__raw_readl((void __iomem *)(KSEG1ADDR(AR71XX_UART_BASE) + 4 * (r)))

#define UART_WRITE(r, v) \
	__raw_writel((v), (void __iomem *)(KSEG1ADDR(AR71XX_UART_BASE) + 4*(r)))

void prom_putchar(unsigned char ch)
{
	while (((UART_READ(UART_LSR)) & UART_LSR_THRE) == 0);
	UART_WRITE(UART_TX, ch);
	while (((UART_READ(UART_LSR)) & UART_LSR_THRE) == 0);
}