blob: 4170046e7d932649b0b547890e3f8e0b5543c38e [file] [log] [blame]
Kristofer Jonsson116a6352020-08-20 17:25:23 +02001/*
Kristofer Jonsson3c6a2602022-03-10 11:17:29 +01002 * Copyright (c) 2020,2022 Arm Limited.
Kristofer Jonsson116a6352020-08-20 17:25:23 +02003 *
4 * This program is free software and is provided to you under the terms of the
5 * GNU General Public License version 2 as published by the Free Software
6 * Foundation, and any use by you of this program is subject to the terms
7 * of such GNU licence.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, you can access it online at
16 * http://www.gnu.org/licenses/gpl-2.0.html.
17 *
18 * SPDX-License-Identifier: GPL-2.0-only
19 */
20
21/****************************************************************************
22 * Includes
23 ****************************************************************************/
24
25#include "ethosu_network.h"
26
27#include "ethosu_buffer.h"
28#include "ethosu_device.h"
29#include "ethosu_inference.h"
Kristofer Jonsson3c6a2602022-03-10 11:17:29 +010030#include "ethosu_network_info.h"
Kristofer Jonsson116a6352020-08-20 17:25:23 +020031#include "uapi/ethosu.h"
32
33#include <linux/anon_inodes.h>
34#include <linux/file.h>
35#include <linux/fs.h>
36#include <linux/uaccess.h>
37
38/****************************************************************************
39 * Variables
40 ****************************************************************************/
41
42static int ethosu_network_release(struct inode *inode,
43 struct file *file);
44
45static long ethosu_network_ioctl(struct file *file,
46 unsigned int cmd,
47 unsigned long arg);
48
49static const struct file_operations ethosu_network_fops = {
50 .release = &ethosu_network_release,
51 .unlocked_ioctl = &ethosu_network_ioctl,
52#ifdef CONFIG_COMPAT
53 .compat_ioctl = &ethosu_network_ioctl,
54#endif
55};
56
57/****************************************************************************
58 * Functions
59 ****************************************************************************/
60
61static bool ethosu_network_verify(struct file *file)
62{
63 return file->f_op == &ethosu_network_fops;
64}
65
66static void ethosu_network_destroy(struct kref *kref)
67{
68 struct ethosu_network *net =
69 container_of(kref, struct ethosu_network, kref);
70
71 dev_info(net->edev->dev, "Network destroy. handle=0x%pK\n", net);
72
Kristofer Jonsson35de9e62022-03-08 13:25:45 +010073 if (net->buf != NULL)
74 ethosu_buffer_put(net->buf);
75
Kristofer Jonsson116a6352020-08-20 17:25:23 +020076 devm_kfree(net->edev->dev, net);
77}
78
79static int ethosu_network_release(struct inode *inode,
80 struct file *file)
81{
82 struct ethosu_network *net = file->private_data;
83
84 dev_info(net->edev->dev, "Network release. handle=0x%pK\n", net);
85
86 ethosu_network_put(net);
87
88 return 0;
89}
90
91static long ethosu_network_ioctl(struct file *file,
92 unsigned int cmd,
93 unsigned long arg)
94{
95 struct ethosu_network *net = file->private_data;
96 void __user *udata = (void __user *)arg;
97 int ret = -EINVAL;
98
99 ret = mutex_lock_interruptible(&net->edev->mutex);
100 if (ret)
101 return ret;
102
Kristofer Jonsson3c6a2602022-03-10 11:17:29 +0100103 dev_info(net->edev->dev, "Ioctl: cmd=0x%x, arg=0x%lx\n", cmd, arg);
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200104
105 switch (cmd) {
Kristofer Jonsson3c6a2602022-03-10 11:17:29 +0100106 case ETHOSU_IOCTL_NETWORK_INFO: {
107 struct ethosu_uapi_network_info uapi;
108
109 if (copy_from_user(&uapi, udata, sizeof(uapi)))
110 break;
111
112 dev_info(net->edev->dev,
113 "Ioctl: Network info. handle=%p\n",
114 net);
115
116 ret = ethosu_network_info_request(net, &uapi);
117 if (ret)
118 break;
119
120 ret = copy_to_user(udata, &uapi, sizeof(uapi)) ? -EFAULT : 0;
121 break;
122 }
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200123 case ETHOSU_IOCTL_INFERENCE_CREATE: {
124 struct ethosu_uapi_inference_create uapi;
125
126 if (copy_from_user(&uapi, udata, sizeof(uapi)))
127 break;
128
129 dev_info(net->edev->dev,
130 "Ioctl: Inference. ifm_fd=%u, ofm_fd=%u\n",
Kristofer Jonssonb74492c2020-09-10 13:26:01 +0200131 uapi.ifm_fd[0], uapi.ofm_fd[0]);
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200132
133 ret = ethosu_inference_create(net->edev, net, &uapi);
134 break;
135 }
136 default: {
137 dev_err(net->edev->dev, "Invalid ioctl. cmd=%u, arg=%lu",
138 cmd, arg);
139 break;
140 }
141 }
142
143 mutex_unlock(&net->edev->mutex);
144
145 return ret;
146}
147
148int ethosu_network_create(struct ethosu_device *edev,
149 struct ethosu_uapi_network_create *uapi)
150{
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200151 struct ethosu_network *net;
152 int ret = -ENOMEM;
153
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200154 net = devm_kzalloc(edev->dev, sizeof(*net), GFP_KERNEL);
Kristofer Jonsson35de9e62022-03-08 13:25:45 +0100155 if (!net)
156 return -ENOMEM;
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200157
158 net->edev = edev;
Kristofer Jonsson35de9e62022-03-08 13:25:45 +0100159 net->buf = NULL;
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200160 kref_init(&net->kref);
161
Kristofer Jonsson35de9e62022-03-08 13:25:45 +0100162 if (uapi->type == ETHOSU_UAPI_NETWORK_BUFFER) {
163 net->buf = ethosu_buffer_get_from_fd(uapi->fd);
164 if (IS_ERR(net->buf)) {
165 ret = PTR_ERR(net->buf);
166 goto free_net;
167 }
168 } else {
169 net->index = uapi->index;
170 }
171
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200172 ret = anon_inode_getfd("ethosu-network", &ethosu_network_fops, net,
173 O_RDWR | O_CLOEXEC);
174 if (ret < 0)
Kristofer Jonsson35de9e62022-03-08 13:25:45 +0100175 goto put_buf;
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200176
177 net->file = fget(ret);
178 fput(net->file);
179
180 dev_info(edev->dev, "Network create. handle=0x%pK",
181 net);
182
183 return ret;
184
Kristofer Jonsson35de9e62022-03-08 13:25:45 +0100185put_buf:
186 if (net->buf != NULL)
187 ethosu_buffer_put(net->buf);
188
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200189free_net:
190 devm_kfree(edev->dev, net);
191
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200192 return ret;
193}
194
195struct ethosu_network *ethosu_network_get_from_fd(int fd)
196{
197 struct ethosu_network *net;
198 struct file *file;
199
200 file = fget(fd);
201 if (!file)
202 return ERR_PTR(-EINVAL);
203
204 if (!ethosu_network_verify(file)) {
205 fput(file);
206
207 return ERR_PTR(-EINVAL);
208 }
209
210 net = file->private_data;
211 ethosu_network_get(net);
212 fput(file);
213
214 return net;
215}
216
217void ethosu_network_get(struct ethosu_network *net)
218{
219 kref_get(&net->kref);
220}
221
Kristofer Jonsson442fefb2022-03-17 17:15:52 +0100222int ethosu_network_put(struct ethosu_network *net)
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200223{
Kristofer Jonsson442fefb2022-03-17 17:15:52 +0100224 return kref_put(&net->kref, ethosu_network_destroy);
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200225}