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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  arch/mips/ddb5476/setup.c -- NEC DDB Vrc-5476 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/time.h>
  26. #include <asm/debug.h>
  27. #include <asm/traps.h>
  28. #include <asm/ddb5xxx/ddb5xxx.h>
  29. // #define USE_CPU_COUNTER_TIMER /* whether we use cpu counter */
  30. #ifdef USE_CPU_COUNTER_TIMER
  31. #define CPU_COUNTER_FREQUENCY           83000000
  32. #else
  33. /* otherwise we use general purpose timer */
  34. #define TIMER_FREQUENCY 83000000
  35. #define TIMER_BASE DDB_T2CTRL
  36. #define TIMER_IRQ (VRC5476_IRQ_BASE + VRC5476_IRQ_GPT)
  37. #endif
  38. #ifdef CONFIG_REMOTE_DEBUG
  39. extern void breakpoint(void);
  40. #endif
  41. extern struct ide_ops std_ide_ops;
  42. extern struct kbd_ops std_kbd_ops;
  43. static void (*back_to_prom) (void) = (void (*)(void)) 0xbfc00000;
  44. static void ddb_machine_restart(char *command)
  45. {
  46. u32 t;
  47. /* PCI cold reset */
  48. t = ddb_in32(DDB_PCICTRL + 4);
  49. t |= 0x40000000;
  50. ddb_out32(DDB_PCICTRL + 4, t);
  51. /* CPU cold reset */
  52. t = ddb_in32(DDB_CPUSTAT);
  53. t |= 1;
  54. ddb_out32(DDB_CPUSTAT, t);
  55. /* Call the PROM */
  56. back_to_prom();
  57. }
  58. static void ddb_machine_halt(void)
  59. {
  60. printk(KERN_NOTICE "DDB Vrc-5476 halted.n");
  61. while (1);
  62. }
  63. static void ddb_machine_power_off(void)
  64. {
  65. printk(KERN_NOTICE "DDB Vrc-5476 halted. Please turn off the power.n");
  66. while (1);
  67. }
  68. extern void ddb_irq_setup(void);
  69. extern void rtc_ds1386_init(unsigned long base);
  70. static void __init ddb_time_init(void)
  71. {
  72. #if defined(USE_CPU_COUNTER_TIMER)
  73. mips_counter_frequency = CPU_COUNTER_FREQUENCY;
  74. #endif
  75. /* we have ds1396 RTC chip */
  76. rtc_ds1386_init(KSEG1ADDR(DDB_PCI_MEM_BASE));
  77. }
  78. extern int setup_irq(unsigned int irq, struct irqaction *irqaction);
  79. static void __init ddb_timer_setup(struct irqaction *irq)
  80. {
  81. #if defined(USE_CPU_COUNTER_TIMER)
  82. unsigned int count;
  83. /* we are using the cpu counter for timer interrupts */
  84. setup_irq(CPU_IRQ_BASE + 7, irq);
  85. /* to generate the first timer interrupt */
  86. count = read_32bit_cp0_register(CP0_COUNT);
  87. write_32bit_cp0_register(CP0_COMPARE, count + 1000);
  88. #else
  89. ddb_out32(TIMER_BASE, TIMER_FREQUENCY/HZ);
  90. ddb_out32(TIMER_BASE+4, 0x1); /* enable timer */
  91. setup_irq(TIMER_IRQ, irq);
  92. #endif
  93. }
  94. static struct {
  95. struct resource dma1;
  96. struct resource pic1;
  97. struct resource timer;
  98. struct resource rtc;
  99. struct resource dma_page_reg;
  100. struct resource pic2;
  101. struct resource dma2;
  102. } ddb5476_ioport = {
  103. {
  104. "dma1", 0x00, 0x1f, IORESOURCE_BUSY}, {
  105. "pic1", 0x20, 0x3f, IORESOURCE_BUSY}, {
  106. "timer", 0x40, 0x5f, IORESOURCE_BUSY}, {
  107. "rtc", 0x70, 0x7f, IORESOURCE_BUSY}, {
  108. "dma page reg", 0x80, 0x8f, IORESOURCE_BUSY}, {
  109. "pic2", 0xa0, 0xbf, IORESOURCE_BUSY}, {
  110. "dma2", 0xc0, 0xdf, IORESOURCE_BUSY}
  111. };
  112. static struct {
  113. struct resource nile4;
  114. } ddb5476_iomem = {
  115. { "Nile 4", DDB_BASE, DDB_BASE + DDB_SIZE - 1, IORESOURCE_BUSY}
  116. };
  117. void __init bus_error_init(void) { /* nothing */ }
  118. static void ddb5476_board_init(void);
  119. extern void ddb5476_irq_setup(void);
  120. extern void (*irq_setup)(void);
  121. void __init
  122. ddb_setup(void)
  123. {
  124. extern int panic_timeout;
  125. irq_setup = ddb5476_irq_setup;
  126. set_io_port_base(KSEG1ADDR(DDB_PCI_IO_BASE));
  127. board_time_init = ddb_time_init;
  128. board_timer_setup = ddb_timer_setup;
  129. _machine_restart = ddb_machine_restart;
  130. _machine_halt = ddb_machine_halt;
  131. _machine_power_off = ddb_machine_power_off;
  132. /* request io port/mem resources  */
  133. if (request_resource(&ioport_resource, &ddb5476_ioport.dma1) ||
  134.     request_resource(&ioport_resource, &ddb5476_ioport.pic1) ||
  135.     request_resource(&ioport_resource, &ddb5476_ioport.timer) ||
  136.     request_resource(&ioport_resource, &ddb5476_ioport.rtc) ||
  137.     request_resource(&ioport_resource,
  138.      &ddb5476_ioport.dma_page_reg)
  139.     || request_resource(&ioport_resource, &ddb5476_ioport.pic2)
  140.     || request_resource(&ioport_resource, &ddb5476_ioport.dma2)
  141.     || request_resource(&iomem_resource, &ddb5476_iomem.nile4)) {
  142. printk
  143.     ("ddb_setup - requesting oo port resources failed.n");
  144. for (;;);
  145. }
  146. #ifdef CONFIG_BLK_DEV_IDE
  147. ide_ops = &std_ide_ops;
  148. #endif
  149. #ifdef CONFIG_PC_KEYB
  150. kbd_ops = &std_kbd_ops;
  151. #endif
  152. /* Reboot on panic */
  153. panic_timeout = 180;
  154. /* [jsun] we need to set BAR0 so that SDRAM 0 appears at 0x0 in PCI */
  155. /* *(long*)0xbfa00218 = 0x8; */
  156. #ifdef CONFIG_FB
  157. conswitchp = &dummy_con;
  158. #endif
  159. /* board initialization stuff */
  160. ddb5476_board_init();
  161. }
  162. /*
  163.  * We don't trust bios.  We essentially does hardware re-initialization
  164.  * as complete as possible, as far as we know we can safely do.
  165.  */
  166. static void
  167. ddb5476_board_init(void)
  168. {
  169. /* ----------- setup PDARs ------------ */
  170. /* check SDRAM0, whether we are on MEM bus does not matter */
  171. db_assert((ddb_in32(DDB_SDRAM0) & 0xffffffef) ==
  172.   ddb_calc_pdar(DDB_SDRAM_BASE, DDB_SDRAM_SIZE, 32, 0, 1));
  173. /* SDRAM1 should be turned off.  What is this for anyway ? */
  174. db_assert( (ddb_in32(DDB_SDRAM1) & 0xf) == 0);
  175. /* flash 1&2, DDB status, DDB control */
  176. ddb_set_pdar(DDB_DCS2, DDB_DCS2_BASE, DDB_DCS2_SIZE, 16, 0, 0);
  177. ddb_set_pdar(DDB_DCS3, DDB_DCS3_BASE, DDB_DCS3_SIZE, 16, 0, 0);
  178. ddb_set_pdar(DDB_DCS4, DDB_DCS4_BASE, DDB_DCS4_SIZE, 8, 0, 0);
  179. ddb_set_pdar(DDB_DCS5, DDB_DCS5_BASE, DDB_DCS5_SIZE, 8, 0, 0);
  180. /* shut off other pdar so they don't accidentally get into the way */
  181. ddb_set_pdar(DDB_DCS6, 0xffffffff, 0, 32, 0, 0);
  182. ddb_set_pdar(DDB_DCS7, 0xffffffff, 0, 32, 0, 0);
  183. ddb_set_pdar(DDB_DCS8, 0xffffffff, 0, 32, 0, 0);
  184. /* verify VRC5477 base addr */
  185. /* don't care about some details */
  186. db_assert((ddb_in32(DDB_INTCS) & 0xffffff0f) ==
  187.   ddb_calc_pdar(DDB_INTCS_BASE, DDB_INTCS_SIZE, 8, 0, 0));
  188. /* verify BOOT ROM addr */
  189. /* don't care about some details */
  190. db_assert((ddb_in32(DDB_BOOTCS) & 0xffffff0f) ==
  191.   ddb_calc_pdar(DDB_BOOTCS_BASE, DDB_BOOTCS_SIZE, 8, 0, 0));
  192. /* setup PCI windows - window1 for MEM/config, window0 for IO */
  193. ddb_set_pdar(DDB_PCIW0, DDB_PCI_IO_BASE, DDB_PCI_IO_SIZE, 32, 0, 1);
  194. ddb_set_pmr(DDB_PCIINIT0, DDB_PCICMD_IO, 0, DDB_PCI_ACCESS_32);
  195. ddb_set_pdar(DDB_PCIW1, DDB_PCI_MEM_BASE, DDB_PCI_MEM_SIZE, 32, 0, 1);
  196. ddb_set_pmr(DDB_PCIINIT1, DDB_PCICMD_MEM, DDB_PCI_MEM_BASE, DDB_PCI_ACCESS_32);
  197. /* ----------- setup PDARs ------------ */
  198. /* this is problematic - it will reset Aladin which cause we loose
  199.  * serial port, and we don't know how to set up Aladin chip again.
  200.  */
  201. // ddb_pci_reset_bus();
  202. ddb_out32(DDB_BAR0, 0x00000008);
  203. ddb_out32(DDB_BARC, 0xffffffff);
  204. ddb_out32(DDB_BARB, 0xffffffff);
  205. ddb_out32(DDB_BAR1, 0xffffffff);
  206. ddb_out32(DDB_BAR2, 0xffffffff);
  207. ddb_out32(DDB_BAR3, 0xffffffff);
  208. ddb_out32(DDB_BAR4, 0xffffffff);
  209. ddb_out32(DDB_BAR5, 0xffffffff);
  210. ddb_out32(DDB_BAR6, 0xffffffff);
  211. ddb_out32(DDB_BAR7, 0xffffffff);
  212. ddb_out32(DDB_BAR8, 0xffffffff);
  213. /* ----------- switch PCI1 to PCI CONFIG space  ------------ */
  214. ddb_set_pdar(DDB_PCIW1, DDB_PCI_CONFIG_BASE, DDB_PCI_CONFIG_SIZE, 32, 0, 1);
  215. ddb_set_pmr(DDB_PCIINIT1, DDB_PCICMD_CFG, 0x0, DDB_PCI_ACCESS_32);
  216. /* ----- M1543 PCI setup ------ */
  217. /* we know M1543 PCI-ISA controller is at addr:18 */
  218. /* xxxx1010 makes USB at addr:13 and PMU at addr:14 */
  219. *(volatile unsigned char *) 0xa8040072 &= 0xf0;
  220. *(volatile unsigned char *) 0xa8040072 |= 0xa;
  221. /* setup USB interrupt to IRQ 9, (bit 0:3 - 0001)
  222.  * no IOCHRDY signal, (bit 7 - 1)
  223.  * M1543C & M7101 VID and Subsys Device ID are read-only (bit 6 - 1)
  224.  * Make USB Master INTAJ level to edge conversion (bit 4 - 1)
  225.  */
  226. *(unsigned char *) 0xa8040074 = 0xd1;
  227. /* setup PMU(SCI to IRQ 10 (bit 0:3 - 0011)
  228.  * SCI routing to IRQ 13 disabled (bit 7 - 1)
  229.  * SCI interrupt level to edge conversion bypassed (bit 4 - 0)
  230.  */
  231. *(unsigned char *) 0xa8040076 = 0x83;
  232. /* setup IDE controller
  233.  * enable IDE controller (bit 6 - 1)
  234.  * IDE IDSEL to be addr:24 (bit 4:5 - 11)
  235.  * no IDE ATA Secondary Bus Signal Pad Control (bit 3 - 0)
  236.  * no IDE ATA Primary Bus Signal Pad Control (bit 2 - 0)
  237.  * primary IRQ is 14, secondary is 15 (bit 1:0 - 01
  238.  */
  239. // *(unsigned char*)0xa8040058 = 0x71;
  240. // *(unsigned char*)0xa8040058 = 0x79;
  241. // *(unsigned char*)0xa8040058 = 0x74;              // use SIRQ, primary tri-state
  242. *(unsigned char *) 0xa8040058 = 0x75; // primary tri-state
  243. #if 0
  244. /* this is not necessary if M5229 does not use SIRQ */
  245. *(unsigned char *) 0xa8040044 = 0x0d; // primary to IRQ 14
  246. *(unsigned char *) 0xa8040075 = 0x0d; // secondary to IRQ 14
  247. #endif
  248. /* enable IDE in the M5229 config register 0x50 (bit 0 - 1) */
  249. /* M5229 IDSEL is addr:24; see above setting */
  250. *(unsigned char *) 0xa9000050 |= 0x1;
  251. /* enable bus master (bit 2)  and IO decoding  (bit 0) */
  252. *(unsigned char *) 0xa9000004 |= 0x5;
  253. /* enable native, copied from arch/ppc/k2boot/head.S */
  254. /* TODO - need volatile, need to be portable */
  255. *(unsigned char *) 0xa9000009 = 0xff;
  256. /* ----- end of M1543 PCI setup ------ */
  257. /* ----- reset on-board ether chip  ------ */
  258. *((volatile u32 *) 0xa8020004) |= 1; /* decode I/O */
  259. *((volatile u32 *) 0xa8020010) = 0; /* set BAR address */
  260. /* send reset command */
  261. *((volatile u32 *) 0xa6000000) = 1; /* do a soft reset */
  262. /* disable ether chip */
  263. *((volatile u32 *) 0xa8020004) = 0; /* disable any decoding */
  264. /* put it into sleep */
  265. *((volatile u32 *) 0xa8020040) = 0x80000000;
  266. /* ----- end of reset on-board ether chip  ------ */
  267. /* ----------- switch PCI1 back to PCI MEM space  ------------ */
  268. ddb_set_pdar(DDB_PCIW1, DDB_PCI_MEM_BASE, DDB_PCI_MEM_SIZE, 32, 0, 1);
  269. ddb_set_pmr(DDB_PCIINIT1, DDB_PCICMD_MEM, DDB_PCI_MEM_BASE, DDB_PCI_ACCESS_32);
  270. }