prom.c 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. /*
  2. *
  3. * BRIEF MODULE DESCRIPTION
  4. * PROM library initialisation code, assuming YAMON is the boot loader.
  5. *
  6. * Copyright 2000, 2001, 2006 MontaVista Software Inc.
  7. * 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. #include <linux/module.h>
  37. #include <linux/kernel.h>
  38. #include <linux/init.h>
  39. #include <linux/string.h>
  40. #include <asm/bootinfo.h>
  41. /* #define DEBUG_CMDLINE */
  42. extern int prom_argc;
  43. extern char **prom_argv, **prom_envp;
  44. typedef struct
  45. {
  46. char *name;
  47. char *val;
  48. } t_env_var;
  49. char * prom_getcmdline(void)
  50. {
  51. return &(arcs_cmdline[0]);
  52. }
  53. void prom_init_cmdline(void)
  54. {
  55. char *cp;
  56. int actr;
  57. actr = 1; /* Always ignore argv[0] */
  58. cp = &(arcs_cmdline[0]);
  59. while(actr < prom_argc) {
  60. strcpy(cp, prom_argv[actr]);
  61. cp += strlen(prom_argv[actr]);
  62. *cp++ = ' ';
  63. actr++;
  64. }
  65. if (cp != &(arcs_cmdline[0])) /* get rid of trailing space */
  66. --cp;
  67. if (prom_argc > 1)
  68. *cp = '\0';
  69. }
  70. char *prom_getenv(char *envname)
  71. {
  72. /*
  73. * Return a pointer to the given environment variable.
  74. */
  75. t_env_var *env = (t_env_var *)prom_envp;
  76. while (env->name) {
  77. if (strcmp(envname, env->name) == 0)
  78. return env->val;
  79. env++;
  80. }
  81. return NULL;
  82. }
  83. inline unsigned char str2hexnum(unsigned char c)
  84. {
  85. if(c >= '0' && c <= '9')
  86. return c - '0';
  87. if(c >= 'a' && c <= 'f')
  88. return c - 'a' + 10;
  89. if(c >= 'A' && c <= 'F')
  90. return c - 'A' + 10;
  91. return 0; /* foo */
  92. }
  93. inline void str2eaddr(unsigned char *ea, unsigned char *str)
  94. {
  95. int i;
  96. for(i = 0; i < 6; i++) {
  97. unsigned char num;
  98. if((*str == '.') || (*str == ':'))
  99. str++;
  100. num = str2hexnum(*str++) << 4;
  101. num |= (str2hexnum(*str++));
  102. ea[i] = num;
  103. }
  104. }
  105. int get_ethernet_addr(char *ethernet_addr)
  106. {
  107. char *ethaddr_str;
  108. ethaddr_str = prom_getenv("ethaddr");
  109. if (!ethaddr_str) {
  110. printk("ethaddr not set in boot prom\n");
  111. return -1;
  112. }
  113. str2eaddr(ethernet_addr, ethaddr_str);
  114. #if 0
  115. {
  116. int i;
  117. printk("get_ethernet_addr: ");
  118. for (i=0; i<5; i++)
  119. printk("%02x:", (unsigned char)*(ethernet_addr+i));
  120. printk("%02x\n", *(ethernet_addr+i));
  121. }
  122. #endif
  123. return 0;
  124. }
  125. unsigned long __init prom_free_prom_memory(void)
  126. {
  127. return 0;
  128. }
  129. EXPORT_SYMBOL(prom_getcmdline);
  130. EXPORT_SYMBOL(get_ethernet_addr);
  131. EXPORT_SYMBOL(str2eaddr);