1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * RapidIO driver support
5 * Copyright 2005 MontaVista Software, Inc.
6 * Matt Porter <mporter@kernel.crashing.org>
9 #include <linux/init.h>
10 #include <linux/module.h>
11 #include <linux/rio.h>
12 #include <linux/rio_ids.h>
13 #include <linux/rio_drv.h>
18 * rio_match_device - Tell if a RIO device has a matching RIO device id structure
19 * @id: the RIO device id structure to match against
20 * @rdev: the RIO device structure to match against
22 * Used from driver probe and bus matching to check whether a RIO device
23 * matches a device id structure provided by a RIO driver. Returns the
24 * matching &struct rio_device_id or %NULL if there is no match.
26 static const struct rio_device_id
*rio_match_device(const struct rio_device_id
28 const struct rio_dev
*rdev
)
30 while (id
->vid
|| id
->asm_vid
) {
31 if (((id
->vid
== RIO_ANY_ID
) || (id
->vid
== rdev
->vid
)) &&
32 ((id
->did
== RIO_ANY_ID
) || (id
->did
== rdev
->did
)) &&
33 ((id
->asm_vid
== RIO_ANY_ID
)
34 || (id
->asm_vid
== rdev
->asm_vid
))
35 && ((id
->asm_did
== RIO_ANY_ID
)
36 || (id
->asm_did
== rdev
->asm_did
)))
44 * rio_dev_get - Increments the reference count of the RIO device structure
46 * @rdev: RIO device being referenced
48 * Each live reference to a device should be refcounted.
50 * Drivers for RIO devices should normally record such references in
51 * their probe() methods, when they bind to a device, and release
52 * them by calling rio_dev_put(), in their disconnect() methods.
54 struct rio_dev
*rio_dev_get(struct rio_dev
*rdev
)
57 get_device(&rdev
->dev
);
63 * rio_dev_put - Release a use of the RIO device structure
65 * @rdev: RIO device being disconnected
67 * Must be called when a user of a device is finished with it.
68 * When the last user of the device calls this function, the
69 * memory of the device is freed.
71 void rio_dev_put(struct rio_dev
*rdev
)
74 put_device(&rdev
->dev
);
78 * rio_device_probe - Tell if a RIO device structure has a matching RIO device id structure
79 * @dev: the RIO device structure to match against
81 * return 0 and set rio_dev->driver when drv claims rio_dev, else error
83 static int rio_device_probe(struct device
*dev
)
85 struct rio_driver
*rdrv
= to_rio_driver(dev
->driver
);
86 struct rio_dev
*rdev
= to_rio_dev(dev
);
88 const struct rio_device_id
*id
;
90 if (!rdev
->driver
&& rdrv
->probe
) {
93 id
= rio_match_device(rdrv
->id_table
, rdev
);
96 error
= rdrv
->probe(rdev
, id
);
107 * rio_device_remove - Remove a RIO device from the system
109 * @dev: the RIO device structure to match against
111 * Remove a RIO device from the system. If it has an associated
112 * driver, then run the driver remove() method. Then update
113 * the reference count.
115 static void rio_device_remove(struct device
*dev
)
117 struct rio_dev
*rdev
= to_rio_dev(dev
);
118 struct rio_driver
*rdrv
= rdev
->driver
;
129 static void rio_device_shutdown(struct device
*dev
)
131 struct rio_dev
*rdev
= to_rio_dev(dev
);
132 struct rio_driver
*rdrv
= rdev
->driver
;
134 dev_dbg(dev
, "RIO: %s\n", __func__
);
136 if (rdrv
&& rdrv
->shutdown
)
137 rdrv
->shutdown(rdev
);
141 * rio_register_driver - register a new RIO driver
142 * @rdrv: the RIO driver structure to register
144 * Adds a &struct rio_driver to the list of registered drivers.
145 * Returns a negative value on error, otherwise 0. If no error
146 * occurred, the driver remains registered even if no device
147 * was claimed during registration.
149 int rio_register_driver(struct rio_driver
*rdrv
)
151 /* initialize common driver fields */
152 rdrv
->driver
.name
= rdrv
->name
;
153 rdrv
->driver
.bus
= &rio_bus_type
;
155 /* register with core */
156 return driver_register(&rdrv
->driver
);
160 * rio_unregister_driver - unregister a RIO driver
161 * @rdrv: the RIO driver structure to unregister
163 * Deletes the &struct rio_driver from the list of registered RIO
164 * drivers, gives it a chance to clean up by calling its remove()
165 * function for each device it was responsible for, and marks those
166 * devices as driverless.
168 void rio_unregister_driver(struct rio_driver
*rdrv
)
170 driver_unregister(&rdrv
->driver
);
173 void rio_attach_device(struct rio_dev
*rdev
)
175 rdev
->dev
.bus
= &rio_bus_type
;
177 EXPORT_SYMBOL_GPL(rio_attach_device
);
180 * rio_match_bus - Tell if a RIO device structure has a matching RIO driver device id structure
181 * @dev: the standard device structure to match against
182 * @drv: the standard driver structure containing the ids to match against
184 * Used by a driver to check whether a RIO device present in the
185 * system is in its list of supported devices. Returns 1 if
186 * there is a matching &struct rio_device_id or 0 if there is
189 static int rio_match_bus(struct device
*dev
, const struct device_driver
*drv
)
191 struct rio_dev
*rdev
= to_rio_dev(dev
);
192 const struct rio_driver
*rdrv
= to_rio_driver(drv
);
193 const struct rio_device_id
*id
= rdrv
->id_table
;
194 const struct rio_device_id
*found_id
;
199 found_id
= rio_match_device(id
, rdev
);
207 static int rio_uevent(const struct device
*dev
, struct kobj_uevent_env
*env
)
209 const struct rio_dev
*rdev
;
214 rdev
= to_rio_dev(dev
);
218 if (add_uevent_var(env
, "MODALIAS=rapidio:v%04Xd%04Xav%04Xad%04X",
219 rdev
->vid
, rdev
->did
, rdev
->asm_vid
, rdev
->asm_did
))
224 struct class rio_mport_class
= {
225 .name
= "rapidio_port",
226 .dev_groups
= rio_mport_groups
,
228 EXPORT_SYMBOL_GPL(rio_mport_class
);
230 struct bus_type rio_bus_type
= {
232 .match
= rio_match_bus
,
233 .dev_groups
= rio_dev_groups
,
234 .bus_groups
= rio_bus_groups
,
235 .probe
= rio_device_probe
,
236 .remove
= rio_device_remove
,
237 .shutdown
= rio_device_shutdown
,
238 .uevent
= rio_uevent
,
242 * rio_bus_init - Register the RapidIO bus with the device model
244 * Registers the RIO mport device class and RIO bus type with the Linux
247 static int __init
rio_bus_init(void)
251 ret
= class_register(&rio_mport_class
);
253 ret
= bus_register(&rio_bus_type
);
255 class_unregister(&rio_mport_class
);
260 postcore_initcall(rio_bus_init
);
262 EXPORT_SYMBOL_GPL(rio_register_driver
);
263 EXPORT_SYMBOL_GPL(rio_unregister_driver
);
264 EXPORT_SYMBOL_GPL(rio_bus_type
);
265 EXPORT_SYMBOL_GPL(rio_dev_get
);
266 EXPORT_SYMBOL_GPL(rio_dev_put
);