2 * PCI bus driver for Bosch C_CAN/D_CAN controller
6 * Borrowed from c_can_platform.c
8 * This file is licensed under the terms of the GNU General Public
9 * License version 2. This program is licensed "as is" without any
10 * warranty of any kind, whether express or implied.
13 #include <linux/kernel.h>
14 #include <linux/module.h>
15 #include <linux/netdevice.h>
16 #include <linux/pci.h>
18 #include <linux/can/dev.h>
22 enum c_can_pci_reg_align {
27 struct c_can_pci_data {
28 /* Specify if is C_CAN or D_CAN */
29 enum c_can_dev_id type;
30 /* Set the register alignment in the memory */
31 enum c_can_pci_reg_align reg_align;
32 /* Set the frequency */
37 * 16-bit c_can registers can be arranged differently in the memory
38 * architecture of different implementations. For example: 16-bit
39 * registers can be aligned to a 16-bit boundary or 32-bit boundary etc.
40 * Handle the same by providing a common read/write interface.
42 static u16 c_can_pci_read_reg_aligned_to_16bit(struct c_can_priv *priv,
45 return readw(priv->base + priv->regs[index]);
48 static void c_can_pci_write_reg_aligned_to_16bit(struct c_can_priv *priv,
49 enum reg index, u16 val)
51 writew(val, priv->base + priv->regs[index]);
54 static u16 c_can_pci_read_reg_aligned_to_32bit(struct c_can_priv *priv,
57 return readw(priv->base + 2 * priv->regs[index]);
60 static void c_can_pci_write_reg_aligned_to_32bit(struct c_can_priv *priv,
61 enum reg index, u16 val)
63 writew(val, priv->base + 2 * priv->regs[index]);
66 static int c_can_pci_probe(struct pci_dev *pdev,
67 const struct pci_device_id *ent)
69 struct c_can_pci_data *c_can_pci_data = (void *)ent->driver_data;
70 struct c_can_priv *priv;
71 struct net_device *dev;
75 ret = pci_enable_device(pdev);
77 dev_err(&pdev->dev, "pci_enable_device FAILED\n");
81 ret = pci_request_regions(pdev, KBUILD_MODNAME);
83 dev_err(&pdev->dev, "pci_request_regions FAILED\n");
84 goto out_disable_device;
90 addr = pci_iomap(pdev, 0, pci_resource_len(pdev, 0));
93 "device has no PCI memory resources, "
96 goto out_release_regions;
99 /* allocate the c_can device */
100 dev = alloc_c_can_dev();
106 priv = netdev_priv(dev);
107 pci_set_drvdata(pdev, dev);
108 SET_NETDEV_DEV(dev, &pdev->dev);
110 dev->irq = pdev->irq;
113 if (!c_can_pci_data->freq) {
114 dev_err(&pdev->dev, "no clock frequency defined\n");
118 priv->can.clock.freq = c_can_pci_data->freq;
121 /* Configure CAN type */
122 switch (c_can_pci_data->type) {
124 priv->regs = reg_map_c_can;
127 priv->regs = reg_map_d_can;
128 priv->can.ctrlmode_supported |= CAN_CTRLMODE_3_SAMPLES;
135 /* Configure access to registers */
136 switch (c_can_pci_data->reg_align) {
137 case C_CAN_REG_ALIGN_32:
138 priv->read_reg = c_can_pci_read_reg_aligned_to_32bit;
139 priv->write_reg = c_can_pci_write_reg_aligned_to_32bit;
141 case C_CAN_REG_ALIGN_16:
142 priv->read_reg = c_can_pci_read_reg_aligned_to_16bit;
143 priv->write_reg = c_can_pci_write_reg_aligned_to_16bit;
150 ret = register_c_can_dev(dev);
152 dev_err(&pdev->dev, "registering %s failed (err=%d)\n",
153 KBUILD_MODNAME, ret);
157 dev_dbg(&pdev->dev, "%s device registered (regs=%p, irq=%d)\n",
158 KBUILD_MODNAME, priv->regs, dev->irq);
163 pci_set_drvdata(pdev, NULL);
166 pci_iounmap(pdev, addr);
168 pci_disable_msi(pdev);
169 pci_clear_master(pdev);
170 pci_release_regions(pdev);
172 pci_disable_device(pdev);
177 static void c_can_pci_remove(struct pci_dev *pdev)
179 struct net_device *dev = pci_get_drvdata(pdev);
180 struct c_can_priv *priv = netdev_priv(dev);
182 unregister_c_can_dev(dev);
184 pci_set_drvdata(pdev, NULL);
187 pci_iounmap(pdev, priv->base);
188 pci_disable_msi(pdev);
189 pci_clear_master(pdev);
190 pci_release_regions(pdev);
191 pci_disable_device(pdev);
194 static struct c_can_pci_data c_can_sta2x11= {
196 .reg_align = C_CAN_REG_ALIGN_32,
197 .freq = 52000000, /* 52 Mhz */
200 #define C_CAN_ID(_vend, _dev, _driverdata) { \
201 PCI_DEVICE(_vend, _dev), \
202 .driver_data = (unsigned long)&_driverdata, \
204 static DEFINE_PCI_DEVICE_TABLE(c_can_pci_tbl) = {
205 C_CAN_ID(PCI_VENDOR_ID_STMICRO, PCI_DEVICE_ID_STMICRO_CAN,
209 static struct pci_driver c_can_pci_driver = {
210 .name = KBUILD_MODNAME,
211 .id_table = c_can_pci_tbl,
212 .probe = c_can_pci_probe,
213 .remove = c_can_pci_remove,
216 module_pci_driver(c_can_pci_driver);
219 MODULE_LICENSE("GPL v2");
220 MODULE_DESCRIPTION("PCI CAN bus driver for Bosch C_CAN/D_CAN controller");
221 MODULE_DEVICE_TABLE(pci, c_can_pci_tbl);