2 * uio_aec.c -- simple driver for Adrienne Electronics Corp time code PCI device
4 * Copyright (C) 2008 Brandon Philips <brandon@ifup.org>
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published
8 * by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc., 59
17 * Temple Place, Suite 330, Boston, MA 02111-1307, USA.
20 #include <linux/kernel.h>
21 #include <linux/module.h>
22 #include <linux/pci.h>
23 #include <linux/init.h>
24 #include <linux/interrupt.h>
25 #include <linux/cdev.h>
28 #include <linux/uaccess.h>
29 #include <linux/uio_driver.h>
31 #define PCI_VENDOR_ID_AEC 0xaecb
32 #define PCI_DEVICE_ID_AEC_VITCLTC 0x6250
34 #define INT_ENABLE_ADDR 0xFC
35 #define INT_ENABLE 0x10
36 #define INT_DISABLE 0x0
38 #define INT_MASK_ADDR 0x2E
39 #define INT_MASK_ALL 0x3F
41 #define INTA_DRVR_ADDR 0xFE
42 #define INTA_ENABLED_FLAG 0x08
43 #define INTA_FLAG 0x01
47 static struct pci_device_id ids
[] = {
48 { PCI_DEVICE(PCI_VENDOR_ID_AEC
, PCI_DEVICE_ID_AEC_VITCLTC
), },
51 MODULE_DEVICE_TABLE(pci
, ids
);
53 static irqreturn_t
aectc_irq(int irq
, struct uio_info
*dev_info
)
55 void __iomem
*int_flag
= dev_info
->priv
+ INTA_DRVR_ADDR
;
56 unsigned char status
= ioread8(int_flag
);
59 if ((status
& INTA_ENABLED_FLAG
) && (status
& INTA_FLAG
)) {
60 /* application writes 0x00 to 0x2F to get next interrupt */
61 status
= ioread8(dev_info
->priv
+ MAILBOX
);
68 static void print_board_data(struct pci_dev
*pdev
, struct uio_info
*i
)
70 dev_info(&pdev
->dev
, "PCI-TC board vendor: %x%x number: %x%x"
72 ioread8(i
->priv
+ 0x01),
73 ioread8(i
->priv
+ 0x00),
74 ioread8(i
->priv
+ 0x03),
75 ioread8(i
->priv
+ 0x02),
76 ioread8(i
->priv
+ 0x06),
77 ioread8(i
->priv
+ 0x07));
80 static int __devinit
probe(struct pci_dev
*pdev
, const struct pci_device_id
*id
)
82 struct uio_info
*info
;
85 info
= kzalloc(sizeof(struct uio_info
), GFP_KERNEL
);
89 if (pci_enable_device(pdev
))
92 if (pci_request_regions(pdev
, "aectc"))
96 info
->port
[0].start
= pci_resource_start(pdev
, 0);
97 if (!info
->port
[0].start
)
99 info
->priv
= pci_iomap(pdev
, 0, 0);
102 info
->port
[0].size
= pci_resource_len(pdev
, 0);
103 info
->port
[0].porttype
= UIO_PORT_GPIO
;
105 info
->version
= "0.0.1";
106 info
->irq
= pdev
->irq
;
107 info
->irq_flags
= IRQF_SHARED
;
108 info
->handler
= aectc_irq
;
110 print_board_data(pdev
, info
);
111 ret
= uio_register_device(&pdev
->dev
, info
);
115 iowrite32(INT_ENABLE
, info
->priv
+ INT_ENABLE_ADDR
);
116 iowrite8(INT_MASK_ALL
, info
->priv
+ INT_MASK_ADDR
);
117 if (!(ioread8(info
->priv
+ INTA_DRVR_ADDR
)
118 & INTA_ENABLED_FLAG
))
119 dev_err(&pdev
->dev
, "aectc: interrupts not enabled\n");
121 pci_set_drvdata(pdev
, info
);
126 pci_iounmap(pdev
, info
->priv
);
128 pci_release_regions(pdev
);
130 pci_disable_device(pdev
);
136 static void remove(struct pci_dev
*pdev
)
138 struct uio_info
*info
= pci_get_drvdata(pdev
);
140 /* disable interrupts */
141 iowrite8(INT_DISABLE
, info
->priv
+ INT_MASK_ADDR
);
142 iowrite32(INT_DISABLE
, info
->priv
+ INT_ENABLE_ADDR
);
143 /* read mailbox to ensure board drops irq */
144 ioread8(info
->priv
+ MAILBOX
);
146 uio_unregister_device(info
);
147 pci_release_regions(pdev
);
148 pci_disable_device(pdev
);
149 pci_set_drvdata(pdev
, NULL
);
155 static struct pci_driver pci_driver
= {
162 static int __init
aectc_init(void)
164 return pci_register_driver(&pci_driver
);
167 static void __exit
aectc_exit(void)
169 pci_unregister_driver(&pci_driver
);
172 MODULE_LICENSE("GPL");
174 module_init(aectc_init
);
175 module_exit(aectc_exit
);