162306a36Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0-or-later */ 262306a36Sopenharmony_ci/* 362306a36Sopenharmony_ci * Driver for the Conexant CX25821 PCIe bridge 462306a36Sopenharmony_ci * 562306a36Sopenharmony_ci * Copyright (C) 2009 Conexant Systems Inc. 662306a36Sopenharmony_ci * Authors <shu.lin@conexant.com>, <hiep.huynh@conexant.com> 762306a36Sopenharmony_ci */ 862306a36Sopenharmony_ci 962306a36Sopenharmony_ci#ifndef _MEDUSA_VIDEO_H 1062306a36Sopenharmony_ci#define _MEDUSA_VIDEO_H 1162306a36Sopenharmony_ci 1262306a36Sopenharmony_ci#include "cx25821-medusa-defines.h" 1362306a36Sopenharmony_ci 1462306a36Sopenharmony_ci/* Color control constants */ 1562306a36Sopenharmony_ci#define VIDEO_PROCAMP_MIN 0 1662306a36Sopenharmony_ci#define VIDEO_PROCAMP_MAX 10000 1762306a36Sopenharmony_ci#define UNSIGNED_BYTE_MIN 0 1862306a36Sopenharmony_ci#define UNSIGNED_BYTE_MAX 0xFF 1962306a36Sopenharmony_ci#define SIGNED_BYTE_MIN -128 2062306a36Sopenharmony_ci#define SIGNED_BYTE_MAX 127 2162306a36Sopenharmony_ci 2262306a36Sopenharmony_ci/* Default video color settings */ 2362306a36Sopenharmony_ci#define SHARPNESS_DEFAULT 50 2462306a36Sopenharmony_ci#define SATURATION_DEFAULT 5000 2562306a36Sopenharmony_ci#define BRIGHTNESS_DEFAULT 6200 2662306a36Sopenharmony_ci#define CONTRAST_DEFAULT 5000 2762306a36Sopenharmony_ci#define HUE_DEFAULT 5000 2862306a36Sopenharmony_ci 2962306a36Sopenharmony_ci#endif 30