blob: 4a667a115d6162e65c2a7b42785db57e381d4342 [file] [log] [blame]
Simon Glass76bce102016-07-04 11:58:11 -06001#!/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 Glassa06a34b2016-07-25 18:59:04 -06009import struct
10import sys
11
12import fdt
13from fdt import Fdt, NodeBase, PropBase
Simon Glass76bce102016-07-04 11:58:11 -060014import fdt_util
15import libfdt
Simon Glass76bce102016-07-04 11:58:11 -060016
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 Glassa06a34b2016-07-25 18:59:04 -060023class Prop(PropBase):
Simon Glass76bce102016-07-04 11:58:11 -060024 """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 Glassa06a34b2016-07-25 18:59:04 -060032 def __init__(self, node, offset, name, bytes):
33 PropBase.__init__(self, node, offset, name)
34 self.bytes = bytes
Simon Glass76bce102016-07-04 11:58:11 -060035 if not bytes:
Simon Glassbc1dea32016-07-25 18:59:05 -060036 self.type = fdt.TYPE_BOOL
Simon Glass76bce102016-07-04 11:58:11 -060037 self.value = True
38 return
Simon Glassbc1dea32016-07-25 18:59:05 -060039 self.type, self.value = self.BytesToValue(bytes)
Simon Glass76bce102016-07-04 11:58:11 -060040
Simon Glassa06a34b2016-07-25 18:59:04 -060041class Node(NodeBase):
Simon Glass76bce102016-07-04 11:58:11 -060042 """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 Glassa06a34b2016-07-25 18:59:04 -060054 NodeBase.__init__(self, fdt, offset, name, path)
Simon Glass76bce102016-07-04 11:58:11 -060055
Simon Glass346179f2016-07-25 18:59:12 -060056 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 Glass76bce102016-07-04 11:58:11 -060065 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 Glass346179f2016-07-25 18:59:12 -060071 self.props = self._fdt.GetProps(self, self.path)
Simon Glass76bce102016-07-04 11:58:11 -060072
Simon Glass346179f2016-07-25 18:59:12 -060073 offset = libfdt.fdt_first_subnode(self._fdt.GetFdt(), self.Offset())
Simon Glass76bce102016-07-04 11:58:11 -060074 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 Glass346179f2016-07-25 18:59:12 -060084 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 Glass76bce102016-07-04 11:58:11 -060097
Simon Glassa06a34b2016-07-25 18:59:04 -060098class FdtNormal(Fdt):
99 """Provides simple access to a flat device tree blob using libfdt.
Simon Glass76bce102016-07-04 11:58:11 -0600100
101 Properties:
Simon Glassa06a34b2016-07-25 18:59:04 -0600102 _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 Glass76bce102016-07-04 11:58:11 -0600105 """
Simon Glass76bce102016-07-04 11:58:11 -0600106 def __init__(self, fname):
Simon Glassa06a34b2016-07-25 18:59:04 -0600107 Fdt.__init__(self, fname)
Simon Glass346179f2016-07-25 18:59:12 -0600108 self._cached_offsets = False
Simon Glass355c67c2016-07-25 18:59:10 -0600109 if self._fname:
110 self._fname = fdt_util.EnsureCompiled(self._fname)
111
112 with open(self._fname) as fd:
113 self._fdt = fd.read()
Simon Glass76bce102016-07-04 11:58:11 -0600114
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 Glass346179f2016-07-25 18:59:12 -0600123 def GetProps(self, node, path):
Simon Glass76bce102016-07-04 11:58:11 -0600124 """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 Glass346179f2016-07-25 18:59:12 -0600136 offset = libfdt.fdt_path_offset(self._fdt, path)
Simon Glass76bce102016-07-04 11:58:11 -0600137 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 Glassa06a34b2016-07-25 18:59:04 -0600143 prop = Prop(node, poffset, libfdt.String(self._fdt, dprop.nameoff),
144 libfdt.Data(dprop))
Simon Glass76bce102016-07-04 11:58:11 -0600145 props_dict[prop.name] = prop
146
147 poffset = libfdt.fdt_next_property_offset(self._fdt, poffset)
148 return props_dict
Simon Glassa06a34b2016-07-25 18:59:04 -0600149
Simon Glass346179f2016-07-25 18:59:12 -0600150 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 Glassa06a34b2016-07-25 18:59:04 -0600165 @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