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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * ASP Device Driver
  3.  *
  4.  * (c) Copyright 2000 The Puffin Group Inc.
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License as published by
  8.  *      the Free Software Foundation; either version 2 of the License, or
  9.  *      (at your option) any later version.
  10.  *
  11.  * by Helge Deller <deller@gmx.de>
  12.  */
  13. #include <linux/errno.h>
  14. #include <linux/init.h>
  15. #include <linux/irq.h>
  16. #include <linux/module.h>
  17. #include <linux/slab.h>
  18. #include <linux/types.h>
  19. #include <asm/gsc.h>
  20. #include <asm/led.h>
  21. #include "busdevice.h"
  22. #define ASP_GSC_IRQ 3 /* hardcoded interrupt for GSC */
  23. #define ASP_VER_OFFSET  0x20 /* offset of ASP version */
  24. #define ASP_LED_ADDR 0xf0800020
  25. #define VIPER_INT_WORD  0xFFFBF088      /* addr of viper interrupt word */
  26. static int asp_choose_irq(struct parisc_device *dev)
  27. {
  28. int irq = -1;
  29. switch (dev->id.sversion) {
  30. case 0x71: irq = 22; break; /* SCSI */
  31. case 0x72: irq = 23; break; /* LAN */
  32. case 0x73: irq = 30; break; /* HIL */
  33. case 0x74: irq = 24; break; /* Centronics */
  34. case 0x75: irq = (dev->hw_path == 4) ? 26 : 25; break; /* RS232 */
  35. case 0x76: irq = 21; break; /* EISA BA */
  36. case 0x77: irq = 20; break; /* Graphics1 */
  37. case 0x7a: irq = 18; break; /* Audio (Bushmaster) */
  38. case 0x7b: irq = 18; break; /* Audio (Scorpio) */
  39. case 0x7c: irq = 28; break; /* FW SCSI */
  40. case 0x7d: irq = 27; break; /* FDDI */
  41. case 0x7f: irq = 18; break; /* Audio (Outfield) */
  42. }
  43. return irq;
  44. }
  45. /* There are two register ranges we're interested in.  Interrupt /
  46.  * Status / LED are at 0xf080xxxx and Asp special registers are at
  47.  * 0xf082fxxx.  PDC only tells us that Asp is at 0xf082f000, so for
  48.  * the purposes of interrupt handling, we have to tell other bits of
  49.  * the kernel to look at the other registers.
  50.  */
  51. #define ASP_INTERRUPT_ADDR 0xf0800000
  52. int __init
  53. asp_init_chip(struct parisc_device *dev)
  54. {
  55. struct busdevice *asp;
  56. struct gsc_irq gsc_irq;
  57. int irq, ret;
  58. asp = kmalloc(sizeof(struct busdevice), GFP_KERNEL);
  59. if(!asp)
  60. return -ENOMEM;
  61. asp->version = gsc_readb(dev->hpa + ASP_VER_OFFSET) & 0xf;
  62. asp->name = (asp->version == 1) ? "Asp" : "Cutoff";
  63. asp->hpa = ASP_INTERRUPT_ADDR;
  64. printk(KERN_INFO "%s version %d at 0x%lx found.n", 
  65. asp->name, asp->version, dev->hpa);
  66. /* the IRQ ASP should use */
  67. ret = -EBUSY;
  68. irq = gsc_claim_irq(&gsc_irq, ASP_GSC_IRQ);
  69. if (irq < 0) {
  70. printk(KERN_ERR "%s(): cannot get GSC irqn", __FUNCTION__);
  71. goto out;
  72. }
  73. ret = request_irq(gsc_irq.irq, busdev_barked, 0, "asp", asp);
  74. if (ret < 0)
  75. goto out;
  76. /* Save this for debugging later */
  77. asp->parent_irq = gsc_irq.irq;
  78. asp->eim = ((u32) gsc_irq.txn_addr) | gsc_irq.txn_data;
  79. /* Program VIPER to interrupt on the ASP irq */
  80. gsc_writel((1 << (31 - ASP_GSC_IRQ)),VIPER_INT_WORD);
  81. /* Done init'ing, register this driver */
  82. ret = gsc_common_irqsetup(dev, asp);
  83. if (ret)
  84. goto out;
  85. fixup_child_irqs(dev, asp->busdev_region->data.irqbase, asp_choose_irq);
  86. /* Mongoose is a sibling of Asp, not a child... */
  87. fixup_child_irqs(dev->parent, asp->busdev_region->data.irqbase,
  88. asp_choose_irq);
  89. /* initialize the chassis LEDs */ 
  90. #ifdef CONFIG_CHASSIS_LCD_LED
  91. register_led_driver(DISPLAY_MODEL_OLD_ASP, LED_CMD_REG_NONE, 
  92.     (char *)ASP_LED_ADDR);
  93. #endif
  94. return 0;
  95. out:
  96. kfree(asp);
  97. return ret;
  98. }
  99. static struct parisc_device_id asp_tbl[] = {
  100. { HPHW_BA, HVERSION_REV_ANY_ID, HVERSION_ANY_ID, 0x00070 },
  101. { 0, }
  102. };
  103. struct parisc_driver asp_driver = {
  104. name: "Asp",
  105. id_table: asp_tbl,
  106. probe: asp_init_chip,
  107. };