init.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Carsten Langgaard, carstenl@mips.com
  3.  * Copyright (C) 2000 MIPS Technologies, Inc.  All rights reserved.
  4.  *
  5.  * ########################################################################
  6.  *
  7.  *  This program is free software; you can distribute it and/or modify it
  8.  *  under the terms of the GNU General Public License (Version 2) as
  9.  *  published by the Free Software Foundation.
  10.  *
  11.  *  This program is distributed in the hope it will be useful, but WITHOUT
  12.  *  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13.  *  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14.  *  for more details.
  15.  *
  16.  *  You should have received a copy of the GNU General Public License along
  17.  *  with this program; if not, write to the Free Software Foundation, Inc.,
  18.  *  59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
  19.  *
  20.  * ########################################################################
  21.  *
  22.  * PROM library initialisation code.
  23.  */
  24. #include <linux/config.h>
  25. #include <linux/init.h>
  26. #include <linux/string.h>
  27. #include <linux/kernel.h>
  28. #include <asm/io.h>
  29. #include <asm/mips-boards/prom.h>
  30. #include <asm/mips-boards/generic.h>
  31. #include <asm/mips-boards/gt64120.h>
  32. #include <asm/mips-boards/malta.h>
  33. /* Environment variable */
  34. typedef struct
  35. {
  36.     char *name;
  37.     char *val;
  38. }t_env_var;
  39. int prom_argc;
  40. int *_prom_argv, *_prom_envp;
  41. /*
  42.  * A 32-bit PROM pass arguments and environment as 32-bit pointer.
  43.  * This macro take care of sign extension.
  44.  */
  45. #define prom_envp(index) ((char *)(((int *)(int)_prom_envp)[(index)]))
  46. int init_debug = 0;
  47. char *prom_getenv(char *envname)
  48. {
  49.         /*
  50.  * Return a pointer to the given environment variable.
  51.  * We're using 64-bit pointers, but all pointers in the PROM 
  52.  * structures are only 32-bit, so we need some workarounds.
  53.  */
  54. int i, index=0;
  55. i = strlen(envname);
  56. while(prom_envp(index)) {
  57. if(strncmp(envname, prom_envp(index), i) == 0) {
  58. return(prom_envp(index+1));
  59. }
  60. index += 2;
  61. }
  62. return(NULL);
  63. }
  64. static inline unsigned char str2hexnum(unsigned char c)
  65. {
  66. if(c >= '0' && c <= '9')
  67. return c - '0';
  68. if(c >= 'a' && c <= 'f')
  69. return c - 'a' + 10;
  70. return 0; /* foo */
  71. }
  72. static inline void str2eaddr(unsigned char *ea, unsigned char *str)
  73. {
  74. int i;
  75. for(i = 0; i < 6; i++) {
  76. unsigned char num;
  77. if((*str == '.') || (*str == ':'))
  78. str++;
  79. num = str2hexnum(*str++) << 4;
  80. num |= (str2hexnum(*str++));
  81. ea[i] = num;
  82. }
  83. }
  84.  
  85. int get_ethernet_addr(char *ethernet_addr)
  86. {
  87.         char *ethaddr_str;
  88.         ethaddr_str = prom_getenv("ethaddr");
  89. if (!ethaddr_str) {
  90.         printk("ethaddr not set in boot promn");
  91. return -1;
  92. }
  93. str2eaddr(ethernet_addr, ethaddr_str);
  94. if (init_debug > 1)
  95. {
  96.         int i;
  97. printk("get_ethernet_addr: ");
  98.         for (i=0; i<5; i++)
  99.         printk("%02x:", (unsigned char)*(ethernet_addr+i));
  100. printk("%02xn", *(ethernet_addr+i));
  101. }
  102. return 0;
  103. }
  104. int __init prom_init(int argc, char **argv, char **envp)
  105. {
  106. prom_argc = argc;
  107. _prom_argv = (int *)argv;
  108. _prom_envp = (int *)envp;
  109. mips_display_message("LINUX");
  110. /*
  111.  * Setup the North bridge to do Master byte-lane swapping when 
  112.  * running in bigendian.
  113.  */
  114. #if defined(__MIPSEL__)
  115. GT_WRITE(GT_PCI0_CMD_OFS, GT_PCI0_CMD_MBYTESWAP_BIT |
  116.  GT_PCI0_CMD_SBYTESWAP_BIT);
  117. #else
  118. GT_WRITE(GT_PCI0_CMD_OFS, 0);
  119. #endif
  120. #if defined(CONFIG_MIPS_MALTA)
  121. mips_io_port_base = MALTA_PORT_BASE;
  122. #else
  123. mips_io_port_base = KSEG1;
  124. #endif
  125. setup_prom_printf(0);
  126. prom_printf("nLINUX started...n");
  127. prom_init_cmdline();
  128. prom_meminit();
  129. return 0;
  130. }