init.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:4k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Copyright 2000 MontaVista Software Inc.
  3.  * Author: MontaVista Software, Inc.
  4.  *          ppopov@mvista.com or source@mvista.com
  5.  *
  6.  * This file was derived from Carsten Langgaard's
  7.  * arch/mips/mips-boards/generic/generic.c
  8.  *
  9.  * Carsten Langgaard, carstenl@mips.com
  10.  * Copyright (C) 1999,2000 MIPS Technologies, Inc.  All rights reserved.
  11.  *
  12.  *  This program is free software; you can redistribute  it and/or modify it
  13.  *  under  the terms of  the GNU General  Public License as published by the
  14.  *  Free Software Foundation;  either version 2 of the  License, or (at your
  15.  *  option) any later version.
  16.  *
  17.  *  THIS  SOFTWARE  IS PROVIDED   ``AS  IS'' AND   ANY  EXPRESS OR IMPLIED
  18.  *  WARRANTIES,   INCLUDING, BUT NOT  LIMITED  TO, THE IMPLIED WARRANTIES OF
  19.  *  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN
  20.  *  NO  EVENT  SHALL   THE AUTHOR  BE    LIABLE FOR ANY   DIRECT, INDIRECT,
  21.  *  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  22.  *  NOT LIMITED   TO, PROCUREMENT OF  SUBSTITUTE GOODS  OR SERVICES; LOSS OF
  23.  *  USE, DATA,  OR PROFITS; OR  BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
  24.  *  ANY THEORY OF LIABILITY, WHETHER IN  CONTRACT, STRICT LIABILITY, OR TORT
  25.  *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  26.  *  THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  27.  *
  28.  *  You should have received a copy of the  GNU General Public License along
  29.  *  with this program; if not, write  to the Free Software Foundation, Inc.,
  30.  *  675 Mass Ave, Cambridge, MA 02139, USA.
  31.  */
  32. #include <linux/init.h>
  33. #include <linux/mm.h>
  34. #include <linux/sched.h>
  35. #include <linux/bootmem.h>
  36. #include <linux/string.h>
  37. #include <linux/kernel.h>
  38. #include <linux/sched.h>
  39. #include <asm/addrspace.h>
  40. #include <asm/bootinfo.h>
  41. #include <asm/galileo-boards/ev96100.h>
  42. /* Environment variable */
  43. typedef struct {
  44. char *name;
  45. char *val;
  46. } t_env_var;
  47. int prom_argc;
  48. char **prom_argv, **prom_envp;
  49. char arcs_cmdline[CL_SIZE];
  50. int init_debug = 0;
  51. char * __init prom_getcmdline(void)
  52. {
  53. return &(arcs_cmdline[0]);
  54. }
  55. void prom_free_prom_memory (void)
  56. {
  57. }
  58. void  __init prom_init_cmdline(void)
  59. {
  60. char *cp;
  61. int actr;
  62. actr = 1; /* Always ignore argv[0] */
  63. cp = &(arcs_cmdline[0]);
  64. while(actr < prom_argc) {
  65.         strcpy(cp, prom_argv[actr]);
  66. cp += strlen(prom_argv[actr]);
  67. *cp++ = ' ';
  68. actr++;
  69. }
  70. if (cp != &(arcs_cmdline[0])) /* get rid of trailing space */
  71. --cp;
  72. *cp = '';
  73. }
  74. char *prom_getenv(char *envname)
  75. {
  76. /*
  77.  * Return a pointer to the given environment variable.
  78.  */
  79. t_env_var *env = (t_env_var *) prom_envp;
  80. int i;
  81. i = strlen(envname);
  82. while (env->name) {
  83. if (strncmp(envname, env->name, i) == 0) {
  84. return (env->val);
  85. }
  86. env++;
  87. }
  88. return (NULL);
  89. }
  90. static inline unsigned char str2hexnum(unsigned char c)
  91. {
  92. if (c >= '0' && c <= '9')
  93. return c - '0';
  94. if (c >= 'a' && c <= 'f')
  95. return c - 'a' + 10;
  96. return 0; /* foo */
  97. }
  98. static inline void str2eaddr(unsigned char *ea, unsigned char *str)
  99. {
  100. int i;
  101. for (i = 0; i < 6; i++) {
  102. unsigned char num;
  103. if ((*str == '.') || (*str == ':'))
  104. str++;
  105. num = str2hexnum(*str++) << 4;
  106. num |= (str2hexnum(*str++));
  107. ea[i] = num;
  108. }
  109. }
  110. int get_ethernet_addr(char *ethernet_addr)
  111. {
  112. char *ethaddr_str;
  113. ethaddr_str = prom_getenv("ethaddr");
  114. if (!ethaddr_str) {
  115. printk("ethaddr not set in boot promn");
  116. return -1;
  117. }
  118. str2eaddr(ethernet_addr, ethaddr_str);
  119. if (init_debug > 1) {
  120. int i;
  121. printk("get_ethernet_addr: ");
  122. for (i = 0; i < 5; i++)
  123. printk("%02x:",
  124.        (unsigned char) *(ethernet_addr + i));
  125. printk("%02xn", *(ethernet_addr + i));
  126. }
  127. return 0;
  128. }
  129. const char *get_system_type(void)
  130. {
  131. return "Galileo EV96100";
  132. }
  133. void __init prom_init(int argc, char **argv, char **envp, int *prom_vec)
  134. {
  135. volatile unsigned char *uart;
  136. char ppbuf[8];
  137. prom_argc = argc;
  138. prom_argv = argv;
  139. prom_envp = envp;
  140. mips_machgroup = MACH_GROUP_GALILEO;
  141. mips_machtype = MACH_EV96100;
  142. prom_init_cmdline();
  143. /* 32 MB upgradable */
  144. add_memory_region(0, 32 << 20, BOOT_MEM_RAM);
  145. }