blob: 18b310b475ca28195904f653637aedbd9bb57d7c [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 Shtylyovc1dcb142008-04-30 23:18:41 +04006 * Copyright 2000-2001, 2006, 2008 MontaVista Software Inc.
7 * Author: MontaVista Software, Inc. <source@mvista.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
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 */
Sergei Shtylyovce28f942008-04-23 22:43:55 +040035
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/init.h>
38#include <linux/string.h>
39
40#include <asm/bootinfo.h>
41
Yoichi Yuasa25b31cb2007-10-15 19:11:24 +090042int prom_argc;
43char **prom_argv;
44char **prom_envp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Ralf Baechlec21e6d62006-10-31 13:41:59 +000046char * __init_or_module prom_getcmdline(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070047{
48 return &(arcs_cmdline[0]);
49}
50
Yoichi Yuasa25b31cb2007-10-15 19:11:24 +090051void prom_init_cmdline(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070052{
53 char *cp;
54 int actr;
55
56 actr = 1; /* Always ignore argv[0] */
57
58 cp = &(arcs_cmdline[0]);
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +040059 while (actr < prom_argc) {
Yoichi Yuasa25b31cb2007-10-15 19:11:24 +090060 strcpy(cp, prom_argv[actr]);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 cp += strlen(prom_argv[actr]);
62 *cp++ = ' ';
63 actr++;
64 }
65 if (cp != &(arcs_cmdline[0])) /* get rid of trailing space */
66 --cp;
Pete Popov57e3e3b2005-09-13 22:52:55 +000067 if (prom_argc > 1)
68 *cp = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -070069}
70
Linus Torvalds1da177e2005-04-16 15:20:36 -070071char *prom_getenv(char *envname)
72{
73 /*
74 * Return a pointer to the given environment variable.
Domen Puncer6fe725c2006-07-03 08:17:09 +020075 * YAMON uses "name", "value" pairs, while U-Boot uses "name=value".
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 */
77
Domen Puncer6fe725c2006-07-03 08:17:09 +020078 char **env = prom_envp;
79 int i = strlen(envname);
80 int yamon = (*env && strchr(*env, '=') == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Domen Puncer6fe725c2006-07-03 08:17:09 +020082 while (*env) {
83 if (yamon) {
84 if (strcmp(envname, *env++) == 0)
85 return *env;
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +040086 } else if (strncmp(envname, *env, i) == 0 && (*env)[i] == '=')
87 return *env + i + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 env++;
89 }
Yoichi Yuasa25b31cb2007-10-15 19:11:24 +090090
Sergei Shtylyovfef6d6a2006-05-27 23:36:41 +040091 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092}
93
Yoichi Yuasa2de88922007-10-15 19:06:20 +090094static inline unsigned char str2hexnum(unsigned char c)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095{
Yoichi Yuasa25b31cb2007-10-15 19:11:24 +090096 if (c >= '0' && c <= '9')
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 return c - '0';
Yoichi Yuasa25b31cb2007-10-15 19:11:24 +090098 if (c >= 'a' && c <= 'f')
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 return c - 'a' + 10;
Yoichi Yuasa25b31cb2007-10-15 19:11:24 +0900100 if (c >= 'A' && c <= 'F')
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 return c - 'A' + 10;
Yoichi Yuasa25b31cb2007-10-15 19:11:24 +0900102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 return 0; /* foo */
104}
105
Yoichi Yuasa2de88922007-10-15 19:06:20 +0900106static inline void str2eaddr(unsigned char *ea, unsigned char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107{
108 int i;
109
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400110 for (i = 0; i < 6; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 unsigned char num;
112
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400113 if ((*str == '.') || (*str == ':'))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 str++;
Sergei Shtylyovc1dcb142008-04-30 23:18:41 +0400115 num = str2hexnum(*str++) << 4;
116 num |= str2hexnum(*str++);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 ea[i] = num;
118 }
119}
120
Yoichi Yuasa2de88922007-10-15 19:06:20 +0900121int prom_get_ethernet_addr(char *ethernet_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122{
Yoichi Yuasa2de88922007-10-15 19:06:20 +0900123 char *ethaddr_str;
124 char *argptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Yoichi Yuasa2de88922007-10-15 19:06:20 +0900126 /* Check the environment variables first */
127 ethaddr_str = prom_getenv("ethaddr");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 if (!ethaddr_str) {
Yoichi Yuasa2de88922007-10-15 19:06:20 +0900129 /* Check command line */
130 argptr = prom_getcmdline();
131 ethaddr_str = strstr(argptr, "ethaddr=");
132 if (!ethaddr_str)
133 return -1;
134
135 ethaddr_str += strlen("ethaddr=");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 }
Yoichi Yuasa2de88922007-10-15 19:06:20 +0900137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 str2eaddr(ethernet_addr, ethaddr_str);
139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 return 0;
141}
Yoichi Yuasa2de88922007-10-15 19:06:20 +0900142EXPORT_SYMBOL(prom_get_ethernet_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Atsushi Nemotoc44e8d52006-12-30 00:43:59 +0900144void __init prom_free_prom_memory(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146}