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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*******************************************************************************
  2. *
  3. *      "cs4281pm.c" --  Cirrus Logic-Crystal CS4281 linux audio driver.
  4. *
  5. *      Copyright (C) 2000,2001  Cirrus Logic Corp.  
  6. *            -- tom woller (twoller@crystal.cirrus.com) or
  7. *               (pcaudio@crystal.cirrus.com).
  8. *
  9. *      This program is free software; you can redistribute it and/or modify
  10. *      it under the terms of the GNU General Public License as published by
  11. *      the Free Software Foundation; either version 2 of the License, or
  12. *      (at your option) any later version.
  13. *
  14. *      This program is distributed in the hope that it will be useful,
  15. *      but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17. *      GNU General Public License for more details.
  18. *
  19. *      You should have received a copy of the GNU General Public License
  20. *      along with this program; if not, write to the Free Software
  21. *      Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  22. *
  23. * 12/22/00 trw - new file. 
  24. *
  25. *******************************************************************************/
  26. #ifndef NOT_CS4281_PM
  27. #if CS4281_PCI_PM_SUPPORT_ENABLE
  28. #if LINUX_VERSION_CODE > KERNEL_VERSION(2,4,12)
  29. static int cs4281_suspend_tbl(struct pci_dev *pcidev, u32 unused)
  30. {
  31. struct cs4281_state *s = pci_get_drvdata(pcidev);
  32. cs4281_suspend(s);
  33. return 0;
  34. }
  35. static int cs4281_resume_tbl(struct pci_dev *pcidev)
  36. {
  37. struct cs4281_state *s = pci_get_drvdata(pcidev);
  38. cs4281_resume(s);
  39. return 0;
  40. }
  41. #else
  42. void cs4281_suspend_tbl(struct pci_dev *pcidev)
  43. {
  44. struct cs4281_state *s = pci_get_drvdata(pcidev);
  45. cs4281_suspend(s);
  46. return;
  47. }
  48. void cs4281_resume_tbl(struct pci_dev *pcidev)
  49. {
  50. struct cs4281_state *s = pci_get_drvdata(pcidev);
  51. cs4281_resume(s);
  52. return;
  53. }
  54. #endif
  55. #else
  56. int cs4281_pm_callback(struct pm_dev *dev, pm_request_t rqst, void *data)
  57. {
  58. struct cs4281_state *state;
  59. CS_DBGOUT(CS_PM, 2, printk(
  60. "cs4281: cs4281_pm_callback()+ dev=0x%x rqst=0x%x state=%dn",
  61. (unsigned)dev,(unsigned)rqst,(unsigned)data));
  62. state = (struct cs4281_state *) dev->data;
  63. if (state) {
  64. switch(rqst) {
  65. case PM_SUSPEND:
  66. CS_DBGOUT(CS_PM, 2, printk(KERN_INFO
  67. "cs4281: PM suspend requestn"));
  68. if(cs4281_suspend(state))
  69. {
  70.     CS_DBGOUT(CS_ERROR, 2, printk(KERN_INFO
  71. "cs4281: PM suspend request refusedn"));
  72. return 1; 
  73. }
  74. break;
  75. case PM_RESUME:
  76. CS_DBGOUT(CS_PM, 2, printk(KERN_INFO
  77. "cs4281: PM resume requestn"));
  78. if(cs4281_resume(state))
  79. {
  80.     CS_DBGOUT(CS_ERROR, 2, printk(KERN_INFO
  81. "cs4281: PM resume request refusedn"));
  82. return 1;
  83. }
  84. break;
  85. }
  86. }
  87. CS_DBGOUT(CS_PM, 2, printk("cs4281: cs4281_pm_callback()- 0n"));
  88. return 0;
  89. }
  90. #endif //#if CS4281_PCI_PM_SUPPORT_ENABLE
  91. #else /* NOT_CS4281_PM */
  92. #define CS4281_SUSPEND_TBL cs4281_null_suspend
  93. #define CS4281_RESUME_TBL cs4281_null_resume
  94. #endif /* NOT_CS4281_PM */