sim_setup.c 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. /*
  2. * Copyright (C) 2005 MIPS Technologies, Inc. All rights reserved.
  3. *
  4. * This program is free software; you can distribute it and/or modify it
  5. * under the terms of the GNU General Public License (Version 2) as
  6. * published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope it will be useful, but WITHOUT
  9. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  10. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
  11. * for more details.
  12. *
  13. * You should have received a copy of the GNU General Public License along
  14. * with this program; if not, write to the Free Software Foundation, Inc.,
  15. * 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
  16. *
  17. */
  18. #include <linux/init.h>
  19. #include <linux/string.h>
  20. #include <linux/kernel.h>
  21. #include <linux/ioport.h>
  22. #include <linux/tty.h>
  23. #include <linux/serial.h>
  24. #include <linux/serial_core.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/serial.h>
  31. #include <asm/io.h>
  32. #include <asm/time.h>
  33. #include <asm/mips-boards/sim.h>
  34. #include <asm/mips-boards/simint.h>
  35. extern void sim_time_init(void);
  36. static void __init serial_init(void);
  37. unsigned int _isbonito = 0;
  38. extern void __init sanitize_tlb_entries(void);
  39. const char *get_system_type(void)
  40. {
  41. return "MIPSsim";
  42. }
  43. void __init plat_mem_setup(void)
  44. {
  45. set_io_port_base(0xbfd00000);
  46. serial_init();
  47. board_time_init = sim_time_init;
  48. prom_printf("Linux started...\n");
  49. #ifdef CONFIG_MT_SMP
  50. sanitize_tlb_entries();
  51. #endif
  52. }
  53. void prom_init(void)
  54. {
  55. set_io_port_base(0xbfd00000);
  56. prom_printf("\nLINUX started...\n");
  57. prom_init_cmdline();
  58. prom_meminit();
  59. }
  60. static void __init serial_init(void)
  61. {
  62. #ifdef CONFIG_SERIAL_8250
  63. struct uart_port s;
  64. memset(&s, 0, sizeof(s));
  65. s.iobase = 0x3f8;
  66. /* hardware int 4 - the serial int, is CPU int 6
  67. but poll for now */
  68. s.irq = 0;
  69. s.uartclk = BASE_BAUD * 16;
  70. s.flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST;
  71. s.iotype = UPIO_PORT;
  72. s.regshift = 0;
  73. s.timeout = 4;
  74. if (early_serial_setup(&s) != 0) {
  75. prom_printf(KERN_ERR "Serial setup failed!\n");
  76. }
  77. #endif
  78. }