mcux: mimx8ml8: clock: Add missing media display clock root definitions#720
Open
pwattebledsfl wants to merge 1 commit intozephyrproject-rtos:masterfrom
Open
mcux: mimx8ml8: clock: Add missing media display clock root definitions#720pwattebledsfl wants to merge 1 commit intozephyrproject-rtos:masterfrom
pwattebledsfl wants to merge 1 commit intozephyrproject-rtos:masterfrom
Conversation
Add kCLOCK_RootMediaMipiPhy1Ref (ROOT[123]) and kCLOCK_RootMediaDisp1Pix (ROOT[124]) to the clock_root_control_t enum. These media display clock roots are documented in the i.MX8MP Reference Manual (Table 5-1) but were missing from the SDK, preventing HAL-based configuration of the MIPI DSI PHY reference clock and LCDIF1 pixel clock. Signed-off-by: Paolo Wattebled <paolo.wattebled@savoirfairelinux.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Add two missing
clock_root_control_tentries for MIMX8ML8 (i.MX8MP):kCLOCK_RootMediaMipiPhy1Ref— ROOT[123], MIPI DPHY PLL reference clockkCLOCK_RootMediaDisp1Pix— ROOT[124], LCDIF1 pixel clockJustification
These clock roots are listed in the i.MX8MP Reference Manual (IMX8MPRM) Table 5-1 "Clock Root Table" but are absent from the SDK enum. Any display pipeline using LCDIF1 + MIPI DSI on this SoC requires these roots. Currently, users must define them manually.
Change
Two enum entries added after
kCLOCK_RootMediaApb, using the same encoding pattern as all existing entries. No functional change to existing code.