graph.txt 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. Graphs
  2. _DSD
  3. ----
  4. _DSD (Device Specific Data) [7] is a predefined ACPI device
  5. configuration object that can be used to convey information on
  6. hardware features which are not specifically covered by the ACPI
  7. specification [1][6]. There are two _DSD extensions that are relevant
  8. for graphs: property [4] and hierarchical data extensions [5]. The
  9. property extension provides generic key-value pairs whereas the
  10. hierarchical data extension supports nodes with references to other
  11. nodes, forming a tree. The nodes in the tree may contain properties as
  12. defined by the property extension. The two extensions together provide
  13. a tree-like structure with zero or more properties (key-value pairs)
  14. in each node of the tree.
  15. The data structure may be accessed at runtime by using the device_*
  16. and fwnode_* functions defined in include/linux/fwnode.h .
  17. Fwnode represents a generic firmware node object. It is independent on
  18. the firmware type. In ACPI, fwnodes are _DSD hierarchical data
  19. extensions objects. A device's _DSD object is represented by an
  20. fwnode.
  21. The data structure may be referenced to elsewhere in the ACPI tables
  22. by using a hard reference to the device itself and an index to the
  23. hierarchical data extension array on each depth.
  24. Ports and endpoints
  25. -------------------
  26. The port and endpoint concepts are very similar to those in Devicetree
  27. [3]. A port represents an interface in a device, and an endpoint
  28. represents a connection to that interface.
  29. All port nodes are located under the device's "_DSD" node in the
  30. hierarchical data extension tree. The property extension related to
  31. each port node must contain the key "port" and an integer value which
  32. is the number of the port. The object it refers to should be called "PRTX",
  33. where "X" is the number of the port.
  34. Further on, endpoints are located under the individual port nodes. The
  35. first hierarchical data extension package list entry of the endpoint
  36. nodes must begin with "endpoint" and must be followed by the number
  37. of the endpoint. The object it refers to should be called "EPXY", where
  38. "X" is the number of the port and "Y" is the number of the endpoint.
  39. Each port node contains a property extension key "port", the value of
  40. which is the number of the port node. The each endpoint is similarly numbered
  41. with a property extension key "endpoint". Port numbers must be unique within a
  42. device and endpoint numbers must be unique within a port.
  43. The endpoint reference uses property extension with "remote-endpoint" property
  44. name followed by a reference in the same package. Such references consist of the
  45. the remote device reference, number of the port in the device and finally the
  46. number of the endpoint in that port. Individual references thus appear as:
  47. Package() { device, port_number, endpoint_number }
  48. The references to endpoints must be always done both ways, to the
  49. remote endpoint and back from the referred remote endpoint node.
  50. A simple example of this is show below:
  51. Scope (\_SB.PCI0.I2C2)
  52. {
  53. Device (CAM0)
  54. {
  55. Name (_DSD, Package () {
  56. ToUUID("daffd814-6eba-4d8c-8a91-bc9bbf4aa301"),
  57. Package () {
  58. Package () { "compatible", Package () { "nokia,smia" } },
  59. },
  60. ToUUID("dbb8e3e6-5886-4ba6-8795-1319f52a966b"),
  61. Package () {
  62. Package () { "port0", "PRT0" },
  63. }
  64. })
  65. Name (PRT0, Package() {
  66. ToUUID("daffd814-6eba-4d8c-8a91-bc9bbf4aa301"),
  67. Package () {
  68. Package () { "port", 0 },
  69. },
  70. ToUUID("dbb8e3e6-5886-4ba6-8795-1319f52a966b"),
  71. Package () {
  72. Package () { "endpoint0", "EP00" },
  73. }
  74. })
  75. Name (EP00, Package() {
  76. ToUUID("daffd814-6eba-4d8c-8a91-bc9bbf4aa301"),
  77. Package () {
  78. Package () { "endpoint", 0 },
  79. Package () { "remote-endpoint", Package() { \_SB.PCI0.ISP, 4, 0 } },
  80. }
  81. })
  82. }
  83. }
  84. Scope (\_SB.PCI0)
  85. {
  86. Device (ISP)
  87. {
  88. Name (_DSD, Package () {
  89. ToUUID("dbb8e3e6-5886-4ba6-8795-1319f52a966b"),
  90. Package () {
  91. Package () { "port4", "PRT4" },
  92. }
  93. })
  94. Name (PRT4, Package() {
  95. ToUUID("daffd814-6eba-4d8c-8a91-bc9bbf4aa301"),
  96. Package () {
  97. Package () { "port", 4 }, /* CSI-2 port number */
  98. },
  99. ToUUID("dbb8e3e6-5886-4ba6-8795-1319f52a966b"),
  100. Package () {
  101. Package () { "endpoint0", "EP40" },
  102. }
  103. })
  104. Name (EP40, Package() {
  105. ToUUID("daffd814-6eba-4d8c-8a91-bc9bbf4aa301"),
  106. Package () {
  107. Package () { "endpoint", 0 },
  108. Package () { "remote-endpoint", Package () { \_SB.PCI0.I2C2.CAM0, 0, 0 } },
  109. }
  110. })
  111. }
  112. }
  113. Here, the port 0 of the "CAM0" device is connected to the port 4 of
  114. the "ISP" device and vice versa.
  115. References
  116. ----------
  117. [1] _DSD (Device Specific Data) Implementation Guide.
  118. <URL:http://www.uefi.org/sites/default/files/resources/_DSD-implementation-guide-toplevel-1_1.htm>,
  119. referenced 2016-10-03.
  120. [2] Devicetree. <URL:http://www.devicetree.org>, referenced 2016-10-03.
  121. [3] Documentation/devicetree/bindings/graph.txt
  122. [4] Device Properties UUID For _DSD.
  123. <URL:http://www.uefi.org/sites/default/files/resources/_DSD-device-properties-UUID.pdf>,
  124. referenced 2016-10-04.
  125. [5] Hierarchical Data Extension UUID For _DSD.
  126. <URL:http://www.uefi.org/sites/default/files/resources/_DSD-hierarchical-data-extension-UUID-v1.pdf>,
  127. referenced 2016-10-04.
  128. [6] Advanced Configuration and Power Interface Specification.
  129. <URL:http://www.uefi.org/sites/default/files/resources/ACPI_6_1.pdf>,
  130. referenced 2016-10-04.
  131. [7] _DSD Device Properties Usage Rules.
  132. Documentation/acpi/DSD-properties-rules.txt