1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Janz CMOD-IO MODULbus Carrier Board PCI Driver
5 * Copyright (c) 2010 Ira W. Snyder <iws@ovro.caltech.edu>
7 * Lots of inspiration and code was copied from drivers/mfd/sm501.c
10 #include <linux/kernel.h>
11 #include <linux/module.h>
12 #include <linux/pci.h>
13 #include <linux/interrupt.h>
14 #include <linux/delay.h>
15 #include <linux/platform_device.h>
16 #include <linux/slab.h>
17 #include <linux/mfd/core.h>
19 #include <linux/mfd/janz.h>
21 #define DRV_NAME "janz-cmodio"
23 /* Size of each MODULbus module in PCI BAR4 */
24 #define CMODIO_MODULBUS_SIZE 0x200
26 /* Maximum number of MODULbus modules on a CMOD-IO carrier board */
27 #define CMODIO_MAX_MODULES 4
29 /* Module Parameters */
30 static unsigned int num_modules
= CMODIO_MAX_MODULES
;
31 static char *modules
[CMODIO_MAX_MODULES
] = {
32 "empty", "empty", "empty", "empty",
35 module_param_array(modules
, charp
, &num_modules
, S_IRUGO
);
36 MODULE_PARM_DESC(modules
, "MODULbus modules attached to the carrier board");
38 /* Unique Device Id */
39 static unsigned int cmodio_id
;
41 struct cmodio_device
{
42 /* Parent PCI device */
45 /* PLX control registers */
46 struct janz_cmodio_onboard_regs __iomem
*ctrl
;
48 /* hex switch position */
52 struct mfd_cell cells
[CMODIO_MAX_MODULES
];
53 struct resource resources
[3 * CMODIO_MAX_MODULES
];
54 struct janz_platform_data pdata
[CMODIO_MAX_MODULES
];
58 * Subdevices using the mfd-core API
61 static int cmodio_setup_subdevice(struct cmodio_device
*priv
,
62 char *name
, unsigned int devno
,
65 struct janz_platform_data
*pdata
;
66 struct mfd_cell
*cell
;
71 cell
= &priv
->cells
[devno
];
72 res
= &priv
->resources
[devno
* 3];
73 pdata
= &priv
->pdata
[devno
];
76 cell
->resources
= res
;
77 cell
->num_resources
= 3;
79 /* Setup the subdevice ID -- must be unique */
80 cell
->id
= cmodio_id
++;
82 /* Add platform data */
84 cell
->platform_data
= pdata
;
85 cell
->pdata_size
= sizeof(*pdata
);
87 /* MODULbus registers -- PCI BAR3 is big-endian MODULbus access */
88 res
->flags
= IORESOURCE_MEM
;
89 res
->parent
= &pci
->resource
[3];
90 res
->start
= pci
->resource
[3].start
+ (CMODIO_MODULBUS_SIZE
* modno
);
91 res
->end
= res
->start
+ CMODIO_MODULBUS_SIZE
- 1;
94 /* PLX Control Registers -- PCI BAR4 is interrupt and other registers */
95 res
->flags
= IORESOURCE_MEM
;
96 res
->parent
= &pci
->resource
[4];
97 res
->start
= pci
->resource
[4].start
;
98 res
->end
= pci
->resource
[4].end
;
104 * The start and end fields are used as an offset to the irq_base
105 * parameter passed into the mfd_add_devices() function call. All
106 * devices share the same IRQ.
108 res
->flags
= IORESOURCE_IRQ
;
117 /* Probe each submodule using kernel parameters */
118 static int cmodio_probe_submodules(struct cmodio_device
*priv
)
120 struct pci_dev
*pdev
= priv
->pdev
;
121 unsigned int num_probed
= 0;
125 for (i
= 0; i
< num_modules
; i
++) {
127 if (!strcmp(name
, "") || !strcmp(name
, "empty"))
130 dev_dbg(&priv
->pdev
->dev
, "MODULbus %d: name %s\n", i
, name
);
131 cmodio_setup_subdevice(priv
, name
, num_probed
, i
);
135 /* print an error message if no modules were probed */
136 if (num_probed
== 0) {
137 dev_err(&priv
->pdev
->dev
, "no MODULbus modules specified, "
138 "please set the ``modules'' kernel "
139 "parameter according to your "
140 "hardware configuration\n");
144 return mfd_add_devices(&pdev
->dev
, 0, priv
->cells
,
145 num_probed
, NULL
, pdev
->irq
, NULL
);
152 static ssize_t
mbus_show(struct device
*dev
, struct device_attribute
*attr
,
155 struct cmodio_device
*priv
= dev_get_drvdata(dev
);
157 return snprintf(buf
, PAGE_SIZE
, "%x\n", priv
->hex
);
160 static DEVICE_ATTR(modulbus_number
, S_IRUGO
, mbus_show
, NULL
);
162 static struct attribute
*cmodio_sysfs_attrs
[] = {
163 &dev_attr_modulbus_number
.attr
,
167 static const struct attribute_group cmodio_sysfs_attr_group
= {
168 .attrs
= cmodio_sysfs_attrs
,
175 static int cmodio_pci_probe(struct pci_dev
*dev
,
176 const struct pci_device_id
*id
)
178 struct cmodio_device
*priv
;
181 priv
= devm_kzalloc(&dev
->dev
, sizeof(*priv
), GFP_KERNEL
);
185 pci_set_drvdata(dev
, priv
);
188 /* Hardware Initialization */
189 ret
= pci_enable_device(dev
);
191 dev_err(&dev
->dev
, "unable to enable device\n");
196 ret
= pci_request_regions(dev
, DRV_NAME
);
198 dev_err(&dev
->dev
, "unable to request regions\n");
199 goto out_pci_disable_device
;
202 /* Onboard configuration registers */
203 priv
->ctrl
= pci_ioremap_bar(dev
, 4);
205 dev_err(&dev
->dev
, "unable to remap onboard regs\n");
207 goto out_pci_release_regions
;
210 /* Read the hex switch on the carrier board */
211 priv
->hex
= ioread8(&priv
->ctrl
->int_enable
);
213 /* Add the MODULbus number (hex switch value) to the device's sysfs */
214 ret
= sysfs_create_group(&dev
->dev
.kobj
, &cmodio_sysfs_attr_group
);
216 dev_err(&dev
->dev
, "unable to create sysfs attributes\n");
221 * Disable all interrupt lines, each submodule will enable its
222 * own interrupt line if needed
224 iowrite8(0xf, &priv
->ctrl
->int_disable
);
226 /* Register drivers for all submodules */
227 ret
= cmodio_probe_submodules(priv
);
229 dev_err(&dev
->dev
, "unable to probe submodules\n");
230 goto out_sysfs_remove_group
;
235 out_sysfs_remove_group
:
236 sysfs_remove_group(&dev
->dev
.kobj
, &cmodio_sysfs_attr_group
);
239 out_pci_release_regions
:
240 pci_release_regions(dev
);
241 out_pci_disable_device
:
242 pci_disable_device(dev
);
247 static void cmodio_pci_remove(struct pci_dev
*dev
)
249 struct cmodio_device
*priv
= pci_get_drvdata(dev
);
251 mfd_remove_devices(&dev
->dev
);
252 sysfs_remove_group(&dev
->dev
.kobj
, &cmodio_sysfs_attr_group
);
254 pci_release_regions(dev
);
255 pci_disable_device(dev
);
258 #define PCI_VENDOR_ID_JANZ 0x13c3
260 /* The list of devices that this module will support */
261 static const struct pci_device_id cmodio_pci_ids
[] = {
262 { PCI_VENDOR_ID_PLX
, PCI_DEVICE_ID_PLX_9030
, PCI_VENDOR_ID_JANZ
, 0x0101 },
263 { PCI_VENDOR_ID_PLX
, PCI_DEVICE_ID_PLX_9050
, PCI_VENDOR_ID_JANZ
, 0x0100 },
264 { PCI_VENDOR_ID_PLX
, PCI_DEVICE_ID_PLX_9030
, PCI_VENDOR_ID_JANZ
, 0x0201 },
265 { PCI_VENDOR_ID_PLX
, PCI_DEVICE_ID_PLX_9030
, PCI_VENDOR_ID_JANZ
, 0x0202 },
266 { PCI_VENDOR_ID_PLX
, PCI_DEVICE_ID_PLX_9050
, PCI_VENDOR_ID_JANZ
, 0x0201 },
267 { PCI_VENDOR_ID_PLX
, PCI_DEVICE_ID_PLX_9050
, PCI_VENDOR_ID_JANZ
, 0x0202 },
270 MODULE_DEVICE_TABLE(pci
, cmodio_pci_ids
);
272 static struct pci_driver cmodio_pci_driver
= {
274 .id_table
= cmodio_pci_ids
,
275 .probe
= cmodio_pci_probe
,
276 .remove
= cmodio_pci_remove
,
279 module_pci_driver(cmodio_pci_driver
);
281 MODULE_AUTHOR("Ira W. Snyder <iws@ovro.caltech.edu>");
282 MODULE_DESCRIPTION("Janz CMOD-IO PCI MODULbus Carrier Board Driver");
283 MODULE_LICENSE("GPL");