blob: 5d6ddf1ed7a6831fea63dfc63f203478cc4c6a03 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 *
3 * BRIEF MODULE DESCRIPTION
Domen Puncer6fe725c2006-07-03 08:17:09 +02004 * PROM library initialisation code, supports YAMON and U-Boot.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
Sergei Shtylyovfef6d6a2006-05-27 23:36:41 +04006 * Copyright 2000, 2001, 2006 MontaVista Software Inc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * Author: MontaVista Software, Inc.
8 * ppopov@mvista.com or source@mvista.com
9 *
10 * This file was derived from Carsten Langgaard's
11 * arch/mips/mips-boards/xx files.
12 *
13 * Carsten Langgaard, carstenl@mips.com
14 * Copyright (C) 1999,2000 MIPS Technologies, Inc. All rights reserved.
15 *
16 * This program is free software; you can redistribute it and/or modify it
17 * under the terms of the GNU General Public License as published by the
18 * Free Software Foundation; either version 2 of the License, or (at your
19 * option) any later version.
20 *
21 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
22 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
23 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
24 * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
25 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
27 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
28 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 *
32 * You should have received a copy of the GNU General Public License along
33 * with this program; if not, write to the Free Software Foundation, Inc.,
34 * 675 Mass Ave, Cambridge, MA 02139, USA.
35 */
36
37#include <linux/module.h>
38#include <linux/kernel.h>
39#include <linux/init.h>
40#include <linux/string.h>
41
42#include <asm/bootinfo.h>
43
44/* #define DEBUG_CMDLINE */
45
46extern int prom_argc;
47extern char **prom_argv, **prom_envp;
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Ralf Baechlec21e6d62006-10-31 13:41:59 +000050char * __init_or_module prom_getcmdline(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070051{
52 return &(arcs_cmdline[0]);
53}
54
55void prom_init_cmdline(void)
56{
57 char *cp;
58 int actr;
59
60 actr = 1; /* Always ignore argv[0] */
61
62 cp = &(arcs_cmdline[0]);
63 while(actr < prom_argc) {
64 strcpy(cp, prom_argv[actr]);
65 cp += strlen(prom_argv[actr]);
66 *cp++ = ' ';
67 actr++;
68 }
69 if (cp != &(arcs_cmdline[0])) /* get rid of trailing space */
70 --cp;
Pete Popov57e3e3b2005-09-13 22:52:55 +000071 if (prom_argc > 1)
72 *cp = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74}
75
76
77char *prom_getenv(char *envname)
78{
79 /*
80 * Return a pointer to the given environment variable.
Domen Puncer6fe725c2006-07-03 08:17:09 +020081 * YAMON uses "name", "value" pairs, while U-Boot uses "name=value".
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 */
83
Domen Puncer6fe725c2006-07-03 08:17:09 +020084 char **env = prom_envp;
85 int i = strlen(envname);
86 int yamon = (*env && strchr(*env, '=') == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Domen Puncer6fe725c2006-07-03 08:17:09 +020088 while (*env) {
89 if (yamon) {
90 if (strcmp(envname, *env++) == 0)
91 return *env;
92 } else {
93 if (strncmp(envname, *env, i) == 0 && (*env)[i] == '=')
94 return *env + i + 1;
95 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 env++;
97 }
Sergei Shtylyovfef6d6a2006-05-27 23:36:41 +040098 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099}
100
Yoichi Yuasa2de88922007-10-15 19:06:20 +0900101static inline unsigned char str2hexnum(unsigned char c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102{
103 if(c >= '0' && c <= '9')
104 return c - '0';
105 if(c >= 'a' && c <= 'f')
106 return c - 'a' + 10;
107 if(c >= 'A' && c <= 'F')
108 return c - 'A' + 10;
109 return 0; /* foo */
110}
111
Yoichi Yuasa2de88922007-10-15 19:06:20 +0900112static inline void str2eaddr(unsigned char *ea, unsigned char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
114 int i;
115
116 for(i = 0; i < 6; i++) {
117 unsigned char num;
118
119 if((*str == '.') || (*str == ':'))
120 str++;
121 num = str2hexnum(*str++) << 4;
122 num |= (str2hexnum(*str++));
123 ea[i] = num;
124 }
125}
126
Yoichi Yuasa2de88922007-10-15 19:06:20 +0900127int prom_get_ethernet_addr(char *ethernet_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128{
Yoichi Yuasa2de88922007-10-15 19:06:20 +0900129 char *ethaddr_str;
130 char *argptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
Yoichi Yuasa2de88922007-10-15 19:06:20 +0900132 /* Check the environment variables first */
133 ethaddr_str = prom_getenv("ethaddr");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 if (!ethaddr_str) {
Yoichi Yuasa2de88922007-10-15 19:06:20 +0900135 /* Check command line */
136 argptr = prom_getcmdline();
137 ethaddr_str = strstr(argptr, "ethaddr=");
138 if (!ethaddr_str)
139 return -1;
140
141 ethaddr_str += strlen("ethaddr=");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 }
Yoichi Yuasa2de88922007-10-15 19:06:20 +0900143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 str2eaddr(ethernet_addr, ethaddr_str);
145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 return 0;
147}
Yoichi Yuasa2de88922007-10-15 19:06:20 +0900148EXPORT_SYMBOL(prom_get_ethernet_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Atsushi Nemotoc44e8d52006-12-30 00:43:59 +0900150void __init prom_free_prom_memory(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152}