{%- import "macros.html" as macros with context %}

{{(node.get_html_name() or node.get_property("name"))|safe}}

{%- block node_info %}
Absolute Address:
Base Offset:
{{"0x%x" % node.raw_address_offset}}
Size:
{{"0x%x" % node.size}}
{%- if node.inst.is_array %}
Array Dimensions:
{{node.inst.array_dimensions}}
Array Stride:
+{{"0x%x" % node.inst.array_stride}}
Total Size:
{{"0x%x" % node.total_size}}
{%- endif %} {% if view_source_url is not none %}
Source:
{{view_source_filename}}
{% endif %} {%- endblock node_info%}
{%- if has_description(node) %}

Description

{{get_node_desc(node,2)|safe}}
{%- endif %} {%- if has_extra_property_doc(node) %}

Properties

{{ macros.extra_prop_table(node) }} {%- endif %} {%- if show_signals %} {%- for signal in node.signals(skip_not_present=skip_not_present) %} {%- if loop.first %}

Signals

{%- endif %} {%- if loop.last %}
Name Width Description
{{(signal.get_html_name() or signal.get_property("name"))|safe}} {{signal.width}} {{(get_node_desc(signal) or "-")|safe}}
{%- endif %} {%- endfor %} {%- endif %}

Contents

{% block content %}{% endblock %}