mdp5_pipe.h 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. /* TODO: Add SSPP_MAX in mdp5.xml.h */
  20. #define SSPP_MAX (SSPP_CURSOR1 + 1)
  21. /* represents a hw pipe, which is dynamically assigned to a plane */
  22. struct mdp5_hw_pipe {
  23. int idx;
  24. const char *name;
  25. enum mdp5_pipe pipe;
  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. int mdp5_pipe_assign(struct drm_atomic_state *s, struct drm_plane *plane,
  39. uint32_t caps, uint32_t blkcfg,
  40. struct mdp5_hw_pipe **hwpipe,
  41. struct mdp5_hw_pipe **r_hwpipe);
  42. void mdp5_pipe_release(struct drm_atomic_state *s, struct mdp5_hw_pipe *hwpipe);
  43. struct mdp5_hw_pipe *mdp5_pipe_init(enum mdp5_pipe pipe,
  44. uint32_t reg_offset, uint32_t caps);
  45. void mdp5_pipe_destroy(struct mdp5_hw_pipe *hwpipe);
  46. #endif /* __MDP5_PIPE_H__ */