/*1* SuperH Video Output Unit (VOU) driver header2*3* Copyright (C) 2010, Guennadi Liakhovetski <[email protected]>4*5* This program is free software; you can redistribute it and/or modify6* it under the terms of the GNU General Public License version 2 as7* published by the Free Software Foundation.8*/9#ifndef SH_VOU_H10#define SH_VOU_H1112#include <linux/i2c.h>1314/* Bus flags */15#define SH_VOU_PCLK_FALLING (1 << 0)16#define SH_VOU_HSYNC_LOW (1 << 1)17#define SH_VOU_VSYNC_LOW (1 << 2)1819enum sh_vou_bus_fmt {20SH_VOU_BUS_8BIT,21SH_VOU_BUS_16BIT,22SH_VOU_BUS_BT656,23};2425struct sh_vou_pdata {26enum sh_vou_bus_fmt bus_fmt;27int i2c_adap;28struct i2c_board_info *board_info;29unsigned long flags;30};3132#endif333435