Jesse Barnes | 308e5bc | 2011-11-14 14:51:28 -0800 | [diff] [blame^] | 1 | /* |
| 2 | * Copyright 2011 Intel Corporation |
| 3 | * |
| 4 | * Permission is hereby granted, free of charge, to any person obtaining a |
| 5 | * copy of this software and associated documentation files (the "Software"), |
| 6 | * to deal in the Software without restriction, including without limitation |
| 7 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, |
| 8 | * and/or sell copies of the Software, and to permit persons to whom the |
| 9 | * Software is furnished to do so, subject to the following conditions: |
| 10 | * |
| 11 | * The above copyright notice and this permission notice (including the next |
| 12 | * paragraph) shall be included in all copies or substantial portions of the |
| 13 | * Software. |
| 14 | * |
| 15 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 16 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 17 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 18 | * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR |
| 19 | * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, |
| 20 | * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR |
| 21 | * OTHER DEALINGS IN THE SOFTWARE. |
| 22 | */ |
| 23 | |
| 24 | #ifndef DRM_FOURCC_H |
| 25 | #define DRM_FOURCC_H |
| 26 | |
| 27 | /* |
| 28 | * We don't use the V4L header because |
| 29 | * 1) the fourcc codes are well defined and trivial to construct |
| 30 | * 2) we don't want user apps to have to pull in v4l headers just for fourcc |
| 31 | * 3) the v4l fourcc codes are mixed up with a bunch of other code and are |
| 32 | * part of the v4l API, so changing them to something linux-generic isn't |
| 33 | * feasible |
| 34 | * |
| 35 | * So the below includes the fourcc codes used by the DRM and its drivers, |
| 36 | * along with potential device specific codes. |
| 37 | */ |
| 38 | |
| 39 | #include <linux/types.h> |
| 40 | |
| 41 | #define fourcc_code(a,b,c,d) ((u32)(a) | ((u32)(b) << 8) | \ |
| 42 | ((u32)(c) << 16) | ((u32)(d) << 24)) |
| 43 | |
| 44 | /* RGB codes */ |
| 45 | #define DRM_FOURCC_RGB332 fourcc_code('R','G','B','1') |
| 46 | #define DRM_FOURCC_RGB555 fourcc_code('R','G','B','O') |
| 47 | #define DRM_FOURCC_RGB565 fourcc_code('R','G','B','P') |
| 48 | #define DRM_FOURCC_RGB24 fourcc_code('R','G','B','3') |
| 49 | #define DRM_FOURCC_RGB32 fourcc_code('R','G','B','4') |
| 50 | |
| 51 | #define DRM_FOURCC_BGR24 fourcc_code('B','G','R','3') |
| 52 | #define DRM_FOURCC_BGR32 fourcc_code('B','G','R','4') |
| 53 | |
| 54 | /* YUV codes */ |
| 55 | #define DRM_FOURCC_YUYV fourcc_code('Y', 'U', 'Y', 'V') |
| 56 | #define DRM_FOURCC_YVYU fourcc_code('Y', 'V', 'Y', 'U') |
| 57 | #define DRM_FOURCC_UYVY fourcc_code('U', 'Y', 'V', 'Y') |
| 58 | #define DRM_FOURCC_VYUY fourcc_code('V', 'Y', 'U', 'Y') |
| 59 | |
| 60 | /* DRM specific codes */ |
| 61 | #define DRM_INTEL_RGB30 fourcc_code('R','G','B','0') /* RGB x:10:10:10 */ |
| 62 | |
| 63 | #endif /* DRM_FOURCC_H */ |