config.c 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  1. /*
  2. * arch/m68k/mvme147/config.c
  3. *
  4. * Copyright (C) 1996 Dave Frascone [chaos@mindspring.com]
  5. * Cloned from Richard Hirst [richard@sleepie.demon.co.uk]
  6. *
  7. * Based on:
  8. *
  9. * Copyright (C) 1993 Hamish Macdonald
  10. *
  11. * This file is subject to the terms and conditions of the GNU General Public
  12. * License. See the file README.legal in the main directory of this archive
  13. * for more details.
  14. */
  15. #include <linux/types.h>
  16. #include <linux/kernel.h>
  17. #include <linux/mm.h>
  18. #include <linux/tty.h>
  19. #include <linux/console.h>
  20. #include <linux/linkage.h>
  21. #include <linux/init.h>
  22. #include <linux/major.h>
  23. #include <linux/genhd.h>
  24. #include <linux/rtc.h>
  25. #include <linux/interrupt.h>
  26. #include <asm/bootinfo.h>
  27. #include <asm/system.h>
  28. #include <asm/pgtable.h>
  29. #include <asm/setup.h>
  30. #include <asm/irq.h>
  31. #include <asm/traps.h>
  32. #include <asm/rtc.h>
  33. #include <asm/machdep.h>
  34. #include <asm/mvme147hw.h>
  35. static void mvme147_get_model(char *model);
  36. static int mvme147_get_hardware_list(char *buffer);
  37. extern void mvme147_sched_init(irq_handler_t handler);
  38. extern unsigned long mvme147_gettimeoffset (void);
  39. extern int mvme147_hwclk (int, struct rtc_time *);
  40. extern int mvme147_set_clock_mmss (unsigned long);
  41. extern void mvme147_reset (void);
  42. extern void mvme147_waitbut(void);
  43. static int bcd2int (unsigned char b);
  44. /* Save tick handler routine pointer, will point to do_timer() in
  45. * kernel/sched.c, called via mvme147_process_int() */
  46. irq_handler_t tick_handler;
  47. int mvme147_parse_bootinfo(const struct bi_record *bi)
  48. {
  49. if (bi->tag == BI_VME_TYPE || bi->tag == BI_VME_BRDINFO)
  50. return 0;
  51. else
  52. return 1;
  53. }
  54. void mvme147_reset(void)
  55. {
  56. printk ("\r\n\nCalled mvme147_reset\r\n");
  57. m147_pcc->watchdog = 0x0a; /* Clear timer */
  58. m147_pcc->watchdog = 0xa5; /* Enable watchdog - 100ms to reset */
  59. while (1)
  60. ;
  61. }
  62. static void mvme147_get_model(char *model)
  63. {
  64. sprintf(model, "Motorola MVME147");
  65. }
  66. static int mvme147_get_hardware_list(char *buffer)
  67. {
  68. *buffer = '\0';
  69. return 0;
  70. }
  71. /*
  72. * This function is called during kernel startup to initialize
  73. * the mvme147 IRQ handling routines.
  74. */
  75. void mvme147_init_IRQ(void)
  76. {
  77. m68k_setup_user_interrupt(VEC_USER, 192, NULL);
  78. }
  79. void __init config_mvme147(void)
  80. {
  81. mach_max_dma_address = 0x01000000;
  82. mach_sched_init = mvme147_sched_init;
  83. mach_init_IRQ = mvme147_init_IRQ;
  84. mach_gettimeoffset = mvme147_gettimeoffset;
  85. mach_hwclk = mvme147_hwclk;
  86. mach_set_clock_mmss = mvme147_set_clock_mmss;
  87. mach_reset = mvme147_reset;
  88. mach_get_model = mvme147_get_model;
  89. mach_get_hardware_list = mvme147_get_hardware_list;
  90. /* Board type is only set by newer versions of vmelilo/tftplilo */
  91. if (!vme_brdtype)
  92. vme_brdtype = VME_TYPE_MVME147;
  93. }
  94. /* Using pcc tick timer 1 */
  95. static irqreturn_t mvme147_timer_int (int irq, void *dev_id)
  96. {
  97. m147_pcc->t1_int_cntrl = PCC_TIMER_INT_CLR;
  98. m147_pcc->t1_int_cntrl = PCC_INT_ENAB|PCC_LEVEL_TIMER1;
  99. return tick_handler(irq, dev_id);
  100. }
  101. void mvme147_sched_init (irq_handler_t timer_routine)
  102. {
  103. tick_handler = timer_routine;
  104. request_irq (PCC_IRQ_TIMER1, mvme147_timer_int,
  105. IRQ_FLG_REPLACE, "timer 1", NULL);
  106. /* Init the clock with a value */
  107. /* our clock goes off every 6.25us */
  108. m147_pcc->t1_preload = PCC_TIMER_PRELOAD;
  109. m147_pcc->t1_cntrl = 0x0; /* clear timer */
  110. m147_pcc->t1_cntrl = 0x3; /* start timer */
  111. m147_pcc->t1_int_cntrl = PCC_TIMER_INT_CLR; /* clear pending ints */
  112. m147_pcc->t1_int_cntrl = PCC_INT_ENAB|PCC_LEVEL_TIMER1;
  113. }
  114. /* This is always executed with interrupts disabled. */
  115. /* XXX There are race hazards in this code XXX */
  116. unsigned long mvme147_gettimeoffset (void)
  117. {
  118. volatile unsigned short *cp = (volatile unsigned short *)0xfffe1012;
  119. unsigned short n;
  120. n = *cp;
  121. while (n != *cp)
  122. n = *cp;
  123. n -= PCC_TIMER_PRELOAD;
  124. return (unsigned long)n * 25 / 4;
  125. }
  126. static int bcd2int (unsigned char b)
  127. {
  128. return ((b>>4)*10 + (b&15));
  129. }
  130. int mvme147_hwclk(int op, struct rtc_time *t)
  131. {
  132. #warning check me!
  133. if (!op) {
  134. m147_rtc->ctrl = RTC_READ;
  135. t->tm_year = bcd2int (m147_rtc->bcd_year);
  136. t->tm_mon = bcd2int (m147_rtc->bcd_mth);
  137. t->tm_mday = bcd2int (m147_rtc->bcd_dom);
  138. t->tm_hour = bcd2int (m147_rtc->bcd_hr);
  139. t->tm_min = bcd2int (m147_rtc->bcd_min);
  140. t->tm_sec = bcd2int (m147_rtc->bcd_sec);
  141. m147_rtc->ctrl = 0;
  142. }
  143. return 0;
  144. }
  145. int mvme147_set_clock_mmss (unsigned long nowtime)
  146. {
  147. return 0;
  148. }
  149. /*------------------- Serial console stuff ------------------------*/
  150. static void scc_delay (void)
  151. {
  152. int n;
  153. volatile int trash;
  154. for (n = 0; n < 20; n++)
  155. trash = n;
  156. }
  157. static void scc_write (char ch)
  158. {
  159. volatile char *p = (volatile char *)M147_SCC_A_ADDR;
  160. do {
  161. scc_delay();
  162. }
  163. while (!(*p & 4));
  164. scc_delay();
  165. *p = 8;
  166. scc_delay();
  167. *p = ch;
  168. }
  169. void m147_scc_write (struct console *co, const char *str, unsigned count)
  170. {
  171. unsigned long flags;
  172. local_irq_save(flags);
  173. while (count--)
  174. {
  175. if (*str == '\n')
  176. scc_write ('\r');
  177. scc_write (*str++);
  178. }
  179. local_irq_restore(flags);
  180. }
  181. void mvme147_init_console_port (struct console *co, int cflag)
  182. {
  183. co->write = m147_scc_write;
  184. }