aboutsummaryrefslogtreecommitdiff
path: root/docs/driver_library_component.puml
diff options
context:
space:
mode:
authorKristofer Jonsson <kristofer.jonsson@arm.com>2021-06-02 17:15:57 +0200
committerKristofer Jonsson <kristofer.jonsson@arm.com>2021-06-10 11:35:45 +0200
commit0c79f896caf1a0ac16dd92810c4b15bfff00bdb3 (patch)
treed831c0a297894065865ecd680a4ccaeb67859d39 /docs/driver_library_component.puml
parent2c01713dbeba8446b135ef19fc443b6abe098210 (diff)
downloadethos-u-linux-driver-stack-0c79f896caf1a0ac16dd92810c4b15bfff00bdb3.tar.gz
Adding documentation
Adding documentation, component- and sequence diagrams how the driver library and kernel driver work. Change-Id: I4e71b5e1f5d926386efe8f103a0f4fbc8636a494
Diffstat (limited to 'docs/driver_library_component.puml')
-rw-r--r--docs/driver_library_component.puml18
1 files changed, 18 insertions, 0 deletions
diff --git a/docs/driver_library_component.puml b/docs/driver_library_component.puml
new file mode 100644
index 0000000..1b640e2
--- /dev/null
+++ b/docs/driver_library_component.puml
@@ -0,0 +1,18 @@
+@startuml
+
+skinparam backgroundColor #FEFEFE
+
+[Inference] as inf
+[Network] as net
+[Buffer] as buf
+[Device] as dev
+
+inf -> net
+inf -> buf: IFM and OFM
+
+net --> dev
+net --> buf: Network model
+
+buf -> dev
+
+@enduml \ No newline at end of file