summaryrefslogtreecommitdiff
path: root/drivers/staging/fsl-mc/bus/mc-restool.c
blob: d5330b684f90ab59f99ee9f58305cfe396446c61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
/*
 * Freescale Management Complex (MC) restool driver
 *
 * Copyright (C) 2014 Freescale Semiconductor, Inc.
 * Author: Lijun Pan <Lijun.Pan@freescale.com>
 *
 * This file is licensed under the terms of the GNU General Public
 * License version 2. This program is licensed "as is" without any
 * warranty of any kind, whether express or implied.
 */

#include "../include/mc.h"
#include <linux/module.h>
#include <linux/fs.h>
#include <linux/miscdevice.h>
#include <linux/mm.h>
#include <linux/slab.h>
#include <linux/uaccess.h>
#include <linux/mutex.h>
#include <linux/platform_device.h>
#include "mc-ioctl.h"
#include "../include/mc-sys.h"
#include "../include/mc-bus.h"
#include "../include/mc-cmd.h"
#include "../include/dpmng.h"

/**
 * Maximum number of DPRCs that can be opened at the same time
 */
#define MAX_DPRC_HANDLES	    64

/**
 * restool_misc - information associated with the newly added miscdevice
 * @misc: newly created miscdevice associated with root dprc
 * @miscdevt: device id of this miscdevice
 * @list: a linked list node representing this miscdevcie
 * @static_mc_io: pointer to the static MC I/O object used by the restool
 * @dynamic_instance_count: number of dynamically created instances
 * @static_instance_in_use: static instance is in use or not
 * @mutex: mutex lock to serialze the open/release operations
 * @dev: root dprc associated with this miscdevice
 */
struct restool_misc {
	struct miscdevice misc;
	dev_t miscdevt;
	struct list_head list;
	struct fsl_mc_io *static_mc_io;
	u32 dynamic_instance_count;
	bool static_instance_in_use;
	struct mutex mutex; /* serialze the open/release operations */
	struct device *dev;
};

/**
 * struct fsl_mc - Private data of a "fsl,qoriq-mc" platform device
 * @root_mc_bus_dev: fsl-mc device representing the root DPRC
 * @num_translation_ranges: number of entries in addr_translation_ranges
 * @translation_ranges: array of bus to system address translation ranges
 */
struct fsl_mc {
	struct fsl_mc_device *root_mc_bus_dev;
	u8 num_translation_ranges;
	struct fsl_mc_addr_translation_range *translation_ranges;
};

/*
 * initialize a global list to link all
 * the miscdevice nodes (struct restool_misc)
 */
static LIST_HEAD(misc_list);
static DEFINE_MUTEX(misc_list_mutex);

static int fsl_mc_restool_dev_open(struct inode *inode, struct file *filep)
{
	struct fsl_mc_device *root_mc_dev;
	int error;
	struct fsl_mc_io *dynamic_mc_io = NULL;
	struct restool_misc *restool_misc = NULL;
	struct restool_misc *restool_misc_cursor;

	mutex_lock(&misc_list_mutex);

	list_for_each_entry(restool_misc_cursor, &misc_list, list) {
		if (restool_misc_cursor->miscdevt == inode->i_rdev) {
			restool_misc = restool_misc_cursor;
			break;
		}
	}

	mutex_unlock(&misc_list_mutex);

	if (!restool_misc)
		return -EINVAL;

	if (WARN_ON(!restool_misc->dev))
		return -EINVAL;

	mutex_lock(&restool_misc->mutex);

	if (!restool_misc->static_instance_in_use) {
		restool_misc->static_instance_in_use = true;
		filep->private_data = restool_misc->static_mc_io;
	} else {
		dynamic_mc_io = kzalloc(sizeof(*dynamic_mc_io), GFP_KERNEL);
		if (!dynamic_mc_io) {
			error = -ENOMEM;
			goto err_unlock;
		}

		root_mc_dev = to_fsl_mc_device(restool_misc->dev);
		error = fsl_mc_portal_allocate(root_mc_dev, 0, &dynamic_mc_io);
		if (error < 0) {
			pr_err("Not able to allocate MC portal\n");
			goto free_dynamic_mc_io;
		}
		++restool_misc->dynamic_instance_count;
		filep->private_data = dynamic_mc_io;
	}

	mutex_unlock(&restool_misc->mutex);

	return 0;

free_dynamic_mc_io:
	kfree(dynamic_mc_io);
err_unlock:
	mutex_unlock(&restool_misc->mutex);

	return error;
}

