1 // SPDX-License-Identifier: GPL-2.0-only
3 * arch/arm/common/bL_switcher_dummy_if.c -- b.L switcher dummy interface
5 * Created by: Nicolas Pitre, November 2012
6 * Copyright: (C) 2012-2013 Linaro Limited
8 * Dummy interface to user space for debugging purpose only.
11 #include <linux/init.h>
12 #include <linux/module.h>
14 #include <linux/miscdevice.h>
15 #include <linux/uaccess.h>
16 #include <asm/bL_switcher.h>
18 static ssize_t bL_switcher_write(struct file *file, const char __user *buf,
19 size_t len, loff_t *pos)
22 unsigned int cpu, cluster;
25 pr_debug("%s\n", __func__);
30 if (copy_from_user(val, buf, 3))
33 /* format: <cpu#>,<cluster#> */
34 if (val[0] < '0' || val[0] > '9' ||
36 val[2] < '0' || val[2] > '1')
40 cluster = val[2] - '0';
41 ret = bL_switch_request(cpu, cluster);
46 static const struct file_operations bL_switcher_fops = {
47 .write = bL_switcher_write,
51 static struct miscdevice bL_switcher_device = {
56 module_misc_device(bL_switcher_device);
59 MODULE_LICENSE("GPL v2");
60 MODULE_DESCRIPTION("big.LITTLE switcher dummy user interface");