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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * LASI Device Driver
  3.  *
  4.  * (c) Copyright 1999 Red Hat Software
  5.  * Portions (c) Copyright 1999 The Puffin Group Inc.
  6.  * Portions (c) Copyright 1999 Hewlett-Packard
  7.  *
  8.  * This program is free software; you can redistribute it and/or modify
  9.  * it under the terms of the GNU General Public License as published by
  10.  *      the Free Software Foundation; either version 2 of the License, or
  11.  *      (at your option) any later version.
  12.  *
  13.  * by Alan Cox <alan@redhat.com> and 
  14.  *     Alex deVries <adevries@thepuffingroup.com> 
  15.  */
  16. #include <linux/errno.h>
  17. #include <linux/init.h>
  18. #include <linux/irq.h>
  19. #include <linux/slab.h>
  20. #include <linux/module.h>
  21. #include <linux/pm.h>
  22. #include <linux/slab.h>
  23. #include <linux/types.h>
  24. #include <asm/gsc.h>
  25. #include <asm/hardware.h>
  26. #include <asm/led.h>
  27. #include "busdevice.h"
  28. #define LASI_VER 0xC008 /* LASI Version */
  29. #define LASI_IO_CONF 0x7FFFE /* LASI primary configuration register */
  30. #define LASI_IO_CONF2 0x7FFFF /* LASI secondary configuration register */
  31. static int lasi_choose_irq(struct parisc_device *dev)
  32. {
  33. int irq;
  34. /*
  35. ** "irq" bits below are numbered relative to most significant bit.
  36. */
  37. switch (dev->id.sversion) {
  38. case 0x74: irq = 24; break; /* Centronics */
  39. case 0x7B: irq = 18; break; /* Audio */
  40. case 0x81: irq = 17; break; /* Lasi itself */
  41. case 0x82: irq = 22; break; /* SCSI */
  42. case 0x83: irq = 11; break; /* Floppy */
  43. case 0x84: irq =  5; break; /* PS/2 Keyboard */
  44. case 0x87: irq = 13; break; /* ISDN */
  45. case 0x8A: irq = 23; break; /* LAN */
  46. case 0x8C: irq = 26; break; /* RS232 */
  47. case 0x8D: irq = (dev->hw_path == 13) ? 15 : 14;
  48. break; /* Telephone */
  49. default:  irq = -1; break; /* unknown */
  50. }
  51. return irq;
  52. }
  53. static void __init
  54. lasi_init_irq(struct busdevice *this_lasi)
  55. {
  56. unsigned long lasi_base = this_lasi->hpa;
  57. /* Stop LASI barking for a bit */
  58. gsc_writel(0x00000000, lasi_base+OFFSET_IMR);
  59. /* clear pending interrupts */
  60. gsc_readl(lasi_base+OFFSET_IRR);
  61. /* We're not really convinced we want to reset the onboard
  62.          * devices. Firmware does it for us...
  63.  */
  64. /* Resets */
  65. /* gsc_writel(0xFFFFFFFF, lasi_base+0x2000);*/ /* Parallel */
  66. gsc_writel(0xFFFFFFFF, lasi_base+0x4004); /* Audio */
  67. /* gsc_writel(0xFFFFFFFF, lasi_base+0x5000);*/ /* Serial */ 
  68. /* gsc_writel(0xFFFFFFFF, lasi_base+0x6000);*/ /* SCSI */
  69. gsc_writel(0xFFFFFFFF, lasi_base+0x7000); /* LAN */
  70. gsc_writel(0xFFFFFFFF, lasi_base+0x8000); /* Keyboard */
  71. gsc_writel(0xFFFFFFFF, lasi_base+0xA000); /* FDC */
  72. /* Ok we hit it on the head with a hammer, our Dog is now
  73. ** comatose and muzzled.  Devices will now unmask LASI
  74. ** interrupts as they are registered as irq's in the LASI range.
  75. */
  76. /* XXX: I thought it was `awks that got `it on the `ead with an
  77.  * `ammer.  -- willy
  78.  */
  79. }
  80. /*
  81.    ** lasi_led_init()
  82.    ** 
  83.    ** lasi_led_init() initializes the LED controller on the LASI.
  84.    **
  85.    ** Since Mirage and Electra machines use a different LED
  86.    ** address register, we need to check for these machines 
  87.    ** explicitly.
  88.  */
  89. #ifndef CONFIG_CHASSIS_LCD_LED
  90. #define lasi_led_init(x) /* nothing */
  91. #else
  92. void __init lasi_led_init(unsigned long lasi_hpa)
  93. {
  94. unsigned long datareg;
  95. switch (CPU_HVERSION) {
  96. /* Gecko machines have only one single LED, which can be permanently 
  97.    turned on by writing a zero into the power control register. */ 
  98. case 0x600: /* Gecko (712/60) */
  99. case 0x601: /* Gecko (712/80) */
  100. case 0x602: /* Gecko (712/100) */
  101. case 0x603: /* Anole 64 (743/64) */
  102. case 0x604: /* Anole 100 (743/100) */
  103. case 0x605: /* Gecko (712/120) */
  104. datareg = lasi_hpa + 0x0000C000;
  105. gsc_writeb(0, datareg);
  106. return; /* no need to register the LED interrupt-function */  
  107. /* Mirage and Electra machines need special offsets */
  108. case 0x60A: /* Mirage Jr (715/64) */
  109. case 0x60B: /* Mirage 100 */
  110. case 0x60C: /* Mirage 100+ */
  111. case 0x60D: /* Electra 100 */
  112. case 0x60E: /* Electra 120 */
  113. datareg = lasi_hpa - 0x00020000;
  114. break;
  115. default:
  116. datareg = lasi_hpa + 0x0000C000;
  117. break;
  118. } /* switch() */
  119. register_led_driver(DISPLAY_MODEL_LASI, LED_CMD_REG_NONE, (char *)datareg);
  120. }
  121. #endif
  122. /*
  123.  * lasi_power_off
  124.  *
  125.  * Function for lasi to turn off the power.  This is accomplished by setting a
  126.  * 1 to PWR_ON_L in the Power Control Register
  127.  * 
  128.  */
  129. static unsigned long lasi_power_off_hpa;
  130. static void lasi_power_off(void)
  131. {
  132. unsigned long datareg;
  133. /* calculate addr of the Power Control Register */
  134. datareg = lasi_power_off_hpa + 0x0000C000;
  135. /* Power down the machine */
  136. gsc_writel(0x02, datareg);
  137. }
  138. int __init
  139. lasi_init_chip(struct parisc_device *dev)
  140. {
  141. struct busdevice *lasi;
  142. struct gsc_irq gsc_irq;
  143. int irq, ret;
  144. lasi = kmalloc(sizeof(struct busdevice), GFP_KERNEL);
  145. if (!lasi)
  146. return -ENOMEM;
  147. lasi->name = "Lasi";
  148. lasi->hpa = dev->hpa;
  149. /* Check the 4-bit (yes, only 4) version register */
  150. lasi->version = gsc_readl(lasi->hpa + LASI_VER) & 0xf;
  151. printk(KERN_INFO "%s version %d at 0x%lx found.n",
  152. lasi->name, lasi->version, lasi->hpa);
  153. /* initialize the chassis LEDs really early */ 
  154. lasi_led_init(lasi->hpa);
  155. /* Stop LASI barking for a bit */
  156. lasi_init_irq(lasi);
  157. /* the IRQ lasi should use */
  158. irq = gsc_alloc_irq(&gsc_irq);
  159. if (irq < 0) {
  160. printk(KERN_ERR "%s(): cannot get GSC irqn",
  161. __FUNCTION__);
  162. kfree(lasi);
  163. return -EBUSY;
  164. }
  165. ret = request_irq(gsc_irq.irq, busdev_barked, 0, "lasi", lasi);
  166. if (ret < 0) {
  167. kfree(lasi);
  168. return ret;
  169. }
  170. /* Save this for debugging later */
  171. lasi->parent_irq = gsc_irq.irq;
  172. lasi->eim = ((u32) gsc_irq.txn_addr) | gsc_irq.txn_data;
  173. /* enable IRQ's for devices below LASI */
  174. gsc_writel(lasi->eim, lasi->hpa + OFFSET_IAR);
  175. /* Done init'ing, register this driver */
  176. ret = gsc_common_irqsetup(dev, lasi);
  177. if (ret) {
  178. kfree(lasi);
  179. return ret;
  180. }    
  181. fixup_child_irqs(dev, lasi->busdev_region->data.irqbase,
  182. lasi_choose_irq);
  183. /* initialize the power off function */
  184. /* FIXME: Record the LASI HPA for the power off function.  This should
  185.  * ensure that only the first LASI (the one controlling the power off)
  186.  * should set the HPA here */
  187. lasi_power_off_hpa = lasi->hpa;
  188. pm_power_off = lasi_power_off;
  189. return ret;
  190. }
  191. static struct parisc_device_id lasi_tbl[] = {
  192. { HPHW_BA, HVERSION_REV_ANY_ID, HVERSION_ANY_ID, 0x00081 },
  193. { 0, }
  194. };
  195. struct parisc_driver lasi_driver = {
  196. name: "Lasi",
  197. id_table: lasi_tbl,
  198. probe: lasi_init_chip,
  199. };