blob: 7c03114158e020fab0ce45786d47c67436138a2c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * FM801 gameport driver for Linux
3 *
4 * Copyright (c) by Takashi Iwai <tiwai@suse.de>
5 *
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 *
21 */
22
23#include <asm/io.h>
24#include <linux/delay.h>
25#include <linux/errno.h>
26#include <linux/ioport.h>
27#include <linux/kernel.h>
28#include <linux/module.h>
29#include <linux/pci.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/slab.h>
31#include <linux/gameport.h>
32
33#define PCI_VENDOR_ID_FORTEMEDIA 0x1319
34#define PCI_DEVICE_ID_FM801_GP 0x0802
35
36#define HAVE_COOKED
37
38struct fm801_gp {
39 struct gameport *gameport;
40 struct resource *res_port;
41};
42
43#ifdef HAVE_COOKED
44static int fm801_gp_cooked_read(struct gameport *gameport, int *axes, int *buttons)
45{
46 unsigned short w;
47
48 w = inw(gameport->io + 2);
49 *buttons = (~w >> 14) & 0x03;
50 axes[0] = (w == 0xffff) ? -1 : ((w & 0x1fff) << 5);
51 w = inw(gameport->io + 4);
52 axes[1] = (w == 0xffff) ? -1 : ((w & 0x1fff) << 5);
53 w = inw(gameport->io + 6);
54 *buttons |= ((~w >> 14) & 0x03) << 2;
55 axes[2] = (w == 0xffff) ? -1 : ((w & 0x1fff) << 5);
56 w = inw(gameport->io + 8);
57 axes[3] = (w == 0xffff) ? -1 : ((w & 0x1fff) << 5);
58 outw(0xff, gameport->io); /* reset */
59
60 return 0;
61}
62#endif
63
64static int fm801_gp_open(struct gameport *gameport, int mode)
65{
66 switch (mode) {
67#ifdef HAVE_COOKED
68 case GAMEPORT_MODE_COOKED:
69 return 0;
70#endif
71 case GAMEPORT_MODE_RAW:
72 return 0;
73 default:
74 return -1;
75 }
76
77 return 0;
78}
79
Bill Pemberton5298cc42012-11-23 21:38:25 -080080static int fm801_gp_probe(struct pci_dev *pci, const struct pci_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -070081{
82 struct fm801_gp *gp;
83 struct gameport *port;
Jeff Garzikb435fdc2006-10-12 01:06:53 -040084 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Pekka Enberga97e1482005-09-06 15:18:33 -070086 gp = kzalloc(sizeof(struct fm801_gp), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 port = gameport_allocate_port();
88 if (!gp || !port) {
89 printk(KERN_ERR "fm801-gp: Memory allocation failed\n");
Jeff Garzikb435fdc2006-10-12 01:06:53 -040090 error = -ENOMEM;
91 goto err_out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 }
93
Jeff Garzikb435fdc2006-10-12 01:06:53 -040094 error = pci_enable_device(pci);
95 if (error)
96 goto err_out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
98 port->open = fm801_gp_open;
99#ifdef HAVE_COOKED
100 port->cooked_read = fm801_gp_cooked_read;
101#endif
102 gameport_set_name(port, "FM801");
103 gameport_set_phys(port, "pci%s/gameport0", pci_name(pci));
104 port->dev.parent = &pci->dev;
105 port->io = pci_resource_start(pci, 0);
106
107 gp->gameport = port;
108 gp->res_port = request_region(port->io, 0x10, "FM801 GP");
109 if (!gp->res_port) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 printk(KERN_DEBUG "fm801-gp: unable to grab region 0x%x-0x%x\n",
111 port->io, port->io + 0x0f);
Jeff Garzikb435fdc2006-10-12 01:06:53 -0400112 error = -EBUSY;
113 goto err_out_disable_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 }
115
116 pci_set_drvdata(pci, gp);
117
118 outb(0x60, port->io + 0x0d); /* enable joystick 1 and 2 */
119 gameport_register_port(port);
120
121 return 0;
Jeff Garzikb435fdc2006-10-12 01:06:53 -0400122
123 err_out_disable_dev:
124 pci_disable_device(pci);
125 err_out_free:
126 gameport_free_port(port);
127 kfree(gp);
128 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129}
130
Bill Pembertone2619cf2012-11-23 21:50:47 -0800131static void fm801_gp_remove(struct pci_dev *pci)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132{
133 struct fm801_gp *gp = pci_get_drvdata(pci);
134
Dmitry Torokhovd345d972010-09-29 18:17:16 -0700135 gameport_unregister_port(gp->gameport);
136 release_resource(gp->res_port);
137 kfree(gp);
138
139 pci_disable_device(pci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140}
141
Márton Németha9844b12010-01-09 23:23:58 -0800142static const struct pci_device_id fm801_gp_id_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 { PCI_VENDOR_ID_FORTEMEDIA, PCI_DEVICE_ID_FM801_GP, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 },
144 { 0 }
145};
Axel Lin5d066472012-04-21 23:37:53 -0700146MODULE_DEVICE_TABLE(pci, fm801_gp_id_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
148static struct pci_driver fm801_gp_driver = {
149 .name = "FM801_gameport",
150 .id_table = fm801_gp_id_table,
151 .probe = fm801_gp_probe,
Bill Pemberton1cb0aa82012-11-23 21:27:39 -0800152 .remove = fm801_gp_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153};
154
Axel Lin5d066472012-04-21 23:37:53 -0700155module_pci_driver(fm801_gp_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Dmitry Torokhovf445da82009-04-17 20:35:57 -0700157MODULE_DESCRIPTION("FM801 gameport driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158MODULE_AUTHOR("Takashi Iwai <tiwai@suse.de>");
159MODULE_LICENSE("GPL");