Simon Glass | 76bce10 | 2016-07-04 11:58:11 -0600 | [diff] [blame] | 1 | #!/usr/bin/python |
| 2 | # |
| 3 | # Copyright (C) 2016 Google, Inc |
| 4 | # Written by Simon Glass <sjg@chromium.org> |
| 5 | # |
| 6 | # SPDX-License-Identifier: GPL-2.0+ |
| 7 | # |
| 8 | |
Simon Glass | a06a34b | 2016-07-25 18:59:04 -0600 | [diff] [blame] | 9 | import struct |
| 10 | import sys |
| 11 | |
| 12 | import fdt |
| 13 | from fdt import Fdt, NodeBase, PropBase |
Simon Glass | 76bce10 | 2016-07-04 11:58:11 -0600 | [diff] [blame] | 14 | import fdt_util |
| 15 | import libfdt |
Simon Glass | 76bce10 | 2016-07-04 11:58:11 -0600 | [diff] [blame] | 16 | |
| 17 | # This deals with a device tree, presenting it as a list of Node and Prop |
| 18 | # objects, representing nodes and properties, respectively. |
| 19 | # |
| 20 | # This implementation uses a libfdt Python library to access the device tree, |
| 21 | # so it is fairly efficient. |
| 22 | |
Simon Glass | a06a34b | 2016-07-25 18:59:04 -0600 | [diff] [blame] | 23 | class Prop(PropBase): |
Simon Glass | 76bce10 | 2016-07-04 11:58:11 -0600 | [diff] [blame] | 24 | """A device tree property |
| 25 | |
| 26 | Properties: |
| 27 | name: Property name (as per the device tree) |
| 28 | value: Property value as a string of bytes, or a list of strings of |
| 29 | bytes |
| 30 | type: Value type |
| 31 | """ |
Simon Glass | a06a34b | 2016-07-25 18:59:04 -0600 | [diff] [blame] | 32 | def __init__(self, node, offset, name, bytes): |
| 33 | PropBase.__init__(self, node, offset, name) |
| 34 | self.bytes = bytes |
Simon Glass | 76bce10 | 2016-07-04 11:58:11 -0600 | [diff] [blame] | 35 | if not bytes: |
Simon Glass | bc1dea3 | 2016-07-25 18:59:05 -0600 | [diff] [blame] | 36 | self.type = fdt.TYPE_BOOL |
Simon Glass | 76bce10 | 2016-07-04 11:58:11 -0600 | [diff] [blame] | 37 | self.value = True |
| 38 | return |
Simon Glass | bc1dea3 | 2016-07-25 18:59:05 -0600 | [diff] [blame] | 39 | self.type, self.value = self.BytesToValue(bytes) |
Simon Glass | 76bce10 | 2016-07-04 11:58:11 -0600 | [diff] [blame] | 40 | |
Simon Glass | a06a34b | 2016-07-25 18:59:04 -0600 | [diff] [blame] | 41 | class Node(NodeBase): |
Simon Glass | 76bce10 | 2016-07-04 11:58:11 -0600 | [diff] [blame] | 42 | """A device tree node |
| 43 | |
| 44 | Properties: |
| 45 | offset: Integer offset in the device tree |
| 46 | name: Device tree node tname |
| 47 | path: Full path to node, along with the node name itself |
| 48 | _fdt: Device tree object |
| 49 | subnodes: A list of subnodes for this node, each a Node object |
| 50 | props: A dict of properties for this node, each a Prop object. |
| 51 | Keyed by property name |
| 52 | """ |
| 53 | def __init__(self, fdt, offset, name, path): |
Simon Glass | a06a34b | 2016-07-25 18:59:04 -0600 | [diff] [blame] | 54 | NodeBase.__init__(self, fdt, offset, name, path) |
Simon Glass | 76bce10 | 2016-07-04 11:58:11 -0600 | [diff] [blame] | 55 | |
Simon Glass | 346179f | 2016-07-25 18:59:12 -0600 | [diff] [blame] | 56 | def Offset(self): |
| 57 | """Returns the offset of a node, after checking the cache |
| 58 | |
| 59 | This should be used instead of self._offset directly, to ensure that |
| 60 | the cache does not contain invalid offsets. |
| 61 | """ |
| 62 | self._fdt.CheckCache() |
| 63 | return self._offset |
| 64 | |
Simon Glass | 76bce10 | 2016-07-04 11:58:11 -0600 | [diff] [blame] | 65 | def Scan(self): |
| 66 | """Scan a node's properties and subnodes |
| 67 | |
| 68 | This fills in the props and subnodes properties, recursively |
| 69 | searching into subnodes so that the entire tree is built. |
| 70 | """ |
Simon Glass | 346179f | 2016-07-25 18:59:12 -0600 | [diff] [blame] | 71 | self.props = self._fdt.GetProps(self, self.path) |
Simon Glass | 76bce10 | 2016-07-04 11:58:11 -0600 | [diff] [blame] | 72 | |
Simon Glass | 346179f | 2016-07-25 18:59:12 -0600 | [diff] [blame] | 73 | offset = libfdt.fdt_first_subnode(self._fdt.GetFdt(), self.Offset()) |
Simon Glass | 76bce10 | 2016-07-04 11:58:11 -0600 | [diff] [blame] | 74 | while offset >= 0: |
| 75 | sep = '' if self.path[-1] == '/' else '/' |
| 76 | name = libfdt.Name(self._fdt.GetFdt(), offset) |
| 77 | path = self.path + sep + name |
| 78 | node = Node(self._fdt, offset, name, path) |
| 79 | self.subnodes.append(node) |
| 80 | |
| 81 | node.Scan() |
| 82 | offset = libfdt.fdt_next_subnode(self._fdt.GetFdt(), offset) |
| 83 | |
Simon Glass | 346179f | 2016-07-25 18:59:12 -0600 | [diff] [blame] | 84 | def Refresh(self, my_offset): |
| 85 | """Fix up the _offset for each node, recursively |
| 86 | |
| 87 | Note: This does not take account of property offsets - these will not |
| 88 | be updated. |
| 89 | """ |
| 90 | if self._offset != my_offset: |
| 91 | #print '%s: %d -> %d\n' % (self.path, self._offset, my_offset) |
| 92 | self._offset = my_offset |
| 93 | offset = libfdt.fdt_first_subnode(self._fdt.GetFdt(), self._offset) |
| 94 | for subnode in self.subnodes: |
| 95 | subnode.Refresh(offset) |
| 96 | offset = libfdt.fdt_next_subnode(self._fdt.GetFdt(), offset) |
Simon Glass | 76bce10 | 2016-07-04 11:58:11 -0600 | [diff] [blame] | 97 | |
Simon Glass | a06a34b | 2016-07-25 18:59:04 -0600 | [diff] [blame] | 98 | class FdtNormal(Fdt): |
| 99 | """Provides simple access to a flat device tree blob using libfdt. |
Simon Glass | 76bce10 | 2016-07-04 11:58:11 -0600 | [diff] [blame] | 100 | |
| 101 | Properties: |
Simon Glass | a06a34b | 2016-07-25 18:59:04 -0600 | [diff] [blame] | 102 | _fdt: Device tree contents (bytearray) |
| 103 | _cached_offsets: True if all the nodes have a valid _offset property, |
| 104 | False if something has changed to invalidate the offsets |
Simon Glass | 76bce10 | 2016-07-04 11:58:11 -0600 | [diff] [blame] | 105 | """ |
Simon Glass | 76bce10 | 2016-07-04 11:58:11 -0600 | [diff] [blame] | 106 | def __init__(self, fname): |
Simon Glass | a06a34b | 2016-07-25 18:59:04 -0600 | [diff] [blame] | 107 | Fdt.__init__(self, fname) |
Simon Glass | 346179f | 2016-07-25 18:59:12 -0600 | [diff] [blame] | 108 | self._cached_offsets = False |
Simon Glass | 355c67c | 2016-07-25 18:59:10 -0600 | [diff] [blame] | 109 | if self._fname: |
| 110 | self._fname = fdt_util.EnsureCompiled(self._fname) |
| 111 | |
| 112 | with open(self._fname) as fd: |
Simon Glass | 0170804 | 2016-07-25 18:59:13 -0600 | [diff] [blame^] | 113 | self._fdt = bytearray(fd.read()) |
Simon Glass | 76bce10 | 2016-07-04 11:58:11 -0600 | [diff] [blame] | 114 | |
| 115 | def GetFdt(self): |
| 116 | """Get the contents of the FDT |
| 117 | |
| 118 | Returns: |
| 119 | The FDT contents as a string of bytes |
| 120 | """ |
| 121 | return self._fdt |
| 122 | |
Simon Glass | 346179f | 2016-07-25 18:59:12 -0600 | [diff] [blame] | 123 | def GetProps(self, node, path): |
Simon Glass | 76bce10 | 2016-07-04 11:58:11 -0600 | [diff] [blame] | 124 | """Get all properties from a node. |
| 125 | |
| 126 | Args: |
| 127 | node: Full path to node name to look in. |
| 128 | |
| 129 | Returns: |
| 130 | A dictionary containing all the properties, indexed by node name. |
| 131 | The entries are Prop objects. |
| 132 | |
| 133 | Raises: |
| 134 | ValueError: if the node does not exist. |
| 135 | """ |
Simon Glass | 346179f | 2016-07-25 18:59:12 -0600 | [diff] [blame] | 136 | offset = libfdt.fdt_path_offset(self._fdt, path) |
Simon Glass | 76bce10 | 2016-07-04 11:58:11 -0600 | [diff] [blame] | 137 | if offset < 0: |
| 138 | libfdt.Raise(offset) |
| 139 | props_dict = {} |
| 140 | poffset = libfdt.fdt_first_property_offset(self._fdt, offset) |
| 141 | while poffset >= 0: |
| 142 | dprop, plen = libfdt.fdt_get_property_by_offset(self._fdt, poffset) |
Simon Glass | a06a34b | 2016-07-25 18:59:04 -0600 | [diff] [blame] | 143 | prop = Prop(node, poffset, libfdt.String(self._fdt, dprop.nameoff), |
| 144 | libfdt.Data(dprop)) |
Simon Glass | 76bce10 | 2016-07-04 11:58:11 -0600 | [diff] [blame] | 145 | props_dict[prop.name] = prop |
| 146 | |
| 147 | poffset = libfdt.fdt_next_property_offset(self._fdt, poffset) |
| 148 | return props_dict |
Simon Glass | a06a34b | 2016-07-25 18:59:04 -0600 | [diff] [blame] | 149 | |
Simon Glass | 346179f | 2016-07-25 18:59:12 -0600 | [diff] [blame] | 150 | def Invalidate(self): |
| 151 | """Mark our offset cache as invalid""" |
| 152 | self._cached_offsets = False |
| 153 | |
| 154 | def CheckCache(self): |
| 155 | """Refresh the offset cache if needed""" |
| 156 | if self._cached_offsets: |
| 157 | return |
| 158 | self.Refresh() |
| 159 | self._cached_offsets = True |
| 160 | |
| 161 | def Refresh(self): |
| 162 | """Refresh the offset cache""" |
| 163 | self._root.Refresh(0) |
| 164 | |
Simon Glass | a06a34b | 2016-07-25 18:59:04 -0600 | [diff] [blame] | 165 | @classmethod |
| 166 | def Node(self, fdt, offset, name, path): |
| 167 | """Create a new node |
| 168 | |
| 169 | This is used by Fdt.Scan() to create a new node using the correct |
| 170 | class. |
| 171 | |
| 172 | Args: |
| 173 | fdt: Fdt object |
| 174 | offset: Offset of node |
| 175 | name: Node name |
| 176 | path: Full path to node |
| 177 | """ |
| 178 | node = Node(fdt, offset, name, path) |
| 179 | return node |