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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*  sun4m_irq.c
  2.  *  arch/sparc/kernel/sun4m_irq.c:
  3.  *
  4.  *  djhr: Hacked out of irq.c into a CPU dependent version.
  5.  *
  6.  *  Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
  7.  *  Copyright (C) 1995 Miguel de Icaza (miguel@nuclecu.unam.mx)
  8.  *  Copyright (C) 1995 Pete A. Zaitcev (zaitcev@yahoo.com)
  9.  *  Copyright (C) 1996 Dave Redman (djhr@tadpole.co.uk)
  10.  */
  11. #include <linux/config.h>
  12. #include <linux/ptrace.h>
  13. #include <linux/errno.h>
  14. #include <linux/linkage.h>
  15. #include <linux/kernel_stat.h>
  16. #include <linux/signal.h>
  17. #include <linux/sched.h>
  18. #include <linux/smp.h>
  19. #include <linux/interrupt.h>
  20. #include <linux/slab.h>
  21. #include <linux/init.h>
  22. #include <linux/ioport.h>
  23. #include <asm/ptrace.h>
  24. #include <asm/processor.h>
  25. #include <asm/system.h>
  26. #include <asm/psr.h>
  27. #include <asm/vaddrs.h>
  28. #include <asm/timer.h>
  29. #include <asm/openprom.h>
  30. #include <asm/oplib.h>
  31. #include <asm/traps.h>
  32. #include <asm/pgalloc.h>
  33. #include <asm/pgtable.h>
  34. #include <asm/smp.h>
  35. #include <asm/irq.h>
  36. #include <asm/io.h>
  37. static unsigned long dummy;
  38. struct sun4m_intregs *sun4m_interrupts;
  39. unsigned long *irq_rcvreg = &dummy;
  40. /* These tables only apply for interrupts greater than 15..
  41.  * 
  42.  * any intr value below 0x10 is considered to be a soft-int
  43.  * this may be useful or it may not.. but that's how I've done it.
  44.  * and it won't clash with what OBP is telling us about devices.
  45.  *
  46.  * take an encoded intr value and lookup if it's valid
  47.  * then get the mask bits that match from irq_mask
  48.  *
  49.  * P3: Translation from irq 0x0d to mask 0x2000 is for MrCoffee.
  50.  */
  51. static unsigned char irq_xlate[32] = {
  52.     /*  0,  1,  2,  3,  4,  5,  6,  7,  8,  9,  a,  b,  c,  d,  e,  f */
  53. 0,  0,  0,  0,  1,  0,  2,  0,  3,  0,  4,  5,  6, 14,  0,  7,
  54. 0,  0,  8,  9,  0, 10,  0, 11,  0, 12,  0, 13,  0, 14,  0,  0
  55. };
  56. static unsigned long irq_mask[] = {
  57. 0,   /* illegal index */
  58. SUN4M_INT_SCSI,      /*  1 irq 4 */
  59. SUN4M_INT_ETHERNET,   /*  2 irq 6 */
  60. SUN4M_INT_VIDEO,   /*  3 irq 8 */
  61. SUN4M_INT_REALTIME,   /*  4 irq 10 */
  62. SUN4M_INT_FLOPPY,   /*  5 irq 11 */
  63. (SUN4M_INT_SERIAL | SUN4M_INT_KBDMS),      /*  6 irq 12 */
  64. SUN4M_INT_MODULE_ERR,      /*  7 irq 15 */
  65. SUN4M_INT_SBUS(0),   /*  8 irq 2 */
  66. SUN4M_INT_SBUS(1),   /*  9 irq 3 */
  67. SUN4M_INT_SBUS(2),   /* 10 irq 5 */
  68. SUN4M_INT_SBUS(3),   /* 11 irq 7 */
  69. SUN4M_INT_SBUS(4),   /* 12 irq 9 */
  70. SUN4M_INT_SBUS(5),   /* 13 irq 11 */
  71. SUN4M_INT_SBUS(6)   /* 14 irq 13 */
  72. };
  73. inline unsigned long sun4m_get_irqmask(unsigned int irq)
  74. {
  75. unsigned long mask;
  76.     
  77. if (irq > 0x20) {
  78. /* OBIO/SBUS interrupts */
  79. irq &= 0x1f;
  80. mask = irq_mask[irq_xlate[irq]];
  81. if (!mask)
  82. printk("sun4m_get_irqmask: IRQ%d has no valid mask!n",irq);
  83. } else {
  84. /* Soft Interrupts will come here.
  85.  * Currently there is no way to trigger them but I'm sure
  86.  * something could be cooked up.
  87.  */
  88. irq &= 0xf;
  89. mask = SUN4M_SOFT_INT(irq);
  90. }
  91. return mask;
  92. }
  93. static void sun4m_disable_irq(unsigned int irq_nr)
  94. {
  95. unsigned long mask, flags;
  96. int cpu = smp_processor_id();
  97. mask = sun4m_get_irqmask(irq_nr);
  98. save_and_cli(flags);
  99. if (irq_nr > 15)
  100. sun4m_interrupts->set = mask;
  101. else
  102. sun4m_interrupts->cpu_intregs[cpu].set = mask;
  103. restore_flags(flags);    
  104. }
  105. static void sun4m_enable_irq(unsigned int irq_nr)
  106. {
  107. unsigned long mask, flags;
  108. int cpu = smp_processor_id();
  109. /* Dreadful floppy hack. When we use 0x2b instead of
  110.          * 0x0b the system blows (it starts to whistle!).
  111.          * So we continue to use 0x0b. Fixme ASAP. --P3
  112.          */
  113.         if (irq_nr != 0x0b) {
  114. mask = sun4m_get_irqmask(irq_nr);
  115. save_and_cli(flags);
  116. if (irq_nr > 15)
  117. sun4m_interrupts->clear = mask;
  118. else
  119. sun4m_interrupts->cpu_intregs[cpu].clear = mask;
  120. restore_flags(flags);    
  121. } else {
  122. save_and_cli(flags);
  123. sun4m_interrupts->clear = SUN4M_INT_FLOPPY;
  124. restore_flags(flags);
  125. }
  126. }
  127. static unsigned long cpu_pil_to_imask[16] = {
  128. /*0*/ 0x00000000,
  129. /*1*/ 0x00000000,
  130. /*2*/ SUN4M_INT_SBUS(0) | SUN4M_INT_VME(0),
  131. /*3*/ SUN4M_INT_SBUS(1) | SUN4M_INT_VME(1),
  132. /*4*/ SUN4M_INT_SCSI,
  133. /*5*/ SUN4M_INT_SBUS(2) | SUN4M_INT_VME(2),
  134. /*6*/ SUN4M_INT_ETHERNET,
  135. /*7*/ SUN4M_INT_SBUS(3) | SUN4M_INT_VME(3),
  136. /*8*/ SUN4M_INT_VIDEO,
  137. /*9*/ SUN4M_INT_SBUS(4) | SUN4M_INT_VME(4) | SUN4M_INT_MODULE_ERR,
  138. /*10*/ SUN4M_INT_REALTIME,
  139. /*11*/ SUN4M_INT_SBUS(5) | SUN4M_INT_VME(5) | SUN4M_INT_FLOPPY,
  140. /*12*/ SUN4M_INT_SERIAL | SUN4M_INT_KBDMS,
  141. /*13*/ SUN4M_INT_AUDIO,
  142. /*14*/ SUN4M_INT_E14,
  143. /*15*/ 0x00000000
  144. };
  145. /* We assume the caller is local cli()'d when these are called, or else
  146.  * very bizarre behavior will result.
  147.  */
  148. static void sun4m_disable_pil_irq(unsigned int pil)
  149. {
  150. sun4m_interrupts->set = cpu_pil_to_imask[pil];
  151. }
  152. static void sun4m_enable_pil_irq(unsigned int pil)
  153. {
  154. sun4m_interrupts->clear = cpu_pil_to_imask[pil];
  155. }
  156. #ifdef CONFIG_SMP
  157. static void sun4m_send_ipi(int cpu, int level)
  158. {
  159. unsigned long mask;
  160. mask = sun4m_get_irqmask(level);
  161. sun4m_interrupts->cpu_intregs[cpu].set = mask;
  162. }
  163. static void sun4m_clear_ipi(int cpu, int level)
  164. {
  165. unsigned long mask;
  166. mask = sun4m_get_irqmask(level);
  167. sun4m_interrupts->cpu_intregs[cpu].clear = mask;
  168. }
  169. static void sun4m_set_udt(int cpu)
  170. {
  171. sun4m_interrupts->undirected_target = cpu;
  172. }
  173. #endif
  174. #define OBIO_INTR 0x20
  175. #define TIMER_IRQ   (OBIO_INTR | 10)
  176. #define PROFILE_IRQ (OBIO_INTR | 14)
  177. struct sun4m_timer_regs *sun4m_timers;
  178. unsigned int lvl14_resolution = (((1000000/HZ) + 1) << 10);
  179. static void sun4m_clear_clock_irq(void)
  180. {
  181. volatile unsigned int clear_intr;
  182. clear_intr = sun4m_timers->l10_timer_limit;
  183. }
  184. static void sun4m_clear_profile_irq(int cpu)
  185. {
  186. volatile unsigned int clear;
  187.     
  188. clear = sun4m_timers->cpu_timers[cpu].l14_timer_limit;
  189. }
  190. static void sun4m_load_profile_irq(int cpu, unsigned int limit)
  191. {
  192. sun4m_timers->cpu_timers[cpu].l14_timer_limit = limit;
  193. }
  194. char *sun4m_irq_itoa(unsigned int irq)
  195. {
  196. static char buff[16];
  197. sprintf(buff, "%d", irq);
  198. return buff;
  199. }
  200. static void __init sun4m_init_timers(void (*counter_fn)(int, void *, struct pt_regs *))
  201. {
  202. int reg_count, irq, cpu;
  203. struct linux_prom_registers cnt_regs[PROMREG_MAX];
  204. int obio_node, cnt_node;
  205. struct resource r;
  206. cnt_node = 0;
  207. if((obio_node =
  208.     prom_searchsiblings (prom_getchild(prom_root_node), "obio")) == 0 ||
  209.    (obio_node = prom_getchild (obio_node)) == 0 ||
  210.    (cnt_node = prom_searchsiblings (obio_node, "counter")) == 0) {
  211. prom_printf("Cannot find /obio/counter noden");
  212. prom_halt();
  213. }
  214. reg_count = prom_getproperty(cnt_node, "reg",
  215.      (void *) cnt_regs, sizeof(cnt_regs));
  216. reg_count = (reg_count/sizeof(struct linux_prom_registers));
  217.     
  218. /* Apply the obio ranges to the timer registers. */
  219. prom_apply_obio_ranges(cnt_regs, reg_count);
  220.     
  221. cnt_regs[4].phys_addr = cnt_regs[reg_count-1].phys_addr;
  222. cnt_regs[4].reg_size = cnt_regs[reg_count-1].reg_size;
  223. cnt_regs[4].which_io = cnt_regs[reg_count-1].which_io;
  224. for(obio_node = 1; obio_node < 4; obio_node++) {
  225. cnt_regs[obio_node].phys_addr =
  226. cnt_regs[obio_node-1].phys_addr + PAGE_SIZE;
  227. cnt_regs[obio_node].reg_size = cnt_regs[obio_node-1].reg_size;
  228. cnt_regs[obio_node].which_io = cnt_regs[obio_node-1].which_io;
  229. }
  230. memset((char*)&r, 0, sizeof(struct resource));
  231. /* Map the per-cpu Counter registers. */
  232. r.flags = cnt_regs[0].which_io;
  233. r.start = cnt_regs[0].phys_addr;
  234. sun4m_timers = (struct sun4m_timer_regs *) sbus_ioremap(&r, 0,
  235.     PAGE_SIZE*SUN4M_NCPUS, "sun4m_cpu_cnt");
  236. /* Map the system Counter register. */
  237. /* XXX Here we expect consequent calls to yeld adjusent maps. */
  238. r.flags = cnt_regs[4].which_io;
  239. r.start = cnt_regs[4].phys_addr;
  240. sbus_ioremap(&r, 0, cnt_regs[4].reg_size, "sun4m_sys_cnt");
  241. sun4m_timers->l10_timer_limit =  (((1000000/HZ) + 1) << 10);
  242. master_l10_counter = &sun4m_timers->l10_cur_count;
  243. master_l10_limit = &sun4m_timers->l10_timer_limit;
  244. irq = request_irq(TIMER_IRQ,
  245.   counter_fn,
  246.   (SA_INTERRUPT | SA_STATIC_ALLOC),
  247.   "timer", NULL);
  248. if (irq) {
  249. prom_printf("time_init: unable to attach IRQ%dn",TIMER_IRQ);
  250. prom_halt();
  251. }
  252.     
  253. if(linux_num_cpus > 1) {
  254. for(cpu = 0; cpu < 4; cpu++)
  255. sun4m_timers->cpu_timers[cpu].l14_timer_limit = 0;
  256. sun4m_interrupts->set = SUN4M_INT_E14;
  257. } else {
  258. sun4m_timers->cpu_timers[0].l14_timer_limit = 0;
  259. }
  260. #ifdef CONFIG_SMP
  261. {
  262. unsigned long flags;
  263. extern unsigned long lvl14_save[4];
  264. struct tt_entry *trap_table = &sparc_ttable[SP_TRAP_IRQ1 + (14 - 1)];
  265. /* For SMP we use the level 14 ticker, however the bootup code
  266.  * has copied the firmwares level 14 vector into boot cpu's
  267.  * trap table, we must fix this now or we get squashed.
  268.  */
  269. __save_and_cli(flags);
  270. trap_table->inst_one = lvl14_save[0];
  271. trap_table->inst_two = lvl14_save[1];
  272. trap_table->inst_three = lvl14_save[2];
  273. trap_table->inst_four = lvl14_save[3];
  274. local_flush_cache_all();
  275. __restore_flags(flags);
  276. }
  277. #endif
  278. }
  279. void __init sun4m_init_IRQ(void)
  280. {
  281. int ie_node,i;
  282. struct linux_prom_registers int_regs[PROMREG_MAX];
  283. int num_regs;
  284. struct resource r;
  285.     
  286. __cli();
  287. if((ie_node = prom_searchsiblings(prom_getchild(prom_root_node), "obio")) == 0 ||
  288.    (ie_node = prom_getchild (ie_node)) == 0 ||
  289.    (ie_node = prom_searchsiblings (ie_node, "interrupt")) == 0) {
  290. prom_printf("Cannot find /obio/interrupt noden");
  291. prom_halt();
  292. }
  293. num_regs = prom_getproperty(ie_node, "reg", (char *) int_regs,
  294.     sizeof(int_regs));
  295. num_regs = (num_regs/sizeof(struct linux_prom_registers));
  296.     
  297. /* Apply the obio ranges to these registers. */
  298. prom_apply_obio_ranges(int_regs, num_regs);
  299.     
  300. int_regs[4].phys_addr = int_regs[num_regs-1].phys_addr;
  301. int_regs[4].reg_size = int_regs[num_regs-1].reg_size;
  302. int_regs[4].which_io = int_regs[num_regs-1].which_io;
  303. for(ie_node = 1; ie_node < 4; ie_node++) {
  304. int_regs[ie_node].phys_addr = int_regs[ie_node-1].phys_addr + PAGE_SIZE;
  305. int_regs[ie_node].reg_size = int_regs[ie_node-1].reg_size;
  306. int_regs[ie_node].which_io = int_regs[ie_node-1].which_io;
  307. }
  308. memset((char *)&r, 0, sizeof(struct resource));
  309. /* Map the interrupt registers for all possible cpus. */
  310. r.flags = int_regs[0].which_io;
  311. r.start = int_regs[0].phys_addr;
  312. sun4m_interrupts = (struct sun4m_intregs *) sbus_ioremap(&r, 0,
  313.     PAGE_SIZE*SUN4M_NCPUS, "interrupts_percpu");
  314. /* Map the system interrupt control registers. */
  315. r.flags = int_regs[4].which_io;
  316. r.start = int_regs[4].phys_addr;
  317. sbus_ioremap(&r, 0, int_regs[4].reg_size, "interrupts_system");
  318. sun4m_interrupts->set = ~SUN4M_INT_MASKALL;
  319. for (i=0; i<linux_num_cpus; i++)
  320. sun4m_interrupts->cpu_intregs[i].clear = ~0x17fff;
  321.     
  322. if (linux_num_cpus > 1) {
  323. /* system wide interrupts go to cpu 0, this should always
  324.  * be safe because it is guaranteed to be fitted or OBP doesn't
  325.  * come up
  326.  *
  327.  * Not sure, but writing here on SLAVIO systems may puke
  328.  * so I don't do it unless there is more than 1 cpu.
  329.  */
  330. irq_rcvreg = (unsigned long *)
  331. &sun4m_interrupts->undirected_target;
  332. sun4m_interrupts->undirected_target = 0;
  333. }
  334. BTFIXUPSET_CALL(enable_irq, sun4m_enable_irq, BTFIXUPCALL_NORM);
  335. BTFIXUPSET_CALL(disable_irq, sun4m_disable_irq, BTFIXUPCALL_NORM);
  336. BTFIXUPSET_CALL(enable_pil_irq, sun4m_enable_pil_irq, BTFIXUPCALL_NORM);
  337. BTFIXUPSET_CALL(disable_pil_irq, sun4m_disable_pil_irq, BTFIXUPCALL_NORM);
  338. BTFIXUPSET_CALL(clear_clock_irq, sun4m_clear_clock_irq, BTFIXUPCALL_NORM);
  339. BTFIXUPSET_CALL(clear_profile_irq, sun4m_clear_profile_irq, BTFIXUPCALL_NORM);
  340. BTFIXUPSET_CALL(load_profile_irq, sun4m_load_profile_irq, BTFIXUPCALL_NORM);
  341. BTFIXUPSET_CALL(__irq_itoa, sun4m_irq_itoa, BTFIXUPCALL_NORM);
  342. init_timers = sun4m_init_timers;
  343. #ifdef CONFIG_SMP
  344. BTFIXUPSET_CALL(set_cpu_int, sun4m_send_ipi, BTFIXUPCALL_NORM);
  345. BTFIXUPSET_CALL(clear_cpu_int, sun4m_clear_ipi, BTFIXUPCALL_NORM);
  346. BTFIXUPSET_CALL(set_irq_udt, sun4m_set_udt, BTFIXUPCALL_NORM);
  347. #endif
  348. /* Cannot enable interrupts until OBP ticker is disabled. */
  349. }