config.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:6k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  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 <asm/bootinfo.h>
  24. #include <asm/system.h>
  25. #include <asm/pgtable.h>
  26. #include <asm/setup.h>
  27. #include <asm/irq.h>
  28. #include <asm/traps.h>
  29. #include <asm/rtc.h>
  30. #include <asm/machdep.h>
  31. #include <asm/mvme147hw.h>
  32. extern void mvme147_process_int (int level, struct pt_regs *regs);
  33. extern void mvme147_init_IRQ (void);
  34. extern void mvme147_free_irq (unsigned int, void *);
  35. extern int  mvme147_get_irq_list (char *);
  36. extern void mvme147_enable_irq (unsigned int);
  37. extern void mvme147_disable_irq (unsigned int);
  38. static void mvme147_get_model(char *model);
  39. static int  mvme147_get_hardware_list(char *buffer);
  40. extern int mvme147_request_irq (unsigned int irq, void (*handler)(int, void *, struct pt_regs *), unsigned long flags, const char *devname, void *dev_id);
  41. extern void mvme147_sched_init(void (*handler)(int, void *, struct pt_regs *));
  42. extern int mvme147_keyb_init(void);
  43. extern int mvme147_kbdrate (struct kbd_repeat *);
  44. extern unsigned long mvme147_gettimeoffset (void);
  45. extern void mvme147_gettod (int *year, int *mon, int *day, int *hour,
  46.                            int *min, int *sec);
  47. extern int mvme147_hwclk (int, struct hwclk_time *);
  48. extern int mvme147_set_clock_mmss (unsigned long);
  49. extern void mvme147_check_partition (struct gendisk *hd, unsigned int dev);
  50. extern void mvme147_reset (void);
  51. extern void mvme147_waitbut(void);
  52. static int bcd2int (unsigned char b);
  53. /* Save tick handler routine pointer, will point to do_timer() in
  54.  * kernel/sched.c, called via mvme147_process_int() */
  55. void (*tick_handler)(int, void *, struct pt_regs *);
  56. int mvme147_parse_bootinfo(const struct bi_record *bi)
  57. {
  58. if (bi->tag == BI_VME_TYPE || bi->tag == BI_VME_BRDINFO)
  59. return 0;
  60. else
  61. return 1;
  62. }
  63. int mvme147_kbdrate (struct kbd_repeat *k)
  64. {
  65. return 0;
  66. }
  67. void mvme147_reset()
  68. {
  69. printk ("rnnCalled mvme147_resetrn");
  70. m147_pcc->watchdog = 0x0a; /* Clear timer */
  71. m147_pcc->watchdog = 0xa5; /* Enable watchdog - 100ms to reset */
  72. while (1)
  73. ;
  74. }
  75. static void mvme147_get_model(char *model)
  76. {
  77. sprintf(model, "Motorola MVME147");
  78. }
  79. static int mvme147_get_hardware_list(char *buffer)
  80. {
  81. *buffer = '';
  82. return 0;
  83. }
  84. void __init config_mvme147(void)
  85. {
  86. mach_max_dma_address = 0x01000000;
  87. mach_sched_init = mvme147_sched_init;
  88. mach_keyb_init = mvme147_keyb_init;
  89. mach_kbdrate = mvme147_kbdrate;
  90. mach_init_IRQ = mvme147_init_IRQ;
  91. mach_gettimeoffset = mvme147_gettimeoffset;
  92. mach_gettod = mvme147_gettod;
  93. mach_hwclk = mvme147_hwclk;
  94. mach_set_clock_mmss = mvme147_set_clock_mmss;
  95. mach_reset = mvme147_reset;
  96. mach_free_irq = mvme147_free_irq;
  97. mach_process_int = mvme147_process_int;
  98. mach_get_irq_list = mvme147_get_irq_list;
  99. mach_request_irq = mvme147_request_irq;
  100. enable_irq = mvme147_enable_irq;
  101. disable_irq = mvme147_disable_irq;
  102. mach_get_model = mvme147_get_model;
  103. mach_get_hardware_list = mvme147_get_hardware_list;
  104. /* Board type is only set by newer versions of vmelilo/tftplilo */
  105. if (!vme_brdtype)
  106. vme_brdtype = VME_TYPE_MVME147;
  107. }
  108. /* Using pcc tick timer 1 */
  109. static void mvme147_timer_int (int irq, void *dev_id, struct pt_regs *fp)
  110. {
  111. m147_pcc->t1_int_cntrl = PCC_TIMER_INT_CLR;  
  112. m147_pcc->t1_int_cntrl = PCC_INT_ENAB|PCC_LEVEL_TIMER1;   
  113. tick_handler(irq, dev_id, fp);
  114. }
  115. void mvme147_sched_init (void (*timer_routine)(int, void *, struct pt_regs *))
  116. {
  117. tick_handler = timer_routine;
  118. request_irq (PCC_IRQ_TIMER1, mvme147_timer_int, 
  119. IRQ_FLG_REPLACE, "timer 1", NULL);
  120. /* Init the clock with a value */
  121. /* our clock goes off every 6.25us */
  122. m147_pcc->t1_preload = PCC_TIMER_PRELOAD;
  123. m147_pcc->t1_cntrl = 0x0;    /* clear timer */
  124. m147_pcc->t1_cntrl = 0x3;  /* start timer */
  125. m147_pcc->t1_int_cntrl = PCC_TIMER_INT_CLR;  /* clear pending ints */
  126. m147_pcc->t1_int_cntrl = PCC_INT_ENAB|PCC_LEVEL_TIMER1;   
  127. }
  128. /* This is always executed with interrupts disabled.  */
  129. /* XXX There are race hazards in this code XXX */
  130. unsigned long mvme147_gettimeoffset (void)
  131. {
  132. volatile unsigned short *cp = (volatile unsigned short *)0xfffe1012;
  133. unsigned short n;
  134. n = *cp;
  135. while (n != *cp)
  136. n = *cp;
  137. n -= PCC_TIMER_PRELOAD;
  138. return (unsigned long)n * 25 / 4;
  139. }
  140. extern void mvme147_gettod (int *year, int *mon, int *day, int *hour,
  141.                            int *min, int *sec)
  142. {
  143. m147_rtc->ctrl = RTC_READ;
  144. *year = bcd2int (m147_rtc->bcd_year);
  145. *mon = bcd2int (m147_rtc->bcd_mth);
  146. *day = bcd2int (m147_rtc->bcd_dom);
  147. *hour = bcd2int (m147_rtc->bcd_hr);
  148. *min = bcd2int (m147_rtc->bcd_min);
  149. *sec = bcd2int (m147_rtc->bcd_sec);
  150. m147_rtc->ctrl = 0;
  151. }
  152. static int bcd2int (unsigned char b)
  153. {
  154. return ((b>>4)*10 + (b&15));
  155. }
  156. int mvme147_hwclk(int op, struct hwclk_time *t)
  157. {
  158. return 0;
  159. }
  160. int mvme147_set_clock_mmss (unsigned long nowtime)
  161. {
  162. return 0;
  163. }
  164. int mvme147_keyb_init (void)
  165. {
  166. return 0;
  167. }
  168. /*-------------------  Serial console stuff ------------------------*/
  169. static void scc_delay (void)
  170. {
  171. int n;
  172. volatile int trash;
  173. for (n = 0; n < 20; n++)
  174. trash = n;
  175. }
  176. static void scc_write (char ch)
  177. {
  178. volatile char *p = (volatile char *)M147_SCC_A_ADDR;
  179. do {
  180. scc_delay();
  181. }
  182. while (!(*p & 4));
  183. scc_delay();
  184. *p = 8;
  185. scc_delay();
  186. *p = ch;
  187. }
  188. void m147_scc_write (struct console *co, const char *str, unsigned count)
  189. {
  190. unsigned long flags;
  191. save_flags(flags);
  192. cli();
  193. while (count--)
  194. {
  195. if (*str == 'n')
  196. scc_write ('r');
  197. scc_write (*str++);
  198. }
  199. restore_flags(flags);
  200. }
  201. static int m147_scc_wait_key (struct console *co)
  202. {
  203. volatile unsigned char *p = (volatile char *)M147_SCC_A_ADDR;
  204. unsigned long flags;
  205. int c;
  206. /* wait for rx buf filled */
  207. while ((*p & 0x01) == 0)
  208. ;
  209. save_flags(flags);
  210. cli();
  211. *p = 8;
  212. scc_delay();
  213. c = *p;
  214. restore_flags(flags);
  215. return c;
  216. }
  217. void mvme147_init_console_port (struct console *co, int cflag)
  218. {
  219. co->write    = m147_scc_write;
  220. co->wait_key = m147_scc_wait_key;
  221. }