prom.c 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  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. #include <linux/module.h>
  36. #include <linux/init.h>
  37. #include <linux/string.h>
  38. #include <asm/bootinfo.h>
  39. int prom_argc;
  40. char **prom_argv;
  41. char **prom_envp;
  42. char * __init_or_module prom_getcmdline(void)
  43. {
  44. return &(arcs_cmdline[0]);
  45. }
  46. void prom_init_cmdline(void)
  47. {
  48. char *cp;
  49. int actr;
  50. actr = 1; /* Always ignore argv[0] */
  51. cp = &(arcs_cmdline[0]);
  52. while (actr < prom_argc) {
  53. strcpy(cp, prom_argv[actr]);
  54. cp += strlen(prom_argv[actr]);
  55. *cp++ = ' ';
  56. actr++;
  57. }
  58. if (cp != &(arcs_cmdline[0])) /* get rid of trailing space */
  59. --cp;
  60. if (prom_argc > 1)
  61. *cp = '\0';
  62. }
  63. char *prom_getenv(char *envname)
  64. {
  65. /*
  66. * Return a pointer to the given environment variable.
  67. * YAMON uses "name", "value" pairs, while U-Boot uses "name=value".
  68. */
  69. char **env = prom_envp;
  70. int i = strlen(envname);
  71. int yamon = (*env && strchr(*env, '=') == NULL);
  72. while (*env) {
  73. if (yamon) {
  74. if (strcmp(envname, *env++) == 0)
  75. return *env;
  76. } else if (strncmp(envname, *env, i) == 0 && (*env)[i] == '=')
  77. return *env + i + 1;
  78. env++;
  79. }
  80. return NULL;
  81. }
  82. static inline unsigned char str2hexnum(unsigned char c)
  83. {
  84. if (c >= '0' && c <= '9')
  85. return c - '0';
  86. if (c >= 'a' && c <= 'f')
  87. return c - 'a' + 10;
  88. if (c >= 'A' && c <= 'F')
  89. return c - 'A' + 10;
  90. return 0; /* foo */
  91. }
  92. static inline void str2eaddr(unsigned char *ea, unsigned char *str)
  93. {
  94. int i;
  95. for (i = 0; i < 6; i++) {
  96. unsigned char num;
  97. if ((*str == '.') || (*str == ':'))
  98. str++;
  99. num = str2hexnum(*str++) << 4;
  100. num |= str2hexnum(*str++);
  101. ea[i] = num;
  102. }
  103. }
  104. int prom_get_ethernet_addr(char *ethernet_addr)
  105. {
  106. char *ethaddr_str;
  107. char *argptr;
  108. /* Check the environment variables first */
  109. ethaddr_str = prom_getenv("ethaddr");
  110. if (!ethaddr_str) {
  111. /* Check command line */
  112. argptr = prom_getcmdline();
  113. ethaddr_str = strstr(argptr, "ethaddr=");
  114. if (!ethaddr_str)
  115. return -1;
  116. ethaddr_str += strlen("ethaddr=");
  117. }
  118. str2eaddr(ethernet_addr, ethaddr_str);
  119. return 0;
  120. }
  121. EXPORT_SYMBOL(prom_get_ethernet_addr);
  122. void __init prom_free_prom_memory(void)
  123. {
  124. }