blob: 5660ea24996b42f0634c5fb0a6267131d36fca25 [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 Verkuilf2520102006-11-12 09:28:46 -03006 u32 has_ir; /* bit 0: IR receiver present, bit 1: IR transmitter (blaster) present. -1 == unknown */
Steven Toth3ca0ea92005-12-01 00:51:27 -08007 u32 has_MAC_address; /* 0: no MAC, 1: MAC present, 2: unknown */
Linus Torvalds1da177e2005-04-16 15:20:36 -07008
9 u32 tuner_type;
10 u32 tuner_formats;
Hans Verkuilf95006f2005-12-01 00:51:42 -080011 u32 tuner_hauppauge_model;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012
Mauro Carvalho Chehab0f97a932005-09-09 13:04:05 -070013 u32 tuner2_type;
14 u32 tuner2_formats;
Hans Verkuilf95006f2005-12-01 00:51:42 -080015 u32 tuner2_hauppauge_model;
Mauro Carvalho Chehab0f97a932005-09-09 13:04:05 -070016
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 u32 digitizer;
18 u32 digitizer_formats;
19
20 u32 audio_processor;
Mauro Carvalho Chehab0f97a932005-09-09 13:04:05 -070021 u32 decoder_processor;
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
23 u32 model;
24 u32 revision;
25 u32 serial_number;
26 char rev_str[5];
Steven Toth3ca0ea92005-12-01 00:51:27 -080027 u8 MAC_address[6];
Linus Torvalds1da177e2005-04-16 15:20:36 -070028};
29
Mauro Carvalho Chehab0f97a932005-09-09 13:04:05 -070030void tveeprom_hauppauge_analog(struct i2c_client *c, struct tveeprom *tvee,
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 unsigned char *eeprom_data);
32
33int tveeprom_read(struct i2c_client *c, unsigned char *eedata, int len);