Neuron is a device-sharing framework which is used by guests of the haven hypervisor to serve or access shared I/O devices and other inter-VM services. There are three main layers that make up a neuron service. channel - the physical layer transport that uses the hypervisor provided transports. protocol - defines the syntax and semantics to virtualize a specific device across VMs. Block and Net are examples of protocols. application - integrates the neuron service components into the rest of the system. There would be front and back end application drivers for the net protocol. Change-Id: Ic7278fdaee1cd30147e91e1126643bce79c05e52 Signed-off-by: Chris Lew <clew@codeaurora.org>
13 lines
335 B
C
13 lines
335 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/* Copyright (c) 2020 The Linux Foundation. All rights reserved. */
|
|
|
|
#include <linux/neuron.h>
|
|
|
|
/* Device's driver data */
|
|
struct neuron_service {
|
|
struct neuron_protocol *protocol;
|
|
struct neuron_application *application;
|
|
unsigned int channel_count;
|
|
struct neuron_channel *channels[];
|
|
};
|