power.h 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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. /*
  41. * These are the functions the driver should use to wrap all hw access
  42. * (i.e. register reads and writes)
  43. */
  44. bool gma_power_begin(struct drm_device *dev, bool force);
  45. void gma_power_end(struct drm_device *dev);
  46. /*
  47. * Use this function to do an instantaneous check for if the hw is on.
  48. * Only use this in cases where you know the mutex is already held such
  49. * as in irq install/uninstall and you need to
  50. * prevent a deadlock situation. Otherwise use gma_power_begin().
  51. */
  52. bool gma_power_is_on(struct drm_device *dev);
  53. /*
  54. * GFX-Runtime PM callbacks
  55. */
  56. int psb_runtime_suspend(struct device *dev);
  57. int psb_runtime_resume(struct device *dev);
  58. int psb_runtime_idle(struct device *dev);
  59. #endif /*_PSB_POWERMGMT_H_*/