mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-16 20:07:31 +07:00
ea6c06033f
Adds I2C registration of the Zilog Z8F0811 IR microcontroller for either lirc_zilog or ir-kbd-i2c to use. This is a required step in removing lirc_zilog's use of the deprecated struct i2c_adapter.id field. Signed-off-by: Andy Walls <awalls@md.metrocast.net> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
198 lines
4.3 KiB
C
198 lines
4.3 KiB
C
|
|
/*
|
|
* Hauppauge HD PVR USB driver
|
|
*
|
|
* Copyright (C) 2008 Janne Grunau (j@jannau.net)
|
|
*
|
|
* IR device registration code is
|
|
* Copyright (C) 2010 Andy Walls <awalls@md.metrocast.net>
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License as
|
|
* published by the Free Software Foundation, version 2.
|
|
*
|
|
*/
|
|
|
|
#include <linux/i2c.h>
|
|
#include <linux/slab.h>
|
|
|
|
#include "hdpvr.h"
|
|
|
|
#define CTRL_READ_REQUEST 0xb8
|
|
#define CTRL_WRITE_REQUEST 0x38
|
|
|
|
#define REQTYPE_I2C_READ 0xb1
|
|
#define REQTYPE_I2C_WRITE 0xb0
|
|
#define REQTYPE_I2C_WRITE_STATT 0xd0
|
|
|
|
#define Z8F0811_IR_TX_I2C_ADDR 0x70
|
|
#define Z8F0811_IR_RX_I2C_ADDR 0x71
|
|
|
|
static const u8 ir_i2c_addrs[] = {
|
|
Z8F0811_IR_TX_I2C_ADDR,
|
|
Z8F0811_IR_RX_I2C_ADDR,
|
|
};
|
|
|
|
static const char * const ir_devicenames[] = {
|
|
"ir_tx_z8f0811_hdpvr",
|
|
"ir_rx_z8f0811_hdpvr",
|
|
};
|
|
|
|
static int hdpvr_new_i2c_ir(struct hdpvr_device *dev, struct i2c_adapter *adap,
|
|
const char *type, u8 addr)
|
|
{
|
|
struct i2c_board_info info;
|
|
struct IR_i2c_init_data *init_data = &dev->ir_i2c_init_data;
|
|
unsigned short addr_list[2] = { addr, I2C_CLIENT_END };
|
|
|
|
memset(&info, 0, sizeof(struct i2c_board_info));
|
|
strlcpy(info.type, type, I2C_NAME_SIZE);
|
|
|
|
/* Our default information for ir-kbd-i2c.c to use */
|
|
switch (addr) {
|
|
case Z8F0811_IR_RX_I2C_ADDR:
|
|
init_data->ir_codes = RC_MAP_HAUPPAUGE_NEW;
|
|
init_data->internal_get_key_func = IR_KBD_GET_KEY_HAUP_XVR;
|
|
init_data->type = RC_TYPE_RC5;
|
|
init_data->name = "HD PVR";
|
|
info.platform_data = init_data;
|
|
break;
|
|
}
|
|
|
|
return i2c_new_probed_device(adap, &info, addr_list, NULL) == NULL ?
|
|
-1 : 0;
|
|
}
|
|
|
|
int hdpvr_register_i2c_ir(struct hdpvr_device *dev)
|
|
{
|
|
int i;
|
|
int ret = 0;
|
|
|
|
for (i = 0; i < ARRAY_SIZE(ir_i2c_addrs); i++)
|
|
ret += hdpvr_new_i2c_ir(dev, dev->i2c_adapter,
|
|
ir_devicenames[i], ir_i2c_addrs[i]);
|
|
|
|
return ret;
|
|
}
|
|
|
|
static int hdpvr_i2c_read(struct hdpvr_device *dev, unsigned char addr,
|
|
char *data, int len)
|
|
{
|
|
int ret;
|
|
char *buf = kmalloc(len, GFP_KERNEL);
|
|
if (!buf)
|
|
return -ENOMEM;
|
|
|
|
ret = usb_control_msg(dev->udev,
|
|
usb_rcvctrlpipe(dev->udev, 0),
|
|
REQTYPE_I2C_READ, CTRL_READ_REQUEST,
|
|
0x100|addr, 0, buf, len, 1000);
|
|
|
|
if (ret == len) {
|
|
memcpy(data, buf, len);
|
|
ret = 0;
|
|
} else if (ret >= 0)
|
|
ret = -EIO;
|
|
|
|
kfree(buf);
|
|
|
|
return ret;
|
|
}
|
|
|
|
static int hdpvr_i2c_write(struct hdpvr_device *dev, unsigned char addr,
|
|
char *data, int len)
|
|
{
|
|
int ret;
|
|
char *buf = kmalloc(len, GFP_KERNEL);
|
|
if (!buf)
|
|
return -ENOMEM;
|
|
|
|
memcpy(buf, data, len);
|
|
ret = usb_control_msg(dev->udev,
|
|
usb_sndctrlpipe(dev->udev, 0),
|
|
REQTYPE_I2C_WRITE, CTRL_WRITE_REQUEST,
|
|
0x100|addr, 0, buf, len, 1000);
|
|
|
|
if (ret < 0)
|
|
goto error;
|
|
|
|
ret = usb_control_msg(dev->udev,
|
|
usb_rcvctrlpipe(dev->udev, 0),
|
|
REQTYPE_I2C_WRITE_STATT, CTRL_READ_REQUEST,
|
|
0, 0, buf, 2, 1000);
|
|
|
|
if (ret == 2)
|
|
ret = 0;
|
|
else if (ret >= 0)
|
|
ret = -EIO;
|
|
|
|
error:
|
|
kfree(buf);
|
|
return ret;
|
|
}
|
|
|
|
static int hdpvr_transfer(struct i2c_adapter *i2c_adapter, struct i2c_msg *msgs,
|
|
int num)
|
|
{
|
|
struct hdpvr_device *dev = i2c_get_adapdata(i2c_adapter);
|
|
int retval = 0, i, addr;
|
|
|
|
if (num <= 0)
|
|
return 0;
|
|
|
|
mutex_lock(&dev->i2c_mutex);
|
|
|
|
for (i = 0; i < num && !retval; i++) {
|
|
addr = msgs[i].addr << 1;
|
|
|
|
if (msgs[i].flags & I2C_M_RD)
|
|
retval = hdpvr_i2c_read(dev, addr, msgs[i].buf,
|
|
msgs[i].len);
|
|
else
|
|
retval = hdpvr_i2c_write(dev, addr, msgs[i].buf,
|
|
msgs[i].len);
|
|
}
|
|
|
|
mutex_unlock(&dev->i2c_mutex);
|
|
|
|
return retval ? retval : num;
|
|
}
|
|
|
|
static u32 hdpvr_functionality(struct i2c_adapter *adapter)
|
|
{
|
|
return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL;
|
|
}
|
|
|
|
static struct i2c_algorithm hdpvr_algo = {
|
|
.master_xfer = hdpvr_transfer,
|
|
.functionality = hdpvr_functionality,
|
|
};
|
|
|
|
int hdpvr_register_i2c_adapter(struct hdpvr_device *dev)
|
|
{
|
|
struct i2c_adapter *i2c_adap;
|
|
int retval = -ENOMEM;
|
|
|
|
i2c_adap = kzalloc(sizeof(struct i2c_adapter), GFP_KERNEL);
|
|
if (i2c_adap == NULL)
|
|
goto error;
|
|
|
|
strlcpy(i2c_adap->name, "Hauppauge HD PVR I2C",
|
|
sizeof(i2c_adap->name));
|
|
i2c_adap->algo = &hdpvr_algo;
|
|
i2c_adap->owner = THIS_MODULE;
|
|
i2c_adap->dev.parent = &dev->udev->dev;
|
|
|
|
i2c_set_adapdata(i2c_adap, dev);
|
|
|
|
retval = i2c_add_adapter(i2c_adap);
|
|
|
|
if (!retval)
|
|
dev->i2c_adapter = i2c_adap;
|
|
else
|
|
kfree(i2c_adap);
|
|
|
|
error:
|
|
return retval;
|
|
}
|