blob: 251b181b3511352f6d5f55cabd1c00dab303fbb5 [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
Kristofer Jonsson53fd03d2022-06-21 16:58:45 +020071 dev_info(net->edev->dev, "Network destroy. net=0x%pK\n", net);
Kristofer Jonsson116a6352020-08-20 17:25:23 +020072
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
Kristofer Jonsson53fd03d2022-06-21 16:58:45 +020084 dev_info(net->edev->dev, "Network release. file=0x%pK, net=0x%pK\n",
85 file, net);
Kristofer Jonsson116a6352020-08-20 17:25:23 +020086
87 ethosu_network_put(net);
88
89 return 0;
90}
91
92static long ethosu_network_ioctl(struct file *file,
93 unsigned int cmd,
94 unsigned long arg)
95{
96 struct ethosu_network *net = file->private_data;
97 void __user *udata = (void __user *)arg;
98 int ret = -EINVAL;
99
100 ret = mutex_lock_interruptible(&net->edev->mutex);
101 if (ret)
102 return ret;
103
Kristofer Jonsson53fd03d2022-06-21 16:58:45 +0200104 dev_info(net->edev->dev,
105 "Network ioctl: file=0x%pK, net=0x%pK, cmd=0x%x, arg=0x%lx\n",
106 file, net, cmd, arg);
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200107
108 switch (cmd) {
Kristofer Jonsson3c6a2602022-03-10 11:17:29 +0100109 case ETHOSU_IOCTL_NETWORK_INFO: {
110 struct ethosu_uapi_network_info uapi;
111
112 if (copy_from_user(&uapi, udata, sizeof(uapi)))
113 break;
114
115 dev_info(net->edev->dev,
Kristofer Jonsson53fd03d2022-06-21 16:58:45 +0200116 "Network ioctl: Network info. net=0x%pK\n",
Kristofer Jonsson3c6a2602022-03-10 11:17:29 +0100117 net);
118
119 ret = ethosu_network_info_request(net, &uapi);
120 if (ret)
121 break;
122
123 ret = copy_to_user(udata, &uapi, sizeof(uapi)) ? -EFAULT : 0;
124 break;
125 }
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200126 case ETHOSU_IOCTL_INFERENCE_CREATE: {
127 struct ethosu_uapi_inference_create uapi;
128
129 if (copy_from_user(&uapi, udata, sizeof(uapi)))
130 break;
131
132 dev_info(net->edev->dev,
Kristofer Jonsson53fd03d2022-06-21 16:58:45 +0200133 "Network ioctl: Inference. ifm_fd=%u, ofm_fd=%u\n",
Kristofer Jonssonb74492c2020-09-10 13:26:01 +0200134 uapi.ifm_fd[0], uapi.ofm_fd[0]);
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200135
136 ret = ethosu_inference_create(net->edev, net, &uapi);
137 break;
138 }
139 default: {
140 dev_err(net->edev->dev, "Invalid ioctl. cmd=%u, arg=%lu",
141 cmd, arg);
142 break;
143 }
144 }
145
146 mutex_unlock(&net->edev->mutex);
147
148 return ret;
149}
150
151int ethosu_network_create(struct ethosu_device *edev,
152 struct ethosu_uapi_network_create *uapi)
153{
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200154 struct ethosu_network *net;
155 int ret = -ENOMEM;
156
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200157 net = devm_kzalloc(edev->dev, sizeof(*net), GFP_KERNEL);
Kristofer Jonsson35de9e62022-03-08 13:25:45 +0100158 if (!net)
159 return -ENOMEM;
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200160
161 net->edev = edev;
Kristofer Jonsson35de9e62022-03-08 13:25:45 +0100162 net->buf = NULL;
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200163 kref_init(&net->kref);
164
Kristofer Jonsson35de9e62022-03-08 13:25:45 +0100165 if (uapi->type == ETHOSU_UAPI_NETWORK_BUFFER) {
166 net->buf = ethosu_buffer_get_from_fd(uapi->fd);
167 if (IS_ERR(net->buf)) {
168 ret = PTR_ERR(net->buf);
169 goto free_net;
170 }
171 } else {
172 net->index = uapi->index;
173 }
174
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200175 ret = anon_inode_getfd("ethosu-network", &ethosu_network_fops, net,
176 O_RDWR | O_CLOEXEC);
177 if (ret < 0)
Kristofer Jonsson35de9e62022-03-08 13:25:45 +0100178 goto put_buf;
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200179
180 net->file = fget(ret);
181 fput(net->file);
182
Kristofer Jonsson53fd03d2022-06-21 16:58:45 +0200183 dev_info(edev->dev,
184 "Network create. file=0x%pK, fd=%d, net=0x%pK, buf=0x%pK, index=%u",
185 net->file, ret, net, net->buf, net->index);
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200186
187 return ret;
188
Kristofer Jonsson35de9e62022-03-08 13:25:45 +0100189put_buf:
190 if (net->buf != NULL)
191 ethosu_buffer_put(net->buf);
192
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200193free_net:
194 devm_kfree(edev->dev, net);
195
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200196 return ret;
197}
198
199struct ethosu_network *ethosu_network_get_from_fd(int fd)
200{
201 struct ethosu_network *net;
202 struct file *file;
203
204 file = fget(fd);
205 if (!file)
206 return ERR_PTR(-EINVAL);
207
208 if (!ethosu_network_verify(file)) {
209 fput(file);
210
211 return ERR_PTR(-EINVAL);
212 }
213
214 net = file->private_data;
215 ethosu_network_get(net);
216 fput(file);
217
218 return net;
219}
220
221void ethosu_network_get(struct ethosu_network *net)
222{
223 kref_get(&net->kref);
224}
225
Kristofer Jonsson442fefb2022-03-17 17:15:52 +0100226int ethosu_network_put(struct ethosu_network *net)
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200227{
Kristofer Jonsson442fefb2022-03-17 17:15:52 +0100228 return kref_put(&net->kref, ethosu_network_destroy);
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200229}