shmob_drm_kms.c 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. /*
  2. * shmob_drm_kms.c -- SH Mobile DRM Mode Setting
  3. *
  4. * Copyright (C) 2012 Renesas Electronics Corporation
  5. *
  6. * Laurent Pinchart (laurent.pinchart@ideasonboard.com)
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or
  11. * (at your option) any later version.
  12. */
  13. #include <drm/drmP.h>
  14. #include <drm/drm_crtc.h>
  15. #include <drm/drm_crtc_helper.h>
  16. #include <drm/drm_fb_cma_helper.h>
  17. #include <drm/drm_gem_cma_helper.h>
  18. #include <drm/drm_gem_framebuffer_helper.h>
  19. #include "shmob_drm_crtc.h"
  20. #include "shmob_drm_drv.h"
  21. #include "shmob_drm_kms.h"
  22. #include "shmob_drm_regs.h"
  23. /* -----------------------------------------------------------------------------
  24. * Format helpers
  25. */
  26. static const struct shmob_drm_format_info shmob_drm_format_infos[] = {
  27. {
  28. .fourcc = DRM_FORMAT_RGB565,
  29. .bpp = 16,
  30. .yuv = false,
  31. .lddfr = LDDFR_PKF_RGB16,
  32. }, {
  33. .fourcc = DRM_FORMAT_RGB888,
  34. .bpp = 24,
  35. .yuv = false,
  36. .lddfr = LDDFR_PKF_RGB24,
  37. }, {
  38. .fourcc = DRM_FORMAT_ARGB8888,
  39. .bpp = 32,
  40. .yuv = false,
  41. .lddfr = LDDFR_PKF_ARGB32,
  42. }, {
  43. .fourcc = DRM_FORMAT_NV12,
  44. .bpp = 12,
  45. .yuv = true,
  46. .lddfr = LDDFR_CC | LDDFR_YF_420,
  47. }, {
  48. .fourcc = DRM_FORMAT_NV21,
  49. .bpp = 12,
  50. .yuv = true,
  51. .lddfr = LDDFR_CC | LDDFR_YF_420,
  52. }, {
  53. .fourcc = DRM_FORMAT_NV16,
  54. .bpp = 16,
  55. .yuv = true,
  56. .lddfr = LDDFR_CC | LDDFR_YF_422,
  57. }, {
  58. .fourcc = DRM_FORMAT_NV61,
  59. .bpp = 16,
  60. .yuv = true,
  61. .lddfr = LDDFR_CC | LDDFR_YF_422,
  62. }, {
  63. .fourcc = DRM_FORMAT_NV24,
  64. .bpp = 24,
  65. .yuv = true,
  66. .lddfr = LDDFR_CC | LDDFR_YF_444,
  67. }, {
  68. .fourcc = DRM_FORMAT_NV42,
  69. .bpp = 24,
  70. .yuv = true,
  71. .lddfr = LDDFR_CC | LDDFR_YF_444,
  72. },
  73. };
  74. const struct shmob_drm_format_info *shmob_drm_format_info(u32 fourcc)
  75. {
  76. unsigned int i;
  77. for (i = 0; i < ARRAY_SIZE(shmob_drm_format_infos); ++i) {
  78. if (shmob_drm_format_infos[i].fourcc == fourcc)
  79. return &shmob_drm_format_infos[i];
  80. }
  81. return NULL;
  82. }
  83. /* -----------------------------------------------------------------------------
  84. * Frame buffer
  85. */
  86. static struct drm_framebuffer *
  87. shmob_drm_fb_create(struct drm_device *dev, struct drm_file *file_priv,
  88. const struct drm_mode_fb_cmd2 *mode_cmd)
  89. {
  90. const struct shmob_drm_format_info *format;
  91. format = shmob_drm_format_info(mode_cmd->pixel_format);
  92. if (format == NULL) {
  93. dev_dbg(dev->dev, "unsupported pixel format %08x\n",
  94. mode_cmd->pixel_format);
  95. return ERR_PTR(-EINVAL);
  96. }
  97. if (mode_cmd->pitches[0] & 7 || mode_cmd->pitches[0] >= 65536) {
  98. dev_dbg(dev->dev, "invalid pitch value %u\n",
  99. mode_cmd->pitches[0]);
  100. return ERR_PTR(-EINVAL);
  101. }
  102. if (format->yuv) {
  103. unsigned int chroma_cpp = format->bpp == 24 ? 2 : 1;
  104. if (mode_cmd->pitches[1] != mode_cmd->pitches[0] * chroma_cpp) {
  105. dev_dbg(dev->dev,
  106. "luma and chroma pitches do not match\n");
  107. return ERR_PTR(-EINVAL);
  108. }
  109. }
  110. return drm_gem_fb_create(dev, file_priv, mode_cmd);
  111. }
  112. static const struct drm_mode_config_funcs shmob_drm_mode_config_funcs = {
  113. .fb_create = shmob_drm_fb_create,
  114. };
  115. int shmob_drm_modeset_init(struct shmob_drm_device *sdev)
  116. {
  117. drm_mode_config_init(sdev->ddev);
  118. shmob_drm_crtc_create(sdev);
  119. shmob_drm_encoder_create(sdev);
  120. shmob_drm_connector_create(sdev, &sdev->encoder.encoder);
  121. drm_kms_helper_poll_init(sdev->ddev);
  122. sdev->ddev->mode_config.min_width = 0;
  123. sdev->ddev->mode_config.min_height = 0;
  124. sdev->ddev->mode_config.max_width = 4095;
  125. sdev->ddev->mode_config.max_height = 4095;
  126. sdev->ddev->mode_config.funcs = &shmob_drm_mode_config_funcs;
  127. drm_helper_disable_unused_functions(sdev->ddev);
  128. return 0;
  129. }