sun4i_framebuffer.c 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /*
  2. * Copyright (C) 2015 Free Electrons
  3. * Copyright (C) 2015 NextThing Co
  4. *
  5. * Maxime Ripard <maxime.ripard@free-electrons.com>
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License as
  9. * published by the Free Software Foundation; either version 2 of
  10. * the License, or (at your option) any later version.
  11. */
  12. #include <drm/drm_atomic.h>
  13. #include <drm/drm_atomic_helper.h>
  14. #include <drm/drm_fb_helper.h>
  15. #include <drm/drm_fb_cma_helper.h>
  16. #include <drm/drm_gem_framebuffer_helper.h>
  17. #include <drm/drmP.h>
  18. #include "sun4i_drv.h"
  19. #include "sun4i_framebuffer.h"
  20. static int sun4i_de_atomic_check(struct drm_device *dev,
  21. struct drm_atomic_state *state)
  22. {
  23. int ret;
  24. ret = drm_atomic_helper_check_modeset(dev, state);
  25. if (ret)
  26. return ret;
  27. ret = drm_atomic_normalize_zpos(dev, state);
  28. if (ret)
  29. return ret;
  30. return drm_atomic_helper_check_planes(dev, state);
  31. }
  32. static const struct drm_mode_config_funcs sun4i_de_mode_config_funcs = {
  33. .output_poll_changed = drm_fb_helper_output_poll_changed,
  34. .atomic_check = sun4i_de_atomic_check,
  35. .atomic_commit = drm_atomic_helper_commit,
  36. .fb_create = drm_gem_fb_create,
  37. };
  38. static struct drm_mode_config_helper_funcs sun4i_de_mode_config_helpers = {
  39. .atomic_commit_tail = drm_atomic_helper_commit_tail_rpm,
  40. };
  41. int sun4i_framebuffer_init(struct drm_device *drm)
  42. {
  43. drm_mode_config_reset(drm);
  44. drm->mode_config.max_width = 8192;
  45. drm->mode_config.max_height = 8192;
  46. drm->mode_config.funcs = &sun4i_de_mode_config_funcs;
  47. drm->mode_config.helper_private = &sun4i_de_mode_config_helpers;
  48. return drm_fb_cma_fbdev_init(drm, 32, 0);
  49. }
  50. void sun4i_framebuffer_free(struct drm_device *drm)
  51. {
  52. drm_fb_cma_fbdev_fini(drm);
  53. }