exynos_drm.h 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. /* exynos_drm.h
  2. *
  3. * Copyright (c) 2011 Samsung Electronics Co., Ltd.
  4. * Authors:
  5. * Inki Dae <inki.dae@samsung.com>
  6. * Joonyoung Shim <jy0922.shim@samsung.com>
  7. * Seung-Woo Kim <sw0312.kim@samsung.com>
  8. *
  9. * Permission is hereby granted, free of charge, to any person obtaining a
  10. * copy of this software and associated documentation files (the "Software"),
  11. * to deal in the Software without restriction, including without limitation
  12. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  13. * and/or sell copies of the Software, and to permit persons to whom the
  14. * Software is furnished to do so, subject to the following conditions:
  15. *
  16. * The above copyright notice and this permission notice (including the next
  17. * paragraph) shall be included in all copies or substantial portions of the
  18. * Software.
  19. *
  20. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  21. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  22. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  23. * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
  24. * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  25. * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  26. * OTHER DEALINGS IN THE SOFTWARE.
  27. */
  28. #ifndef _EXYNOS_DRM_H_
  29. #define _EXYNOS_DRM_H_
  30. /**
  31. * User-desired buffer creation information structure.
  32. *
  33. * @size: requested size for the object.
  34. * - this size value would be page-aligned internally.
  35. * @flags: user request for setting memory type or cache attributes.
  36. * @handle: returned handle for the object.
  37. */
  38. struct drm_exynos_gem_create {
  39. unsigned int size;
  40. unsigned int flags;
  41. unsigned int handle;
  42. };
  43. /**
  44. * A structure for getting buffer offset.
  45. *
  46. * @handle: a pointer to gem object created.
  47. * @pad: just padding to be 64-bit aligned.
  48. * @offset: relatived offset value of the memory region allocated.
  49. * - this value should be set by user.
  50. */
  51. struct drm_exynos_gem_map_off {
  52. unsigned int handle;
  53. unsigned int pad;
  54. uint64_t offset;
  55. };
  56. /**
  57. * A structure for mapping buffer.
  58. *
  59. * @handle: a handle to gem object created.
  60. * @size: memory size to be mapped.
  61. * @mapped: having user virtual address mmaped.
  62. * - this variable would be filled by exynos gem module
  63. * of kernel side with user virtual address which is allocated
  64. * by do_mmap().
  65. */
  66. struct drm_exynos_gem_mmap {
  67. unsigned int handle;
  68. unsigned int size;
  69. uint64_t mapped;
  70. };
  71. #define DRM_EXYNOS_GEM_CREATE 0x00
  72. #define DRM_EXYNOS_GEM_MAP_OFFSET 0x01
  73. #define DRM_EXYNOS_GEM_MMAP 0x02
  74. #define DRM_IOCTL_EXYNOS_GEM_CREATE DRM_IOWR(DRM_COMMAND_BASE + \
  75. DRM_EXYNOS_GEM_CREATE, struct drm_exynos_gem_create)
  76. #define DRM_IOCTL_EXYNOS_GEM_MAP_OFFSET DRM_IOWR(DRM_COMMAND_BASE + \
  77. DRM_EXYNOS_GEM_MAP_OFFSET, struct drm_exynos_gem_map_off)
  78. #define DRM_IOCTL_EXYNOS_GEM_MMAP DRM_IOWR(DRM_COMMAND_BASE + \
  79. DRM_EXYNOS_GEM_MMAP, struct drm_exynos_gem_mmap)
  80. /**
  81. * Platform Specific Structure for DRM based FIMD.
  82. *
  83. * @timing: default video mode for initializing
  84. * @default_win: default window layer number to be used for UI.
  85. * @bpp: default bit per pixel.
  86. */
  87. struct exynos_drm_fimd_pdata {
  88. struct fb_videomode timing;
  89. u32 vidcon0;
  90. u32 vidcon1;
  91. unsigned int default_win;
  92. unsigned int bpp;
  93. };
  94. #endif