sun4i_framebuffer.c 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. // SPDX-License-Identifier: GPL-2.0-or-later
  2. /*
  3. * Copyright (C) 2015 Free Electrons
  4. * Copyright (C) 2015 NextThing Co
  5. *
  6. * Maxime Ripard <[email protected]>
  7. */
  8. #include <drm/drm_atomic.h>
  9. #include <drm/drm_atomic_helper.h>
  10. #include <drm/drm_blend.h>
  11. #include <drm/drm_gem_framebuffer_helper.h>
  12. #include "sun4i_drv.h"
  13. #include "sun4i_framebuffer.h"
  14. static int sun4i_de_atomic_check(struct drm_device *dev,
  15. struct drm_atomic_state *state)
  16. {
  17. int ret;
  18. ret = drm_atomic_helper_check_modeset(dev, state);
  19. if (ret)
  20. return ret;
  21. ret = drm_atomic_normalize_zpos(dev, state);
  22. if (ret)
  23. return ret;
  24. return drm_atomic_helper_check_planes(dev, state);
  25. }
  26. static const struct drm_mode_config_funcs sun4i_de_mode_config_funcs = {
  27. .atomic_check = sun4i_de_atomic_check,
  28. .atomic_commit = drm_atomic_helper_commit,
  29. .fb_create = drm_gem_fb_create,
  30. };
  31. static const struct drm_mode_config_helper_funcs sun4i_de_mode_config_helpers = {
  32. .atomic_commit_tail = drm_atomic_helper_commit_tail_rpm,
  33. };
  34. void sun4i_framebuffer_init(struct drm_device *drm)
  35. {
  36. drm_mode_config_reset(drm);
  37. drm->mode_config.max_width = 8192;
  38. drm->mode_config.max_height = 8192;
  39. drm->mode_config.funcs = &sun4i_de_mode_config_funcs;
  40. drm->mode_config.helper_private = &sun4i_de_mode_config_helpers;
  41. }