power.h 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /**************************************************************************
  2. * Copyright (c) 2009-2011, Intel Corporation.
  3. * All Rights Reserved.
  4. * Permission is hereby granted, free of charge, to any person obtaining a
  5. * copy of this software and associated documentation files (the "Software"),
  6. * to deal in the Software without restriction, including without limitation
  7. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  8. * and/or sell copies of the Software, and to permit persons to whom the
  9. * Software is furnished to do so, subject to the following conditions:
  10. *
  11. * The above copyright notice and this permission notice (including the next
  12. * paragraph) shall be included in all copies or substantial portions of the
  13. * Software.
  14. *
  15. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  16. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  17. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  18. * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  19. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  20. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  21. * SOFTWARE.
  22. *
  23. * Authors:
  24. * Benjamin Defnet <benjamin.r.defnet@intel.com>
  25. * Rajesh Poornachandran <rajesh.poornachandran@intel.com>
  26. * Massively reworked
  27. * Alan Cox <alan@linux.intel.com>
  28. */
  29. #ifndef _PSB_POWERMGMT_H_
  30. #define _PSB_POWERMGMT_H_
  31. #include <linux/pci.h>
  32. #include <drm/drmP.h>
  33. void gma_power_init(struct drm_device *dev);
  34. void gma_power_uninit(struct drm_device *dev);
  35. /*
  36. * The kernel bus power management will call these functions
  37. */
  38. int gma_power_suspend(struct device *dev);
  39. int gma_power_resume(struct device *dev);
  40. int gma_power_thaw(struct device *dev);
  41. int gma_power_freeze(struct device *dev);
  42. int gma_power_restore(struct device *_dev);
  43. /*
  44. * These are the functions the driver should use to wrap all hw access
  45. * (i.e. register reads and writes)
  46. */
  47. bool gma_power_begin(struct drm_device *dev, bool force);
  48. void gma_power_end(struct drm_device *dev);
  49. /*
  50. * Use this function to do an instantaneous check for if the hw is on.
  51. * Only use this in cases where you know the mutex is already held such
  52. * as in irq install/uninstall and you need to
  53. * prevent a deadlock situation. Otherwise use gma_power_begin().
  54. */
  55. bool gma_power_is_on(struct drm_device *dev);
  56. /*
  57. * GFX-Runtime PM callbacks
  58. */
  59. int psb_runtime_suspend(struct device *dev);
  60. int psb_runtime_resume(struct device *dev);
  61. int psb_runtime_idle(struct device *dev);
  62. #endif /*_PSB_POWERMGMT_H_*/