2 * Silicon Labs C2 port Linux support for Eurotech Duramar 2150
4 * Copyright (c) 2008 Rodolfo Giometti <giometti@linux.it>
5 * Copyright (c) 2008 Eurotech S.p.A. <info@eurotech.it>
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License version 2 as published by
9 * the Free Software Foundation
12 #include <linux/errno.h>
13 #include <linux/init.h>
14 #include <linux/kernel.h>
15 #include <linux/module.h>
16 #include <linux/delay.h>
18 #include <linux/c2port.h>
20 #define DATA_PORT 0x325
21 #define DIR_PORT 0x326
25 static DEFINE_MUTEX(update_lock);
31 static void duramar2150_c2port_access(struct c2port_device *dev, int status)
35 mutex_lock(&update_lock);
39 /* 0 = input, 1 = output */
41 outb(v | (C2D | C2CK), DIR_PORT);
43 /* When access is "off" is important that both lines are set
44 * as inputs or hi-impedence */
45 outb(v & ~(C2D | C2CK), DIR_PORT);
47 mutex_unlock(&update_lock);
50 static void duramar2150_c2port_c2d_dir(struct c2port_device *dev, int dir)
54 mutex_lock(&update_lock);
59 outb(v & ~C2D, DIR_PORT);
61 outb(v | C2D, DIR_PORT);
63 mutex_unlock(&update_lock);
66 static int duramar2150_c2port_c2d_get(struct c2port_device *dev)
68 return inb(DATA_PORT) & C2D;
71 static void duramar2150_c2port_c2d_set(struct c2port_device *dev, int status)
75 mutex_lock(&update_lock);
80 outb(v | C2D, DATA_PORT);
82 outb(v & ~C2D, DATA_PORT);
84 mutex_unlock(&update_lock);
87 static void duramar2150_c2port_c2ck_set(struct c2port_device *dev, int status)
91 mutex_lock(&update_lock);
96 outb(v | C2CK, DATA_PORT);
98 outb(v & ~C2CK, DATA_PORT);
100 mutex_unlock(&update_lock);
103 static struct c2port_ops duramar2150_c2port_ops = {
104 .block_size = 512, /* bytes */
105 .blocks_num = 30, /* total flash size: 15360 bytes */
107 .access = duramar2150_c2port_access,
108 .c2d_dir = duramar2150_c2port_c2d_dir,
109 .c2d_get = duramar2150_c2port_c2d_get,
110 .c2d_set = duramar2150_c2port_c2d_set,
111 .c2ck_set = duramar2150_c2port_c2ck_set,
114 static struct c2port_device *duramar2150_c2port_dev;
120 static int __init duramar2150_c2port_init(void)
122 struct resource *res;
125 res = request_region(0x325, 2, "c2port");
129 duramar2150_c2port_dev = c2port_device_register("uc",
130 &duramar2150_c2port_ops, NULL);
131 if (!duramar2150_c2port_dev) {
139 release_region(0x325, 2);
143 static void __exit duramar2150_c2port_exit(void)
145 /* Setup the GPIOs as input by default (access = 0) */
146 duramar2150_c2port_access(duramar2150_c2port_dev, 0);
148 c2port_device_unregister(duramar2150_c2port_dev);
150 release_region(0x325, 2);
153 module_init(duramar2150_c2port_init);
154 module_exit(duramar2150_c2port_exit);
156 MODULE_AUTHOR("Rodolfo Giometti <giometti@linux.it>");
157 MODULE_DESCRIPTION("Silicon Labs C2 port Linux support for Duramar 2150");
158 MODULE_LICENSE("GPL");