-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Support imx93 video pll driver #98554
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
RuoshanShi
wants to merge
7
commits into
zephyrproject-rtos:main
Choose a base branch
from
nxp-upstream:support_imx93_video_pll_driver
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+919
−66
Open
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
61548a6
drivers: misc: add NXP i.MX93 Video PLL driver support
RuoshanShi e675372
soc: imx93: enable imx93 video pll
RuoshanShi 20f5385
drivers: display: add RM67199 driver support
RuoshanShi b7b5dab
boards: nxp: add shield of NXP MX8_DSI_OLED1A for imx93_evk
RuoshanShi 29e18d8
tests: drivers: Add nxp_mx8_dsi_oled1a to display tests
RuoshanShi 3feddb4
drivers: display: mcux_lcdifv3: fix pointer cast warning
RuoshanShi 0e634aa
west.yml: Update hal_nxp revision
RuoshanShi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,39 @@ | ||
| # | ||
| # Copyright 2025 NXP | ||
| # | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
| # | ||
|
|
||
| if SHIELD_NXP_MX8_DSI_OLED1A | ||
|
|
||
| config GPIO | ||
| default y | ||
|
|
||
| config GPIO_ADP5585 | ||
| default y | ||
|
|
||
| if DISPLAY | ||
|
|
||
| if LVGL | ||
|
|
||
| config LV_Z_VDB_SIZE | ||
| default 100 | ||
|
|
||
| config LV_Z_DOUBLE_VDB | ||
| default y | ||
|
|
||
| config LV_Z_BITS_PER_PIXEL | ||
| default 32 | ||
|
|
||
| config LV_Z_FULL_REFRESH | ||
| default y | ||
|
|
||
| choice LV_COLOR_DEPTH | ||
| default LV_COLOR_DEPTH_32 | ||
| endchoice | ||
|
|
||
| endif # LVGL | ||
|
|
||
| endif # DISPLAY | ||
|
|
||
| endif # SHIELD_NXP_MX8_DSI_OLED1A |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| # | ||
| # Copyright 2025 NXP | ||
| # | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
| # | ||
|
|
||
| config SHIELD_NXP_MX8_DSI_OLED1A | ||
| def_bool $(shields_list_contains,nxp_mx8_dsi_oled1a) |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,49 @@ | ||
| .. _nxp_mx8_dsi_oled1a: | ||
|
|
||
| NXP MX8 DSI OLED1A Panel | ||
| ######################### | ||
|
|
||
| Overview | ||
| ******** | ||
|
|
||
| The NXP MX8 DSI OLED1A shield is a high-resolution OLED display panel | ||
| designed for use with NXP i.MX8 series processors. This panel provides | ||
| excellent color reproduction and contrast ratio through OLED technology. | ||
| The display shield connects via MIPI DSI interface and offers superior visual | ||
| performance for embedded applications. | ||
|
|
||
| More information about the panel can be found | ||
| at the `NXP MX8 DSI OLED1A Shield website`_. | ||
|
|
||
| Current supported displays | ||
| ========================== | ||
|
|
||
| +--------------+------------------------------+ | ||
| | Display | Shield Designation | | ||
| | | | | ||
| +==============+==============================+ | ||
| | MX8 DSI | nxp_mx8_dsi_oled1a | | ||
| | OLED1A | | | ||
| +--------------+------------------------------+ | ||
|
|
||
| Programming | ||
| *********** | ||
|
|
||
| Correct shield designation (see the table above) for your display must | ||
| be entered when you invoke ``west build``. | ||
|
|
||
| For example: | ||
|
|
||
| .. zephyr-app-commands:: | ||
| :zephyr-app: samples/subsys/display/lvgl | ||
| :board: imx93_evk/mimx9352/m33/ddr | ||
| :shield: nxp_mx8_dsi_oled1a | ||
| :goals: build | ||
|
|
||
| References | ||
| ********** | ||
|
|
||
| .. target-notes:: | ||
|
|
||
| .. _NXP MX8 DSI OLED1A Shield website: | ||
| https://www.nxp.com/part/MX8-DSI-OLED1A |
90 changes: 90 additions & 0 deletions
90
boards/shields/nxp_mx8_dsi_oled1a/nxp_mx8_dsi_oled1a.overlay
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,90 @@ | ||
| /* | ||
| * Copyright 2025 NXP | ||
| * | ||
| * SPDX-License-Identifier: Apache-2.0 | ||
| */ | ||
|
|
||
| #include <zephyr/dt-bindings/display/panel.h> | ||
|
|
||
| / { | ||
| chosen { | ||
| zephyr,display = &lcdif; | ||
| }; | ||
| }; | ||
|
|
||
| &media_blk_ctrl { | ||
| status = "okay"; | ||
| }; | ||
|
|
||
| &video_pll { | ||
| compatible = "nxp,imx93-video-pll"; | ||
| rdiv = <1>; | ||
| mfi = <121>; | ||
| mfn = <0>; | ||
| mfd = <1>; | ||
| odiv = <6>; | ||
| pll-frequency = <484000000>; | ||
| status = "okay"; | ||
| }; | ||
|
|
||
| &zephyr_lcdif { | ||
| width = <1080>; | ||
| height = <1920>; | ||
| pixel-format = "argb-8888"; | ||
| media-axi-clk-rate = <400000000>; | ||
| media-apb-clk-rate = <133333334>; | ||
| status = "okay"; | ||
|
|
||
| display-timings { | ||
| compatible = "zephyr,panel-timing"; | ||
| hsync-len = <2>; | ||
| hfront-porch = <20>; | ||
| hback-porch = <34>; | ||
| vsync-len = <2>; | ||
| vfront-porch = <10>; | ||
| vback-porch = <4>; | ||
| de-active = <0>; | ||
| pixelclk-active = <0>; | ||
| hsync-active = <1>; | ||
| vsync-active = <1>; | ||
| clock-frequency = <121000000>; | ||
| }; | ||
| }; | ||
|
|
||
| &zephyr_mipi_dsi { | ||
| nxp,dc = <&lcdif>; | ||
| dpi-color-coding = "24-bit"; | ||
| dpi-video-mode = "non-burst-sync-pulse"; | ||
| dphy-ref-frequency = <24000000>; | ||
| data-rate-clock = <726000000>; | ||
| status = "okay"; | ||
|
|
||
| rm67199_panel@0 { | ||
| compatible = "raydium,rm67199"; | ||
| reg = <0>; | ||
| bl-gpios = <&gpio_exp0 10 GPIO_ACTIVE_HIGH>; | ||
| reset-gpios = <&gpio_exp0 9 GPIO_ACTIVE_HIGH>; | ||
| data-lanes = <4>; | ||
| pixel-format = <MIPI_DSI_PIXFMT_RGB888>; | ||
| status = "okay"; | ||
| }; | ||
| }; | ||
|
|
||
| &display_i2c { | ||
| status = "okay"; | ||
|
|
||
| mfd0: adp5585@34 { | ||
| compatible = "adi,adp5585"; | ||
| reg = <0x34>; | ||
| status = "okay"; | ||
|
|
||
| gpio_exp0: adp5585_gpio { | ||
| compatible = "adi,adp5585-gpio"; | ||
| gpio-controller; | ||
| #gpio-cells = <2>; | ||
| ngpios = <13>; | ||
| gpio-reserved-ranges = <5 3>; | ||
| status = "okay"; | ||
| }; | ||
| }; | ||
| }; |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| shield: | ||
| name: nxp_mx8_dsi_oled1a | ||
| full_name: NXP MX8-DSI-OLED1A | ||
| vendor: nxp | ||
| supported_features: | ||
| - display |
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| # Copyright 2025 NXP | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
|
|
||
| config RM67199 | ||
| bool "RM67199 display controller driver" | ||
| default y | ||
| select MIPI_DSI | ||
| depends on DT_HAS_RAYDIUM_RM67199_ENABLED | ||
| help | ||
| Enable driver for RM67199 display controller. |
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
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.