1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ 2 /* 3 * include/uapi/linux/smiapp.h 4 * 5 * Generic driver for SMIA/SMIA++ compliant camera modules 6 * 7 * Copyright (C) 2014 Intel Corporation 8 * Contact: Sakari Ailus <sakari.ailus@iki.fi> 9 * 10 * This program is free software; you can redistribute it and/or 11 * modify it under the terms of the GNU General Public License 12 * version 2 as published by the Free Software Foundation. 13 * 14 * This program is distributed in the hope that it will be useful, but 15 * WITHOUT ANY WARRANTY; without even the implied warranty of 16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 17 * General Public License for more details. 18 * 19 */ 20 21 #ifndef __UAPI_LINUX_SMIAPP_H_ 22 #define __UAPI_LINUX_SMIAPP_H_ 23 24 #define V4L2_SMIAPP_TEST_PATTERN_MODE_DISABLED 0 25 #define V4L2_SMIAPP_TEST_PATTERN_MODE_SOLID_COLOUR 1 26 #define V4L2_SMIAPP_TEST_PATTERN_MODE_COLOUR_BARS 2 27 #define V4L2_SMIAPP_TEST_PATTERN_MODE_COLOUR_BARS_GREY 3 28 #define V4L2_SMIAPP_TEST_PATTERN_MODE_PN9 4 29 30 #endif /* __UAPI_LINUX_SMIAPP_H_ */ 31