mdp5_pipe.h 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /*
  2. * Copyright (C) 2016 Red Hat
  3. * Author: Rob Clark <robdclark@gmail.com>
  4. *
  5. * This program is free software; you can redistribute it and/or modify it
  6. * under the terms of the GNU General Public License version 2 as published by
  7. * the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope that it will be useful, but WITHOUT
  10. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  12. * more details.
  13. *
  14. * You should have received a copy of the GNU General Public License along with
  15. * this program. If not, see <http://www.gnu.org/licenses/>.
  16. */
  17. #ifndef __MDP5_PIPE_H__
  18. #define __MDP5_PIPE_H__
  19. #define SSPP_MAX (SSPP_RGB3 + 1) /* TODO: Add SSPP_MAX in mdp5.xml.h */
  20. /* represents a hw pipe, which is dynamically assigned to a plane */
  21. struct mdp5_hw_pipe {
  22. int idx;
  23. const char *name;
  24. enum mdp5_pipe pipe;
  25. spinlock_t pipe_lock; /* protect REG_MDP5_PIPE_* registers */
  26. uint32_t reg_offset;
  27. uint32_t caps;
  28. uint32_t flush_mask; /* used to commit pipe registers */
  29. /* number of smp blocks per plane, ie:
  30. * nblks_y | (nblks_u << 8) | (nblks_v << 16)
  31. */
  32. uint32_t blkcfg;
  33. };
  34. /* global atomic state of assignment between pipes and planes: */
  35. struct mdp5_hw_pipe_state {
  36. struct drm_plane *hwpipe_to_plane[SSPP_MAX];
  37. };
  38. struct mdp5_hw_pipe *__must_check
  39. mdp5_pipe_assign(struct drm_atomic_state *s, struct drm_plane *plane,
  40. uint32_t caps, uint32_t blkcfg);
  41. void mdp5_pipe_release(struct drm_atomic_state *s, struct mdp5_hw_pipe *hwpipe);
  42. struct mdp5_hw_pipe *mdp5_pipe_init(enum mdp5_pipe pipe,
  43. uint32_t reg_offset, uint32_t caps);
  44. void mdp5_pipe_destroy(struct mdp5_hw_pipe *hwpipe);
  45. #endif /* __MDP5_PIPE_H__ */