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
287 B
Makefile
13 lines
287 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
# bus types
|
|
obj-$(CONFIG_NEURON) += channel_bus.o
|
|
obj-$(CONFIG_NEURON) += protocol_bus.o
|
|
obj-$(CONFIG_NEURON) += application_bus.o
|
|
|
|
# platform device
|
|
obj-$(CONFIG_NEURON_SERVICE) += neuron_service.o
|
|
|
|
# drivers
|
|
obj-y += channel/
|
|
obj-y += protocol/
|