1 // SPDX-License-Identifier: GPL-2.0-only
3 * ngene-i2c.c: nGene PCIe bridge driver i2c functions
5 * Copyright (C) 2005-2007 Micronas
7 * Copyright (C) 2008-2009 Ralph Metzler <rjkm@metzlerbros.de>
8 * Modifications for new nGene firmware,
9 * support for EEPROM-copying,
10 * support for new dual DVB-S2 card prototype
13 /* FIXME - some of these can probably be removed */
14 #include <linux/module.h>
15 #include <linux/init.h>
16 #include <linux/delay.h>
17 #include <linux/slab.h>
18 #include <linux/poll.h>
20 #include <asm/div64.h>
21 #include <linux/pci.h>
22 #include <linux/pci_ids.h>
23 #include <linux/timer.h>
24 #include <linux/byteorder/generic.h>
25 #include <linux/firmware.h>
26 #include <linux/vmalloc.h>
30 /* Firmware command for i2c operations */
31 static int ngene_command_i2c_read(struct ngene
*dev
, u8 adr
,
32 u8
*out
, u8 outlen
, u8
*in
, u8 inlen
, int flag
)
34 struct ngene_command com
;
36 com
.cmd
.hdr
.Opcode
= CMD_I2C_READ
;
37 com
.cmd
.hdr
.Length
= outlen
+ 3;
38 com
.cmd
.I2CRead
.Device
= adr
<< 1;
39 memcpy(com
.cmd
.I2CRead
.Data
, out
, outlen
);
40 com
.cmd
.I2CRead
.Data
[outlen
] = inlen
;
41 com
.cmd
.I2CRead
.Data
[outlen
+ 1] = 0;
42 com
.in_len
= outlen
+ 3;
43 com
.out_len
= inlen
+ 1;
45 if (ngene_command(dev
, &com
) < 0)
48 if ((com
.cmd
.raw8
[0] >> 1) != adr
)
52 memcpy(in
, com
.cmd
.raw8
, inlen
+ 1);
54 memcpy(in
, com
.cmd
.raw8
+ 1, inlen
);
58 static int ngene_command_i2c_write(struct ngene
*dev
, u8 adr
,
61 struct ngene_command com
;
64 com
.cmd
.hdr
.Opcode
= CMD_I2C_WRITE
;
65 com
.cmd
.hdr
.Length
= outlen
+ 1;
66 com
.cmd
.I2CRead
.Device
= adr
<< 1;
67 memcpy(com
.cmd
.I2CRead
.Data
, out
, outlen
);
68 com
.in_len
= outlen
+ 1;
71 if (ngene_command(dev
, &com
) < 0)
74 if (com
.cmd
.raw8
[0] == 1)
80 static void ngene_i2c_set_bus(struct ngene
*dev
, int bus
)
82 if (!(dev
->card_info
->i2c_access
& 2))
84 if (dev
->i2c_current_bus
== bus
)
89 ngene_command_gpio_set(dev
, 3, 0);
90 ngene_command_gpio_set(dev
, 2, 1);
94 ngene_command_gpio_set(dev
, 2, 0);
95 ngene_command_gpio_set(dev
, 3, 1);
98 dev
->i2c_current_bus
= bus
;
101 static int ngene_i2c_master_xfer(struct i2c_adapter
*adapter
,
102 struct i2c_msg msg
[], int num
)
104 struct ngene_channel
*chan
=
105 (struct ngene_channel
*)i2c_get_adapdata(adapter
);
106 struct ngene
*dev
= chan
->dev
;
108 mutex_lock(&dev
->i2c_switch_mutex
);
109 ngene_i2c_set_bus(dev
, chan
->number
);
111 if (num
== 2 && msg
[1].flags
& I2C_M_RD
&& !(msg
[0].flags
& I2C_M_RD
))
112 if (!ngene_command_i2c_read(dev
, msg
[0].addr
,
113 msg
[0].buf
, msg
[0].len
,
114 msg
[1].buf
, msg
[1].len
, 0))
117 if (num
== 1 && !(msg
[0].flags
& I2C_M_RD
))
118 if (!ngene_command_i2c_write(dev
, msg
[0].addr
,
119 msg
[0].buf
, msg
[0].len
))
121 if (num
== 1 && (msg
[0].flags
& I2C_M_RD
))
122 if (!ngene_command_i2c_read(dev
, msg
[0].addr
, NULL
, 0,
123 msg
[0].buf
, msg
[0].len
, 0))
126 mutex_unlock(&dev
->i2c_switch_mutex
);
130 mutex_unlock(&dev
->i2c_switch_mutex
);
135 static u32
ngene_i2c_functionality(struct i2c_adapter
*adap
)
137 return I2C_FUNC_I2C
| I2C_FUNC_SMBUS_EMUL
;
140 static const struct i2c_algorithm ngene_i2c_algo
= {
141 .master_xfer
= ngene_i2c_master_xfer
,
142 .functionality
= ngene_i2c_functionality
,
145 int ngene_i2c_init(struct ngene
*dev
, int dev_nr
)
147 struct i2c_adapter
*adap
= &(dev
->channel
[dev_nr
].i2c_adapter
);
149 i2c_set_adapdata(adap
, &(dev
->channel
[dev_nr
]));
151 strscpy(adap
->name
, "nGene", sizeof(adap
->name
));
153 adap
->algo
= &ngene_i2c_algo
;
154 adap
->algo_data
= (void *)&(dev
->channel
[dev_nr
]);
155 adap
->dev
.parent
= &dev
->pci_dev
->dev
;
157 return i2c_add_adapter(adap
);