]> git.karo-electronics.de Git - mv-sheeva.git/blob - arch/mips/alchemy/common/prom.c
79e099fbc0bf6de967d01a7732e14d3a8fadf650
[mv-sheeva.git] / arch / mips / alchemy / common / prom.c
1 /*
2  *
3  * BRIEF MODULE DESCRIPTION
4  *    PROM library initialisation code, supports YAMON and U-Boot.
5  *
6  * Copyright 2000-2001, 2006, 2008 MontaVista Software Inc.
7  * Author: MontaVista Software, Inc. <source@mvista.com>
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  */
35
36 #include <linux/module.h>
37 #include <linux/init.h>
38 #include <linux/string.h>
39
40 #include <asm/bootinfo.h>
41
42 int prom_argc;
43 char **prom_argv;
44 char **prom_envp;
45
46 void prom_init_cmdline(void)
47 {
48         char *cp;
49         int actr;
50
51         actr = 1; /* Always ignore argv[0] */
52
53         cp = &(arcs_cmdline[0]);
54         while (actr < prom_argc) {
55                 strcpy(cp, prom_argv[actr]);
56                 cp += strlen(prom_argv[actr]);
57                 *cp++ = ' ';
58                 actr++;
59         }
60         if (cp != &(arcs_cmdline[0])) /* get rid of trailing space */
61                 --cp;
62         if (prom_argc > 1)
63                 *cp = '\0';
64 }
65
66 char *prom_getenv(char *envname)
67 {
68         /*
69          * Return a pointer to the given environment variable.
70          * YAMON uses "name", "value" pairs, while U-Boot uses "name=value".
71          */
72
73         char **env = prom_envp;
74         int i = strlen(envname);
75         int yamon = (*env && strchr(*env, '=') == NULL);
76
77         while (*env) {
78                 if (yamon) {
79                         if (strcmp(envname, *env++) == 0)
80                                 return *env;
81                 } else if (strncmp(envname, *env, i) == 0 && (*env)[i] == '=')
82                         return *env + i + 1;
83                 env++;
84         }
85
86         return NULL;
87 }
88
89 static inline unsigned char str2hexnum(unsigned char c)
90 {
91         if (c >= '0' && c <= '9')
92                 return c - '0';
93         if (c >= 'a' && c <= 'f')
94                 return c - 'a' + 10;
95         if (c >= 'A' && c <= 'F')
96                 return c - 'A' + 10;
97
98         return 0; /* foo */
99 }
100
101 static inline void str2eaddr(unsigned char *ea, unsigned char *str)
102 {
103         int i;
104
105         for (i = 0; i < 6; i++) {
106                 unsigned char num;
107
108                 if ((*str == '.') || (*str == ':'))
109                         str++;
110                 num  = str2hexnum(*str++) << 4;
111                 num |= str2hexnum(*str++);
112                 ea[i] = num;
113         }
114 }
115
116 int prom_get_ethernet_addr(char *ethernet_addr)
117 {
118         char *ethaddr_str;
119
120         /* Check the environment variables first */
121         ethaddr_str = prom_getenv("ethaddr");
122         if (!ethaddr_str) {
123                 /* Check command line */
124                 ethaddr_str = strstr(arcs_cmdline, "ethaddr=");
125                 if (!ethaddr_str)
126                         return -1;
127
128                 ethaddr_str += strlen("ethaddr=");
129         }
130
131         str2eaddr(ethernet_addr, ethaddr_str);
132
133         return 0;
134 }
135 EXPORT_SYMBOL(prom_get_ethernet_addr);
136
137 void __init prom_free_prom_memory(void)
138 {
139 }