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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Carsten Langgaard, carstenl@mips.com
  3.  * Copyright (C) 1999,2000 MIPS Technologies, Inc.  All rights reserved.
  4.  *
  5.  *  This program is free software; you can distribute it and/or modify it
  6.  *  under the terms of the GNU General Public License (Version 2) as
  7.  *  published by the Free Software Foundation.
  8.  *
  9.  *  This program is distributed in the hope it will be useful, but WITHOUT
  10.  *  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11.  *  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12.  *  for more details.
  13.  *
  14.  *  You should have received a copy of the GNU General Public License along
  15.  *  with this program; if not, write to the Free Software Foundation, Inc.,
  16.  *  59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
  17.  *
  18.  * PROM library initialisation code.
  19.  */
  20. #include <linux/config.h>
  21. #include <linux/init.h>
  22. #include <linux/string.h>
  23. #include <linux/kernel.h>
  24. #include <asm/io.h>
  25. #include <asm/mips-boards/prom.h>
  26. #include <asm/mips-boards/generic.h>
  27. #include <asm/gt64120.h>
  28. #include <asm/mips-boards/malta.h>
  29. #include <asm/mips-boards/msc01_pci.h>
  30. #include <asm/mips-boards/bonito64.h>
  31. /* Environment variable */
  32. typedef struct
  33. {
  34. char *name;
  35. char *val;
  36. } t_env_var;
  37. int prom_argc;
  38. int *_prom_argv, *_prom_envp;
  39. /*
  40.  * YAMON (32-bit PROM) pass arguments and environment as 32-bit pointer.
  41.  * This macro take care of sign extension, if running in 64-bit mode.
  42.  */
  43. #define prom_envp(index) ((char *)(((int *)(int)_prom_envp)[(index)]))
  44. int init_debug = 0;
  45. unsigned int mips_revision_corid;
  46. char *prom_getenv(char *envname)
  47. {
  48. /*
  49.  * Return a pointer to the given environment variable.
  50.  * In 64-bit mode: we're using 64-bit pointers, but all pointers
  51.  * in the PROM structures are only 32-bit, so we need some
  52.  * workarounds, if we are running in 64-bit mode.
  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. int get_ethernet_addr(char *ethernet_addr)
  85. {
  86.         char *ethaddr_str;
  87.         ethaddr_str = prom_getenv("ethaddr");
  88. if (!ethaddr_str) {
  89.         printk("ethaddr not set in boot promn");
  90. return -1;
  91. }
  92. str2eaddr(ethernet_addr, ethaddr_str);
  93. if (init_debug > 1) {
  94.         int i;
  95. printk("get_ethernet_addr: ");
  96.         for (i=0; i<5; i++)
  97.         printk("%02x:", (unsigned char)*(ethernet_addr+i));
  98. printk("%02xn", *(ethernet_addr+i));
  99. }
  100. return 0;
  101. }
  102. int __init prom_init(int argc, char **argv, char **envp)
  103. {
  104. prom_argc = argc;
  105. _prom_argv = (int *)argv;
  106. _prom_envp = (int *)envp;
  107. mips_display_message("LINUX");
  108. #ifdef CONFIG_MIPS_SEAD
  109. set_io_port_base(KSEG1);
  110. #else
  111. mips_revision_corid = MIPS_REVISION_CORID;
  112. switch(mips_revision_corid) {
  113. case MIPS_REVISION_CORID_QED_RM5261:
  114. case MIPS_REVISION_CORID_CORE_LV:
  115. case MIPS_REVISION_CORID_CORE_FPGA:
  116. /*
  117.  * Setup the North bridge to do Master byte-lane swapping
  118.  * when running in bigendian.
  119.  */
  120. #if defined(__MIPSEL__)
  121. GT_WRITE(GT_PCI0_CMD_OFS, GT_PCI0_CMD_MBYTESWAP_BIT |
  122.  GT_PCI0_CMD_SBYTESWAP_BIT);
  123. #else
  124. GT_WRITE(GT_PCI0_CMD_OFS, 0);
  125. #endif
  126. #if defined(CONFIG_MIPS_MALTA)
  127. set_io_port_base(MALTA_GT_PORT_BASE);
  128. #else
  129. set_io_port_base(KSEG1);
  130. #endif
  131. break;
  132. case MIPS_REVISION_CORID_BONITO64:
  133. case MIPS_REVISION_CORID_CORE_20K:
  134. /*
  135.  * Disable Bonito IOBC.
  136.  */
  137. BONITO_PCIMEMBASECFG = BONITO_PCIMEMBASECFG &
  138. ~(BONITO_PCIMEMBASECFG_MEMBASE0_CACHED |
  139.   BONITO_PCIMEMBASECFG_MEMBASE1_CACHED);
  140. /*
  141.  * Setup the North bridge to do Master byte-lane swapping
  142.  * when running in bigendian.
  143.  */
  144. #if defined(__MIPSEL__)
  145. BONITO_BONGENCFG = BONITO_BONGENCFG &
  146. ~(BONITO_BONGENCFG_MSTRBYTESWAP |
  147.   BONITO_BONGENCFG_BYTESWAP);
  148. #else
  149. BONITO_BONGENCFG = BONITO_BONGENCFG |
  150. BONITO_BONGENCFG_MSTRBYTESWAP |
  151. BONITO_BONGENCFG_BYTESWAP;
  152. #endif
  153. #if defined(CONFIG_MIPS_MALTA)
  154.                 set_io_port_base(MALTA_BONITO_PORT_BASE);
  155. #else
  156.                 set_io_port_base(KSEG1);
  157. #endif
  158. break;
  159. case MIPS_REVISION_CORID_CORE_MSC:
  160.         set_io_port_base(MALTA_MSC_PORT_BASE);
  161. #if defined(__MIPSEL__)
  162. MSC_WRITE(MSC01_PCI_SWAP, MSC01_PCI_SWAP_NOSWAP);
  163. #else
  164. MSC_WRITE(MSC01_PCI_SWAP,
  165.   MSC01_PCI_SWAP_BYTESWAP << MSC01_PCI_SWAP_IO_SHF |
  166.   MSC01_PCI_SWAP_BYTESWAP << MSC01_PCI_SWAP_MEM_SHF |
  167.   MSC01_PCI_SWAP_BYTESWAP << MSC01_PCI_SWAP_BAR0_SHF);
  168. #endif
  169. break;
  170. default:
  171. /* Unknown Core card */
  172. mips_display_message("CC Error");
  173. while(1);   /* We die here... */
  174. }
  175. #endif
  176. setup_prom_printf(0);
  177. prom_printf("nLINUX started...n");
  178. prom_init_cmdline();
  179. prom_meminit();
  180. return 0;
  181. }