/* SPDX-License-Identifier: GPL-2.0-only */1/*2* tw9910 Driver header3*4* Copyright (C) 2008 Renesas Solutions Corp.5* Kuninori Morimoto <[email protected]>6*7* Based on ov772x.h8*9* Copyright (C) Kuninori Morimoto <[email protected]>10*/1112#ifndef __TW9910_H__13#define __TW9910_H__1415/* MPOUT (multi-purpose output) pin functions */16enum tw9910_mpout_pin {17TW9910_MPO_VLOSS,18TW9910_MPO_HLOCK,19TW9910_MPO_SLOCK,20TW9910_MPO_VLOCK,21TW9910_MPO_MONO,22TW9910_MPO_DET50,23TW9910_MPO_FIELD,24TW9910_MPO_RTCO,25};2627/**28* struct tw9910_video_info - tw9910 driver interface structure29* @buswidth: Parallel data bus width (8 or 16).30* @mpout: Selected function of MPOUT (multi-purpose output) pin.31* See enum tw9910_mpout_pin32*/33struct tw9910_video_info {34unsigned long buswidth;35enum tw9910_mpout_pin mpout;36};373839#endif /* __TW9910_H__ */404142