setup.c 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. /*
  2. * Copyright (C) 2003 PMC-Sierra Inc.
  3. * Author: Manish Lachwani (lachwani@pmc-sierra.com)
  4. *
  5. * Copyright (C) 2004 by Ralf Baechle (ralf@linux-mips.org)
  6. *
  7. * This program is free software; you can redistribute it and/or modify it
  8. * under the terms of the GNU General Public License as published by the
  9. * Free Software Foundation; either version 2 of the License, or (at your
  10. * option) any later version.
  11. *
  12. * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
  13. * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  14. * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
  15. * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
  16. * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  17. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  18. * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
  19. * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  20. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  21. * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  22. *
  23. * You should have received a copy of the GNU General Public License along
  24. * with this program; if not, write to the Free Software Foundation, Inc.,
  25. * 675 Mass Ave, Cambridge, MA 02139, USA.
  26. */
  27. #include <linux/bcd.h>
  28. #include <linux/init.h>
  29. #include <linux/kernel.h>
  30. #include <linux/types.h>
  31. #include <linux/mm.h>
  32. #include <linux/bootmem.h>
  33. #include <linux/swap.h>
  34. #include <linux/ioport.h>
  35. #include <linux/sched.h>
  36. #include <linux/interrupt.h>
  37. #include <linux/timex.h>
  38. #include <linux/termios.h>
  39. #include <linux/tty.h>
  40. #include <linux/serial.h>
  41. #include <linux/serial_core.h>
  42. #include <linux/serial_8250.h>
  43. #include <asm/time.h>
  44. #include <asm/bootinfo.h>
  45. #include <asm/page.h>
  46. #include <asm/io.h>
  47. #include <asm/irq.h>
  48. #include <asm/processor.h>
  49. #include <asm/reboot.h>
  50. #include <asm/serial.h>
  51. #include <asm/titan_dep.h>
  52. #include <asm/m48t37.h>
  53. #include "setup.h"
  54. unsigned char titan_ge_mac_addr_base[6] = {
  55. // 0x00, 0x03, 0xcc, 0x1d, 0x22, 0x00
  56. 0x00, 0xe0, 0x04, 0x00, 0x00, 0x21
  57. };
  58. unsigned long cpu_clock_freq;
  59. unsigned long yosemite_base;
  60. static struct m48t37_rtc *m48t37_base;
  61. void __init bus_error_init(void)
  62. {
  63. /* Do nothing */
  64. }
  65. unsigned long read_persistent_clock(void)
  66. {
  67. unsigned int year, month, day, hour, min, sec;
  68. unsigned long flags;
  69. spin_lock_irqsave(&rtc_lock, flags);
  70. /* Stop the update to the time */
  71. m48t37_base->control = 0x40;
  72. year = BCD2BIN(m48t37_base->year);
  73. year += BCD2BIN(m48t37_base->century) * 100;
  74. month = BCD2BIN(m48t37_base->month);
  75. day = BCD2BIN(m48t37_base->date);
  76. hour = BCD2BIN(m48t37_base->hour);
  77. min = BCD2BIN(m48t37_base->min);
  78. sec = BCD2BIN(m48t37_base->sec);
  79. /* Start the update to the time again */
  80. m48t37_base->control = 0x00;
  81. spin_unlock_irqrestore(&rtc_lock, flags);
  82. return mktime(year, month, day, hour, min, sec);
  83. }
  84. int rtc_mips_set_time(unsigned long tim)
  85. {
  86. struct rtc_time tm;
  87. unsigned long flags;
  88. /*
  89. * Convert to a more useful format -- note months count from 0
  90. * and years from 1900
  91. */
  92. rtc_time_to_tm(tim, &tm);
  93. tm.tm_year += 1900;
  94. tm.tm_mon += 1;
  95. spin_lock_irqsave(&rtc_lock, flags);
  96. /* enable writing */
  97. m48t37_base->control = 0x80;
  98. /* year */
  99. m48t37_base->year = BIN2BCD(tm.tm_year % 100);
  100. m48t37_base->century = BIN2BCD(tm.tm_year / 100);
  101. /* month */
  102. m48t37_base->month = BIN2BCD(tm.tm_mon);
  103. /* day */
  104. m48t37_base->date = BIN2BCD(tm.tm_mday);
  105. /* hour/min/sec */
  106. m48t37_base->hour = BIN2BCD(tm.tm_hour);
  107. m48t37_base->min = BIN2BCD(tm.tm_min);
  108. m48t37_base->sec = BIN2BCD(tm.tm_sec);
  109. /* day of week -- not really used, but let's keep it up-to-date */
  110. m48t37_base->day = BIN2BCD(tm.tm_wday + 1);
  111. /* disable writing */
  112. m48t37_base->control = 0x00;
  113. spin_unlock_irqrestore(&rtc_lock, flags);
  114. return 0;
  115. }
  116. void __init plat_time_init(void)
  117. {
  118. mips_hpt_frequency = cpu_clock_freq / 2;
  119. mips_hpt_frequency = 33000000 * 3 * 5;
  120. }
  121. unsigned long ocd_base;
  122. EXPORT_SYMBOL(ocd_base);
  123. /*
  124. * Common setup before any secondaries are started
  125. */
  126. #define TITAN_UART_CLK 3686400
  127. #define TITAN_SERIAL_BASE_BAUD (TITAN_UART_CLK / 16)
  128. #define TITAN_SERIAL_IRQ 4
  129. #define TITAN_SERIAL_BASE 0xfd000008UL
  130. static void __init py_map_ocd(void)
  131. {
  132. ocd_base = (unsigned long) ioremap(OCD_BASE, OCD_SIZE);
  133. if (!ocd_base)
  134. panic("Mapping OCD failed - game over. Your score is 0.");
  135. /* Kludge for PMON bug ... */
  136. OCD_WRITE(0x0710, 0x0ffff029);
  137. }
  138. static void __init py_uart_setup(void)
  139. {
  140. #ifdef CONFIG_SERIAL_8250
  141. struct uart_port up;
  142. /*
  143. * Register to interrupt zero because we share the interrupt with
  144. * the serial driver which we don't properly support yet.
  145. */
  146. memset(&up, 0, sizeof(up));
  147. up.membase = (unsigned char *) ioremap(TITAN_SERIAL_BASE, 8);
  148. up.irq = TITAN_SERIAL_IRQ;
  149. up.uartclk = TITAN_UART_CLK;
  150. up.regshift = 0;
  151. up.iotype = UPIO_MEM;
  152. up.flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST;
  153. up.line = 0;
  154. if (early_serial_setup(&up))
  155. printk(KERN_ERR "Early serial init of port 0 failed\n");
  156. #endif /* CONFIG_SERIAL_8250 */
  157. }
  158. static void __init py_rtc_setup(void)
  159. {
  160. m48t37_base = ioremap(YOSEMITE_RTC_BASE, YOSEMITE_RTC_SIZE);
  161. if (!m48t37_base)
  162. printk(KERN_ERR "Mapping the RTC failed\n");
  163. }
  164. /* Not only time init but that's what the hook it's called through is named */
  165. static void __init py_late_time_init(void)
  166. {
  167. py_map_ocd();
  168. py_uart_setup();
  169. py_rtc_setup();
  170. }
  171. void __init plat_mem_setup(void)
  172. {
  173. late_time_init = py_late_time_init;
  174. /* Add memory regions */
  175. add_memory_region(0x00000000, 0x10000000, BOOT_MEM_RAM);
  176. #if 0 /* XXX Crash ... */
  177. OCD_WRITE(RM9000x2_OCD_HTSC,
  178. OCD_READ(RM9000x2_OCD_HTSC) | HYPERTRANSPORT_ENABLE);
  179. /* Set the BAR. Shifted mode */
  180. OCD_WRITE(RM9000x2_OCD_HTBAR0, HYPERTRANSPORT_BAR0_ADDR);
  181. OCD_WRITE(RM9000x2_OCD_HTMASK0, HYPERTRANSPORT_SIZE0);
  182. #endif
  183. }