aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/isdbt/fc8100/fc8100_i2c.c
blob: 7f189f0e48dcb1e097fccdd7ed96a8046f9a5db0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
/*****************************************************************************
 Copyright(c) 2009 FCI Inc. All Rights Reserved

 File name : fc8100_i2c.c

 Description : fc8100 host interface

 History :
 ----------------------------------------------------------------------
 2009/09/29	bruce		initial
*******************************************************************************/
#include <linux/module.h>
#include <linux/input.h>
#include <linux/interrupt.h>
#include <linux/platform_device.h>
#include <linux/i2c.h>
#include <linux/delay.h>
#include <linux/slab.h>
#include <linux/gpio.h>
#include <plat/gpio-cfg.h>
#include <plat/gpio-core.h>
#include <mach/regs-gpio.h>
#include <mach/regs-clock.h>
#include "fci_types.h"
#include "fci_oal.h"

#define FC8100_I2C_ADDR 0x77
#define I2C_M_FCIRD 1
#define I2C_M_FCIWR 0
#define I2C_MAX_SEND_LENGTH 300

struct i2c_ts_driver{
	struct i2c_client *client;
	struct input_dev *input_dev;
	struct work_struct work;
};

struct i2c_client *fc8100_i2c;

struct i2c_driver fc8100_i2c_driver;

static int i2c_bb_read(HANDLE hDevice, u16 addr, u8 *data, u16 length);

static int fc8100_i2c_probe(struct i2c_client *i2c_client,
	const struct i2c_device_id *id)
{
	fc8100_i2c = i2c_client;
	i2c_set_clientdata(i2c_client, NULL);

	return 0;
}

static int fc8100_remove(struct i2c_client *client)
{
	return 0;
}

static const struct i2c_device_id fc8100_id[] = {
	{ "isdbti2c", 0 },
	{ },
};

struct i2c_driver fc8100_i2c_driver = {
	.driver = {
			.name = "fc8100_i2c",
			.owner = THIS_MODULE,
		},
	.probe    = fc8100_i2c_probe,
	.remove   = fc8100_remove,
	.id_table = fc8100_id,
};

static int i2c_init(void)
{
	int res;

	printk("fc8100_i2c_drv_init ENTER...\n");
	fc8100_i2c = kzalloc(sizeof(struct i2c_ts_driver), GFP_KERNEL);

	if (fc8100_i2c == NULL)
		return -ENOMEM;

	res = i2c_add_driver(&fc8100_i2c_driver);

	return res;
}

static int i2c_deinit(void)
{
	printk("fc8100_i2c_drv_deinit ENTER...\n");

	i2c_del_driver(&fc8100_i2c_driver);

	return 0;
}

static int i2c_bb_read(HANDLE hDevice, u16 addr, u8 *data, u16 length)
{
	int res;
	struct i2c_msg rmsg[2];
	unsigned char i2c_data[1];

	rmsg[0].addr = fc8100_i2c->addr;
	rmsg[0].flags = I2C_M_FCIWR;
	rmsg[0].len = 1;
	rmsg[0].buf = i2c_data;
	i2c_data[0] = addr & 0xff;

	rmsg[1].addr = fc8100_i2c->addr;
	rmsg[1].flags = I2C_M_FCIRD;
	rmsg[1].len = length;
	rmsg[1].buf = data;
	res = i2c_transfer(fc8100_i2c->adapter, &rmsg[0], 2);

	/* return status */
	if (res >= 0)
		res = 0;

	return res;
}

static int i2c_bb_write(HANDLE hDevice, u16 addr, u8 *data, u16 length)
{
	int res;
	struct i2c_msg wmsg;
	unsigned char i2c_data[I2C_MAX_SEND_LENGTH];

	if (length+1 > I2C_MAX_SEND_LENGTH) {
		printk(".......error");
		return -ENODEV;
	}
	wmsg.addr = fc8100_i2c->addr;
	wmsg.flags = I2C_M_FCIWR;
	wmsg.len = length + 1;
	wmsg.buf = i2c_data;

	i2c_data[0] = addr & 0xff;
	memcpy(&i2c_data[1], data, length);

	res = i2c_transfer(fc8100_i2c->adapter, &wmsg, 1);

	/* return status */
	if (res >= 0)
		res = 0;

	return res;
}

static int i2c_rf_read(HANDLE hDevice, u8 addr, u8 *data, u8 length)
{
	int res;
	struct i2c_msg rmsg[3];
	unsigned char i2c_rp_data[2];
	unsigned char i2c_data[1];

	/* printk("i2c_rf_read ENTER  addr : %x, length : %d\n", addr, length); */
	rmsg[0].addr = fc8100_i2c->addr;
	rmsg[0].flags = I2C_M_FCIWR;
	rmsg[0].len = 2;
	rmsg[0].buf = i2c_rp_data;
	i2c_rp_data[0] = 0x02;
	i2c_rp_data[1] = 0x01;

	rmsg[1].addr = fc8100_i2c->addr;
	rmsg[1].flags = I2C_M_FCIWR;
	rmsg[1].len = 1;
	rmsg[1].buf = i2c_data;
	i2c_data[0] = addr & 0xff;

	rmsg[2].addr = fc8100_i2c->addr;
	rmsg[2].flags = I2C_M_FCIRD;
	rmsg[2].len = length;
	rmsg[2].buf = data;

	res = i2c_transfer(fc8100_i2c->adapter, &rmsg[0], 3);
	/* printk("i2c_rf_read data : %x\n", data[0]); */

	/* return status */
	if (res >= 0)
		res = 0;

	return res;
}

