setup.c 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. /*
  2. * BRIEF MODULE DESCRIPTION
  3. * setup.c - board dependent boot routines
  4. *
  5. * Copyright (C) 2007 Lemote Inc. & Insititute of Computing Technology
  6. * Author: Fuxin Zhang, zhangfx@lemote.com
  7. *
  8. * This program is free software; you can redistribute it and/or modify it
  9. * under the terms of the GNU General Public License as published by the
  10. * Free Software Foundation; either version 2 of the License, or (at your
  11. * option) any later version.
  12. *
  13. * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
  14. * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  15. * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
  16. * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
  17. * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  18. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  19. * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
  20. * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  21. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  22. * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  23. *
  24. * You should have received a copy of the GNU General Public License along
  25. * with this program; if not, write to the Free Software Foundation, Inc.,
  26. * 675 Mass Ave, Cambridge, MA 02139, USA.
  27. *
  28. */
  29. #include <linux/bootmem.h>
  30. #include <linux/init.h>
  31. #include <linux/io.h>
  32. #include <linux/ioport.h>
  33. #include <linux/interrupt.h>
  34. #include <linux/irq.h>
  35. #include <linux/kernel.h>
  36. #include <linux/mc146818rtc.h>
  37. #include <linux/mm.h>
  38. #include <linux/module.h>
  39. #include <linux/pci.h>
  40. #include <linux/tty.h>
  41. #include <linux/types.h>
  42. #include <asm/bootinfo.h>
  43. #include <asm/mc146818-time.h>
  44. #include <asm/time.h>
  45. #include <asm/wbflush.h>
  46. #ifdef CONFIG_VT
  47. #include <linux/console.h>
  48. #include <linux/screen_info.h>
  49. #endif
  50. extern void mips_reboot_setup(void);
  51. #ifdef CONFIG_64BIT
  52. #define PTR_PAD(p) ((0xffffffff00000000)|((unsigned long long)(p)))
  53. #else
  54. #define PTR_PAD(p) (p)
  55. #endif
  56. unsigned long cpu_clock;
  57. unsigned long bus_clock;
  58. unsigned int memsize;
  59. unsigned int highmemsize = 0;
  60. void __init plat_timer_setup(struct irqaction *irq)
  61. {
  62. setup_irq(MIPS_CPU_IRQ_BASE + 7, irq);
  63. }
  64. static void __init loongson2e_time_init(void)
  65. {
  66. /* setup mips r4k timer */
  67. mips_hpt_frequency = cpu_clock / 2;
  68. }
  69. static unsigned long __init mips_rtc_get_time(void)
  70. {
  71. return mc146818_get_cmos_time();
  72. }
  73. void (*__wbflush)(void);
  74. EXPORT_SYMBOL(__wbflush);
  75. static void wbflush_loongson2e(void)
  76. {
  77. asm(".set\tpush\n\t"
  78. ".set\tnoreorder\n\t"
  79. ".set mips3\n\t"
  80. "sync\n\t"
  81. "nop\n\t"
  82. ".set\tpop\n\t"
  83. ".set mips0\n\t");
  84. }
  85. void __init plat_mem_setup(void)
  86. {
  87. set_io_port_base(PTR_PAD(0xbfd00000));
  88. mips_reboot_setup();
  89. board_time_init = loongson2e_time_init;
  90. rtc_mips_get_time = mips_rtc_get_time;
  91. __wbflush = wbflush_loongson2e;
  92. add_memory_region(0x0, (memsize << 20), BOOT_MEM_RAM);
  93. #ifdef CONFIG_64BIT
  94. if (highmemsize > 0) {
  95. add_memory_region(0x20000000, highmemsize << 20, BOOT_MEM_RAM);
  96. }
  97. #endif
  98. #ifdef CONFIG_VT
  99. #if defined(CONFIG_VGA_CONSOLE)
  100. conswitchp = &vga_con;
  101. screen_info = (struct screen_info) {
  102. 0, 25, /* orig-x, orig-y */
  103. 0, /* unused */
  104. 0, /* orig-video-page */
  105. 0, /* orig-video-mode */
  106. 80, /* orig-video-cols */
  107. 0, 0, 0, /* ega_ax, ega_bx, ega_cx */
  108. 25, /* orig-video-lines */
  109. VIDEO_TYPE_VGAC, /* orig-video-isVGA */
  110. 16 /* orig-video-points */
  111. };
  112. #elif defined(CONFIG_DUMMY_CONSOLE)
  113. conswitchp = &dummy_con;
  114. #endif
  115. #endif
  116. }