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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * IP32 basic setup
  3.  *
  4.  * This file is subject to the terms and conditions of the GNU General Public
  5.  * License.  See the file "COPYING" in the main directory of this archive
  6.  * for more details.
  7.  *
  8.  * Copyright (C) 2000 Harald Koerfgen
  9.  */
  10. #include <linux/config.h>
  11. #include <linux/sched.h>
  12. #include <linux/interrupt.h>
  13. #include <linux/mc146818rtc.h>
  14. #include <linux/param.h>
  15. #include <linux/init.h>
  16. #include <asm/time.h>
  17. #include <asm/mipsregs.h>
  18. #include <asm/bootinfo.h>
  19. #include <asm/mmu_context.h>
  20. #include <asm/ip32/crime.h>
  21. #include <asm/ip32/mace.h>
  22. #include <asm/ip32/ip32_ints.h>
  23. #include <asm/sgialib.h>
  24. extern struct rtc_ops ip32_rtc_ops;
  25. extern u32 cc_interval;
  26. #ifdef CONFIG_SGI_O2MACE_ETH
  27. /*
  28.  * This is taken care of in here 'cause they say using Arc later on is
  29.  * problematic
  30.  */
  31. extern char o2meth_eaddr[8];
  32. static inline unsigned char str2hexnum(unsigned char c)
  33. {
  34. if (c >= '0' && c <= '9')
  35. return c - '0';
  36. if (c >= 'a' && c <= 'f')
  37. return c - 'a' + 10;
  38. return 0; /* foo */
  39. }
  40. static inline void str2eaddr(unsigned char *ea, unsigned char *str)
  41. {
  42. int i;
  43. for (i = 0; i < 6; i++) {
  44. unsigned char num;
  45. if(*str == ':')
  46. str++;
  47. num = str2hexnum(*str++) << 4;
  48. num |= (str2hexnum(*str++));
  49. ea[i] = num;
  50. }
  51. }
  52. #endif
  53. extern void ip32_time_init(void);
  54. void __init ip32_setup(void)
  55. {
  56. #ifdef CONFIG_SERIAL_CONSOLE
  57. char *ctype;
  58. #endif
  59. TLBMISS_HANDLER_SETUP ();
  60. mips_io_port_base = UNCACHEDADDR(MACEPCI_HI_IO);;
  61. #ifdef CONFIG_SERIAL_CONSOLE
  62. ctype = ArcGetEnvironmentVariable("console");
  63. if (*ctype == 'd') {
  64. if (ctype[1] == '2')
  65. console_setup ("ttyS1");
  66. else
  67. console_setup ("ttyS0");
  68. }
  69. #endif
  70. #ifdef CONFIG_SGI_O2MACE_ETH
  71. {
  72. char *mac=ArcGetEnvironmentVariable("eaddr");
  73. str2eaddr(o2meth_eaddr, mac);
  74. }
  75. #endif
  76. #ifdef CONFIG_VT
  77. conswitchp = &dummy_con;
  78. #endif
  79. rtc_ops = &ip32_rtc_ops;
  80. board_time_init = ip32_time_init;
  81. crime_init ();
  82. }
  83. int __init page_is_ram (unsigned long pagenr)
  84. {
  85. /* XXX: to do? */
  86. return 1;
  87. }