setup.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:5k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  arch/mips/ddb5074/setup.c -- NEC DDB Vrc-5074 setup routines
  3.  *
  4.  *  Copyright (C) 2000 Geert Uytterhoeven <geert@sonycom.com>
  5.  *                     Sony Software Development Center Europe (SDCE), Brussels
  6.  */
  7. #include <linux/config.h>
  8. #include <linux/init.h>
  9. #include <linux/kbd_ll.h>
  10. #include <linux/kernel.h>
  11. #include <linux/kdev_t.h>
  12. #include <linux/types.h>
  13. #include <linux/console.h>
  14. #include <linux/sched.h>
  15. #include <linux/mc146818rtc.h>
  16. #include <linux/pc_keyb.h>
  17. #include <linux/pci.h>
  18. #include <linux/ide.h>
  19. #include <asm/addrspace.h>
  20. #include <asm/bcache.h>
  21. #include <asm/keyboard.h>
  22. #include <asm/irq.h>
  23. #include <asm/reboot.h>
  24. #include <asm/gdb-stub.h>
  25. #include <asm/nile4.h>
  26. #include <asm/ddb5074.h>
  27. #include <asm/traps.h>
  28. #ifdef CONFIG_REMOTE_DEBUG
  29. extern void rs_kgdb_hook(int);
  30. extern void breakpoint(void);
  31. #endif
  32. #if defined(CONFIG_SERIAL_CONSOLE)
  33. extern void console_setup(char *);
  34. #endif
  35. extern struct ide_ops std_ide_ops;
  36. extern struct rtc_ops ddb_rtc_ops;
  37. static void (*back_to_prom) (void) = (void (*)(void)) 0xbfc00000;
  38. static void ddb_machine_restart(char *command)
  39. {
  40. u32 t;
  41. /* PCI cold reset */
  42. t = nile4_in32(NILE4_PCICTRL + 4);
  43. t |= 0x40000000;
  44. nile4_out32(NILE4_PCICTRL + 4, t);
  45. /* CPU cold reset */
  46. t = nile4_in32(NILE4_CPUSTAT);
  47. t |= 1;
  48. nile4_out32(NILE4_CPUSTAT, t);
  49. /* Call the PROM */
  50. back_to_prom();
  51. }
  52. static void ddb_machine_halt(void)
  53. {
  54. printk("DDB Vrc-5074 halted.n");
  55. do {
  56. } while (1);
  57. }
  58. static void ddb_machine_power_off(void)
  59. {
  60. printk("DDB Vrc-5074 halted. Please turn off the power.n");
  61. do {
  62. } while (1);
  63. }
  64. extern void ddb_irq_setup(void);
  65. void (*board_time_init) (struct irqaction * irq);
  66. static void __init ddb_time_init(struct irqaction *irq)
  67. {
  68. /* set the clock to 1 Hz */
  69. nile4_out32(NILE4_T2CTRL, 1000000);
  70. /* enable the General-Purpose Timer */
  71. nile4_out32(NILE4_T2CTRL + 4, 0x00000001);
  72. /* reset timer */
  73. nile4_out32(NILE4_T2CNTR, 0);
  74. /* enable interrupt */
  75. nile4_enable_irq(NILE4_INT_GPT);
  76. i8259_setup_irq(nile4_to_irq(NILE4_INT_GPT), irq);
  77. change_cp0_status(ST0_IM,
  78.           IE_IRQ0 | IE_IRQ1 | IE_IRQ2 | IE_IRQ3 | IE_IRQ4);
  79. }
  80. void __init bus_error_init(void) { /* nothing */ }
  81. void __init ddb_setup(void)
  82. {
  83. extern int panic_timeout;
  84. irq_setup = ddb_irq_setup;
  85. set_io_port_base(NILE4_PCI_IO_BASE);
  86. isa_slot_offset = NILE4_PCI_MEM_BASE;
  87. request_region(0x00, 0x20, "dma1");
  88. request_region(0x40, 0x20, "timer");
  89. request_region(0x70, 0x10, "rtc");
  90. request_region(0x80, 0x10, "dma page reg");
  91. request_region(0xc0, 0x20, "dma2");
  92. board_time_init = ddb_time_init;
  93. _machine_restart = ddb_machine_restart;
  94. _machine_halt = ddb_machine_halt;
  95. _machine_power_off = ddb_machine_power_off;
  96. #ifdef CONFIG_BLK_DEV_IDE
  97. ide_ops = &std_ide_ops;
  98. #endif
  99. rtc_ops = &ddb_rtc_ops;
  100. /* Reboot on panic */
  101. panic_timeout = 180;
  102. }
  103. #define USE_NILE4_SERIAL 0
  104. #if USE_NILE4_SERIAL
  105. #define ns16550_in(reg) nile4_in8((reg)*8)
  106. #define ns16550_out(reg, val) nile4_out8((reg)*8, (val))
  107. #else
  108. #define NS16550_BASE (NILE4_PCI_IO_BASE+0x03f8)
  109. static inline u8 ns16550_in(u32 reg)
  110. {
  111. return *(volatile u8 *) (NS16550_BASE + reg);
  112. }
  113. static inline void ns16550_out(u32 reg, u8 val)
  114. {
  115. *(volatile u8 *) (NS16550_BASE + reg) = val;
  116. }
  117. #endif
  118. #define NS16550_RBR 0
  119. #define NS16550_THR 0
  120. #define NS16550_DLL 0
  121. #define NS16550_IER 1
  122. #define NS16550_DLM 1
  123. #define NS16550_FCR 2
  124. #define NS16550_IIR 2
  125. #define NS16550_LCR 3
  126. #define NS16550_MCR 4
  127. #define NS16550_LSR 5
  128. #define NS16550_MSR 6
  129. #define NS16550_SCR 7
  130. #define NS16550_LSR_DR 0x01 /* Data ready */
  131. #define NS16550_LSR_OE 0x02 /* Overrun */
  132. #define NS16550_LSR_PE 0x04 /* Parity error */
  133. #define NS16550_LSR_FE 0x08 /* Framing error */
  134. #define NS16550_LSR_BI 0x10 /* Break */
  135. #define NS16550_LSR_THRE 0x20 /* Xmit holding register empty */
  136. #define NS16550_LSR_TEMT 0x40 /* Xmitter empty */
  137. #define NS16550_LSR_ERR 0x80 /* Error */
  138. void _serinit(void)
  139. {
  140. #if USE_NILE4_SERIAL
  141. ns16550_out(NS16550_LCR, 0x80);
  142. ns16550_out(NS16550_DLM, 0x00);
  143. ns16550_out(NS16550_DLL, 0x36); /* 9600 baud */
  144. ns16550_out(NS16550_LCR, 0x00);
  145. ns16550_out(NS16550_LCR, 0x03);
  146. ns16550_out(NS16550_FCR, 0x47);
  147. #else
  148. /* done by PMON */
  149. #endif
  150. }
  151. void _putc(char c)
  152. {
  153. while (!(ns16550_in(NS16550_LSR) & NS16550_LSR_THRE));
  154. ns16550_out(NS16550_THR, c);
  155. if (c == 'n') {
  156. while (!(ns16550_in(NS16550_LSR) & NS16550_LSR_THRE));
  157. ns16550_out(NS16550_THR, 'r');
  158. }
  159. }
  160. void _puts(const char *s)
  161. {
  162. char c;
  163. while ((c = *s++))
  164. _putc(c);
  165. }
  166. char _getc(void)
  167. {
  168. while (!(ns16550_in(NS16550_LSR) & NS16550_LSR_DR));
  169. return ns16550_in(NS16550_RBR);
  170. }
  171. int _testc(void)
  172. {
  173. return (ns16550_in(NS16550_LSR) & NS16550_LSR_DR) != 0;
  174. }
  175. /*
  176.  *  Hexadecimal 7-segment LED
  177.  */
  178. void ddb5074_led_hex(int hex)
  179. {
  180. outb(hex, 0x80);
  181. }
  182. /*
  183.  *  LEDs D2 and D3, connected to the GPIO pins of the PMU in the ALi M1543
  184.  */
  185. struct pci_dev *pci_pmu = NULL;
  186. void ddb5074_led_d2(int on)
  187. {
  188. u8 t;
  189. if (pci_pmu) {
  190. pci_read_config_byte(pci_pmu, 0x7e, &t);
  191. if (on)
  192. t &= 0x7f;
  193. else
  194. t |= 0x80;
  195. pci_write_config_byte(pci_pmu, 0x7e, t);
  196. }
  197. }
  198. void ddb5074_led_d3(int on)
  199. {
  200. u8 t;
  201. if (pci_pmu) {
  202. pci_read_config_byte(pci_pmu, 0x7e, &t);
  203. if (on)
  204. t &= 0xbf;
  205. else
  206. t |= 0x40;
  207. pci_write_config_byte(pci_pmu, 0x7e, t);
  208. }
  209. }