* [PATCH 2/2] [media] cx231xx: Fix i2c support at cx231xx-input
[not found] <cover.1289568397.git.mchehab@redhat.com>
@ 2010-11-12 13:28 ` Mauro Carvalho Chehab
2010-11-12 13:28 ` [PATCH 1/2] [media] ir-kbd-i2c: add rc_dev as a parameter to the driver Mauro Carvalho Chehab
1 sibling, 0 replies; 3+ messages in thread
From: Mauro Carvalho Chehab @ 2010-11-12 13:28 UTC (permalink / raw)
Cc: Linux Media Mailing List
There was a bug at cx231xx-input, where it were registering the remote
controls twice, one via ir-kbd-i2c and another directly.
Also, the patch that added rc_register_device() broke compilation for it.
This patch fixes cx231xx-input by fixing the depends on, to point to the
new symbol, and initializing the scanmask via platform_data.
While here, also fix Kconfig symbol change for IR core dependencies.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
diff --git a/drivers/media/video/cx231xx/Kconfig b/drivers/media/video/cx231xx/Kconfig
index ab7d5df..d6a2350 100644
--- a/drivers/media/video/cx231xx/Kconfig
+++ b/drivers/media/video/cx231xx/Kconfig
@@ -16,7 +16,7 @@ config VIDEO_CX231XX
config VIDEO_CX231XX_RC
bool "Conexant cx231xx Remote Controller additional support"
- depends on VIDEO_IR
+ depends on IR_CORE
depends on VIDEO_CX231XX
default y
---help---
diff --git a/drivers/media/video/cx231xx/cx231xx-input.c b/drivers/media/video/cx231xx/cx231xx-input.c
index 6725244..65d951e 100644
--- a/drivers/media/video/cx231xx/cx231xx-input.c
+++ b/drivers/media/video/cx231xx/cx231xx-input.c
@@ -29,6 +29,8 @@ static int get_key_isdbt(struct IR_i2c *ir, u32 *ir_key,
{
u8 cmd;
+ dev_dbg(&ir->rc->input_dev->dev, "%s\n", __func__);
+
/* poll IR chip */
if (1 != i2c_master_recv(ir->c, &cmd, 1))
return -EIO;
@@ -40,7 +42,7 @@ static int get_key_isdbt(struct IR_i2c *ir, u32 *ir_key,
if (cmd == 0xff)
return 0;
- dev_dbg(&ir->input->dev, "scancode = %02x\n", cmd);
+ dev_dbg(&ir->rc->input_dev->dev, "scancode = %02x\n", cmd);
*ir_key = cmd;
*ir_raw = cmd;
@@ -49,9 +51,7 @@ static int get_key_isdbt(struct IR_i2c *ir, u32 *ir_key,
int cx231xx_ir_init(struct cx231xx *dev)
{
- struct input_dev *input_dev;
struct i2c_board_info info;
- int rc;
u8 ir_i2c_bus;
dev_dbg(&dev->udev->dev, "%s\n", __func__);
@@ -60,34 +60,18 @@ int cx231xx_ir_init(struct cx231xx *dev)
if (!cx231xx_boards[dev->model].rc_map)
return -ENODEV;
- input_dev = input_allocate_device();
- if (!input_dev)
- return -ENOMEM;
-
request_module("ir-kbd-i2c");
memset(&info, 0, sizeof(struct i2c_board_info));
- memset(&dev->ir.init_data, 0, sizeof(dev->ir.init_data));
+ memset(&dev->init_data, 0, sizeof(dev->init_data));
+ dev->init_data.rc_dev = rc_allocate_device();
+ if (!dev->init_data.rc_dev)
+ return -ENOMEM;
- dev->ir.input_dev = input_dev;
- dev->ir.init_data.name = cx231xx_boards[dev->model].name;
- dev->ir.props.priv = dev;
- dev->ir.props.allowed_protos = IR_TYPE_NEC;
- snprintf(dev->ir.name, sizeof(dev->ir.name),
- "cx231xx IR (%s)", cx231xx_boards[dev->model].name);
- usb_make_path(dev->udev, dev->ir.phys, sizeof(dev->ir.phys));
- strlcat(dev->ir.phys, "/input0", sizeof(dev->ir.phys));
+ dev->init_data.name = cx231xx_boards[dev->model].name;
strlcpy(info.type, "ir_video", I2C_NAME_SIZE);
- info.platform_data = &dev->ir.init_data;
-
- input_dev->name = dev->ir.name;
- input_dev->phys = dev->ir.phys;
- input_dev->dev.parent = &dev->udev->dev;
- input_dev->id.bustype = BUS_USB;
- input_dev->id.version = 1;
- input_dev->id.vendor = le16_to_cpu(dev->udev->descriptor.idVendor);
- input_dev->id.product = le16_to_cpu(dev->udev->descriptor.idProduct);
+ info.platform_data = &dev->init_data;
/*
* Board-dependent values
@@ -95,28 +79,23 @@ int cx231xx_ir_init(struct cx231xx *dev)
* For now, there's just one type of hardware design using
* an i2c device.
*/
- dev->ir.init_data.get_key = get_key_isdbt;
- dev->ir.init_data.ir_codes = cx231xx_boards[dev->model].rc_map;
+ dev->init_data.get_key = get_key_isdbt;
+ dev->init_data.ir_codes = cx231xx_boards[dev->model].rc_map;
/* The i2c micro-controller only outputs the cmd part of NEC protocol */
- dev->ir.props.scanmask = 0xff;
+ dev->init_data.rc_dev->scanmask = 0xff;
+ dev->init_data.rc_dev->driver_name = "cx231xx";
+ dev->init_data.type = IR_TYPE_NEC;
info.addr = 0x30;
- rc = ir_input_register(input_dev, cx231xx_boards[dev->model].rc_map,
- &dev->ir.props, MODULE_NAME);
- if (rc < 0)
- return rc;
-
/* Load and bind ir-kbd-i2c */
ir_i2c_bus = cx231xx_boards[dev->model].ir_i2c_master;
+ dev_dbg(&dev->udev->dev, "Trying to bind ir at bus %d, addr 0x%02x\n",
+ ir_i2c_bus, info.addr);
i2c_new_device(&dev->i2c_bus[ir_i2c_bus].i2c_adap, &info);
- return rc;
+ return 0;
}
void cx231xx_ir_exit(struct cx231xx *dev)
{
- if (dev->ir.input_dev) {
- ir_input_unregister(dev->ir.input_dev);
- dev->ir.input_dev = NULL;
- }
}
diff --git a/drivers/media/video/cx231xx/cx231xx.h b/drivers/media/video/cx231xx/cx231xx.h
index c439e77..fcccc9d 100644
--- a/drivers/media/video/cx231xx/cx231xx.h
+++ b/drivers/media/video/cx231xx/cx231xx.h
@@ -602,25 +602,6 @@ struct cx231xx_tsport {
void *port_priv;
};
-struct cx231xx_ir_t {
- struct input_dev *input_dev;
- char name[40];
- char phys[32];
-
-#if 0
- /*
- * Due to a Kconfig change, cx231xx-input is not being compiled.
- * This structure disappeared, but other fixes are also needed.
- * So, as a workaround, let's just comment this struct and let a
- * latter patch fix it.
- */
- struct ir_dev_props props;
-#endif
-
- /* I2C keyboard data */
- struct IR_i2c_init_data init_data;
-};
-
/* main device struct */
struct cx231xx {
/* generic device properties */
@@ -631,7 +612,7 @@ struct cx231xx {
struct cx231xx_board board;
/* For I2C IR support */
- struct cx231xx_ir_t ir;
+ struct IR_i2c_init_data init_data;
unsigned int stream_on:1; /* Locks streams */
unsigned int vbi_stream_on:1; /* Locks streams for VBI */
--
1.7.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH 1/2] [media] ir-kbd-i2c: add rc_dev as a parameter to the driver
[not found] <cover.1289568397.git.mchehab@redhat.com>
2010-11-12 13:28 ` [PATCH 2/2] [media] cx231xx: Fix i2c support at cx231xx-input Mauro Carvalho Chehab
@ 2010-11-12 13:28 ` Mauro Carvalho Chehab
2010-11-12 21:04 ` David Härdeman
1 sibling, 1 reply; 3+ messages in thread
From: Mauro Carvalho Chehab @ 2010-11-12 13:28 UTC (permalink / raw)
Cc: Linux Media Mailing List
There are several fields on rc_dev that drivers can benefit. Allow drivers
to pass it as a parameter to the driver.
For now, the rc_dev parameter is optional. If drivers don't pass it, create
them internally. However, the best is to create rc_dev inside the drivers,
in order to fill other fields, like open(), close(), driver_name, etc.
So, a latter patch making it mandatory and changing the caller drivers is
welcome.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
diff --git a/drivers/media/video/ir-kbd-i2c.c b/drivers/media/video/ir-kbd-i2c.c
index 55a22e7..50bb627 100644
--- a/drivers/media/video/ir-kbd-i2c.c
+++ b/drivers/media/video/ir-kbd-i2c.c
@@ -272,20 +272,16 @@ static int ir_probe(struct i2c_client *client, const struct i2c_device_id *id)
const char *name = NULL;
u64 ir_type = IR_TYPE_UNKNOWN;
struct IR_i2c *ir;
- struct rc_dev *rc;
+ struct rc_dev *rc = NULL;
struct i2c_adapter *adap = client->adapter;
unsigned short addr = client->addr;
int err;
- ir = kzalloc(sizeof(struct IR_i2c),GFP_KERNEL);
- rc = rc_allocate_device();
- if (!ir || !rc) {
- err = -ENOMEM;
- goto err_out_free;
- }
+ ir = kzalloc(sizeof(struct IR_i2c), GFP_KERNEL);
+ if (!ir)
+ return -ENOMEM;
ir->c = client;
- ir->rc = rc;
ir->polling_interval = DEFAULT_POLLING_INTERVAL;
i2c_set_clientdata(client, ir);
@@ -334,6 +330,8 @@ static int ir_probe(struct i2c_client *client, const struct i2c_device_id *id)
client->dev.platform_data;
ir_codes = init_data->ir_codes;
+ rc = init_data->rc_dev;
+
name = init_data->name;
if (init_data->type)
ir_type = init_data->type;
@@ -367,6 +365,19 @@ static int ir_probe(struct i2c_client *client, const struct i2c_device_id *id)
}
}
+ if (!rc) {
+ /*
+ * If platform_data doesn't specify rc_dev, initilize it
+ * internally
+ */
+ rc = rc_allocate_device();
+ if (!rc) {
+ err = -ENOMEM;
+ goto err_out_free;
+ }
+ }
+ ir->rc = rc;
+
/* Make sure we are all setup before going on */
if (!name || !ir->get_key || !ir_type || !ir_codes) {
dprintk(1, ": Unsupported device at address 0x%02x\n",
@@ -383,12 +394,21 @@ static int ir_probe(struct i2c_client *client, const struct i2c_device_id *id)
dev_name(&adap->dev),
dev_name(&client->dev));
- /* init + register input device */
+ /*
+ * Initialize input_dev fields
+ * It doesn't make sense to allow overriding them via platform_data
+ */
rc->input_id.bustype = BUS_I2C;
- rc->input_name = ir->name;
rc->input_phys = ir->phys;
- rc->map_name = ir->ir_codes;
- rc->driver_name = MODULE_NAME;
+ rc->input_name = ir->name;
+
+ /*
+ * Initialize the other fields of rc_dev
+ */
+ rc->map_name = ir->ir_codes;
+ rc->allowed_protos = ir_type;
+ if (!rc->driver_name)
+ rc->driver_name = MODULE_NAME;
err = rc_register_device(rc);
if (err)
@@ -404,6 +424,7 @@ static int ir_probe(struct i2c_client *client, const struct i2c_device_id *id)
return 0;
err_out_free:
+ /* Only frees rc if it were allocated internally */
rc_free_device(rc);
kfree(ir);
return err;
diff --git a/include/media/ir-kbd-i2c.h b/include/media/ir-kbd-i2c.h
index 4ee9b42..aca015e 100644
--- a/include/media/ir-kbd-i2c.h
+++ b/include/media/ir-kbd-i2c.h
@@ -46,5 +46,7 @@ struct IR_i2c_init_data {
*/
int (*get_key)(struct IR_i2c*, u32*, u32*);
enum ir_kbd_get_key_fn internal_get_key_func;
+
+ struct rc_dev *rc_dev;
};
#endif
--
1.7.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 1/2] [media] ir-kbd-i2c: add rc_dev as a parameter to the driver
2010-11-12 13:28 ` [PATCH 1/2] [media] ir-kbd-i2c: add rc_dev as a parameter to the driver Mauro Carvalho Chehab
@ 2010-11-12 21:04 ` David Härdeman
0 siblings, 0 replies; 3+ messages in thread
From: David Härdeman @ 2010-11-12 21:04 UTC (permalink / raw)
To: Mauro Carvalho Chehab; +Cc: Linux Media Mailing List
On Fri, Nov 12, 2010 at 11:28:38AM -0200, Mauro Carvalho Chehab wrote:
>There are several fields on rc_dev that drivers can benefit. Allow drivers
>to pass it as a parameter to the driver.
>
>For now, the rc_dev parameter is optional. If drivers don't pass it, create
>them internally. However, the best is to create rc_dev inside the drivers,
>in order to fill other fields, like open(), close(), driver_name, etc.
>So, a latter patch making it mandatory and changing the caller drivers is
>welcome.
Looks good, no objections. Sorry for misinterpreting your suggested
change.
--
David Härdeman
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2010-11-12 21:04 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <cover.1289568397.git.mchehab@redhat.com>
2010-11-12 13:28 ` [PATCH 2/2] [media] cx231xx: Fix i2c support at cx231xx-input Mauro Carvalho Chehab
2010-11-12 13:28 ` [PATCH 1/2] [media] ir-kbd-i2c: add rc_dev as a parameter to the driver Mauro Carvalho Chehab
2010-11-12 21:04 ` David Härdeman
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox