mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-14 22:44:27 +08:00
5c2a99480e
This patch corrects the SPDX License Identifier style in header files related to Video drivers for Xilinx devices. For C header files Documentation/process/license-rules.rst mandates C-like comments (opposed to C source files where C++ style should be used) Changes made by using a script provided by Joe Perches here: https://lkml.org/lkml/2019/2/7/46. Suggested-by: Joe Perches <joe@perches.com> Signed-off-by: Nishad Kamdar <nishadkamdar@gmail.com> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
40 lines
932 B
C
40 lines
932 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Xilinx Video Timing Controller
|
|
*
|
|
* Copyright (C) 2013-2015 Ideas on Board
|
|
* Copyright (C) 2013-2015 Xilinx, Inc.
|
|
*
|
|
* Contacts: Hyun Kwon <hyun.kwon@xilinx.com>
|
|
* Laurent Pinchart <laurent.pinchart@ideasonboard.com>
|
|
*/
|
|
|
|
#ifndef __XILINX_VTC_H__
|
|
#define __XILINX_VTC_H__
|
|
|
|
struct device_node;
|
|
struct xvtc_device;
|
|
|
|
#define XVTC_MAX_HSIZE 8191
|
|
#define XVTC_MAX_VSIZE 8191
|
|
|
|
struct xvtc_config {
|
|
unsigned int hblank_start;
|
|
unsigned int hsync_start;
|
|
unsigned int hsync_end;
|
|
unsigned int hsize;
|
|
unsigned int vblank_start;
|
|
unsigned int vsync_start;
|
|
unsigned int vsync_end;
|
|
unsigned int vsize;
|
|
};
|
|
|
|
struct xvtc_device *xvtc_of_get(struct device_node *np);
|
|
void xvtc_put(struct xvtc_device *xvtc);
|
|
|
|
int xvtc_generator_start(struct xvtc_device *xvtc,
|
|
const struct xvtc_config *config);
|
|
int xvtc_generator_stop(struct xvtc_device *xvtc);
|
|
|
|
#endif /* __XILINX_VTC_H__ */
|