Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Johannes Stezenbach | 776338e | 2005-06-23 22:02:35 -0700 | [diff] [blame] | 2 | * descriptions + helper functions for simple dvb plls. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | */ |
| 4 | |
Johannes Stezenbach | 5e9e722 | 2005-05-16 21:54:37 -0700 | [diff] [blame] | 5 | #ifndef __DVB_PLL_H__ |
| 6 | #define __DVB_PLL_H__ |
| 7 | |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 8 | #include <linux/i2c.h> |
| 9 | #include "dvb_frontend.h" |
| 10 | |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 11 | #define DVB_PLL_UNDEFINED 0 |
| 12 | #define DVB_PLL_THOMSON_DTT7579 1 |
| 13 | #define DVB_PLL_THOMSON_DTT759X 2 |
Michael Krufky | b6fd549e | 2008-04-22 14:46:20 -0300 | [diff] [blame] | 14 | #define DVB_PLL_LG_Z201 3 |
| 15 | #define DVB_PLL_UNKNOWN_1 4 |
| 16 | #define DVB_PLL_TUA6010XS 5 |
| 17 | #define DVB_PLL_ENV57H1XD5 6 |
| 18 | #define DVB_PLL_TUA6034 7 |
| 19 | #define DVB_PLL_TDA665X 8 |
| 20 | #define DVB_PLL_TDED4 9 |
| 21 | #define DVB_PLL_TDHU2 10 |
| 22 | #define DVB_PLL_SAMSUNG_TBMV 11 |
| 23 | #define DVB_PLL_PHILIPS_SD1878_TDA8261 12 |
| 24 | #define DVB_PLL_OPERA1 13 |
Antti Palosaari | 139dfeb | 2008-05-17 23:02:00 -0300 | [diff] [blame] | 25 | #define DVB_PLL_SAMSUNG_DTOS403IH102A 14 |
Trent Piepho | a104ed0 | 2009-06-11 19:21:34 -0300 | [diff] [blame] | 26 | #define DVB_PLL_SAMSUNG_TDTC9251DH0 15 |
Trent Piepho | f52c485 | 2009-06-11 19:21:34 -0300 | [diff] [blame^] | 27 | #define DVB_PLL_SAMSUNG_TBDU18132 16 |
Chris Pascoe | 780dfef | 2006-02-28 08:34:59 -0300 | [diff] [blame] | 28 | |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 29 | /** |
| 30 | * Attach a dvb-pll to the supplied frontend structure. |
| 31 | * |
| 32 | * @param fe Frontend to attach to. |
| 33 | * @param pll_addr i2c address of the PLL (if used). |
| 34 | * @param i2c i2c adapter to use (set to NULL if not used). |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 35 | * @param pll_desc_id dvb_pll_desc to use. |
Andrew de Quincey | 2bfe031 | 2006-08-08 09:10:08 -0300 | [diff] [blame] | 36 | * @return Frontend pointer on success, NULL on failure |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 37 | */ |
Trent Piepho | 9ab1ba3 | 2007-04-27 12:31:28 -0300 | [diff] [blame] | 38 | #if defined(CONFIG_DVB_PLL) || (defined(CONFIG_DVB_PLL_MODULE) && defined(MODULE)) |
Michael Krufky | 47ae9ae | 2006-11-20 16:38:42 -0300 | [diff] [blame] | 39 | extern struct dvb_frontend *dvb_pll_attach(struct dvb_frontend *fe, |
| 40 | int pll_addr, |
| 41 | struct i2c_adapter *i2c, |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 42 | unsigned int pll_desc_id); |
Trent Piepho | 9ab1ba3 | 2007-04-27 12:31:28 -0300 | [diff] [blame] | 43 | #else |
| 44 | static inline struct dvb_frontend *dvb_pll_attach(struct dvb_frontend *fe, |
| 45 | int pll_addr, |
| 46 | struct i2c_adapter *i2c, |
Michael Krufky | 47a9991 | 2007-06-12 16:10:51 -0300 | [diff] [blame] | 47 | unsigned int pll_desc_id) |
Trent Piepho | 9ab1ba3 | 2007-04-27 12:31:28 -0300 | [diff] [blame] | 48 | { |
Harvey Harrison | 271ddbf | 2008-04-08 23:20:00 -0300 | [diff] [blame] | 49 | printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__); |
Trent Piepho | 9ab1ba3 | 2007-04-27 12:31:28 -0300 | [diff] [blame] | 50 | return NULL; |
| 51 | } |
| 52 | #endif |
Andrew de Quincey | 272bc4d | 2006-04-18 17:47:12 -0300 | [diff] [blame] | 53 | |
Johannes Stezenbach | 5e9e722 | 2005-05-16 21:54:37 -0700 | [diff] [blame] | 54 | #endif |