blob: 6fde92c148a09f872b3c93081242e6d13dcbd96a [file] [log] [blame]
/*
* (C) COPYRIGHT 2020 ARM Limited. All rights reserved.
*
* This program is free software and is provided to you under the terms of the
* GNU General Public License version 2 as published by the Free Software
* Foundation, and any use by you of this program is subject to the terms
* of such GNU licence.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, you can access it online at
* http://www.gnu.org/licenses/gpl-2.0.html.
*
* SPDX-License-Identifier: GPL-2.0-only
*/
/****************************************************************************
* Includes
****************************************************************************/
#include "ethosu_inference.h"
#include "ethosu_buffer.h"
#include "ethosu_core_interface.h"
#include "ethosu_device.h"
#include "ethosu_network.h"
#include "uapi/ethosu.h"
#include <linux/anon_inodes.h>
#include <linux/file.h>
#include <linux/fs.h>
#include <linux/poll.h>
/****************************************************************************
* Variables
****************************************************************************/
static int ethosu_inference_release(struct inode *inode,
struct file *file);
static unsigned int ethosu_inference_poll(struct file *file,
poll_table *wait);
static long ethosu_inference_ioctl(struct file *file,
unsigned int cmd,
unsigned long arg);
static const struct file_operations ethosu_inference_fops = {
.release = &ethosu_inference_release,
.poll = &ethosu_inference_poll,
.unlocked_ioctl = &ethosu_inference_ioctl,
#ifdef CONFIG_COMPAT
.compat_ioctl = &ethosu_inference_ioctl,
#endif
};
/****************************************************************************
* Functions
****************************************************************************/
static const char *status_to_string(const enum ethosu_uapi_status status)
{
switch (status) {
case ETHOSU_UAPI_STATUS_OK: {
return "Ok";
}
case ETHOSU_UAPI_STATUS_ERROR: {
return "Error";
}
default: {
return "Unknown";
}
}
}
static int ethosu_inference_send(struct ethosu_inference *inf)
{
int ret;
if (inf->pending)
return -EINVAL;
inf->status = ETHOSU_UAPI_STATUS_ERROR;
ret = ethosu_mailbox_inference(&inf->edev->mailbox, inf,
inf->ifm_count, inf->ifm,
inf->ofm_count, inf->ofm,
inf->net->buf,
inf->pmu_event_config,
ETHOSU_PMU_EVENT_MAX,
inf->pmu_cycle_counter_enable);
if (ret)
return ret;
inf->pending = true;
ethosu_inference_get(inf);
return 0;
}
static int ethosu_inference_find(struct ethosu_inference *inf,
struct list_head *inference_list)
{
struct ethosu_inference *cur;
list_for_each_entry(cur, inference_list, list) {
if (cur == inf)
return 0;
}
return -EINVAL;
}
static bool ethosu_inference_verify(struct file *file)
{
return file->f_op == &ethosu_inference_fops;
}
static void ethosu_inference_kref_destroy(struct kref *kref)
{
struct ethosu_inference *inf =
container_of(kref, struct ethosu_inference, kref);
dev_info(inf->edev->dev,
"Inference destroy. handle=0x%pK, status=%d\n",
inf, inf->status);
list_del(&inf->list);
while (inf->ifm_count-- > 0)
ethosu_buffer_put(inf->ifm[inf->ifm_count]);
while (inf->ofm_count-- > 0)
ethosu_buffer_put(inf->ofm[inf->ofm_count]);
ethosu_network_put(inf->net);
devm_kfree(inf->edev->dev, inf);
}
static int ethosu_inference_release(struct inode *inode,
struct file *file)
{
struct ethosu_inference *inf = file->private_data;
dev_info(inf->edev->dev,
"Inference release. handle=0x%pK, status=%d\n",
inf, inf->status);
ethosu_inference_put(inf);
return 0;
}
static unsigned int ethosu_inference_poll(struct file *file,
poll_table *wait)
{
struct ethosu_inference *inf = file->private_data;
int ret = 0;
poll_wait(file, &inf->waitq, wait);
if (!inf->pending)
ret |= POLLIN;
return ret;
}
static long ethosu_inference_ioctl(struct file *file,
unsigned int cmd,
unsigned long arg)
{
struct ethosu_inference *inf = file->private_data;
void __user *udata = (void __user *)arg;
int ret;
ret = mutex_lock_interruptible(&inf->edev->mutex);
if (ret)
return ret;
dev_info(inf->edev->dev, "Ioctl: cmd=%u, arg=%lu\n", cmd, arg);
switch (cmd) {
case ETHOSU_IOCTL_INFERENCE_STATUS: {
struct ethosu_uapi_result_status uapi;
int i;
uapi.status = inf->status;
for (i = 0; i < ETHOSU_PMU_EVENT_MAX; i++) {
uapi.pmu_config.events[i] =
inf->pmu_event_config[i];
uapi.pmu_count.events[i] =
inf->pmu_event_count[i];
}
uapi.pmu_config.cycle_count = inf->pmu_cycle_counter_enable;
uapi.pmu_count.cycle_count = inf->pmu_cycle_counter_count;
dev_info(inf->edev->dev,
"Ioctl: Inference status. status=%s (%d)\n",
status_to_string(uapi.status), uapi.status);
ret = copy_to_user(udata, &uapi, sizeof(uapi)) ? -EFAULT : 0;
break;
}
default: {
dev_err(inf->edev->dev, "Invalid ioctl. cmd=%u, arg=%lu",
cmd, arg);
break;
}
}
mutex_unlock(&inf->edev->mutex);
return ret;
}
int ethosu_inference_create(struct ethosu_device *edev,
struct ethosu_network *net,
struct ethosu_uapi_inference_create *uapi)
{
struct ethosu_inference *inf;
uint32_t i;
int fd;
int ret = -ENOMEM;
inf = devm_kzalloc(edev->dev, sizeof(*inf), GFP_KERNEL);
if (!inf)
return -ENOMEM;
inf->edev = edev;
inf->net = net;
inf->pending = false;
inf->status = ETHOSU_UAPI_STATUS_ERROR;
kref_init(&inf->kref);
init_waitqueue_head(&inf->waitq);
/* Get pointer to IFM buffers */
for (i = 0; i < uapi->ifm_count; i++) {
inf->ifm[i] = ethosu_buffer_get_from_fd(uapi->ifm_fd[i]);
if (IS_ERR(inf->ifm[i])) {
ret = PTR_ERR(inf->ifm[i]);
goto put_ifm;
}
inf->ifm_count++;
}
/* Get pointer to OFM buffer */
for (i = 0; i < uapi->ofm_count; i++) {
inf->ofm[i] = ethosu_buffer_get_from_fd(uapi->ofm_fd[i]);
if (IS_ERR(inf->ofm[i])) {
ret = PTR_ERR(inf->ofm[i]);
goto put_ofm;
}
inf->ofm_count++;
}
/* Configure PMU and cycle counter */
dev_info(inf->edev->dev,
"Configuring events for PMU. events=[%u, %u, %u, %u]\n",
uapi->pmu_config.events[0], uapi->pmu_config.events[1],
uapi->pmu_config.events[2], uapi->pmu_config.events[3]);
/* Configure events and reset count for all events */
for (i = 0; i < ETHOSU_PMU_EVENT_MAX; i++) {
inf->pmu_event_config[i] = uapi->pmu_config.events[i];
inf->pmu_event_count[i] = 0;
}
if (uapi->pmu_config.cycle_count)
dev_info(inf->edev->dev, "Enabling cycle counter\n");
/* Configure cycle counter and reset any previous count */
inf->pmu_cycle_counter_enable = uapi->pmu_config.cycle_count;
inf->pmu_cycle_counter_count = 0;
/* Increment network reference count */
ethosu_network_get(net);
/* Create file descriptor */
ret = fd = anon_inode_getfd("ethosu-inference", &ethosu_inference_fops,
inf, O_RDWR | O_CLOEXEC);
if (ret < 0)
goto put_net;
/* Store pointer to file structure */
inf->file = fget(ret);
fput(inf->file);
/* Add inference to inference list */
list_add(&inf->list, &edev->inference_list);
/* Send inference request to Arm Ethos-U subsystem */
(void)ethosu_inference_send(inf);
dev_info(edev->dev, "Inference create. handle=0x%pK, fd=%d",
inf, fd);
return fd;
put_net:
ethosu_network_put(inf->net);
put_ofm:
while (inf->ofm_count-- > 0)
ethosu_buffer_put(inf->ofm[inf->ofm_count]);
put_ifm:
while (inf->ifm_count-- > 0)
ethosu_buffer_put(inf->ifm[inf->ifm_count]);
devm_kfree(edev->dev, inf);
return ret;
}
struct ethosu_inference *ethosu_inference_get_from_fd(int fd)
{
struct ethosu_inference *inf;
struct file *file;
file = fget(fd);
if (!file)
return ERR_PTR(-EINVAL);
if (!ethosu_inference_verify(file)) {
fput(file);
return ERR_PTR(-EINVAL);
}
inf = file->private_data;
ethosu_inference_get(inf);
fput(file);
return inf;
}
void ethosu_inference_get(struct ethosu_inference *inf)
{
kref_get(&inf->kref);
}
void ethosu_inference_put(struct ethosu_inference *inf)
{
kref_put(&inf->kref, &ethosu_inference_kref_destroy);
}
void ethosu_inference_rsp(struct ethosu_device *edev,
struct ethosu_core_inference_rsp *rsp)
{
struct ethosu_inference *inf =
(struct ethosu_inference *)rsp->user_arg;
int ret;
int i;
ret = ethosu_inference_find(inf, &edev->inference_list);
if (ret) {
dev_warn(edev->dev,
"Handle not found in inference list. handle=0x%p\n",
rsp);
return;
}
inf->pending = false;
if (rsp->status == ETHOSU_CORE_STATUS_OK &&
inf->ofm_count <= ETHOSU_CORE_BUFFER_MAX) {
uint32_t i;
inf->status = ETHOSU_UAPI_STATUS_OK;
for (i = 0; i < inf->ofm_count; i++) {
struct ethosu_buffer *ofm = inf->ofm[i];
ret = ethosu_buffer_resize(
ofm, ofm->size + rsp->ofm_size[i],
ofm->offset);
if (ret)
inf->status = ETHOSU_UAPI_STATUS_ERROR;
}
} else {
inf->status = ETHOSU_UAPI_STATUS_ERROR;
}
for (i = 0; i < ETHOSU_CORE_PMU_MAX; i++) {
inf->pmu_event_config[i] = rsp->pmu_event_config[i];
inf->pmu_event_count[i] = rsp->pmu_event_count[i];
}
inf->pmu_cycle_counter_enable = rsp->pmu_cycle_counter_enable;
inf->pmu_cycle_counter_count = rsp->pmu_cycle_counter_count;
dev_info(edev->dev,
"PMU events. config=[%u, %u, %u, %u], count=[%u, %u, %u, %u]\n",
inf->pmu_event_config[0], inf->pmu_event_config[1],
inf->pmu_event_config[2], inf->pmu_event_config[3],
inf->pmu_event_count[0], inf->pmu_event_count[1],
inf->pmu_event_count[2], inf->pmu_event_count[3]);
dev_info(edev->dev,
"PMU cycle counter. enable=%u, count=%llu\n",
inf->pmu_cycle_counter_enable,
inf->pmu_cycle_counter_count);
wake_up_interruptible(&inf->waitq);
ethosu_inference_put(inf);
}