[media] mantis: add remote control support
[linux-2.6-block.git] / drivers / media / pci / mantis / mantis_input.c
CommitLineData
a1497357
MA
1/*
2 Mantis PCI bridge driver
3
4 Copyright (C) Manu Abraham (abraham.manu@gmail.com)
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19*/
20
6bda9644 21#include <media/rc-core.h>
a1497357
MA
22#include <linux/pci.h>
23
24#include "dmxdev.h"
25#include "dvbdev.h"
26#include "dvb_demux.h"
27#include "dvb_frontend.h"
28#include "dvb_net.h"
29
30#include "mantis_common.h"
a96762da 31#include "mantis_input.h"
a1497357 32
727e625c 33#define MODULE_NAME "mantis_core"
a96762da
JK
34
35void mantis_input_process(struct mantis_pci *mantis, int scancode)
36{
37 if (mantis->rc)
38 rc_keydown(mantis->rc, RC_TYPE_UNKNOWN, scancode, 0);
39}
a1497357
MA
40
41int mantis_input_init(struct mantis_pci *mantis)
42{
d8b4b582 43 struct rc_dev *dev;
a1497357
MA
44 int err;
45
d8b4b582
DH
46 dev = rc_allocate_device();
47 if (!dev) {
48 dprintk(MANTIS_ERROR, 1, "Remote device allocation failed");
49 err = -ENOMEM;
a96762da 50 goto out;
d8b4b582 51 }
a1497357 52
a96762da
JK
53 snprintf(mantis->input_name, sizeof(mantis->input_name),
54 "Mantis %s IR receiver", mantis->hwconfig->model_name);
55 snprintf(mantis->input_phys, sizeof(mantis->input_phys),
56 "pci-%s/ir0", pci_name(mantis->pdev));
a1497357 57
d8b4b582
DH
58 dev->input_name = mantis->input_name;
59 dev->input_phys = mantis->input_phys;
60 dev->input_id.bustype = BUS_PCI;
61 dev->input_id.vendor = mantis->vendor_id;
62 dev->input_id.product = mantis->device_id;
63 dev->input_id.version = 1;
64 dev->driver_name = MODULE_NAME;
a96762da 65 dev->map_name = mantis->rc_map_name ? : RC_MAP_EMPTY;
d8b4b582 66 dev->dev.parent = &mantis->pdev->dev;
a1497357 67
d8b4b582 68 err = rc_register_device(dev);
a1497357
MA
69 if (err) {
70 dprintk(MANTIS_ERROR, 1, "IR device registration failed, ret = %d", err);
d8b4b582 71 goto out_dev;
a1497357
MA
72 }
73
d8b4b582 74 mantis->rc = dev;
a1497357 75 return 0;
d8b4b582
DH
76
77out_dev:
78 rc_free_device(dev);
d8b4b582
DH
79out:
80 return err;
a1497357 81}
a96762da 82EXPORT_SYMBOL_GPL(mantis_input_init);
a1497357 83
a96762da 84void mantis_input_exit(struct mantis_pci *mantis)
a1497357 85{
d8b4b582 86 rc_unregister_device(mantis->rc);
a1497357 87}
a96762da 88EXPORT_SYMBOL_GPL(mantis_input_exit);