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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: SCCS/s.pmac_pic.c 1.24 12/19/01 10:53:01 paulus
  3.  */
  4. #include <linux/config.h>
  5. #include <linux/stddef.h>
  6. #include <linux/init.h>
  7. #include <linux/sched.h>
  8. #include <linux/signal.h>
  9. #include <linux/pci.h>
  10. #include <asm/sections.h>
  11. #include <asm/io.h>
  12. #include <asm/smp.h>
  13. #include <asm/prom.h>
  14. #include <asm/pci-bridge.h>
  15. #include <asm/time.h>
  16. #include "pmac_pic.h"
  17. #include "open_pic.h"
  18. struct pmac_irq_hw {
  19.         unsigned int    event;
  20.         unsigned int    enable;
  21.         unsigned int    ack;
  22.         unsigned int    level;
  23. };
  24. /* Default addresses */
  25. static volatile struct pmac_irq_hw *pmac_irq_hw[4] __pmacdata = {
  26.         (struct pmac_irq_hw *) 0xf3000020,
  27.         (struct pmac_irq_hw *) 0xf3000010,
  28.         (struct pmac_irq_hw *) 0xf4000020,
  29.         (struct pmac_irq_hw *) 0xf4000010,
  30. };
  31. #define GC_LEVEL_MASK 0x3ff00000
  32. #define OHARE_LEVEL_MASK 0x1ff00000
  33. #define HEATHROW_LEVEL_MASK 0x1ff00000
  34. static int max_irqs __pmacdata;
  35. static int max_real_irqs __pmacdata;
  36. static u32 level_mask[4] __pmacdata;
  37. static spinlock_t pmac_pic_lock __pmacdata = SPIN_LOCK_UNLOCKED;
  38. #define GATWICK_IRQ_POOL_SIZE        10
  39. static struct interrupt_info gatwick_int_pool[GATWICK_IRQ_POOL_SIZE] __pmacdata;
  40. /*
  41.  * Mark an irq as "lost".  This is only used on the pmac
  42.  * since it can lose interrupts (see pmac_set_irq_mask).
  43.  * -- Cort
  44.  */
  45. void __pmac
  46. __set_lost(unsigned long irq_nr, int nokick)
  47. {
  48. if (!test_and_set_bit(irq_nr, ppc_lost_interrupts)) {
  49. atomic_inc(&ppc_n_lost_interrupts);
  50. if (!nokick)
  51. set_dec(1);
  52. }
  53. }
  54. static void __pmac
  55. pmac_mask_and_ack_irq(unsigned int irq_nr)
  56. {
  57.         unsigned long bit = 1UL << (irq_nr & 0x1f);
  58.         int i = irq_nr >> 5;
  59.         unsigned long flags;
  60.         if ((unsigned)irq_nr >= max_irqs)
  61.                 return;
  62.         clear_bit(irq_nr, ppc_cached_irq_mask);
  63.         if (test_and_clear_bit(irq_nr, ppc_lost_interrupts))
  64.                 atomic_dec(&ppc_n_lost_interrupts);
  65. spin_lock_irqsave(&pmac_pic_lock, flags);
  66.         out_le32(&pmac_irq_hw[i]->enable, ppc_cached_irq_mask[i]);
  67.         out_le32(&pmac_irq_hw[i]->ack, bit);
  68.         do {
  69.                 /* make sure ack gets to controller before we enable
  70.                    interrupts */
  71.                 mb();
  72.         } while((in_le32(&pmac_irq_hw[i]->enable) & bit)
  73.                 != (ppc_cached_irq_mask[i] & bit));
  74. spin_unlock_irqrestore(&pmac_pic_lock, flags);
  75. }
  76. static void __pmac pmac_set_irq_mask(unsigned int irq_nr, int nokicklost)
  77. {
  78.         unsigned long bit = 1UL << (irq_nr & 0x1f);
  79.         int i = irq_nr >> 5;
  80.         unsigned long flags;
  81.         if ((unsigned)irq_nr >= max_irqs)
  82.                 return;
  83. spin_lock_irqsave(&pmac_pic_lock, flags);
  84.         /* enable unmasked interrupts */
  85.         out_le32(&pmac_irq_hw[i]->enable, ppc_cached_irq_mask[i]);
  86.         do {
  87.                 /* make sure mask gets to controller before we
  88.                    return to user */
  89.                 mb();
  90.         } while((in_le32(&pmac_irq_hw[i]->enable) & bit)
  91.                 != (ppc_cached_irq_mask[i] & bit));
  92.         /*
  93.          * Unfortunately, setting the bit in the enable register
  94.          * when the device interrupt is already on *doesn't* set
  95.          * the bit in the flag register or request another interrupt.
  96.          */
  97.         if (bit & ppc_cached_irq_mask[i] & in_le32(&pmac_irq_hw[i]->level))
  98. __set_lost((ulong)irq_nr, nokicklost);
  99. spin_unlock_irqrestore(&pmac_pic_lock, flags);
  100. }
  101. static void __pmac pmac_mask_irq(unsigned int irq_nr)
  102. {
  103.         clear_bit(irq_nr, ppc_cached_irq_mask);
  104.         pmac_set_irq_mask(irq_nr, 0);
  105.         mb();
  106. }
  107. static void __pmac pmac_unmask_irq(unsigned int irq_nr)
  108. {
  109.         set_bit(irq_nr, ppc_cached_irq_mask);
  110.         pmac_set_irq_mask(irq_nr, 0);
  111. }
  112. static void __pmac pmac_end_irq(unsigned int irq_nr)
  113. {
  114. if (!(irq_desc[irq_nr].status & (IRQ_DISABLED|IRQ_INPROGRESS))) {
  115.          set_bit(irq_nr, ppc_cached_irq_mask);
  116.         pmac_set_irq_mask(irq_nr, 1);
  117. }
  118. }
  119. struct hw_interrupt_type pmac_pic = {
  120.         " PMAC-PIC ",
  121.         NULL,
  122.         NULL,
  123.         pmac_unmask_irq,
  124.         pmac_mask_irq,
  125.         pmac_mask_and_ack_irq,
  126.         pmac_end_irq,
  127.         NULL
  128. };
  129. struct hw_interrupt_type gatwick_pic = {
  130. " GATWICK  ",
  131. NULL,
  132. NULL,
  133. pmac_unmask_irq,
  134. pmac_mask_irq,
  135. pmac_mask_and_ack_irq,
  136. pmac_end_irq,
  137. NULL
  138. };
  139. static void gatwick_action(int cpl, void *dev_id, struct pt_regs *regs)
  140. {
  141. int irq, bits;
  142. for (irq = max_irqs; (irq -= 32) >= max_real_irqs; ) {
  143. int i = irq >> 5;
  144. bits = in_le32(&pmac_irq_hw[i]->event) | ppc_lost_interrupts[i];
  145. /* We must read level interrupts from the level register */
  146. bits |= (in_le32(&pmac_irq_hw[i]->level) & level_mask[i]);
  147. bits &= ppc_cached_irq_mask[i];
  148. if (bits == 0)
  149. continue;
  150. irq += __ilog2(bits);
  151. break;
  152. }
  153. /* The previous version of this code allowed for this case, we
  154.  * don't.  Put this here to check for it.
  155.  * -- Cort
  156.  */
  157. if ( irq_desc[irq].handler != &gatwick_pic )
  158. printk("gatwick irq not from gatwick picn");
  159. else
  160. ppc_irq_dispatch_handler( regs, irq );
  161. }
  162. int
  163. pmac_get_irq(struct pt_regs *regs)
  164. {
  165. int irq;
  166. unsigned long bits = 0;
  167. #ifdef CONFIG_SMP
  168. void psurge_smp_message_recv(struct pt_regs *);
  169.         /* IPI's are a hack on the powersurge -- Cort */
  170.         if ( smp_processor_id() != 0 ) {
  171. psurge_smp_message_recv(regs);
  172. return -2; /* ignore, already handled */
  173.         }
  174. #endif /* CONFIG_SMP */
  175. for (irq = max_real_irqs; (irq -= 32) >= 0; ) {
  176. int i = irq >> 5;
  177. bits = in_le32(&pmac_irq_hw[i]->event) | ppc_lost_interrupts[i];
  178. /* We must read level interrupts from the level register */
  179. bits |= (in_le32(&pmac_irq_hw[i]->level) & level_mask[i]);
  180. bits &= ppc_cached_irq_mask[i];
  181. if (bits == 0)
  182. continue;
  183. irq += __ilog2(bits);
  184. break;
  185. }
  186. return irq;
  187. }
  188. /* This routine will fix some missing interrupt values in the device tree
  189.  * on the gatwick mac-io controller used by some PowerBooks
  190.  */
  191. static void __init
  192. pmac_fix_gatwick_interrupts(struct device_node *gw, int irq_base)
  193. {
  194. struct device_node *node;
  195. int count;
  196. memset(gatwick_int_pool, 0, sizeof(gatwick_int_pool));
  197. node = gw->child;
  198. count = 0;
  199. while(node)
  200. {
  201. /* Fix SCC */
  202. if (strcasecmp(node->name, "escc") == 0)
  203. if (node->child) {
  204. if (node->child->n_intrs < 3) {
  205. node->child->intrs = &gatwick_int_pool[count];
  206. count += 3;
  207. }
  208. node->child->n_intrs = 3;
  209. node->child->intrs[0].line = 15+irq_base;
  210. node->child->intrs[1].line =  4+irq_base;
  211. node->child->intrs[2].line =  5+irq_base;
  212. printk(KERN_INFO "irq: fixed SCC on second controller (%d,%d,%d)n",
  213. node->child->intrs[0].line,
  214. node->child->intrs[1].line,
  215. node->child->intrs[2].line);
  216. }
  217. /* Fix media-bay & left SWIM */
  218. if (strcasecmp(node->name, "media-bay") == 0) {
  219. struct device_node* ya_node;
  220. if (node->n_intrs == 0)
  221. node->intrs = &gatwick_int_pool[count++];
  222. node->n_intrs = 1;
  223. node->intrs[0].line = 29+irq_base;
  224. printk(KERN_INFO "irq: fixed media-bay on second controller (%d)n",
  225. node->intrs[0].line);
  226. ya_node = node->child;
  227. while(ya_node)
  228. {
  229. if (strcasecmp(ya_node->name, "floppy") == 0) {
  230. if (ya_node->n_intrs < 2) {
  231. ya_node->intrs = &gatwick_int_pool[count];
  232. count += 2;
  233. }
  234. ya_node->n_intrs = 2;
  235. ya_node->intrs[0].line = 19+irq_base;
  236. ya_node->intrs[1].line =  1+irq_base;
  237. printk(KERN_INFO "irq: fixed floppy on second controller (%d,%d)n",
  238. ya_node->intrs[0].line, ya_node->intrs[1].line);
  239. if (strcasecmp(ya_node->name, "ata4") == 0) {
  240. if (ya_node->n_intrs < 2) {
  241. ya_node->intrs = &gatwick_int_pool[count];
  242. count += 2;
  243. }
  244. ya_node->n_intrs = 2;
  245. ya_node->intrs[0].line = 14+irq_base;
  246. ya_node->intrs[1].line =  3+irq_base;
  247. printk(KERN_INFO "irq: fixed ide on second controller (%d,%d)n",
  248. ya_node->intrs[0].line, ya_node->intrs[1].line);
  249. ya_node = ya_node->sibling;
  250. }
  251. }
  252. node = node->sibling;
  253. }
  254. if (count > 10) {
  255. printk("WARNING !! Gatwick interrupt pool overflown");
  256. printk("  GATWICK_IRQ_POOL_SIZE = %dn", GATWICK_IRQ_POOL_SIZE);
  257. printk("              requested = %dn", count);
  258. }
  259. }
  260. /*
  261.  * The PowerBook 3400/2400/3500 can have a combo ethernet/modem
  262.  * card which includes an ohare chip that acts as a second interrupt
  263.  * controller.  If we find this second ohare, set it up and fix the
  264.  * interrupt value in the device tree for the ethernet chip.
  265.  */
  266. static int __init enable_second_ohare(void)
  267. {
  268. unsigned char bus, devfn;
  269. unsigned short cmd;
  270.         unsigned long addr;
  271. struct device_node *irqctrler = find_devices("pci106b,7");
  272. struct device_node *ether;
  273. if (irqctrler == NULL || irqctrler->n_addrs <= 0)
  274. return -1;
  275. addr = (unsigned long) ioremap(irqctrler->addrs[0].address, 0x40);
  276. pmac_irq_hw[1] = (volatile struct pmac_irq_hw *)(addr + 0x20);
  277. max_irqs = 64;
  278. if (pci_device_from_OF_node(irqctrler, &bus, &devfn) == 0) {
  279. struct pci_controller* hose = pci_find_hose_for_OF_device(irqctrler);
  280. if (!hose)
  281.     printk(KERN_ERR "Can't find PCI hose for OHare2 !n");
  282. else {
  283.     early_read_config_word(hose, bus, devfn, PCI_COMMAND, &cmd);
  284.     cmd |= PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER;
  285.        cmd &= ~PCI_COMMAND_IO;
  286.     early_write_config_word(hose, bus, devfn, PCI_COMMAND, cmd);
  287. }
  288. }
  289. /* Fix interrupt for the modem/ethernet combo controller. The number
  290.    in the device tree (27) is bogus (correct for the ethernet-only
  291.    board but not the combo ethernet/modem board).
  292.    The real interrupt is 28 on the second controller -> 28+32 = 60.
  293. */
  294. ether = find_devices("pci1011,14");
  295. if (ether && ether->n_intrs > 0) {
  296. ether->intrs[0].line = 60;
  297. printk(KERN_INFO "irq: Fixed ethernet IRQ to %dn",
  298.        ether->intrs[0].line);
  299. }
  300. /* Return the interrupt number of the cascade */
  301. return irqctrler->intrs[0].line;
  302. }
  303. void __init
  304. pmac_pic_init(void)
  305. {
  306.         int i;
  307.         struct device_node *irqctrler;
  308.         unsigned long addr;
  309. int irq_cascade = -1;
  310. /* We first try to detect Apple's new Core99 chipset, since mac-io
  311.  * is quite different on those machines and contains an IBM MPIC2.
  312.  */
  313. irqctrler = find_type_devices("open-pic");
  314. if (irqctrler != NULL)
  315. {
  316. printk("PowerMac using OpenPIC irq controllern");
  317. if (irqctrler->n_addrs > 0)
  318. {
  319. int nmi_irq = -1;
  320. unsigned char senses[NR_IRQS];
  321. #ifdef CONFIG_XMON
  322. struct device_node* pswitch;
  323. pswitch = find_devices("programmer-switch");
  324. if (pswitch && pswitch->n_intrs)
  325. nmi_irq = pswitch->intrs[0].line;
  326. #endif /* CONFIG_XMON */
  327. prom_get_irq_senses(senses, 0, NR_IRQS);
  328. OpenPIC_InitSenses = senses;
  329. OpenPIC_NumInitSenses = NR_IRQS;
  330. ppc_md.get_irq = openpic_get_irq;
  331. OpenPIC_Addr = ioremap(irqctrler->addrs[0].address,
  332.        irqctrler->addrs[0].size);
  333. openpic_init(1, 0, 0, nmi_irq);
  334. #ifdef CONFIG_XMON
  335. if (nmi_irq >= 0)
  336. request_irq(nmi_irq, xmon_irq, 0,
  337.     "NMI - XMON", 0);
  338. #endif /* CONFIG_XMON */
  339. return;
  340. }
  341. irqctrler = NULL;
  342. }
  343. /* Get the level/edge settings, assume if it's not
  344.  * a Grand Central nor an OHare, then it's an Heathrow
  345.  * (or Paddington).
  346.  */
  347. if (find_devices("gc"))
  348. level_mask[0] = GC_LEVEL_MASK;
  349. else if (find_devices("ohare")) {
  350. level_mask[0] = OHARE_LEVEL_MASK;
  351. /* We might have a second cascaded ohare */
  352. level_mask[1] = OHARE_LEVEL_MASK;
  353. } else {
  354. level_mask[0] = HEATHROW_LEVEL_MASK;
  355. level_mask[1] = 0;
  356. /* We might have a second cascaded heathrow */
  357. level_mask[2] = HEATHROW_LEVEL_MASK;
  358. level_mask[3] = 0;
  359. }
  360. /*
  361.  * G3 powermacs and 1999 G3 PowerBooks have 64 interrupts,
  362.  * 1998 G3 Series PowerBooks have 128, 
  363.  * other powermacs have 32.
  364.  * The combo ethernet/modem card for the Powerstar powerbooks
  365.  * (2400/3400/3500, ohare based) has a second ohare chip
  366.  * effectively making a total of 64.
  367.  */
  368. max_irqs = max_real_irqs = 32;
  369. irqctrler = find_devices("mac-io");
  370. if (irqctrler)
  371. {
  372. max_real_irqs = 64;
  373. if (irqctrler->next)
  374. max_irqs = 128;
  375. else
  376. max_irqs = 64;
  377. }
  378. for ( i = 0; i < max_real_irqs ; i++ )
  379. irq_desc[i].handler = &pmac_pic;
  380. /* get addresses of first controller */
  381. if (irqctrler) {
  382. if  (irqctrler->n_addrs > 0) {
  383. addr = (unsigned long) 
  384. ioremap(irqctrler->addrs[0].address, 0x40);
  385. for (i = 0; i < 2; ++i)
  386. pmac_irq_hw[i] = (volatile struct pmac_irq_hw*)
  387. (addr + (2 - i) * 0x10);
  388. }
  389. /* get addresses of second controller */
  390. irqctrler = irqctrler->next;
  391. if (irqctrler && irqctrler->n_addrs > 0) {
  392. addr = (unsigned long) 
  393. ioremap(irqctrler->addrs[0].address, 0x40);
  394. for (i = 2; i < 4; ++i)
  395. pmac_irq_hw[i] = (volatile struct pmac_irq_hw*)
  396. (addr + (4 - i) * 0x10);
  397. irq_cascade = irqctrler->intrs[0].line;
  398. if (device_is_compatible(irqctrler, "gatwick"))
  399. pmac_fix_gatwick_interrupts(irqctrler, max_real_irqs);
  400. }
  401. } else {
  402. /* older powermacs have a GC (grand central) or ohare at
  403.    f3000000, with interrupt control registers at f3000020. */
  404. addr = (unsigned long) ioremap(0xf3000000, 0x40);
  405. pmac_irq_hw[0] = (volatile struct pmac_irq_hw *) (addr + 0x20);
  406. }
  407. /* PowerBooks 3400 and 3500 can have a second controller in a second
  408.    ohare chip, on the combo ethernet/modem card */
  409. if (machine_is_compatible("AAPL,3400/2400")
  410.      || machine_is_compatible("AAPL,3500"))
  411. irq_cascade = enable_second_ohare();
  412. /* disable all interrupts in all controllers */
  413. for (i = 0; i * 32 < max_irqs; ++i)
  414. out_le32(&pmac_irq_hw[i]->enable, 0);
  415. /* mark level interrupts */
  416. for (i = 0; i < max_irqs; i++)
  417. if (level_mask[i >> 5] & (1UL << (i & 0x1f)))
  418. irq_desc[i].status = IRQ_LEVEL;
  419. /* get interrupt line of secondary interrupt controller */
  420. if (irq_cascade >= 0) {
  421. printk(KERN_INFO "irq: secondary controller on irq %dn",
  422. (int)irq_cascade);
  423. for ( i = max_real_irqs ; i < max_irqs ; i++ )
  424. irq_desc[i].handler = &gatwick_pic;
  425. request_irq( irq_cascade, gatwick_action, SA_INTERRUPT,
  426.      "cascade", 0 );
  427. }
  428. printk("System has %d possible interruptsn", max_irqs);
  429. if (max_irqs != max_real_irqs)
  430. printk(KERN_DEBUG "%d interrupts on main controllern",
  431. max_real_irqs);
  432. #ifdef CONFIG_XMON
  433. request_irq(20, xmon_irq, 0, "NMI - XMON", 0);
  434. #endif /* CONFIG_XMON */
  435. }
  436. #ifdef CONFIG_PMAC_PBOOK
  437. /*
  438.  * These procedures are used in implementing sleep on the powerbooks.
  439.  * sleep_save_intrs() saves the states of all interrupt enables
  440.  * and disables all interrupts except for the nominated one.
  441.  * sleep_restore_intrs() restores the states of all interrupt enables.
  442.  */
  443. unsigned int sleep_save_mask[2];
  444. void __pmac
  445. pmac_sleep_save_intrs(int viaint)
  446. {
  447. sleep_save_mask[0] = ppc_cached_irq_mask[0];
  448. sleep_save_mask[1] = ppc_cached_irq_mask[1];
  449. ppc_cached_irq_mask[0] = 0;
  450. ppc_cached_irq_mask[1] = 0;
  451. if (viaint > 0)
  452. set_bit(viaint, ppc_cached_irq_mask);
  453. out_le32(&pmac_irq_hw[0]->enable, ppc_cached_irq_mask[0]);
  454. if (max_real_irqs > 32)
  455. out_le32(&pmac_irq_hw[1]->enable, ppc_cached_irq_mask[1]);
  456. (void)in_le32(&pmac_irq_hw[0]->event);
  457. /* make sure mask gets to controller before we return to caller */
  458. mb();
  459.         (void)in_le32(&pmac_irq_hw[0]->enable);
  460. }
  461. void __pmac
  462. pmac_sleep_restore_intrs(void)
  463. {
  464. int i;
  465. out_le32(&pmac_irq_hw[0]->enable, 0);
  466. if (max_real_irqs > 32)
  467. out_le32(&pmac_irq_hw[1]->enable, 0);
  468. mb();
  469. for (i = 0; i < max_real_irqs; ++i)
  470. if (test_bit(i, sleep_save_mask))
  471. pmac_unmask_irq(i);
  472. }
  473. #endif /* CONFIG_PMAC_PBOOK */