1 /* $NetBSD: xilinx-vip.h,v 1.1.1.1.6.2 2017/08/28 17:53:03 skrll Exp $ */ 2 3 /* 4 * Xilinx Video IP Core 5 * 6 * Copyright (C) 2013-2015 Ideas on Board 7 * Copyright (C) 2013-2015 Xilinx, Inc. 8 * 9 * Contacts: Hyun Kwon <hyun.kwon (at) xilinx.com> 10 * Laurent Pinchart <laurent.pinchart (at) ideasonboard.com> 11 * 12 * This program is free software; you can redistribute it and/or modify 13 * it under the terms of the GNU General Public License version 2 as 14 * published by the Free Software Foundation. 15 */ 16 17 #ifndef __DT_BINDINGS_MEDIA_XILINX_VIP_H__ 18 #define __DT_BINDINGS_MEDIA_XILINX_VIP_H__ 19 20 /* 21 * Video format codes as defined in "AXI4-Stream Video IP and System Design 22 * Guide". 23 */ 24 #define XVIP_VF_YUV_422 0 25 #define XVIP_VF_YUV_444 1 26 #define XVIP_VF_RBG 2 27 #define XVIP_VF_YUV_420 3 28 #define XVIP_VF_YUVA_422 4 29 #define XVIP_VF_YUVA_444 5 30 #define XVIP_VF_RGBA 6 31 #define XVIP_VF_YUVA_420 7 32 #define XVIP_VF_YUVD_422 8 33 #define XVIP_VF_YUVD_444 9 34 #define XVIP_VF_RGBD 10 35 #define XVIP_VF_YUVD_420 11 36 #define XVIP_VF_MONO_SENSOR 12 37 #define XVIP_VF_CUSTOM2 13 38 #define XVIP_VF_CUSTOM3 14 39 #define XVIP_VF_CUSTOM4 15 40 41 #endif /* __DT_BINDINGS_MEDIA_XILINX_VIP_H__ */ 42