drm_panel.h 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. /*
  2. * Copyright (C) 2013, NVIDIA Corporation. All rights reserved.
  3. *
  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, sub license,
  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
  12. * next paragraph) shall be included in all copies or substantial portions
  13. * of the 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 NON-INFRINGEMENT. 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
  20. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  21. * DEALINGS IN THE SOFTWARE.
  22. */
  23. #ifndef __DRM_PANEL_H__
  24. #define __DRM_PANEL_H__
  25. #include <linux/list.h>
  26. struct drm_connector;
  27. struct drm_device;
  28. struct drm_panel;
  29. struct drm_panel_funcs {
  30. int (*disable)(struct drm_panel *panel);
  31. int (*enable)(struct drm_panel *panel);
  32. int (*get_modes)(struct drm_panel *panel);
  33. };
  34. struct drm_panel {
  35. struct drm_device *drm;
  36. struct drm_connector *connector;
  37. struct device *dev;
  38. const struct drm_panel_funcs *funcs;
  39. struct list_head list;
  40. };
  41. static inline int drm_panel_disable(struct drm_panel *panel)
  42. {
  43. if (panel && panel->funcs && panel->funcs->disable)
  44. return panel->funcs->disable(panel);
  45. return panel ? -ENOSYS : -EINVAL;
  46. }
  47. static inline int drm_panel_enable(struct drm_panel *panel)
  48. {
  49. if (panel && panel->funcs && panel->funcs->enable)
  50. return panel->funcs->enable(panel);
  51. return panel ? -ENOSYS : -EINVAL;
  52. }
  53. void drm_panel_init(struct drm_panel *panel);
  54. int drm_panel_add(struct drm_panel *panel);
  55. void drm_panel_remove(struct drm_panel *panel);
  56. int drm_panel_attach(struct drm_panel *panel, struct drm_connector *connector);
  57. int drm_panel_detach(struct drm_panel *panel);
  58. #ifdef CONFIG_OF
  59. struct drm_panel *of_drm_find_panel(struct device_node *np);
  60. #else
  61. static inline struct drm_panel *of_drm_find_panel(struct device_node *np)
  62. {
  63. return NULL;
  64. }
  65. #endif
  66. #endif