Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@
Power Management techniques can broadly be classified into two categories:
Dynamic Power Management and Static Power Management.

.. note::

With ti-u-boot-2026.01, LPM works only if ti-linux-firmware is 12.0 or

Check warning on line 16 in source/linux/Foundational_Components/Power_Management/pm_overview.rst

View workflow job for this annotation

GitHub Actions / vale

[vale] reported by reviewdog 🐶 [RedHat.CaseSensitiveTerms] Use 'Linux' rather than 'linux'. Raw Output: {"message": "[RedHat.CaseSensitiveTerms] Use 'Linux' rather than 'linux'.", "location": {"path": "source/linux/Foundational_Components/Power_Management/pm_overview.rst", "range": {"start": {"line": 16, "column": 49}}}, "severity": "WARNING"}

Check warning on line 16 in source/linux/Foundational_Components/Power_Management/pm_overview.rst

View workflow job for this annotation

GitHub Actions / vale

[vale] reported by reviewdog 🐶 [RedHat.Definitions] Define acronyms and abbreviations (such as 'LPM') on first occurrence if they're likely to be unfamiliar. Raw Output: {"message": "[RedHat.Definitions] Define acronyms and abbreviations (such as 'LPM') on first occurrence if they're likely to be unfamiliar.", "location": {"path": "source/linux/Foundational_Components/Power_Management/pm_overview.rst", "range": {"start": {"line": 16, "column": 28}}}, "severity": "INFO"}
newer. On older firmware images and new U-Boot, LPM fails and the device

Check warning on line 17 in source/linux/Foundational_Components/Power_Management/pm_overview.rst

View workflow job for this annotation

GitHub Actions / vale

[vale] reported by reviewdog 🐶 [RedHat.Definitions] Define acronyms and abbreviations (such as 'LPM') on first occurrence if they're likely to be unfamiliar. Raw Output: {"message": "[RedHat.Definitions] Define acronyms and abbreviations (such as 'LPM') on first occurrence if they're likely to be unfamiliar.", "location": {"path": "source/linux/Foundational_Components/Power_Management/pm_overview.rst", "range": {"start": {"line": 17, "column": 52}}}, "severity": "INFO"}
requires a reboot.

.. rubric:: Dynamic Power Management

Dynamic Power Management techniques reduce the active power
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,13 @@
modifying U-Boot source code, recompiling it, and transferring the new
binaries to the boot partition.

.. note::

Currently, TIFS logs report a firewall read violation during boot. This
occurs because A53 speculatively accesses TF-A's memory region, which is
protected from non-secure access by a firewall. This occurs only once, since

Check warning on line 89 in source/linux/Foundational_Components/System_Security/Memory_Firewalls.rst

View workflow job for this annotation

GitHub Actions / vale

[vale] reported by reviewdog 🐶 [RedHat.TermsSuggestions] Depending on the context, consider using 'after' or 'when' rather than 'once'. Raw Output: {"message": "[RedHat.TermsSuggestions] Depending on the context, consider using 'after' or 'when' rather than 'once'.", "location": {"path": "source/linux/Foundational_Components/System_Security/Memory_Firewalls.rst", "range": {"start": {"line": 89, "column": 69}}}, "severity": "INFO"}

Check failure on line 89 in source/linux/Foundational_Components/System_Security/Memory_Firewalls.rst

View workflow job for this annotation

GitHub Actions / vale

[vale] reported by reviewdog 🐶 [RedHat.TermsErrors] Use 'insecure' rather than 'non-secure'. Raw Output: {"message": "[RedHat.TermsErrors] Use 'insecure' rather than 'non-secure'.", "location": {"path": "source/linux/Foundational_Components/System_Security/Memory_Firewalls.rst", "range": {"start": {"line": 89, "column": 19}}}, "severity": "ERROR"}
TF-A's memory region is unmapped from the page table afterwards.

Check warning on line 90 in source/linux/Foundational_Components/System_Security/Memory_Firewalls.rst

View workflow job for this annotation

GitHub Actions / vale

[vale] reported by reviewdog 🐶 [RedHat.TermsSuggestions] Depending on the context, consider using 'afterward' rather than 'afterwards'. Raw Output: {"message": "[RedHat.TermsSuggestions] Depending on the context, consider using 'afterward' rather than 'afterwards'.", "location": {"path": "source/linux/Foundational_Components/System_Security/Memory_Firewalls.rst", "range": {"start": {"line": 90, "column": 57}}}, "severity": "INFO"}

Check warning on line 90 in source/linux/Foundational_Components/System_Security/Memory_Firewalls.rst

View workflow job for this annotation

GitHub Actions / vale

[vale] reported by reviewdog 🐶 [RedHat.PassiveVoice] 'is unmapped' is passive voice. In general, use active voice. Consult the style guide for acceptable use of passive voice. Raw Output: {"message": "[RedHat.PassiveVoice] 'is unmapped' is passive voice. In general, use active voice. Consult the style guide for acceptable use of passive voice.", "location": {"path": "source/linux/Foundational_Components/System_Security/Memory_Firewalls.rst", "range": {"start": {"line": 90, "column": 25}}}, "severity": "INFO"}

Modify U-Boot Configuration
===========================

Expand Down
Loading