blob: a8ad75a9152a7e609f0be55d8f804f0e9b72c21f [file] [log] [blame]
Mauro Carvalho Chehabac19ecc2005-06-23 22:05:09 -07001/*
Mauro Carvalho Chehabac19ecc2005-06-23 22:05:09 -07002 */
3
Linus Torvalds1da177e2005-04-16 15:20:36 -07004struct tveeprom {
5 u32 has_radio;
Hans Verkuilb654fcdc2008-07-22 15:50:31 -03006 /* If has_ir == 0, then it is unknown what the IR capabilities are,
7 otherwise:
8 bit 0: 1 (= IR capabilities are known)
9 bit 1: IR receiver present
10 bit 2: IR transmitter (blaster) present */
11 u32 has_ir;
Steven Toth3ca0ea92005-12-01 00:51:27 -080012 u32 has_MAC_address; /* 0: no MAC, 1: MAC present, 2: unknown */
Linus Torvalds1da177e2005-04-16 15:20:36 -070013
14 u32 tuner_type;
15 u32 tuner_formats;
Hans Verkuilf95006f2005-12-01 00:51:42 -080016 u32 tuner_hauppauge_model;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
Mauro Carvalho Chehab0f97a932005-09-09 13:04:05 -070018 u32 tuner2_type;
19 u32 tuner2_formats;
Hans Verkuilf95006f2005-12-01 00:51:42 -080020 u32 tuner2_hauppauge_model;
Mauro Carvalho Chehab0f97a932005-09-09 13:04:05 -070021
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 u32 digitizer;
23 u32 digitizer_formats;
24
25 u32 audio_processor;
Mauro Carvalho Chehab0f97a932005-09-09 13:04:05 -070026 u32 decoder_processor;
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28 u32 model;
29 u32 revision;
30 u32 serial_number;
31 char rev_str[5];
Steven Toth3ca0ea92005-12-01 00:51:27 -080032 u8 MAC_address[6];
Linus Torvalds1da177e2005-04-16 15:20:36 -070033};
34
Mauro Carvalho Chehab0f97a932005-09-09 13:04:05 -070035void tveeprom_hauppauge_analog(struct i2c_client *c, struct tveeprom *tvee,
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 unsigned char *eeprom_data);
37
38int tveeprom_read(struct i2c_client *c, unsigned char *eedata, int len);