diff options
| author | Tom Rini <[email protected]> | 2025-03-21 07:30:32 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-03-21 07:30:32 -0600 |
| commit | c0267678948bf9df776cca011c8f5329fee2f4c0 (patch) | |
| tree | 125eac7a6e9ece660454105296798f71398e7b11 /include | |
| parent | 069da0cf25494530add80bc71ae79f34f01d5047 (diff) | |
| parent | cc9dcba9cce185d8bca2dc5c4b55b21f4505cbe8 (diff) | |
Merge tag 'u-boot-imx-next-20250321' of https://gitlab.denx.de/u-boot/custodians/u-boot-imx into next
CI: https://source.denx.de/u-boot/custodians/u-boot-imx/-/pipelines/25267
- Allow the registration and enablement of the i.MX UART clocks via DM,
without the need of manually calling init_uart_clk().
- Remove duplicated 'mmc dev ${mmcdev}' commands.
- Rework some of the RAM related Kconfig symbols for phycore_imx8mp.
Diffstat (limited to 'include')
| -rw-r--r-- | include/dm/platform_data/serial_mxc.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/dm/platform_data/serial_mxc.h b/include/dm/platform_data/serial_mxc.h index cc59eeb1dd1..52657aa3deb 100644 --- a/include/dm/platform_data/serial_mxc.h +++ b/include/dm/platform_data/serial_mxc.h @@ -9,6 +9,9 @@ /* Information about a serial port */ struct mxc_serial_plat { struct mxc_uart *reg; /* address of registers in physical memory */ +#if CONFIG_IS_ENABLED(CLK_CCF) + struct clk_bulk clks; +#endif bool use_dte; }; |