static int fsl_mc_restool_dev_release(struct inode *inode, struct file *filep)
{
	struct fsl_mc_io *local_mc_io = filep->private_data;
	struct restool_misc *restool_misc = NULL;
	struct restool_misc *restool_misc_cursor;

	if (WARN_ON(!filep->private_data))
		return -EINVAL;

	mutex_lock(&misc_list_mutex);

	list_for_each_entry(restool_misc_cursor, &misc_list, list) {
		if (restool_misc_cursor->miscdevt == inode->i_rdev) {
			restool_misc = restool_misc_cursor;
			break;
		}
	}

	mutex_unlock(&misc_list_mutex);

	if (!restool_misc)
		return -EINVAL;

	mutex_lock(&restool_misc->mutex);

	if (WARN_ON(restool_misc->dynamic_instance_count == 0 &&
		    !restool_misc->static_instance_in_use)) {
		mutex_unlock(&restool_misc->mutex);
		return -EINVAL;
	}

	/* Globally clean up opened/untracked handles */
	fsl_mc_portal_reset(local_mc_io);

	/*
	 * must check
	 * whether local_mc_io is dynamic or static instance
	 * Otherwise it will free up the reserved portal by accident
	 * or even not free up the dynamic allocated portal
	 * if 2 or more instances running concurrently
	 */
	if (local_mc_io == restool_misc->static_mc_io) {
		restool_misc->static_instance_in_use = false;
	} else {
		fsl_mc_portal_free(local_mc_io);
		kfree(filep->private_data);
		--restool_misc->dynamic_instance_count;
	}

	filep->private_data = NULL;
	mutex_unlock(&restool_misc->mutex);

	return 0;
}

static int restool_send_mc_command(unsigned long arg,
				   struct fsl_mc_io *local_mc_io)
{
	int error;
	struct mc_command mc_cmd;

	if (copy_from_user(&mc_cmd, (void __user *)arg, sizeof(mc_cmd)))
		return -EFAULT;

	/*
	 * Send MC command to the MC:
	 */
	error = mc_send_command(local_mc_io, &mc_cmd);
	if (error < 0)
		return error;

	if (copy_to_user((void __user *)arg, &mc_cmd, sizeof(mc_cmd)))
		return -EFAULT;

	return 0;
}

static long
fsl_mc_restool_dev_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
{
	int error;

	switch (cmd) {
	case RESTOOL_SEND_MC_COMMAND:
		error = restool_send_mc_command(arg, file->private_data);
		break;
	default:
		pr_err("%s: unexpected ioctl call number\n", __func__);
		error = -EINVAL;
	}

	return error;
}

static const struct file_operations fsl_mc_restool_dev_fops = {
	.owner = THIS_MODULE,
	.open = fsl_mc_restool_dev_open,
	.release = fsl_mc_restool_dev_release,
	.unlocked_ioctl = fsl_mc_restool_dev_ioctl,
};

static int restool_add_device_file(struct device *dev)
{
	u32 name1 = 0;
	char name2[20] = {0};
	int error;
	struct fsl_mc_device *root_mc_dev;
	struct restool_misc *restool_misc;

	if (dev->bus == &platform_bus_type && dev->driver_data) {
		if (sscanf(dev_name(dev), "%x.%s", &name1, name2) != 2)
			return -EINVAL;

		if (strcmp(name2, "fsl-mc") == 0)
			pr_debug("platform's root dprc name is: %s\n",
				 dev_name(&(((struct fsl_mc *)
				 (dev->driver_data))->root_mc_bus_dev->dev)));
	}

	if (!fsl_mc_is_root_dprc(dev))
		return 0;

	restool_misc = kzalloc(sizeof(*restool_misc), GFP_KERNEL);
	if (!restool_misc)
		return -ENOMEM;

	restool_misc->dev = dev;
	root_mc_dev = to_fsl_mc_device(dev);
	error = fsl_mc_portal_allocate(root_mc_dev, 0,
				       &restool_misc->static_mc_io);
	if (error < 0) {
		pr_err("Not able to allocate MC portal\n");
		goto free_restool_misc;
	}

	restool_misc->misc.minor = MISC_DYNAMIC_MINOR;
	restool_misc->misc.name = dev_name(dev);
	restool_misc->misc.fops = &fsl_mc_restool_dev_fops;

	error = misc_register(&restool_misc->misc);
	if (error < 0) {
		pr_err("misc_register() failed: %d\n", error);
		goto free_portal;
	}

	restool_misc->miscdevt = restool_misc->misc.this_device->devt;
	mutex_init(&restool_misc->mutex);
	mutex_lock(&misc_list_mutex);
	list_add(&restool_misc->list, &misc_list);
	mutex_unlock(&misc_list_mutex);

	pr_info("/dev/%s driver registered\n", dev_name(dev));

	return 0;

free_portal:
	fsl_mc_portal_free(restool_misc->static_mc_io);
free_restool_misc:
	kfree(restool_misc);

	return error;
}