static int i2c_rf_write(HANDLE hDevice, u8 addr, u8 *data, u8 length)
{
	int res;
	struct i2c_msg wmsg[2];
	unsigned char i2c_rp_data[2];
	unsigned char i2c_data[I2C_MAX_SEND_LENGTH];

	/* printk("i2c_rf_write ENTER  addr : %x, data : %x, length : %d\n", addr, data[0], length); */
	if (length+1 > I2C_MAX_SEND_LENGTH) {
		printk(".......error");
		return -ENODEV;
	}

	wmsg[0].addr = fc8100_i2c->addr;
	wmsg[0].flags = I2C_M_FCIWR;
	wmsg[0].len = 2;
	wmsg[0].buf = i2c_rp_data;
	i2c_rp_data[0] = 0x02;
	i2c_rp_data[1] = 0x01;

	wmsg[1].addr = fc8100_i2c->addr;
	wmsg[1].flags = I2C_M_FCIWR;
	wmsg[1].len = length+1;
	wmsg[1].buf = i2c_data;
	i2c_data[0] = addr & 0xff;
	memcpy(&i2c_data[1], data, length);

	res = i2c_transfer(fc8100_i2c->adapter, &wmsg[0], 2);

	/* return status */
	if (res >= 0)
		res = 0;

	return res;
}

int fc8100_i2c_init(HANDLE hDevice, u16 param1, u16 param2)
{
	int res;

	res = i2c_init();

	return res;
}

int fc8100_i2c_byteread(HANDLE hDevice, u16 addr, u8 *data)
{
	int res = BBM_NOK;

	/* PRINTF(0, "fc8100_i2c_byteread 0x%x\n", addr); */
	res =  i2c_bb_read(hDevice, addr, (u8 *)data, 1);

	return res;
}

int fc8100_i2c_wordread(HANDLE hDevice, u16 addr, u16 *data)
{
	int res = BBM_NOK;

	/* PRINTF(0, "fc8100_i2c_wordread 0x%x\n", addr); */
	res =  i2c_bb_read(hDevice, addr, (u8 *)data, 2);

	return res;
}

int fc8100_i2c_longread(HANDLE hDevice, u16 addr, u32 *data)
{
	int res = BBM_NOK;

	/* PRINTF(0, "fc8100_i2c_longread 0x%x\n", addr); */
	res =  i2c_bb_read(hDevice, addr, (u8 *)data, 4);

	return res;
}

int fc8100_i2c_bulkread(HANDLE hDevice, u16 addr, u8 *data, u16 size)
{
	int res = BBM_NOK;

	/* PRINTF(0, "fc8100_i2c_bulkread 0x%x\n", addr); */
	res =  i2c_bb_read(hDevice, addr, (u8 *)data, size);

	return res;
}

int fc8100_i2c_bytewrite(HANDLE hDevice, u16 addr, u8 data)
{
	int res = BBM_NOK;

	res = i2c_bb_write(hDevice, addr, (u8 *)&data, 1);

	return res;
}

int fc8100_i2c_wordwrite(HANDLE hDevice, u16 addr, u16 data)
{
	int res = BBM_NOK;

	res = i2c_bb_write(hDevice, addr, (u8 *)&data, 2);

	return res;
}

int fc8100_i2c_longwrite(HANDLE hDevice, u16 addr, u32 data)
{
	int res = BBM_NOK;

	res = i2c_bb_write(hDevice, addr, (u8 *)&data, 4);

	return res;
}

int fc8100_i2c_bulkwrite(HANDLE hDevice, u16 addr, u8 *data, u16 size)
{
	int res = BBM_NOK;

	res = i2c_bb_write(hDevice, addr, (u8 *)&data, size);

	return res;
}

int fc8100_i2c_dataread(HANDLE hDevice, u16 addr, u8 *data, u16 size)
{
	int res = BBM_NOK;

	return res;
}

int fc8100_rf_bulkread(HANDLE hDevice, u8 addr, u8 *data, u8 size)
{
	int res = BBM_NOK;

	res = i2c_rf_read(hDevice, addr, (u8 *)data, size);

	return res;
}

int fc8100_rf_bulkwrite(HANDLE hDevice, u8 addr, u8 *data, u8 size)
{
	int res = BBM_NOK;

	res = i2c_rf_write(hDevice, addr, (u8 *)data, size);

	return res;
}

int fc8100_i2c_deinit(HANDLE hDevice)
{
	int res = BBM_NOK;

	res = i2c_deinit();

	return res;
}

int fc8100_spi_init(HANDLE hDevice, u16 param1, u16 param2)
{

	return BBM_OK;
}

int fc8100_spi_dataread(HANDLE hDevice, u16 addr, u8 *pBuf, u16 nLength)
{
	return BBM_OK;
}