config.c 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280
  1. /*
  2. * arch/m68k/mvme16x/config.c
  3. *
  4. * Copyright (C) 1995 Richard Hirst [richard@sleepie.demon.co.uk]
  5. *
  6. * Based on:
  7. *
  8. * linux/amiga/config.c
  9. *
  10. * Copyright (C) 1993 Hamish Macdonald
  11. *
  12. * This file is subject to the terms and conditions of the GNU General Public
  13. * License. See the file README.legal in the main directory of this archive
  14. * for more details.
  15. */
  16. #include <linux/types.h>
  17. #include <linux/kernel.h>
  18. #include <linux/mm.h>
  19. #include <linux/seq_file.h>
  20. #include <linux/tty.h>
  21. #include <linux/console.h>
  22. #include <linux/linkage.h>
  23. #include <linux/init.h>
  24. #include <linux/major.h>
  25. #include <linux/genhd.h>
  26. #include <linux/rtc.h>
  27. #include <linux/interrupt.h>
  28. #include <linux/module.h>
  29. #include <asm/bootinfo.h>
  30. #include <asm/system.h>
  31. #include <asm/pgtable.h>
  32. #include <asm/setup.h>
  33. #include <asm/irq.h>
  34. #include <asm/traps.h>
  35. #include <asm/rtc.h>
  36. #include <asm/machdep.h>
  37. #include <asm/mvme16xhw.h>
  38. extern t_bdid mvme_bdid;
  39. static MK48T08ptr_t volatile rtc = (MK48T08ptr_t)MVME_RTC_BASE;
  40. static void mvme16x_get_model(char *model);
  41. extern void mvme16x_sched_init(irq_handler_t handler);
  42. extern unsigned long mvme16x_gettimeoffset (void);
  43. extern int mvme16x_hwclk (int, struct rtc_time *);
  44. extern int mvme16x_set_clock_mmss (unsigned long);
  45. extern void mvme16x_reset (void);
  46. int bcd2int (unsigned char b);
  47. /* Save tick handler routine pointer, will point to xtime_update() in
  48. * kernel/time/timekeeping.c, called via mvme16x_process_int() */
  49. static irq_handler_t tick_handler;
  50. unsigned short mvme16x_config;
  51. EXPORT_SYMBOL(mvme16x_config);
  52. int mvme16x_parse_bootinfo(const struct bi_record *bi)
  53. {
  54. if (bi->tag == BI_VME_TYPE || bi->tag == BI_VME_BRDINFO)
  55. return 0;
  56. else
  57. return 1;
  58. }
  59. void mvme16x_reset(void)
  60. {
  61. printk ("\r\n\nCalled mvme16x_reset\r\n"
  62. "\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r");
  63. /* The string of returns is to delay the reset until the whole
  64. * message is output. Assert reset bit in GCSR */
  65. *(volatile char *)0xfff40107 = 0x80;
  66. }
  67. static void mvme16x_get_model(char *model)
  68. {
  69. p_bdid p = &mvme_bdid;
  70. char suf[4];
  71. suf[1] = p->brdsuffix[0];
  72. suf[2] = p->brdsuffix[1];
  73. suf[3] = '\0';
  74. suf[0] = suf[1] ? '-' : '\0';
  75. sprintf(model, "Motorola MVME%x%s", p->brdno, suf);
  76. }
  77. static void mvme16x_get_hardware_list(struct seq_file *m)
  78. {
  79. p_bdid p = &mvme_bdid;
  80. if (p->brdno == 0x0162 || p->brdno == 0x0172)
  81. {
  82. unsigned char rev = *(unsigned char *)MVME162_VERSION_REG;
  83. seq_printf (m, "VMEchip2 %spresent\n",
  84. rev & MVME16x_CONFIG_NO_VMECHIP2 ? "NOT " : "");
  85. seq_printf (m, "SCSI interface %spresent\n",
  86. rev & MVME16x_CONFIG_NO_SCSICHIP ? "NOT " : "");
  87. seq_printf (m, "Ethernet i/f %spresent\n",
  88. rev & MVME16x_CONFIG_NO_ETHERNET ? "NOT " : "");
  89. }
  90. }
  91. /*
  92. * This function is called during kernel startup to initialize
  93. * the mvme16x IRQ handling routines. Should probably ensure
  94. * that the base vectors for the VMEChip2 and PCCChip2 are valid.
  95. */
  96. static void __init mvme16x_init_IRQ (void)
  97. {
  98. m68k_setup_user_interrupt(VEC_USER, 192, NULL);
  99. }
  100. #define pcc2chip ((volatile u_char *)0xfff42000)
  101. #define PccSCCMICR 0x1d
  102. #define PccSCCTICR 0x1e
  103. #define PccSCCRICR 0x1f
  104. void __init config_mvme16x(void)
  105. {
  106. p_bdid p = &mvme_bdid;
  107. char id[40];
  108. mach_max_dma_address = 0xffffffff;
  109. mach_sched_init = mvme16x_sched_init;
  110. mach_init_IRQ = mvme16x_init_IRQ;
  111. mach_gettimeoffset = mvme16x_gettimeoffset;
  112. mach_hwclk = mvme16x_hwclk;
  113. mach_set_clock_mmss = mvme16x_set_clock_mmss;
  114. mach_reset = mvme16x_reset;
  115. mach_get_model = mvme16x_get_model;
  116. mach_get_hardware_list = mvme16x_get_hardware_list;
  117. /* Report board revision */
  118. if (strncmp("BDID", p->bdid, 4))
  119. {
  120. printk ("\n\nBug call .BRD_ID returned garbage - giving up\n\n");
  121. while (1)
  122. ;
  123. }
  124. /* Board type is only set by newer versions of vmelilo/tftplilo */
  125. if (vme_brdtype == 0)
  126. vme_brdtype = p->brdno;
  127. mvme16x_get_model(id);
  128. printk ("\nBRD_ID: %s BUG %x.%x %02x/%02x/%02x\n", id, p->rev>>4,
  129. p->rev&0xf, p->yr, p->mth, p->day);
  130. if (p->brdno == 0x0162 || p->brdno == 0x172)
  131. {
  132. unsigned char rev = *(unsigned char *)MVME162_VERSION_REG;
  133. mvme16x_config = rev | MVME16x_CONFIG_GOT_SCCA;
  134. printk ("MVME%x Hardware status:\n", p->brdno);
  135. printk (" CPU Type 68%s040\n",
  136. rev & MVME16x_CONFIG_GOT_FPU ? "" : "LC");
  137. printk (" CPU clock %dMHz\n",
  138. rev & MVME16x_CONFIG_SPEED_32 ? 32 : 25);
  139. printk (" VMEchip2 %spresent\n",
  140. rev & MVME16x_CONFIG_NO_VMECHIP2 ? "NOT " : "");
  141. printk (" SCSI interface %spresent\n",
  142. rev & MVME16x_CONFIG_NO_SCSICHIP ? "NOT " : "");
  143. printk (" Ethernet interface %spresent\n",
  144. rev & MVME16x_CONFIG_NO_ETHERNET ? "NOT " : "");
  145. }
  146. else
  147. {
  148. mvme16x_config = MVME16x_CONFIG_GOT_LP | MVME16x_CONFIG_GOT_CD2401;
  149. /* Dont allow any interrupts from the CD2401 until the interrupt */
  150. /* handlers are installed */
  151. pcc2chip[PccSCCMICR] = 0x10;
  152. pcc2chip[PccSCCTICR] = 0x10;
  153. pcc2chip[PccSCCRICR] = 0x10;
  154. }
  155. }
  156. static irqreturn_t mvme16x_abort_int (int irq, void *dev_id)
  157. {
  158. p_bdid p = &mvme_bdid;
  159. unsigned long *new = (unsigned long *)vectors;
  160. unsigned long *old = (unsigned long *)0xffe00000;
  161. volatile unsigned char uc, *ucp;
  162. if (p->brdno == 0x0162 || p->brdno == 0x172)
  163. {
  164. ucp = (volatile unsigned char *)0xfff42043;
  165. uc = *ucp | 8;
  166. *ucp = uc;
  167. }
  168. else
  169. {
  170. *(volatile unsigned long *)0xfff40074 = 0x40000000;
  171. }
  172. *(new+4) = *(old+4); /* Illegal instruction */
  173. *(new+9) = *(old+9); /* Trace */
  174. *(new+47) = *(old+47); /* Trap #15 */
  175. if (p->brdno == 0x0162 || p->brdno == 0x172)
  176. *(new+0x5e) = *(old+0x5e); /* ABORT switch */
  177. else
  178. *(new+0x6e) = *(old+0x6e); /* ABORT switch */
  179. return IRQ_HANDLED;
  180. }
  181. static irqreturn_t mvme16x_timer_int (int irq, void *dev_id)
  182. {
  183. *(volatile unsigned char *)0xfff4201b |= 8;
  184. return tick_handler(irq, dev_id);
  185. }
  186. void mvme16x_sched_init (irq_handler_t timer_routine)
  187. {
  188. p_bdid p = &mvme_bdid;
  189. int irq;
  190. tick_handler = timer_routine;
  191. /* Using PCCchip2 or MC2 chip tick timer 1 */
  192. *(volatile unsigned long *)0xfff42008 = 0;
  193. *(volatile unsigned long *)0xfff42004 = 10000; /* 10ms */
  194. *(volatile unsigned char *)0xfff42017 |= 3;
  195. *(volatile unsigned char *)0xfff4201b = 0x16;
  196. if (request_irq(MVME16x_IRQ_TIMER, mvme16x_timer_int, 0,
  197. "timer", mvme16x_timer_int))
  198. panic ("Couldn't register timer int");
  199. if (p->brdno == 0x0162 || p->brdno == 0x172)
  200. irq = MVME162_IRQ_ABORT;
  201. else
  202. irq = MVME167_IRQ_ABORT;
  203. if (request_irq(irq, mvme16x_abort_int, 0,
  204. "abort", mvme16x_abort_int))
  205. panic ("Couldn't register abort int");
  206. }
  207. /* This is always executed with interrupts disabled. */
  208. unsigned long mvme16x_gettimeoffset (void)
  209. {
  210. return (*(volatile unsigned long *)0xfff42008);
  211. }
  212. int bcd2int (unsigned char b)
  213. {
  214. return ((b>>4)*10 + (b&15));
  215. }
  216. int mvme16x_hwclk(int op, struct rtc_time *t)
  217. {
  218. #warning check me!
  219. if (!op) {
  220. rtc->ctrl = RTC_READ;
  221. t->tm_year = bcd2int (rtc->bcd_year);
  222. t->tm_mon = bcd2int (rtc->bcd_mth);
  223. t->tm_mday = bcd2int (rtc->bcd_dom);
  224. t->tm_hour = bcd2int (rtc->bcd_hr);
  225. t->tm_min = bcd2int (rtc->bcd_min);
  226. t->tm_sec = bcd2int (rtc->bcd_sec);
  227. rtc->ctrl = 0;
  228. }
  229. return 0;
  230. }
  231. int mvme16x_set_clock_mmss (unsigned long nowtime)
  232. {
  233. return 0;
  234. }