1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  *
4  *  Copyright (C) 2005 Mike Isely <isely@pobox.com>
5  *  Copyright (C) 2004 Aurelien Alleaume <slts@free.fr>
6  */
7 
8 #include <linux/slab.h>
9 #include "pvrusb2-eeprom.h"
10 #include "pvrusb2-hdw-internal.h"
11 #include "pvrusb2-debug.h"
12 
13 #define trace_eeprom(...) pvr2_trace(PVR2_TRACE_EEPROM,__VA_ARGS__)
14 
15 
16 
17 /*
18 
19    Read and analyze data in the eeprom.  Use tveeprom to figure out
20    the packet structure, since this is another Hauppauge device and
21    internally it has a family resemblance to ivtv-type devices
22 
23 */
24 
25 #include <media/tveeprom.h>
26 
27 /* We seem to only be interested in the last 128 bytes of the EEPROM */
28 #define EEPROM_SIZE 128
29 
30 /* Grab EEPROM contents, needed for direct method. */
31 static u8 *pvr2_eeprom_fetch(struct pvr2_hdw *hdw)
32 {
33 	struct i2c_msg msg[2];
34 	u8 *eeprom;
35 	u8 iadd[2];
36 	u8 addr;
37 	u16 eepromSize;
38 	unsigned int offs;
39 	int ret;
40 	int mode16 = 0;
41 	unsigned pcnt,tcnt;
42 	eeprom = kmalloc(EEPROM_SIZE,GFP_KERNEL);
43 	if (!eeprom) {
44 		pvr2_trace(PVR2_TRACE_ERROR_LEGS,
45 			   "Failed to allocate memory required to read eeprom");
46 		return NULL;
47 	}
48 
49 	trace_eeprom("Value for eeprom addr from controller was 0x%x",
50 		     hdw->eeprom_addr);
51 	addr = hdw->eeprom_addr;
52 	/* Seems that if the high bit is set, then the *real* eeprom
53 	   address is shifted right now bit position (noticed this in
54 	   newer PVR USB2 hardware) */
55 	if (addr & 0x80) addr >>= 1;
56 
57 	/* FX2 documentation states that a 16bit-addressed eeprom is
58 	   expected if the I2C address is an odd number (yeah, this is
59 	   strange but it's what they do) */
60 	mode16 = (addr & 1);
61 	eepromSize = (mode16 ? 4096 : 256);
62 	trace_eeprom("Examining %d byte eeprom at location 0x%x using %d bit addressing",
63 		     eepromSize, addr,
64 		     mode16 ? 16 : 8);
65 
66 	msg[0].addr = addr;
67 	msg[0].flags = 0;
68 	msg[0].len = mode16 ? 2 : 1;
69 	msg[0].buf = iadd;
70 	msg[1].addr = addr;
71 	msg[1].flags = I2C_M_RD;
72 
73 	/* We have to do the actual eeprom data fetch ourselves, because
74 	   (1) we're only fetching part of the eeprom, and (2) if we were
75 	   getting the whole thing our I2C driver can't grab it in one
76 	   pass - which is what tveeprom is otherwise going to attempt */
77 	memset(eeprom,0,EEPROM_SIZE);
78 	for (tcnt = 0; tcnt < EEPROM_SIZE; tcnt += pcnt) {
79 		pcnt = 16;
80 		if (pcnt + tcnt > EEPROM_SIZE) pcnt = EEPROM_SIZE-tcnt;
81 		offs = tcnt + (eepromSize - EEPROM_SIZE);
82 		if (mode16) {
83 			iadd[0] = offs >> 8;
84 			iadd[1] = offs;
85 		} else {
86 			iadd[0] = offs;
87 		}
88 		msg[1].len = pcnt;
89 		msg[1].buf = eeprom+tcnt;
90 		if ((ret = i2c_transfer(&hdw->i2c_adap,
91 					msg,ARRAY_SIZE(msg))) != 2) {
92 			pvr2_trace(PVR2_TRACE_ERROR_LEGS,
93 				   "eeprom fetch set offs err=%d",ret);
94 			kfree(eeprom);
95 			return NULL;
96 		}
97 	}
98 	return eeprom;
99 }
100 
101 
102 /* Directly call eeprom analysis function within tveeprom. */
103 int pvr2_eeprom_analyze(struct pvr2_hdw *hdw)
104 {
105 	u8 *eeprom;
106 	struct tveeprom tvdata;
107 
108 	memset(&tvdata,0,sizeof(tvdata));
109 
110 	eeprom = pvr2_eeprom_fetch(hdw);
111 	if (!eeprom)
112 		return -EINVAL;
113 
114 	tveeprom_hauppauge_analog(&tvdata, eeprom);
115 
116 	trace_eeprom("eeprom assumed v4l tveeprom module");
117 	trace_eeprom("eeprom direct call results:");
118 	trace_eeprom("has_radio=%d",tvdata.has_radio);
119 	trace_eeprom("tuner_type=%d",tvdata.tuner_type);
120 	trace_eeprom("tuner_formats=0x%x",tvdata.tuner_formats);
121 	trace_eeprom("audio_processor=%d",tvdata.audio_processor);
122 	trace_eeprom("model=%d",tvdata.model);
123 	trace_eeprom("revision=%d",tvdata.revision);
124 	trace_eeprom("serial_number=%d",tvdata.serial_number);
125 	trace_eeprom("rev_str=%s",tvdata.rev_str);
126 	hdw->tuner_type = tvdata.tuner_type;
127 	hdw->tuner_updated = !0;
128 	hdw->serial_number = tvdata.serial_number;
129 	hdw->std_mask_eeprom = tvdata.tuner_formats;
130 
131 	kfree(eeprom);
132 
133 	return 0;
134 }
135