4 * Copyright (c) 2004 Evgeniy Polyakov <zbr@ioremap.net>
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.
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.
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include <asm/types.h>
23 #include <linux/atomic.h>
26 #include <linux/delay.h>
27 #include <linux/kernel.h>
28 #include <linux/module.h>
29 #include <linux/list.h>
30 #include <linux/interrupt.h>
31 #include <linux/spinlock.h>
32 #include <linux/timer.h>
33 #include <linux/slab.h>
34 #include <linux/pci_ids.h>
35 #include <linux/pci.h>
40 * Matrox G400 DDC registers.
43 #define MATROX_G400_DDC_CLK (1<<4)
44 #define MATROX_G400_DDC_DATA (1<<1)
46 #define MATROX_BASE 0x3C00
47 #define MATROX_STATUS 0x1e14
49 #define MATROX_PORT_INDEX_OFFSET 0x00
50 #define MATROX_PORT_DATA_OFFSET 0x0A
52 #define MATROX_GET_CONTROL 0x2A
53 #define MATROX_GET_DATA 0x2B
54 #define MATROX_CURSOR_CTL 0x06
58 void __iomem
*base_addr
;
59 void __iomem
*port_index
;
60 void __iomem
*port_data
;
63 unsigned long phys_addr
;
64 void __iomem
*virt_addr
;
67 struct w1_bus_master
*bus_master
;
71 * These functions read and write DDC Data bit.
73 * Using tristate pins, since i can't find any open-drain pin in whole motherboard.
74 * Unfortunately we can't connect to Intel's 82801xx IO controller
75 * since we don't know motherboard schema, which has pretty unused(may be not) GPIO.
77 * I've heard that PIIX also has open drain pin.
81 static __inline__ u8
matrox_w1_read_reg(struct matrox_device
*dev
, u8 reg
)
85 writeb(reg
, dev
->port_index
);
86 ret
= readb(dev
->port_data
);
92 static __inline__
void matrox_w1_write_reg(struct matrox_device
*dev
, u8 reg
, u8 val
)
94 writeb(reg
, dev
->port_index
);
95 writeb(val
, dev
->port_data
);
99 static void matrox_w1_write_ddc_bit(void *data
, u8 bit
)
102 struct matrox_device
*dev
= data
;
107 bit
= dev
->data_mask
;
109 ret
= matrox_w1_read_reg(dev
, MATROX_GET_CONTROL
);
110 matrox_w1_write_reg(dev
, MATROX_GET_CONTROL
, ((ret
& ~dev
->data_mask
) | bit
));
111 matrox_w1_write_reg(dev
, MATROX_GET_DATA
, 0x00);
114 static u8
matrox_w1_read_ddc_bit(void *data
)
117 struct matrox_device
*dev
= data
;
119 ret
= matrox_w1_read_reg(dev
, MATROX_GET_DATA
);
124 static void matrox_w1_hw_init(struct matrox_device
*dev
)
126 matrox_w1_write_reg(dev
, MATROX_GET_DATA
, 0xFF);
127 matrox_w1_write_reg(dev
, MATROX_GET_CONTROL
, 0x00);
130 static int matrox_w1_probe(struct pci_dev
*pdev
, const struct pci_device_id
*ent
)
132 struct matrox_device
*dev
;
135 if (pdev
->vendor
!= PCI_VENDOR_ID_MATROX
|| pdev
->device
!= PCI_DEVICE_ID_MATROX_G400
)
138 dev
= kzalloc(sizeof(struct matrox_device
) +
139 sizeof(struct w1_bus_master
), GFP_KERNEL
);
142 "%s: Failed to create new matrox_device object.\n",
148 dev
->bus_master
= (struct w1_bus_master
*)(dev
+ 1);
151 * True for G400, for some other we need resource 0, see drivers/video/matrox/matroxfb_base.c
154 dev
->phys_addr
= pci_resource_start(pdev
, 1);
156 dev
->virt_addr
= ioremap_nocache(dev
->phys_addr
, 16384);
157 if (!dev
->virt_addr
) {
158 dev_err(&pdev
->dev
, "%s: failed to ioremap(0x%lx, %d).\n",
159 __func__
, dev
->phys_addr
, 16384);
161 goto err_out_free_device
;
164 dev
->base_addr
= dev
->virt_addr
+ MATROX_BASE
;
165 dev
->port_index
= dev
->base_addr
+ MATROX_PORT_INDEX_OFFSET
;
166 dev
->port_data
= dev
->base_addr
+ MATROX_PORT_DATA_OFFSET
;
167 dev
->data_mask
= (MATROX_G400_DDC_DATA
);
169 matrox_w1_hw_init(dev
);
171 dev
->bus_master
->data
= dev
;
172 dev
->bus_master
->read_bit
= &matrox_w1_read_ddc_bit
;
173 dev
->bus_master
->write_bit
= &matrox_w1_write_ddc_bit
;
175 err
= w1_add_master_device(dev
->bus_master
);
177 goto err_out_free_device
;
179 pci_set_drvdata(pdev
, dev
);
183 dev_info(&pdev
->dev
, "Matrox G400 GPIO transport layer for 1-wire.\n");
189 iounmap(dev
->virt_addr
);
195 static void matrox_w1_remove(struct pci_dev
*pdev
)
197 struct matrox_device
*dev
= pci_get_drvdata(pdev
);
200 w1_remove_master_device(dev
->bus_master
);
201 iounmap(dev
->virt_addr
);
206 static struct pci_device_id matrox_w1_tbl
[] = {
207 { PCI_DEVICE(PCI_VENDOR_ID_MATROX
, PCI_DEVICE_ID_MATROX_G400
) },
210 MODULE_DEVICE_TABLE(pci
, matrox_w1_tbl
);
212 static struct pci_driver matrox_w1_pci_driver
= {
214 .id_table
= matrox_w1_tbl
,
215 .probe
= matrox_w1_probe
,
216 .remove
= matrox_w1_remove
,
218 module_pci_driver(matrox_w1_pci_driver
);
220 MODULE_AUTHOR("Evgeniy Polyakov <zbr@ioremap.net>");
221 MODULE_DESCRIPTION("Driver for transport(Dallas 1-wire protocol) over VGA DDC(matrox gpio).");
222 MODULE_LICENSE("GPL");