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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Carsten Langgaard, carstenl@mips.com
  3.  * Copyright (C) 2002 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.  * SEAD specific setup.
  19.  */
  20. #include <linux/config.h>
  21. #include <linux/init.h>
  22. #include <linux/sched.h>
  23. #include <linux/mc146818rtc.h>
  24. #include <linux/ioport.h>
  25. #include <asm/cpu.h>
  26. #include <asm/bootinfo.h>
  27. #include <asm/irq.h>
  28. #include <asm/mips-boards/generic.h>
  29. #include <asm/mips-boards/prom.h>
  30. #include <asm/mips-boards/seadint.h>
  31. #include <asm/time.h>
  32. #if defined(CONFIG_SERIAL_CONSOLE) || defined(CONFIG_PROM_CONSOLE)
  33. extern void console_setup(char *, int *);
  34. char serial_console[20];
  35. #endif
  36. extern void mips_reboot_setup(void);
  37. extern void mips_time_init(void);
  38. extern void mips_timer_setup(struct irqaction *irq);
  39. const char *get_system_type(void)
  40. {
  41. return "MIPS SEAD";
  42. }
  43. void __init bus_error_init(void)
  44. {
  45. }
  46. void __init sead_setup(void)
  47. {
  48. char *argptr;
  49. ioport_resource.end = 0x7fffffff;
  50. #ifdef CONFIG_SERIAL_CONSOLE
  51. argptr = prom_getcmdline();
  52. if ((argptr = strstr(argptr, "console=ttyS0")) == NULL) {
  53. int i = 0;
  54. char *s = prom_getenv("modetty0");
  55. while(s[i] >= '0' && s[i] <= '9')
  56. i++;
  57. strcpy(serial_console, "ttyS0,");
  58. strncpy(serial_console + 6, s, i);
  59. prom_printf("Config serial console: %sn", serial_console);
  60. console_setup(serial_console, NULL);
  61. }
  62. #endif
  63. argptr = prom_getcmdline();
  64. if ((argptr = strstr(argptr, "nofpu")) != NULL)
  65. mips_cpu.options &= ~MIPS_CPU_FPU;
  66. board_time_init = mips_time_init;
  67. board_timer_setup = mips_timer_setup;
  68. mips_reboot_setup();
  69. }