1 /*
2  * cxd2099.h: Driver for the Sony CXD2099AR Common Interface Controller
3  *
4  * Copyright (C) 2010-2011 Digital Devices GmbH
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * version 2 only, as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  */
15 
16 #ifndef _CXD2099_H_
17 #define _CXD2099_H_
18 
19 #include <media/dvb_ca_en50221.h>
20 
21 struct cxd2099_cfg {
22 	u32 bitrate;
23 	u8  polarity;
24 	u8  clock_mode;
25 
26 	u32 max_i2c;
27 
28 	/* ptr to DVB CA struct */
29 	struct dvb_ca_en50221 **en;
30 };
31 
32 #endif
33