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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * tc-init: We assume the TURBOchannel to be up and running so
  3.  * just probe for Modules and fill in the global data structure
  4.  * tc_bus.
  5.  *
  6.  * This file is subject to the terms and conditions of the GNU General Public
  7.  * License.  See the file "COPYING" in the main directory of this archive
  8.  * for more details.
  9.  *
  10.  * Copyright (c) Harald Koerfgen, 1998
  11.  */
  12. #include <linux/string.h>
  13. #include <linux/init.h>
  14. #include <linux/ioport.h>
  15. #include <asm/addrspace.h>
  16. #include <asm/errno.h>
  17. #include <asm/dec/machtype.h>
  18. #include <asm/dec/tcinfo.h>
  19. #include <asm/dec/tcmodule.h>
  20. #include <asm/dec/interrupts.h>
  21. #include <asm/ptrace.h>
  22. #include <linux/kernel.h>
  23. #include <linux/module.h>
  24. #define TC_DEBUG
  25. MODULE_LICENSE("GPL");
  26. slot_info tc_bus[MAX_SLOT];
  27. static int max_tcslot;
  28. static tcinfo *info;
  29. unsigned long system_base;
  30. extern void (*dbe_board_handler)(struct pt_regs *regs);
  31. extern unsigned long *(*rex_slot_address)(int);
  32. extern void *(*rex_gettcinfo)(void);
  33. /*
  34.  * Interface to the world. Read comment in include/asm-mips/tc.h.
  35.  */
  36. int search_tc_card(char *name)
  37. {
  38. int slot;
  39. slot_info *sip;
  40. for (slot = 0; slot <= max_tcslot; slot++) {
  41. sip = &tc_bus[slot];
  42. if ((sip->flags & FREE) && (strncmp(sip->name, name, strlen(name)) == 0)) {
  43. return slot;
  44. }
  45. }
  46. return -ENODEV;
  47. }
  48. void claim_tc_card(int slot)
  49. {
  50. if (tc_bus[slot].flags & IN_USE) {
  51. printk("claim_tc_card: attempting to claim a card already in usen");
  52. return;
  53. }
  54. tc_bus[slot].flags &= ~FREE;
  55. tc_bus[slot].flags |= IN_USE;
  56. }
  57. void release_tc_card(int slot)
  58. {
  59. if (tc_bus[slot].flags & FREE) {
  60. printk("release_tc_card: attempting to release a card already freen");
  61. return;
  62. }
  63. tc_bus[slot].flags &= ~IN_USE;
  64. tc_bus[slot].flags |= FREE;
  65. }
  66. unsigned long get_tc_base_addr(int slot)
  67. {
  68. return tc_bus[slot].base_addr;
  69. }
  70. unsigned long get_tc_irq_nr(int slot)
  71. {
  72. return tc_bus[slot].interrupt;
  73. }
  74. unsigned long get_tc_speed(void)
  75. {
  76. return 100000 * (10000 / (unsigned long)info->clk_period);
  77. }
  78. /*
  79.  * Probing for TURBOchannel modules
  80.  */
  81. static void __init my_dbe_handler(struct pt_regs *regs)
  82. {
  83. regs->cp0_epc += 4;
  84. }
  85. static void __init tc_probe(unsigned long startaddr, unsigned long size, int max_slot)
  86. {
  87. int i, slot;
  88. long offset;
  89. unsigned char *module;
  90. void (*old_be_handler)(struct pt_regs *regs);
  91. /* Install our exception handler temporarily */
  92. old_be_handler = dbe_board_handler;
  93. dbe_board_handler = my_dbe_handler;
  94. for (slot = 0; slot <= max_slot; slot++) {
  95. module = (char *)(startaddr + slot * size);
  96. offset = -1;
  97. if (module[OLDCARD + TC_PATTERN0] == 0x55 && module[OLDCARD + TC_PATTERN1] == 0x00
  98.   && module[OLDCARD + TC_PATTERN2] == 0xaa && module[OLDCARD + TC_PATTERN3] == 0xff)
  99. offset = OLDCARD;
  100. if (module[TC_PATTERN0] == 0x55 && module[TC_PATTERN1] == 0x00
  101.   && module[TC_PATTERN2] == 0xaa && module[TC_PATTERN3] == 0xff)
  102. offset = 0;
  103. if (offset != -1) {
  104. tc_bus[slot].base_addr = (unsigned long)module;
  105. for(i = 0; i < 8; i++) {
  106. tc_bus[slot].firmware[i] = module[TC_FIRM_VER + offset + 4 * i];
  107. tc_bus[slot].vendor[i] = module[TC_VENDOR + offset + 4 * i];
  108. tc_bus[slot].name[i] = module[TC_MODULE + offset + 4 * i];
  109. }
  110. tc_bus[slot].firmware[8] = 0;
  111. tc_bus[slot].vendor[8] = 0;
  112. tc_bus[slot].name[8] = 0;
  113. /*
  114.  * Looks unneccesary, but we may change
  115.  * TC? in the future
  116.  */
  117. switch (slot) {
  118. case 0:
  119. tc_bus[slot].interrupt = TC0;
  120. break;
  121. case 1:
  122. tc_bus[slot].interrupt = TC1;
  123. break;
  124. case 2:
  125. tc_bus[slot].interrupt = TC2;
  126. break;
  127. /*
  128.  * Yuck! DS5000/200 onboard devices
  129.  */
  130. case 5:
  131. tc_bus[slot].interrupt = SCSI_INT;
  132. break;
  133. case 6:
  134. tc_bus[slot].interrupt = ETHER;
  135. break;
  136. default:
  137. tc_bus[slot].interrupt = -1;
  138. break;
  139. }
  140. }
  141. }
  142. dbe_board_handler = old_be_handler;
  143. }
  144. /*
  145.  * the main entry
  146.  */
  147. void __init tc_init(void)
  148. {
  149. int tc_clock;
  150. int i;
  151. unsigned long slot0addr;
  152. unsigned long slot_size;
  153. if (!TURBOCHANNEL)
  154. return;
  155. for (i = 0; i < MAX_SLOT; i++) {
  156. tc_bus[i].base_addr = 0;
  157. tc_bus[i].name[0] = 0;
  158. tc_bus[i].vendor[0] = 0;
  159. tc_bus[i].firmware[0] = 0;
  160. tc_bus[i].interrupt = -1;
  161. tc_bus[i].flags = FREE;
  162. }
  163. info = (tcinfo *) rex_gettcinfo();
  164. slot0addr = (unsigned long)KSEG1ADDR(rex_slot_address(0));
  165. switch (mips_machtype) {
  166. case MACH_DS5000_200:
  167. max_tcslot = 6;
  168. break;
  169. case MACH_DS5000_1XX:
  170. case MACH_DS5000_2X0:
  171. max_tcslot = 2;
  172. break;
  173. case MACH_DS5000_XX:
  174. default:
  175. max_tcslot = 1;
  176. break;
  177. }
  178. tc_clock = 10000 / info->clk_period;
  179. if (TURBOCHANNEL && info->slot_size && slot0addr) {
  180. printk("TURBOchannel rev. %1d at %2d.%1d MHz ", info->revision,
  181. tc_clock / 10, tc_clock % 10);
  182. printk("(with%s parity)n", info->parity ? "" : "out");
  183. slot_size = info->slot_size << 20;
  184. tc_probe(slot0addr, slot_size, max_tcslot);
  185.    /*
  186.     * All TURBOchannel DECstations have the onboard devices
  187.    * where the (max_tcslot + 1 or 2 on DS5k/xx) Option Module
  188.    * would be.
  189.    */
  190.   if(mips_machtype == MACH_DS5000_XX)
  191.   i = 2;
  192. else
  193.   i = 1;
  194.  
  195.           system_base = slot0addr + slot_size * (max_tcslot + i);
  196. #ifdef TC_DEBUG
  197. for (i = 0; i <= max_tcslot; i++)
  198. if (tc_bus[i].base_addr) {
  199. printk("    slot %d: ", i);
  200. printk("%s %s %sn", tc_bus[i].vendor,
  201. tc_bus[i].name, tc_bus[i].firmware);
  202. }
  203. #endif
  204. ioport_resource.end = KSEG2 - 1;
  205. }
  206. }
  207. EXPORT_SYMBOL(search_tc_card);
  208. EXPORT_SYMBOL(claim_tc_card);
  209. EXPORT_SYMBOL(release_tc_card);
  210. EXPORT_SYMBOL(get_tc_base_addr);
  211. EXPORT_SYMBOL(get_tc_irq_nr);
  212. EXPORT_SYMBOL(get_tc_speed);