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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* pmc - Driver implementation for power management functions
  2.  * of Power Management Controller (PMC) on SPARCstation-Voyager.
  3.  *
  4.  * Copyright (c) 2002 Eric Brower (ebrower@usa.net)
  5.  */
  6. #include <linux/kernel.h>
  7. #include <linux/fs.h>
  8. #include <linux/errno.h>
  9. #include <linux/init.h>
  10. #include <linux/miscdevice.h>
  11. #include <linux/pm.h>
  12. #include <asm/io.h>
  13. #include <asm/sbus.h>
  14. #include <asm/oplib.h>
  15. #include <asm/uaccess.h>
  16. #include <asm/auxio.h>
  17. /* Debug
  18.  *
  19.  * #define PMC_DEBUG_LED
  20.  * #define PMC_NO_IDLE
  21.  */
  22. #define PMC_MINOR MISC_DYNAMIC_MINOR
  23. #define PMC_OBPNAME "SUNW,pmc"
  24. #define PMC_DEVNAME "pmc"
  25. #define PMC_IDLE_REG 0x00
  26. #define PMC_IDLE_ON 0x01
  27. volatile static u8 *regs; 
  28. static int pmc_regsize;
  29. #define pmc_readb(offs) (sbus_readb(regs+offs))
  30. #define pmc_writeb(val, offs)  (sbus_writeb(val, regs+offs))
  31. /* 
  32.  * CPU idle callback function
  33.  * See .../arch/sparc/kernel/process.c
  34.  */
  35. void pmc_swift_idle(void)
  36. {
  37. #ifdef PMC_DEBUG_LED
  38. set_auxio(0x00, AUXIO_LED); 
  39. #endif
  40. pmc_writeb(pmc_readb(PMC_IDLE_REG) | PMC_IDLE_ON, PMC_IDLE_REG);
  41. #ifdef PMC_DEBUG_LED
  42. set_auxio(AUXIO_LED, 0x00); 
  43. #endif
  44. static inline void pmc_free(void)
  45. {
  46. sbus_iounmap((unsigned long)regs, pmc_regsize);
  47. }
  48. static int __init pmc_probe(void)
  49. {
  50. struct sbus_bus *sbus = NULL;
  51. struct sbus_dev *sdev = NULL;
  52. for_each_sbus(sbus) {
  53. for_each_sbusdev(sdev, sbus) {
  54. if (!strcmp(sdev->prom_name, PMC_OBPNAME)) {
  55. goto sbus_done;
  56. }
  57. }
  58. }
  59. sbus_done:
  60. if (!sdev) {
  61. return -ENODEV;
  62. }
  63. pmc_regsize = sdev->reg_addrs[0].reg_size;
  64. regs = (u8*) sbus_ioremap(&sdev->resource[0], 0, 
  65.    pmc_regsize, PMC_OBPNAME);
  66. if(NULL == regs) {
  67. printk(KERN_ERR "%s: unable to map registersn", PMC_DEVNAME);
  68. return -ENODEV;
  69. }
  70. #ifndef PMC_NO_IDLE
  71. /* Assign power management IDLE handler */
  72. pm_idle = pmc_swift_idle;
  73. #endif
  74. printk(KERN_INFO "%s: power management initializedn", PMC_DEVNAME);
  75. return 0;
  76. }
  77. /* This driver is not critical to the boot process
  78.  * and is easiest to ioremap when SBus is already
  79.  * initialized, so we install ourselves thusly:
  80.  */
  81. __initcall(pmc_probe);