sun4i_framebuffer.c 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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_helper.h>
  13. #include <drm/drm_fb_cma_helper.h>
  14. #include <drm/drmP.h>
  15. #include "sun4i_drv.h"
  16. static void sun4i_de_output_poll_changed(struct drm_device *drm)
  17. {
  18. struct sun4i_drv *drv = drm->dev_private;
  19. drm_fbdev_cma_hotplug_event(drv->fbdev);
  20. }
  21. static const struct drm_mode_config_funcs sun4i_de_mode_config_funcs = {
  22. .output_poll_changed = sun4i_de_output_poll_changed,
  23. .atomic_check = drm_atomic_helper_check,
  24. .atomic_commit = drm_atomic_helper_commit,
  25. .fb_create = drm_fb_cma_create,
  26. };
  27. struct drm_fbdev_cma *sun4i_framebuffer_init(struct drm_device *drm)
  28. {
  29. drm_mode_config_reset(drm);
  30. drm->mode_config.max_width = 8192;
  31. drm->mode_config.max_height = 8192;
  32. drm->mode_config.funcs = &sun4i_de_mode_config_funcs;
  33. return drm_fbdev_cma_init(drm, 32,
  34. drm->mode_config.num_crtc,
  35. drm->mode_config.num_connector);
  36. }
  37. void sun4i_framebuffer_free(struct drm_device *drm)
  38. {
  39. struct sun4i_drv *drv = drm->dev_private;
  40. drm_fbdev_cma_fini(drv->fbdev);
  41. drm_mode_config_cleanup(drm);
  42. }