static int restool_bus_notifier(struct notifier_block *nb,
				unsigned long action, void *data)
{
	int error;
	struct device *dev = data;

	switch (action) {
	case BUS_NOTIFY_ADD_DEVICE:
		error = restool_add_device_file(dev);
		if (error)
			return error;
		break;
	case BUS_NOTIFY_DEL_DEVICE:
	case BUS_NOTIFY_REMOVED_DEVICE:
	case BUS_NOTIFY_BIND_DRIVER:
	case BUS_NOTIFY_BOUND_DRIVER:
	case BUS_NOTIFY_UNBIND_DRIVER:
	case BUS_NOTIFY_UNBOUND_DRIVER:
		break;
	default:
		pr_err("%s: unrecognized device action from %s\n", __func__,
		       dev_name(dev));
		return -EINVAL;
	}

	return 0;
}

static int add_to_restool(struct device *dev, void *data)
{
	return restool_add_device_file(dev);
}

static int __init fsl_mc_restool_driver_init(void)
{
	int error;
	struct notifier_block *nb;

	nb = kzalloc(sizeof(*nb), GFP_KERNEL);
	if (!nb)
		return -ENOMEM;

	nb->notifier_call = restool_bus_notifier;
	error = bus_register_notifier(&fsl_mc_bus_type, nb);
	if (error)
		goto free_nb;

	/*
	 * This driver runs after fsl-mc bus driver runs.
	 * Hence, many of the root dprcs are already attached to fsl-mc bus
	 * In order to make sure we find all the root dprcs,
	 * we need to scan the fsl_mc_bus_type.
	 */
	error  = bus_for_each_dev(&fsl_mc_bus_type, NULL, NULL, add_to_restool);
	if (error) {
		bus_unregister_notifier(&fsl_mc_bus_type, nb);
		kfree(nb);
		pr_err("restool driver registration failure\n");
		return error;
	}

	return 0;

free_nb:
	kfree(nb);
	return error;
}

module_init(fsl_mc_restool_driver_init);

static void __exit fsl_mc_restool_driver_exit(void)
{
	struct restool_misc *restool_misc;
	struct restool_misc *restool_misc_tmp;
	char name1[20] = {0};
	u32 name2 = 0;

	list_for_each_entry_safe(restool_misc, restool_misc_tmp,
				 &misc_list, list) {
		if (sscanf(restool_misc->misc.name, "%4s.%u", name1, &name2)
		    != 2)
			continue;

		pr_debug("name1=%s,name2=%u\n", name1, name2);
		pr_debug("misc-device: %s\n", restool_misc->misc.name);
		if (strcmp(name1, "dprc") != 0)
			continue;

		if (WARN_ON(!restool_misc->static_mc_io))
			return;

		if (WARN_ON(restool_misc->dynamic_instance_count != 0))
			return;

		if (WARN_ON(restool_misc->static_instance_in_use))
			return;

		misc_deregister(&restool_misc->misc);
		pr_info("/dev/%s driver unregistered\n",
			restool_misc->misc.name);
		fsl_mc_portal_free(restool_misc->static_mc_io);
		list_del(&restool_misc->list);
		kfree(restool_misc);
	}
}

module_exit(fsl_mc_restool_driver_exit);

MODULE_AUTHOR("Freescale Semiconductor Inc.");
MODULE_DESCRIPTION("Freescale's MC restool driver");
MODULE_LICENSE("GPL");