blob: 43e357eeeb672a5325538a1f0c25bf43c7dacaf0 [file] [log] [blame]
Markus Lidelf10378f2005-06-23 22:02:16 -07001/*
2 * Bus Adapter OSM
3 *
4 * Copyright (C) 2005 Markus Lidel <Markus.Lidel@shadowconnect.com>
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2 of the License, or (at your
9 * option) any later version.
10 *
11 * Fixes/additions:
12 * Markus Lidel <Markus.Lidel@shadowconnect.com>
13 * initial version.
14 */
15
16#include <linux/module.h>
Alan Cox2cbf7fe2015-02-03 13:18:55 +000017#include "i2o.h"
Markus Lidelf10378f2005-06-23 22:02:16 -070018
19#define OSM_NAME "bus-osm"
Markus Lidel2e1973a2006-01-06 00:19:32 -080020#define OSM_VERSION "1.317"
Markus Lidelf10378f2005-06-23 22:02:16 -070021#define OSM_DESCRIPTION "I2O Bus Adapter OSM"
22
23static struct i2o_driver i2o_bus_driver;
24
25/* Bus OSM class handling definition */
26static struct i2o_class_id i2o_bus_class_id[] = {
27 {I2O_CLASS_BUS_ADAPTER},
28 {I2O_CLASS_END}
29};
30
31/**
32 * i2o_bus_scan - Scan the bus for new devices
33 * @dev: I2O device of the bus, which should be scanned
34 *
35 * Scans the bus dev for new / removed devices. After the scan a new LCT
36 * will be fetched automatically.
37 *
38 * Returns 0 on success or negative error code on failure.
39 */
40static int i2o_bus_scan(struct i2o_device *dev)
41{
Markus Lidela1a5ea72006-01-06 00:19:29 -080042 struct i2o_message *msg;
Markus Lidelf10378f2005-06-23 22:02:16 -070043
Markus Lidela1a5ea72006-01-06 00:19:29 -080044 msg = i2o_msg_get_wait(dev->iop, I2O_TIMEOUT_MESSAGE_GET);
45 if (IS_ERR(msg))
Markus Lidelf10378f2005-06-23 22:02:16 -070046 return -ETIMEDOUT;
47
Markus Lidela1a5ea72006-01-06 00:19:29 -080048 msg->u.head[0] = cpu_to_le32(FIVE_WORD_MSG_SIZE | SGL_OFFSET_0);
49 msg->u.head[1] =
50 cpu_to_le32(I2O_CMD_BUS_SCAN << 24 | HOST_TID << 12 | dev->lct_data.
51 tid);
Markus Lidelf10378f2005-06-23 22:02:16 -070052
Markus Lidela1a5ea72006-01-06 00:19:29 -080053 return i2o_msg_post_wait(dev->iop, msg, 60);
Markus Lidelf10378f2005-06-23 22:02:16 -070054};
55
56/**
57 * i2o_bus_store_scan - Scan the I2O Bus Adapter
58 * @d: device which should be scanned
Randy Dunlapd9489fb2006-12-06 20:38:43 -080059 * @attr: device_attribute
60 * @buf: output buffer
61 * @count: buffer size
Markus Lidelf10378f2005-06-23 22:02:16 -070062 *
63 * Returns count.
64 */
Markus Lidela1a5ea72006-01-06 00:19:29 -080065static ssize_t i2o_bus_store_scan(struct device *d,
66 struct device_attribute *attr,
67 const char *buf, size_t count)
Markus Lidelf10378f2005-06-23 22:02:16 -070068{
69 struct i2o_device *i2o_dev = to_i2o_device(d);
70 int rc;
71
Somya Anand68f4b732015-03-13 22:53:11 +053072 rc = i2o_bus_scan(i2o_dev);
73 if (rc)
Markus Lidelf10378f2005-06-23 22:02:16 -070074 osm_warn("bus scan failed %d\n", rc);
75
76 return count;
77}
78
79/* Bus Adapter OSM device attributes */
80static DEVICE_ATTR(scan, S_IWUSR, NULL, i2o_bus_store_scan);
81
82/**
83 * i2o_bus_probe - verify if dev is a I2O Bus Adapter device and install it
84 * @dev: device to verify if it is a I2O Bus Adapter device
85 *
86 * Because we want all Bus Adapters always return 0.
Jeff Garzik6b5f2962006-10-17 00:10:22 -070087 * Except when we fail. Then we are sad.
Markus Lidelf10378f2005-06-23 22:02:16 -070088 *
Jeff Garzik6b5f2962006-10-17 00:10:22 -070089 * Returns 0, except when we fail to excel.
Markus Lidelf10378f2005-06-23 22:02:16 -070090 */
91static int i2o_bus_probe(struct device *dev)
92{
93 struct i2o_device *i2o_dev = to_i2o_device(get_device(dev));
Jeff Garzik6b5f2962006-10-17 00:10:22 -070094 int rc;
Markus Lidelf10378f2005-06-23 22:02:16 -070095
Jeff Garzik6b5f2962006-10-17 00:10:22 -070096 rc = device_create_file(dev, &dev_attr_scan);
97 if (rc)
98 goto err_out;
Markus Lidelf10378f2005-06-23 22:02:16 -070099
100 osm_info("device added (TID: %03x)\n", i2o_dev->lct_data.tid);
101
102 return 0;
Jeff Garzik6b5f2962006-10-17 00:10:22 -0700103
104err_out:
105 put_device(dev);
106 return rc;
Markus Lidelf10378f2005-06-23 22:02:16 -0700107};
108
109/**
110 * i2o_bus_remove - remove the I2O Bus Adapter device from the system again
111 * @dev: I2O Bus Adapter device which should be removed
112 *
113 * Always returns 0.
114 */
115static int i2o_bus_remove(struct device *dev)
116{
117 struct i2o_device *i2o_dev = to_i2o_device(dev);
118
119 device_remove_file(dev, &dev_attr_scan);
120
121 put_device(dev);
122
123 osm_info("device removed (TID: %03x)\n", i2o_dev->lct_data.tid);
124
125 return 0;
126};
127
128/* Bus Adapter OSM driver struct */
129static struct i2o_driver i2o_bus_driver = {
130 .name = OSM_NAME,
131 .classes = i2o_bus_class_id,
132 .driver = {
133 .probe = i2o_bus_probe,
134 .remove = i2o_bus_remove,
135 },
136};
137
138/**
139 * i2o_bus_init - Bus Adapter OSM initialization function
140 *
141 * Only register the Bus Adapter OSM in the I2O core.
142 *
143 * Returns 0 on success or negative error code on failure.
144 */
145static int __init i2o_bus_init(void)
146{
147 int rc;
148
149 printk(KERN_INFO OSM_DESCRIPTION " v" OSM_VERSION "\n");
150
151 /* Register Bus Adapter OSM into I2O core */
152 rc = i2o_driver_register(&i2o_bus_driver);
153 if (rc) {
154 osm_err("Could not register Bus Adapter OSM\n");
155 return rc;
156 }
157
158 return 0;
159};
160
161/**
162 * i2o_bus_exit - Bus Adapter OSM exit function
163 *
164 * Unregisters Bus Adapter OSM from I2O core.
165 */
166static void __exit i2o_bus_exit(void)
167{
168 i2o_driver_unregister(&i2o_bus_driver);
169};
170
171MODULE_AUTHOR("Markus Lidel <Markus.Lidel@shadowconnect.com>");
172MODULE_LICENSE("GPL");
173MODULE_DESCRIPTION(OSM_DESCRIPTION);
174MODULE_VERSION(OSM_VERSION);
175
176module_init(i2o_bus_init);
177module_exit(i2o_bus_exit);