summaryrefslogtreecommitdiffstats
path: root/exynos.c
Commit message (Collapse)AuthorAgeFilesLines
* minigbm: factor out metadata from struct boGurchetan Singh2019-09-241-10/+10
| | | | | | | | | | | | | | | | | | | | Generated using coccinelle: @@ struct bo *B; @@ - B->width + B->width BUG=chromium:924405 TEST=compile Change-Id: I4da1731a650d198ce7f2bda3031a47b2f9c3041c Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/minigbm/+/1815566 Reviewed-by: Stéphane Marchesin <marcheu@chromium.org> Tested-by: Gurchetan Singh <gurchetansingh@chromium.org> Legacy-Commit-Queue: Commit Bot <commit-bot@chromium.org>
* minigbm: Fix consistency in return valuesStéphane Marchesin2019-03-261-0/+1
| | | | | | | | | | | | | | minigbm functions don't use errno; however drmIoctl does. So we need to return -errno instead of returning exactly what drmIoctl returns. BUG=none TEST=builds Change-Id: I20e00141782ac1407133ee72259fe43381954d26 Reviewed-on: https://chromium-review.googlesource.com/1534878 Commit-Ready: Stéphane Marchesin <marcheu@chromium.org> Tested-by: Stéphane Marchesin <marcheu@chromium.org> Reviewed-by: Gurchetan Singh <gurchetansingh@chromium.org>
* Use Android log system in helpers.c.Alistair Strachan2018-03-211-4/+3
| | | | | | | | | | | | This code might be loaded by a daemonized process now, so the existing logging to stderr goes nowhere. It's better to use the Android logger. Change-Id: I19f088b8f049f07c9c6839038d2971fad1a0e852 Reviewed-on: https://chromium-review.googlesource.com/971360 Commit-Ready: Alistair Strachan <astrachan@google.com> Tested-by: Alistair Strachan <astrachan@google.com> Reviewed-by: Alistair Strachan <astrachan@google.com> Reviewed-by: Gurchetan Singh <gurchetansingh@chromium.org>
* minigbm: make drv_add_combinations return nothingGurchetan Singh2017-11-161-10/+5
| | | | | | | | | | | | | | | | Two reasons for this: 1) We can use drv_array for driver combinations (see next patch) 2) It's less verbose. BUG=chromium:764871 TEST=gbmtest passes Change-Id: I39bea6e2e9e4c76d2ca78566926a79bdc17f11d0 Reviewed-on: https://chromium-review.googlesource.com/758148 Commit-Ready: Gurchetan Singh <gurchetansingh@chromium.org> Tested-by: Gurchetan Singh <gurchetansingh@chromium.org> Reviewed-by: Stéphane Marchesin <marcheu@chromium.org>
* minigbm: re-const-ify driver backendsGurchetan Singh2017-11-081-1/+1
| | | | | | | | | | | | | | minigbm driver creation needs to be re-entrant (see CL:674528). Let's re-constify to make this behavior explicit. BUG=none TEST=emerge-eve {minigbm, arc-cros-gralloc} Change-Id: I037966199d4aa6de60432127e10fea1fb602694b Reviewed-on: https://chromium-review.googlesource.com/758142 Commit-Ready: Gurchetan Singh <gurchetansingh@chromium.org> Tested-by: Gurchetan Singh <gurchetansingh@chromium.org> Reviewed-by: Stéphane Marchesin <marcheu@chromium.org>
* minigbm: standardize naming of buffer creation flagsGurchetan Singh2017-10-021-1/+1
| | | | | | | | | | | | | | | | | | | | We use the terms "flags" and "usage" interchangeably in this repo, since they essentally mean the same thing. However, let's be a little more consistent since it's kind of confusing, especially when buffer map flags come to play. Let's: - refer to everything in the drv_* layer as use_flags - refer to everything in the gbm/gralloc layers as usages BUG=chromium:764871 TEST=emerge-eve {arc-cros-gralloc, minigbm} Change-Id: If987d72369b895f38cde87e50ce1080f78f2a084 Reviewed-on: https://chromium-review.googlesource.com/691423 Commit-Ready: Gurchetan Singh <gurchetansingh@chromium.org> Tested-by: Gurchetan Singh <gurchetansingh@chromium.org> Reviewed-by: Stéphane Marchesin <marcheu@chromium.org>
* minigbm: pass in buffer creation flags of the right sizeGurchetan Singh2017-09-291-1/+1
| | | | | | | | | | | | | The buffer creation flags are uint64_t, not uint32_t. BUG=none TEST=emerge-eve {minigbm, arc-cros-gralloc} Change-Id: Id94911c5e19c00d47f2fbdca570a6a08fc92b82e Reviewed-on: https://chromium-review.googlesource.com/691422 Commit-Ready: Gurchetan Singh <gurchetansingh@chromium.org> Tested-by: Gurchetan Singh <gurchetansingh@chromium.org> Reviewed-by: Tomasz Figa <tfiga@chromium.org>
* minigbm: add a default (*bo_unmap) implementationGurchetan Singh2017-09-261-0/+1
| | | | | | | | | | | | | | | | | The (*bo_unmap) function is responsible for unmapping the buffer and cleaning up any data allocated during (*bo_map). Previously, we called munmap in drv_bo_unmap(), which caused some confusion. This method is cleaner. BUG=chromium:764871 TEST=emerge-betty minigbm Change-Id: I4dc20cd6b15e79bce21d33f03ebc84480c582981 Reviewed-on: https://chromium-review.googlesource.com/671693 Commit-Ready: Gurchetan Singh <gurchetansingh@chromium.org> Tested-by: Gurchetan Singh <gurchetansingh@chromium.org> Reviewed-by: Joe Kniss <djmk@google.com> Reviewed-by: Tomasz Figa <tfiga@chromium.org>
* minigbm: remove BO_USE_RENDERING from certain formatsGurchetan Singh2017-05-231-3/+15
| | | | | | | | | | | | | | | | | | | | | | We can't use GR88, R8, YV12, NV12, UYVY, YUYV buffers as render targets, so let's remove the BO_USE_RENDERING flag from these formats. However, we can sample from these formats (though this feature still needs to be enabled in our drivers), so the BO_USE_TEXTURE flag remains set. Also, change our interpretation of the GRALLOC_USAGE_HW_COMPOSER flag such that it implies BO_USE_SCANOUT | BO_USE_TEXTURE. This is because the OpenGL fallback textures from the buffer if can't be scanned-out, not renders to it. BUG=none TEST=run Youtube app on Kevin Change-Id: I9ea8452279e110bc1a9579f162abe1c72192eb40 Reviewed-on: https://chromium-review.googlesource.com/506812 Commit-Ready: Gurchetan Singh <gurchetansingh@chromium.org> Tested-by: Gurchetan Singh <gurchetansingh@chromium.org> Reviewed-by: Gurchetan Singh <gurchetansingh@chromium.org>
* minigbm: fix long lines missed by clang-formatGurchetan Singh2017-03-311-2/+1
| | | | | | | | | | | | | We have 100-lines to work with now. BUG=none TEST=compiles Change-Id: I08f41a42d8841ac82c5a6defbcbc712722179fce Reviewed-on: https://chromium-review.googlesource.com/457286 Commit-Ready: Gurchetan Singh <gurchetansingh@chromium.org> Tested-by: Gurchetan Singh <gurchetansingh@chromium.org> Reviewed-by: Gurchetan Singh <gurchetansingh@chromium.org>
* minigbm: add clang-format and presubmit hooksGurchetan Singh2017-03-311-16/+13
| | | | | | | | | | | | | | | | | | | | | | | | | Running the presubmit.sh script will apply our rules to every file in the repo. Exclude gbm.h from the formatting requirements since this file was taken from other open-source projects, and diffing will be easier without our formatting rules. In addition, special case drivers where the order of includes matters. BUG=none TEST=Verified the following commands succeed: emerge-cyan minigbm/arc-cros-gralloc emerge-oak minigbm/arc-cros-gralloc emerge-veyron_minnie-cheets minigbm/arc-cros-gralloc emerge-peach_pi minigbm emerge-nyan_big minigbm emerge-jadeite minigbm Change-Id: I6ce93fb1930da254d13d5017766c17341870ccc9 Reviewed-on: https://chromium-review.googlesource.com/447319 Commit-Ready: Gurchetan Singh <gurchetansingh@chromium.org> Tested-by: Gurchetan Singh <gurchetansingh@chromium.org> Reviewed-by: Gurchetan Singh <gurchetansingh@chromium.org>
* minigbm: rework flag APIGurchetan Singh2017-03-161-12/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We've been back and forth on the semantics of the flag API many times, and the current situation is confusing. Change the drivers so every combination defines a distinct type of buffer. That means if the same format is in the combination list three times, the tiling or format modifiers of one of those combinations must be different from the other two. Let's add a priority variable in struct supported_combination that breaks ties. For example, if a consumer specifies BO_USE_TEXTURE, we of course can texture from both linear and tiled buffers, but because a tiled buffer's priority is greater, it will be chosen. If a consumer specifies BO_USE_TEXTURE | BO_USE_SW_WRITE_OFTEN, the tiled combination won't have the BO_USE_SW_WRITE_OFTEN flag and the linear combination will be chosen. We expect drivers to modify the combinations after querying KMS. This is clunky using linked lists, so get rid of list.h and use arrays. BUG=chromium:616275 TEST=all the following compiles: emerge-cyan minigbm/arc-cros-gralloc emerge-oak minigbm/arc-cros-gralloc emerge-veyron_minnie-cheets minigbm/arc-cros-gralloc emerge-peach_pi minigbm emerge-nyan_big minigbm emerge-jadeite minigbm Tested with gbmtest on cyan, checked if Chrome boots Change-Id: Ib3fccf6f0cb86c8ded45924297df3c06f8e49271 Reviewed-on: https://chromium-review.googlesource.com/448252 Commit-Ready: Gurchetan Singh <gurchetansingh@chromium.org> Tested-by: Gurchetan Singh <gurchetansingh@chromium.org> Reviewed-by: Stéphane Marchesin <marcheu@chromium.org>
* minigbm: add bo import callbackGurchetan Singh2017-01-131-0/+1
| | | | | | | | | | | | | | Some drivers may want to import their own private data, so let's add a driver callback. BUG=none TEST=minigbm builds, gbmtest Change-Id: I96c06a84446c9be4ac3f5f858094c500d43a077f Reviewed-on: https://chromium-review.googlesource.com/424934 Commit-Ready: Gurchetan Singh <gurchetansingh@chromium.org> Tested-by: Gurchetan Singh <gurchetansingh@chromium.org> Reviewed-by: Gurchetan Singh <gurchetansingh@chromium.org>
* minigbm: consolidate flagsGurchetan Singh2016-12-201-6/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | Let's try to organize the flags such that one entry in the supported combination list implies a certain type of buffer. For example, we only create linear buffers in our Mediatek, so the following entries are equivalent: {DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_NONE, BO_USE_RENDERING | BO_USE_SW_READ_RARELY | BO_USE_SW_WRITE_RARELY}, {DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_NONE, BO_USE_CURSOR | BO_USE_LINEAR | BO_USE_SW_READ_OFTEN | BO_USE_SW_WRITE_OFTEN}, Since they both translate into a XRGB8888 linear buffer on Mediatek, let's merge the two entries. Do similiar operations for every driver. BUG=none TEST=try-bots Change-Id: I0be97c2deec5310f426632f85d1525a1345498e6 Reviewed-on: https://chromium-review.googlesource.com/421499 Commit-Ready: Gurchetan Singh <gurchetansingh@chromium.org> Tested-by: Gurchetan Singh <gurchetansingh@chromium.org> Reviewed-by: Stéphane Marchesin <marcheu@chromium.org>
* minigbm: Remove (c) from copyright notice.Daniele Castagna2016-12-171-1/+1
| | | | | | | | | | | | | | | | | | The pre-submit hook script checks that copyright messages don't contain "(c)". This CL removes "(c)" from all the copyrights header in minigbm that still have it. BUG=None TEST=emerge-$BOARD minigbm. Change-Id: I1922d9d29b78d124302d497310fe1c1cfd6fc695 Reviewed-on: https://chromium-review.googlesource.com/421588 Commit-Ready: David Reveman <reveman@chromium.org> Commit-Ready: Daniele Castagna <dcastagna@chromium.org> Tested-by: Daniele Castagna <dcastagna@chromium.org> Reviewed-by: Gurchetan Singh <gurchetansingh@chromium.org>
* minigbm: rename DRV_BO_USE_* to BO_USE_*Gurchetan Singh2016-12-071-5/+5
| | | | | | | | | | | | | | | It's somewhat easier to read. BUG=none TEST=minigbm still builds CQ-DEPEND=CL:416290 Change-Id: I9417caff22ea66e4179fe41d534d8cb9510ef7a3 Reviewed-on: https://chromium-review.googlesource.com/414585 Commit-Ready: Gurchetan Singh <gurchetansingh@chromium.org> Tested-by: Gurchetan Singh <gurchetansingh@chromium.org> Reviewed-by: Stéphane Marchesin <marcheu@chromium.org>
* minigbm: Fix cursor and scanout flagsGurchetan Singh2016-12-011-8/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We were incorrectly advertising the scanout and cursor flags in the drivers. Chrome never used the BO_USE_CURSOR flag (see chromium:666488), and we set it for incorrect formats. Let's only advertise ARGB8888/XRGB8888 cursors if they were previously advertised, and prevent cursors from being used as render targets. For scanout, formats can vary from kernel version to kernel version. For example, the v3.18 i915 driver can't scanout NV12, but the upstream v4.4 i915 driver can. Let's query the KMS API in those cases. In addition, we would also like to move to a place where our backends can determine if a specific {format, usage, format modifier} tuple is supported. The plan is to add modifiers to the properties that are exposed in KMS, which can help with optimization. BUG=b:31942635, chromium:666488 TEST=Ran graphics_Gbm and checked if Chrome boots on cyan, minnie, and nyan_big CQ-DEPEND=CL:413325 Change-Id: Ifd3fd1c8063db97b3f1fe057ace82d22def76943 Reviewed-on: https://chromium-review.googlesource.com/405019 Commit-Ready: Gurchetan Singh <gurchetansingh@chromium.org> Tested-by: Gurchetan Singh <gurchetansingh@chromium.org> Reviewed-by: Ilja H. Friedel <ihf@chromium.org>
* minigbm: Switch to <drm_fourcc.h>Gurchetan Singh2016-11-281-7/+7
| | | | | | | | | | | | | | | | | | We were duplicating formats. The original rationale behind this was DRV_FORMAT_* would be a superset of Android and DRM formats. However, there are only 2 HAL flexible formats not defined by DRM, and we can deal with these easily. The DRM format namespace is large enough to handle any additions we may need. BUG=NONE TEST=Ran graphics_Gbm, arc-cros-gralloc still builds Change-Id: Ie173eee6ac6926947a3b98c3ae809e38a0ea8014 Reviewed-on: https://chromium-review.googlesource.com/405790 Commit-Ready: Gurchetan Singh <gurchetansingh@chromium.org> Tested-by: Gurchetan Singh <gurchetansingh@chromium.org> Reviewed-by: Stéphane Marchesin <marcheu@chromium.org>
* minigbm: Map and unmap correct sizeGurchetan Singh2016-09-021-1/+2
| | | | | | | | | | | | | | We were not mapping the entire buffer for multi-plane buffer objects. BUG=chromium:616275 TEST=NONE CQ-DEPEND=CL:377884 Change-Id: Ia64a6eb45310abeaed3f376479a6738ccd09f0bf Reviewed-on: https://chromium-review.googlesource.com/377841 Commit-Ready: Gurchetan Singh <gurchetansingh@chromium.org> Tested-by: Gurchetan Singh <gurchetansingh@chromium.org> Reviewed-by: Stéphane Marchesin <marcheu@chromium.org>
* minigbm: Add YV12 for i915Gurchetan Singh2016-08-251-1/+1
| | | | | | | | | | | | | | | | At the moment, the ArcCodec produces YV12 on Intel. The gralloc module should support it, atleast temporarily until UYVY hardware overlays are enabled on CrOS. TEST=ran graphics_Gbm, tested Chrome boots on Cyan BUG=b/29335168, chromium:616275 CQ-DEPEND=CL:372359 Change-Id: I27c888d3467aa89e8ca48b22523cbc76973aa314 Reviewed-on: https://chromium-review.googlesource.com/373048 Commit-Ready: Gurchetan Singh <gurchetansingh@chromium.org> Tested-by: Gurchetan Singh <gurchetansingh@chromium.org> Reviewed-by: Stéphane Marchesin <marcheu@chromium.org>
* minigbm: Remove drv prefix from static backend functionsGurchetan Singh2016-08-171-4/+3
| | | | | | | | | | | | | | | It doesn't make sense to have the drv prefix for static backend functions, so remove it. TEST=minigbm still builds CQ-DEPEND=CL:370798 Change-Id: I65272162b8c7cf5d3716c7e5fcf0475c35522c47 Reviewed-on: https://chromium-review.googlesource.com/371501 Commit-Ready: Gurchetan Singh <gurchetansingh@chromium.org> Tested-by: Gurchetan Singh <gurchetansingh@chromium.org> Reviewed-by: Zach Reizner <zachr@chromium.org>
* minigbm: Add mmap() in backendsGurchetan Singh2016-08-171-0/+5
| | | | | | | | | | | | | | | | | | | | | | Gralloc requires the ability to mmap a buffer into userspace. This change adds the necessary entry points to our internal "drv" interface. BUG=chromium:616275 TEST=minigbm still builds. Also ran: ./gralloctest mapping with CL:362062 applied on minnie and cyan (decided to split that CL into smaller patches). CQ-DEPEND=CL:366041 Change-Id: I7396b0c79702f24eb779984805bc679c237bd932 Reviewed-on: https://chromium-review.googlesource.com/370798 Commit-Ready: Gurchetan Singh <gurchetansingh@chromium.org> Tested-by: Gurchetan Singh <gurchetansingh@chromium.org> Reviewed-by: Stéphane Marchesin <marcheu@chromium.org>
* minigbm: Refactored minigbm on top a private APIGurchetan Singh2016-08-121-19/+19
| | | | | | | | | | | | | | | | | | | | We would like to reuse the same set of drivers for ChromeOS (with a minigbm frontend) and Android (with a gralloc frontend). Since we don't want to pollute the gbm API with gralloc formats and usages, we can refactor minigbm on top a private API that will be a superset of gbm and gralloc. This change redirects gbm calls to the private API. TEST=Ran graphics_Gbm on minnie and cyan, and checked if Chrome boots. BUG=chromium:616275 CQ-DEPEND=CL:367791 Change-Id: I50d10f9d6c7ea936b0d76c5299a58d948939fdf9 Reviewed-on: https://chromium-review.googlesource.com/367780 Commit-Ready: Gurchetan Singh <gurchetansingh@chromium.org> Tested-by: Gurchetan Singh <gurchetansingh@chromium.org> Reviewed-by: Stéphane Marchesin <marcheu@chromium.org>
* remove enum gbm_bo_formatZach Reizner2016-05-101-2/+1
| | | | | | | | | | | | | | | | | The presence of this enum makes mistakes handling gbm formats very easy to make. With this patch, no new code can use this enum. Any old code that tries will see errors. BUG=None TEST=drm-tests CQ-DEPEND=CL:343592 Change-Id: If3b19975a137928965f14bad26d1e895dd839810 Reviewed-on: https://chromium-review.googlesource.com/343528 Commit-Ready: Zach Reizner <zachr@chromium.org> Tested-by: Zach Reizner <zachr@chromium.org> Reviewed-by: Stéphane Marchesin <marcheu@chromium.org> Reviewed-by: Haixia Shi <hshi@chromium.org>
* exynos: fix leak on error path of gbm_exynos_bo_createZach Reizner2016-05-071-2/+18
| | | | | | | | | | | BUG=None TEST=None Change-Id: Ib536047b3a7ec70f31b4065c041cc4cafa32002f Reviewed-on: https://chromium-review.googlesource.com/342147 Commit-Ready: Zach Reizner <zachr@chromium.org> Tested-by: Zach Reizner <zachr@chromium.org> Reviewed-by: Zach Reizner <zachr@chromium.org>
* minigbm: remove GBM_BO_USE_WRITE from the drivers.Dongseong Hwang2016-05-061-5/+5
| | | | | | | | | | | | | | We deprecated GBM_BO_USE_WRITE in Chrome OS, so we should remove it from the drivers. BUG=chromium:356871 CQ-DEPEND=CL:342391 Change-Id: I29c10817cf71ae51d12092f05228e92f342ca4e5 Reviewed-on: https://chromium-review.googlesource.com/341911 Commit-Ready: Dongseong Hwang <dongseong.hwang@intel.com> Tested-by: Dongseong Hwang <dongseong.hwang@intel.com> Reviewed-by: Dongseong Hwang <dongseong.hwang@intel.com> Reviewed-by: Zach Reizner <zachr@chromium.org>
* minigbm: constify and staticify functions/structsStéphane Marchesin2016-02-291-2/+3
| | | | | | | | | | | | | | A lot of these can be made const/static so let's do this. BUG=none TEST=compiles Change-Id: Id0b534ca477b25488b264622f062471063378c1c Signed-off-by: Stphane Marchesin <marcheu@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/329561 Commit-Ready: Stéphane Marchesin <marcheu@chromium.org> Tested-by: Stéphane Marchesin <marcheu@chromium.org> Reviewed-by: Zach Reizner <zachr@chromium.org>
* add GBM_BO_USE_LINEAR flag for bo creationZach Reizner2016-02-271-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | Some drivers will enable tiling with the other GBM_BO_USE_* flags as an optimization, but this interferes with reading/writing to mmapped buffers and other devices that might expect linear buffers. This CL adds an explicit request to minigbm to only allocate linear buffer objects. This request is only honored for buffers that meet all the following requirements: - YUV formats or ARGB/XRGB 32-bit formats. - Not combined with GBM_BO_USE_RENDERING A backend might still reject an allocation even if it meets those requirements. This CL also raises the limit on the number of driver formats to 16. TEST=on samus, run vgem_fb_test with GBM_BO_USE_LINEAR flag in gbm_bo_create BUG=None Change-Id: I8ca31c4c1753af816b13bd75e4feb5b76d153e2a Reviewed-on: https://chromium-review.googlesource.com/329248 Commit-Ready: Stéphane Marchesin <marcheu@chromium.org> Tested-by: Zach Reizner <zachr@chromium.org> Reviewed-by: Stéphane Marchesin <marcheu@chromium.org>
* Support multi-plane buffers.Yuly Novikov2016-01-231-16/+44
| | | | | | | | | | | | Enable NV12 format on Exynos. BUG=chromium:368775 TEST=HW video overlay works on snow and peach_pi Change-Id: Ia149618fa086b9ba3ef998149c3557052833e33b Signed-off-by: Yuly Novikov <ynovikov@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/318550 Reviewed-by: Stéphane Marchesin <marcheu@chromium.org>
* Misc style/indent fixesStéphane Marchesin2015-11-091-1/+2
| | | | | | | | | | | | | | | This fixes miscellaneous issues with style and indentation. BUG=none TEST=builds Change-Id: I0f41a2d06687a3da5ca4a92dba76675e49d4b4cd Signed-off-by: Stphane Marchesin <marcheu@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/311202 Commit-Ready: Ilja Friedel <ihf@chromium.org> Tested-by: Stéphane Marchesin <marcheu@chromium.org> Reviewed-by: Ilja Friedel <ihf@chromium.org> Reviewed-by: Haixia Shi <hshi@chromium.org>
* minigbm: add spew on IOCTL failures.Ilja H. Friedel2015-04-101-1/+5
| | | | | | | | | | | | | | Having spew on errors would have made debugging the Netflix double fd close more obvious. BUG=chromium:462459, chromium:464628 TEST=Builds for link, tegra, nyan. Change-Id: I050794fbca8e9291752e52119751847ffcacd798 Reviewed-on: https://chromium-review.googlesource.com/265065 Reviewed-by: Ilja Friedel <ihf@chromium.org> Commit-Queue: Ilja Friedel <ihf@chromium.org> Tested-by: Ilja Friedel <ihf@chromium.org>
* Populate the stride field when creating gbm_bosDaniel Nicoara2014-09-261-0/+1
| | | | | | | | | | | BUG=chromium:394868,chromium:402597,chromium:413947,chromium:412508 TEST=compiled & verified stride value on pixel Change-Id: I5555289a9549b803ee29a7d4fbf75987b02afa1b Reviewed-on: https://chromium-review.googlesource.com/219865 Reviewed-by: Stéphane Marchesin <marcheu@chromium.org> Commit-Queue: Daniel Nicoara <dnicoara@chromium.org> Tested-by: Daniel Nicoara <dnicoara@chromium.org>
* Import minigbmStéphane Marchesin2014-09-131-0/+47
Minigbm is a gbm implementation for a few DRM targets. Currently the targets are: - cirrus - exynos - gma500 - i915 - rockchip - tegra - udl Right some targets are controlled with GBM_{TARGET} flags. I would like to get to a place where we can just build all the targets in a single library, but we need the drm headers for all targets for that to happen so this needs more thinking. BUG=chromium:394868,chromium:402597,chromium:413947,chromium:412508 TEST=unit tests, which I will need to import later Signed-off-by: Stéphane Marchesin <marcheu@chromium.org> Change-Id: I36ae07f2a59827a807e19e1432891ca196b28803 Reviewed-on: https://chromium-review.googlesource.com/218030