xref: /openbmc/linux/drivers/rapidio/rio-driver.c (revision 1ac731c529cd4d6adbce134754b51ff7d822b145)
12874c5fdSThomas Gleixner // SPDX-License-Identifier: GPL-2.0-or-later
2394b701cSMatt Porter /*
3394b701cSMatt Porter  * RapidIO driver support
4394b701cSMatt Porter  *
5394b701cSMatt Porter  * Copyright 2005 MontaVista Software, Inc.
6394b701cSMatt Porter  * Matt Porter <mporter@kernel.crashing.org>
7394b701cSMatt Porter  */
8394b701cSMatt Porter 
9394b701cSMatt Porter #include <linux/init.h>
10394b701cSMatt Porter #include <linux/module.h>
11394b701cSMatt Porter #include <linux/rio.h>
12394b701cSMatt Porter #include <linux/rio_ids.h>
1348d6b4ddSBen Dooks (Codethink) #include <linux/rio_drv.h>
14394b701cSMatt Porter 
15394b701cSMatt Porter #include "rio.h"
16394b701cSMatt Porter 
17394b701cSMatt Porter /**
18394b701cSMatt Porter  *  rio_match_device - Tell if a RIO device has a matching RIO device id structure
19394b701cSMatt Porter  *  @id: the RIO device id structure to match against
20394b701cSMatt Porter  *  @rdev: the RIO device structure to match against
21394b701cSMatt Porter  *
22394b701cSMatt Porter  *  Used from driver probe and bus matching to check whether a RIO device
23394b701cSMatt Porter  *  matches a device id structure provided by a RIO driver. Returns the
24394b701cSMatt Porter  *  matching &struct rio_device_id or %NULL if there is no match.
25394b701cSMatt Porter  */
rio_match_device(const struct rio_device_id * id,const struct rio_dev * rdev)26394b701cSMatt Porter static const struct rio_device_id *rio_match_device(const struct rio_device_id
27394b701cSMatt Porter 						    *id,
28394b701cSMatt Porter 						    const struct rio_dev *rdev)
29394b701cSMatt Porter {
30394b701cSMatt Porter 	while (id->vid || id->asm_vid) {
31394b701cSMatt Porter 		if (((id->vid == RIO_ANY_ID) || (id->vid == rdev->vid)) &&
32394b701cSMatt Porter 		    ((id->did == RIO_ANY_ID) || (id->did == rdev->did)) &&
33394b701cSMatt Porter 		    ((id->asm_vid == RIO_ANY_ID)
34394b701cSMatt Porter 		     || (id->asm_vid == rdev->asm_vid))
35394b701cSMatt Porter 		    && ((id->asm_did == RIO_ANY_ID)
36394b701cSMatt Porter 			|| (id->asm_did == rdev->asm_did)))
37394b701cSMatt Porter 			return id;
38394b701cSMatt Porter 		id++;
39394b701cSMatt Porter 	}
40394b701cSMatt Porter 	return NULL;
41394b701cSMatt Porter }
42394b701cSMatt Porter 
43394b701cSMatt Porter /**
44394b701cSMatt Porter  * rio_dev_get - Increments the reference count of the RIO device structure
45394b701cSMatt Porter  *
46394b701cSMatt Porter  * @rdev: RIO device being referenced
47394b701cSMatt Porter  *
48394b701cSMatt Porter  * Each live reference to a device should be refcounted.
49394b701cSMatt Porter  *
50394b701cSMatt Porter  * Drivers for RIO devices should normally record such references in
51394b701cSMatt Porter  * their probe() methods, when they bind to a device, and release
52394b701cSMatt Porter  * them by calling rio_dev_put(), in their disconnect() methods.
53394b701cSMatt Porter  */
rio_dev_get(struct rio_dev * rdev)54394b701cSMatt Porter struct rio_dev *rio_dev_get(struct rio_dev *rdev)
55394b701cSMatt Porter {
56394b701cSMatt Porter 	if (rdev)
57394b701cSMatt Porter 		get_device(&rdev->dev);
58394b701cSMatt Porter 
59394b701cSMatt Porter 	return rdev;
60394b701cSMatt Porter }
61394b701cSMatt Porter 
62394b701cSMatt Porter /**
63394b701cSMatt Porter  * rio_dev_put - Release a use of the RIO device structure
64394b701cSMatt Porter  *
65394b701cSMatt Porter  * @rdev: RIO device being disconnected
66394b701cSMatt Porter  *
67394b701cSMatt Porter  * Must be called when a user of a device is finished with it.
68394b701cSMatt Porter  * When the last user of the device calls this function, the
69394b701cSMatt Porter  * memory of the device is freed.
70394b701cSMatt Porter  */
rio_dev_put(struct rio_dev * rdev)71394b701cSMatt Porter void rio_dev_put(struct rio_dev *rdev)
72394b701cSMatt Porter {
73394b701cSMatt Porter 	if (rdev)
74394b701cSMatt Porter 		put_device(&rdev->dev);
75394b701cSMatt Porter }
76394b701cSMatt Porter 
77394b701cSMatt Porter /**
787b089c8bSRandy Dunlap  *  rio_device_probe - Tell if a RIO device structure has a matching RIO device id structure
79394b701cSMatt Porter  *  @dev: the RIO device structure to match against
80394b701cSMatt Porter  *
81394b701cSMatt Porter  * return 0 and set rio_dev->driver when drv claims rio_dev, else error
82394b701cSMatt Porter  */
rio_device_probe(struct device * dev)83394b701cSMatt Porter static int rio_device_probe(struct device *dev)
84394b701cSMatt Porter {
85394b701cSMatt Porter 	struct rio_driver *rdrv = to_rio_driver(dev->driver);
86394b701cSMatt Porter 	struct rio_dev *rdev = to_rio_dev(dev);
87394b701cSMatt Porter 	int error = -ENODEV;
88394b701cSMatt Porter 	const struct rio_device_id *id;
89394b701cSMatt Porter 
90394b701cSMatt Porter 	if (!rdev->driver && rdrv->probe) {
91394b701cSMatt Porter 		if (!rdrv->id_table)
92394b701cSMatt Porter 			return error;
93394b701cSMatt Porter 		id = rio_match_device(rdrv->id_table, rdev);
94394b701cSMatt Porter 		rio_dev_get(rdev);
95394b701cSMatt Porter 		if (id)
96394b701cSMatt Porter 			error = rdrv->probe(rdev, id);
97394b701cSMatt Porter 		if (error >= 0) {
98394b701cSMatt Porter 			rdev->driver = rdrv;
99394b701cSMatt Porter 			error = 0;
100a7de3902SEugene Surovegin 		} else
101394b701cSMatt Porter 			rio_dev_put(rdev);
102394b701cSMatt Porter 	}
103394b701cSMatt Porter 	return error;
104394b701cSMatt Porter }
105394b701cSMatt Porter 
106394b701cSMatt Porter /**
107394b701cSMatt Porter  *  rio_device_remove - Remove a RIO device from the system
108394b701cSMatt Porter  *
109394b701cSMatt Porter  *  @dev: the RIO device structure to match against
110394b701cSMatt Porter  *
111394b701cSMatt Porter  * Remove a RIO device from the system. If it has an associated
112394b701cSMatt Porter  * driver, then run the driver remove() method.  Then update
113394b701cSMatt Porter  * the reference count.
114394b701cSMatt Porter  */
rio_device_remove(struct device * dev)115fc7a6209SUwe Kleine-König static void rio_device_remove(struct device *dev)
116394b701cSMatt Porter {
117394b701cSMatt Porter 	struct rio_dev *rdev = to_rio_dev(dev);
118394b701cSMatt Porter 	struct rio_driver *rdrv = rdev->driver;
119394b701cSMatt Porter 
120394b701cSMatt Porter 	if (rdrv) {
121394b701cSMatt Porter 		if (rdrv->remove)
122394b701cSMatt Porter 			rdrv->remove(rdev);
123394b701cSMatt Porter 		rdev->driver = NULL;
124394b701cSMatt Porter 	}
125394b701cSMatt Porter 
126394b701cSMatt Porter 	rio_dev_put(rdev);
127394b701cSMatt Porter }
128394b701cSMatt Porter 
rio_device_shutdown(struct device * dev)12983dc2cbcSAlexandre Bounine static void rio_device_shutdown(struct device *dev)
13083dc2cbcSAlexandre Bounine {
13183dc2cbcSAlexandre Bounine 	struct rio_dev *rdev = to_rio_dev(dev);
13283dc2cbcSAlexandre Bounine 	struct rio_driver *rdrv = rdev->driver;
13383dc2cbcSAlexandre Bounine 
13483dc2cbcSAlexandre Bounine 	dev_dbg(dev, "RIO: %s\n", __func__);
13583dc2cbcSAlexandre Bounine 
13683dc2cbcSAlexandre Bounine 	if (rdrv && rdrv->shutdown)
13783dc2cbcSAlexandre Bounine 		rdrv->shutdown(rdev);
13883dc2cbcSAlexandre Bounine }
13983dc2cbcSAlexandre Bounine 
140394b701cSMatt Porter /**
141394b701cSMatt Porter  *  rio_register_driver - register a new RIO driver
142394b701cSMatt Porter  *  @rdrv: the RIO driver structure to register
143394b701cSMatt Porter  *
1447b089c8bSRandy Dunlap  *  Adds a &struct rio_driver to the list of registered drivers.
145394b701cSMatt Porter  *  Returns a negative value on error, otherwise 0. If no error
146394b701cSMatt Porter  *  occurred, the driver remains registered even if no device
147394b701cSMatt Porter  *  was claimed during registration.
148394b701cSMatt Porter  */
rio_register_driver(struct rio_driver * rdrv)149394b701cSMatt Porter int rio_register_driver(struct rio_driver *rdrv)
150394b701cSMatt Porter {
151394b701cSMatt Porter 	/* initialize common driver fields */
152394b701cSMatt Porter 	rdrv->driver.name = rdrv->name;
153394b701cSMatt Porter 	rdrv->driver.bus = &rio_bus_type;
154394b701cSMatt Porter 
155394b701cSMatt Porter 	/* register with core */
156394b701cSMatt Porter 	return driver_register(&rdrv->driver);
157394b701cSMatt Porter }
158394b701cSMatt Porter 
159394b701cSMatt Porter /**
160394b701cSMatt Porter  *  rio_unregister_driver - unregister a RIO driver
161394b701cSMatt Porter  *  @rdrv: the RIO driver structure to unregister
162394b701cSMatt Porter  *
163394b701cSMatt Porter  *  Deletes the &struct rio_driver from the list of registered RIO
164394b701cSMatt Porter  *  drivers, gives it a chance to clean up by calling its remove()
165394b701cSMatt Porter  *  function for each device it was responsible for, and marks those
166394b701cSMatt Porter  *  devices as driverless.
167394b701cSMatt Porter  */
rio_unregister_driver(struct rio_driver * rdrv)168394b701cSMatt Porter void rio_unregister_driver(struct rio_driver *rdrv)
169394b701cSMatt Porter {
170394b701cSMatt Porter 	driver_unregister(&rdrv->driver);
171394b701cSMatt Porter }
172394b701cSMatt Porter 
rio_attach_device(struct rio_dev * rdev)173a11650e1SAlexandre Bounine void rio_attach_device(struct rio_dev *rdev)
174a11650e1SAlexandre Bounine {
175a11650e1SAlexandre Bounine 	rdev->dev.bus = &rio_bus_type;
176a11650e1SAlexandre Bounine }
177a11650e1SAlexandre Bounine EXPORT_SYMBOL_GPL(rio_attach_device);
178a11650e1SAlexandre Bounine 
179394b701cSMatt Porter /**
1807b089c8bSRandy Dunlap  *  rio_match_bus - Tell if a RIO device structure has a matching RIO driver device id structure
181394b701cSMatt Porter  *  @dev: the standard device structure to match against
182394b701cSMatt Porter  *  @drv: the standard driver structure containing the ids to match against
183394b701cSMatt Porter  *
184394b701cSMatt Porter  *  Used by a driver to check whether a RIO device present in the
185394b701cSMatt Porter  *  system is in its list of supported devices. Returns 1 if
186394b701cSMatt Porter  *  there is a matching &struct rio_device_id or 0 if there is
187394b701cSMatt Porter  *  no match.
188394b701cSMatt Porter  */
rio_match_bus(struct device * dev,struct device_driver * drv)189394b701cSMatt Porter static int rio_match_bus(struct device *dev, struct device_driver *drv)
190394b701cSMatt Porter {
191394b701cSMatt Porter 	struct rio_dev *rdev = to_rio_dev(dev);
192394b701cSMatt Porter 	struct rio_driver *rdrv = to_rio_driver(drv);
193394b701cSMatt Porter 	const struct rio_device_id *id = rdrv->id_table;
194394b701cSMatt Porter 	const struct rio_device_id *found_id;
195394b701cSMatt Porter 
196394b701cSMatt Porter 	if (!id)
197394b701cSMatt Porter 		goto out;
198394b701cSMatt Porter 
199394b701cSMatt Porter 	found_id = rio_match_device(id, rdev);
200394b701cSMatt Porter 
201394b701cSMatt Porter 	if (found_id)
202394b701cSMatt Porter 		return 1;
203394b701cSMatt Porter 
204394b701cSMatt Porter       out:return 0;
205394b701cSMatt Porter }
206394b701cSMatt Porter 
rio_uevent(const struct device * dev,struct kobj_uevent_env * env)207*2a81ada3SGreg Kroah-Hartman static int rio_uevent(const struct device *dev, struct kobj_uevent_env *env)
2083bdbb62fSAlexandre Bounine {
209*2a81ada3SGreg Kroah-Hartman 	const struct rio_dev *rdev;
2103bdbb62fSAlexandre Bounine 
2113bdbb62fSAlexandre Bounine 	if (!dev)
2123bdbb62fSAlexandre Bounine 		return -ENODEV;
2133bdbb62fSAlexandre Bounine 
2143bdbb62fSAlexandre Bounine 	rdev = to_rio_dev(dev);
2153bdbb62fSAlexandre Bounine 	if (!rdev)
2163bdbb62fSAlexandre Bounine 		return -ENODEV;
2173bdbb62fSAlexandre Bounine 
2183bdbb62fSAlexandre Bounine 	if (add_uevent_var(env, "MODALIAS=rapidio:v%04Xd%04Xav%04Xad%04X",
2193bdbb62fSAlexandre Bounine 			   rdev->vid, rdev->did, rdev->asm_vid, rdev->asm_did))
2203bdbb62fSAlexandre Bounine 		return -ENOMEM;
2213bdbb62fSAlexandre Bounine 	return 0;
2223bdbb62fSAlexandre Bounine }
2233bdbb62fSAlexandre Bounine 
2242aaf308bSAlexandre Bounine struct class rio_mport_class = {
2252aaf308bSAlexandre Bounine 	.name		= "rapidio_port",
2262aaf308bSAlexandre Bounine 	.dev_groups	= rio_mport_groups,
227394b701cSMatt Porter };
2282aaf308bSAlexandre Bounine EXPORT_SYMBOL_GPL(rio_mport_class);
229394b701cSMatt Porter 
230394b701cSMatt Porter struct bus_type rio_bus_type = {
231394b701cSMatt Porter 	.name = "rapidio",
232394b701cSMatt Porter 	.match = rio_match_bus,
2336d39c80bSGreg Kroah-Hartman 	.dev_groups = rio_dev_groups,
234ed1d2da2SGreg Kroah-Hartman 	.bus_groups = rio_bus_groups,
235fc3d3dddSRussell King 	.probe = rio_device_probe,
236fc3d3dddSRussell King 	.remove = rio_device_remove,
23783dc2cbcSAlexandre Bounine 	.shutdown = rio_device_shutdown,
2383bdbb62fSAlexandre Bounine 	.uevent	= rio_uevent,
239394b701cSMatt Porter };
240394b701cSMatt Porter 
241394b701cSMatt Porter /**
242394b701cSMatt Porter  *  rio_bus_init - Register the RapidIO bus with the device model
243394b701cSMatt Porter  *
2442aaf308bSAlexandre Bounine  *  Registers the RIO mport device class and RIO bus type with the Linux
245394b701cSMatt Porter  *  device model.
246394b701cSMatt Porter  */
rio_bus_init(void)247394b701cSMatt Porter static int __init rio_bus_init(void)
248394b701cSMatt Porter {
2492aaf308bSAlexandre Bounine 	int ret;
2502aaf308bSAlexandre Bounine 
2512aaf308bSAlexandre Bounine 	ret = class_register(&rio_mport_class);
2522aaf308bSAlexandre Bounine 	if (!ret) {
2532aaf308bSAlexandre Bounine 		ret = bus_register(&rio_bus_type);
2542aaf308bSAlexandre Bounine 		if (ret)
2552aaf308bSAlexandre Bounine 			class_unregister(&rio_mport_class);
2562aaf308bSAlexandre Bounine 	}
2572aaf308bSAlexandre Bounine 	return ret;
258394b701cSMatt Porter }
259394b701cSMatt Porter 
260394b701cSMatt Porter postcore_initcall(rio_bus_init);
261394b701cSMatt Porter 
262394b701cSMatt Porter EXPORT_SYMBOL_GPL(rio_register_driver);
263394b701cSMatt Porter EXPORT_SYMBOL_GPL(rio_unregister_driver);
264394b701cSMatt Porter EXPORT_SYMBOL_GPL(rio_bus_type);
265394b701cSMatt Porter EXPORT_SYMBOL_GPL(rio_dev_get);
266394b701cSMatt Porter EXPORT_SYMBOL_GPL(rio_dev_put);
267