mirror of
https://github.com/u-boot/u-boot.git
synced 2024-11-24 20:54:24 +08:00
libfdt: Add get_property() and del_node()
Add support for these functions in the Python binding. This patch stands in for a pending upstream change. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
a1e0085519
commit
c640ed0ce6
@ -398,6 +398,27 @@ class Fdt:
|
||||
return pdata
|
||||
return Property(pdata[0], pdata[1])
|
||||
|
||||
def get_property(self, nodeoffset, prop_name, quiet=()):
|
||||
"""Obtains a property by name
|
||||
|
||||
Args:
|
||||
nodeoffset: Offset to the node to check
|
||||
prop_name: Name of property to get
|
||||
quiet: Errors to ignore (empty to raise on all errors)
|
||||
|
||||
Returns:
|
||||
Property object, or None if not found
|
||||
|
||||
Raises:
|
||||
FdtException on error (e.g. invalid prop_offset or device
|
||||
tree format)
|
||||
"""
|
||||
pdata = check_err_null(
|
||||
fdt_get_property(self._fdt, nodeoffset, prop_name), quiet)
|
||||
if isinstance(pdata, (int)):
|
||||
return pdata
|
||||
return Property(pdata[0], pdata[1])
|
||||
|
||||
@staticmethod
|
||||
def create_empty_tree(size, quiet=()):
|
||||
"""Create an empty device tree ready for use
|
||||
@ -632,6 +653,17 @@ class Fdt:
|
||||
"""
|
||||
return check_err(fdt_node_offset_by_phandle(self._fdt, phandle), quiet)
|
||||
|
||||
def del_node(self, nodeoffset):
|
||||
"""Delete a node
|
||||
|
||||
Args:
|
||||
nodeoffset: Node offset containing property to delete
|
||||
|
||||
Raises:
|
||||
FdtError if the node does not exist, or another error occurs
|
||||
"""
|
||||
return check_err(fdt_del_node(self._fdt, nodeoffset))
|
||||
|
||||
|
||||
class Property(bytearray):
|
||||
"""Holds a device tree property name and value.
|
||||
|
Loading…
Reference in New Issue
Block a user