]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - arch/mips/alchemy/common/prom.c
MIPS: Alchemy: Remove forced command line setting
[mirror_ubuntu-artful-kernel.git] / arch / mips / alchemy / common / prom.c
CommitLineData
1da177e4
LT
1/*
2 *
3 * BRIEF MODULE DESCRIPTION
6fe725c0 4 * PROM library initialisation code, supports YAMON and U-Boot.
1da177e4 5 *
c1dcb14e
SS
6 * Copyright 2000-2001, 2006, 2008 MontaVista Software Inc.
7 * Author: MontaVista Software, Inc. <source@mvista.com>
1da177e4
LT
8 *
9 * This file was derived from Carsten Langgaard's
10 * arch/mips/mips-boards/xx files.
11 *
12 * Carsten Langgaard, carstenl@mips.com
13 * Copyright (C) 1999,2000 MIPS Technologies, Inc. All rights reserved.
14 *
15 * This program is free software; you can redistribute it and/or modify it
16 * under the terms of the GNU General Public License as published by the
17 * Free Software Foundation; either version 2 of the License, or (at your
18 * option) any later version.
19 *
20 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
21 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
22 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
23 * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
24 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
25 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
26 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
27 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
29 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 *
31 * You should have received a copy of the GNU General Public License along
32 * with this program; if not, write to the Free Software Foundation, Inc.,
33 * 675 Mass Ave, Cambridge, MA 02139, USA.
34 */
ce28f94c 35
1da177e4 36#include <linux/module.h>
1da177e4
LT
37#include <linux/init.h>
38#include <linux/string.h>
39
40#include <asm/bootinfo.h>
41
25b31cb1
YY
42int prom_argc;
43char **prom_argv;
44char **prom_envp;
1da177e4 45
c21e6d65 46char * __init_or_module prom_getcmdline(void)
1da177e4
LT
47{
48 return &(arcs_cmdline[0]);
49}
50
25b31cb1 51void prom_init_cmdline(void)
1da177e4
LT
52{
53 char *cp;
54 int actr;
55
56 actr = 1; /* Always ignore argv[0] */
57
58 cp = &(arcs_cmdline[0]);
c1dcb14e 59 while (actr < prom_argc) {
25b31cb1 60 strcpy(cp, prom_argv[actr]);
1da177e4
LT
61 cp += strlen(prom_argv[actr]);
62 *cp++ = ' ';
63 actr++;
64 }
65 if (cp != &(arcs_cmdline[0])) /* get rid of trailing space */
66 --cp;
57e3e3b9
PP
67 if (prom_argc > 1)
68 *cp = '\0';
1da177e4
LT
69}
70
1da177e4
LT
71char *prom_getenv(char *envname)
72{
73 /*
74 * Return a pointer to the given environment variable.
6fe725c0 75 * YAMON uses "name", "value" pairs, while U-Boot uses "name=value".
1da177e4
LT
76 */
77
6fe725c0
DP
78 char **env = prom_envp;
79 int i = strlen(envname);
80 int yamon = (*env && strchr(*env, '=') == NULL);
81
82 while (*env) {
83 if (yamon) {
84 if (strcmp(envname, *env++) == 0)
85 return *env;
c1dcb14e
SS
86 } else if (strncmp(envname, *env, i) == 0 && (*env)[i] == '=')
87 return *env + i + 1;
1da177e4
LT
88 env++;
89 }
25b31cb1 90
fef6d6a7 91 return NULL;
1da177e4
LT
92}
93
2de88923 94static inline unsigned char str2hexnum(unsigned char c)
1da177e4 95{
25b31cb1 96 if (c >= '0' && c <= '9')
1da177e4 97 return c - '0';
25b31cb1 98 if (c >= 'a' && c <= 'f')
1da177e4 99 return c - 'a' + 10;
25b31cb1 100 if (c >= 'A' && c <= 'F')
1da177e4 101 return c - 'A' + 10;
25b31cb1 102
1da177e4
LT
103 return 0; /* foo */
104}
105
2de88923 106static inline void str2eaddr(unsigned char *ea, unsigned char *str)
1da177e4
LT
107{
108 int i;
109
c1dcb14e 110 for (i = 0; i < 6; i++) {
1da177e4
LT
111 unsigned char num;
112
c1dcb14e 113 if ((*str == '.') || (*str == ':'))
1da177e4 114 str++;
c1dcb14e
SS
115 num = str2hexnum(*str++) << 4;
116 num |= str2hexnum(*str++);
1da177e4
LT
117 ea[i] = num;
118 }
119}
120
2de88923 121int prom_get_ethernet_addr(char *ethernet_addr)
1da177e4 122{
2de88923
YY
123 char *ethaddr_str;
124 char *argptr;
1da177e4 125
2de88923
YY
126 /* Check the environment variables first */
127 ethaddr_str = prom_getenv("ethaddr");
1da177e4 128 if (!ethaddr_str) {
2de88923
YY
129 /* Check command line */
130 argptr = prom_getcmdline();
131 ethaddr_str = strstr(argptr, "ethaddr=");
132 if (!ethaddr_str)
133 return -1;
1da177e4 134
2de88923 135 ethaddr_str += strlen("ethaddr=");
1da177e4 136 }
2de88923
YY
137
138 str2eaddr(ethernet_addr, ethaddr_str);
1da177e4
LT
139
140 return 0;
141}
2de88923 142EXPORT_SYMBOL(prom_get_ethernet_addr);
1da177e4 143
c44e8d5e 144void __init prom_free_prom_memory(void)
1da177e4 145{
1da177e4 146}