Orange Pi5 kernel

Deprecated Linux kernel 5.10.110 for OrangePi 5/5B/5+ boards

3 Commits   0 Branches   0 Tags
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  1) digraph T {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  2)     /* Make sure our payloads are always drawn below the driver node */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  3)     subgraph cluster_driver {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  4)         fillcolor = grey;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  5)         style = filled;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  6)         driver -> {payload1, payload2} [dir=none];
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  7)     }
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  8) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  9)     /* Driver malloc references */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 10)     edge [style=dashed];
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 11)     driver -> port1;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 12)     driver -> port2;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 13)     driver -> port3:e;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 14)     driver -> port4;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 15) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 16)     payload1:s -> port1:e;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 17)     payload2:s -> port3:e;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 18)     edge [style=""];
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 19) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 20)     subgraph cluster_topology {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 21)         label="Topology Manager";
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 22)         labelloc=bottom;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 23) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 24)         /* Topology references */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 25)         mstb1 -> {port1, port2};
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 26)         port1 -> mstb2;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 27)         port2 -> mstb3 -> {port3, port4};
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 28)         port3 -> mstb4;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 29) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 30)         /* Malloc references */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 31)         edge [style=dashed;dir=back];
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 32)         mstb1 -> {port1, port2};
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 33)         port1 -> mstb2;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 34)         port2 -> mstb3 -> {port3, port4};
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 35)         port3 -> mstb4;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 36)     }
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 37) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 38)     driver [label="DRM driver";style=filled;shape=box;fillcolor=lightblue];
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 39) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 40)     payload1 [label="Payload #1";style=filled;shape=box;fillcolor=lightblue];
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 41)     payload2 [label="Payload #2";style=filled;shape=box;fillcolor=lightblue];
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 42) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 43)     mstb1 [label="MSTB #1";style=filled;fillcolor=palegreen;shape=oval];
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 44)     mstb2 [label="MSTB #2";style=filled;fillcolor=palegreen;shape=oval];
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 45)     mstb3 [label="MSTB #3";style=filled;fillcolor=palegreen;shape=oval];
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 46)     mstb4 [label="MSTB #4";style=filled;fillcolor=palegreen;shape=oval];
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 47) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 48)     port1 [label="Port #1";shape=oval];
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 49)     port2 [label="Port #2";shape=oval];
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 50)     port3 [label="Port #3";shape=oval];
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 51)     port4 [label="Port #4";shape=oval];
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 52) }