Merge patch series "toradex: aquila-am69: fix SPL USB DFU, drop obsolete clock"

Ernest Van Hoecke <ernest.vanhoecke@toradex.com> says:

This is a small, board-specific series for Aquila AM69.

Patch 1 fixes intermittent SPL USB DFU gadget enumeration.
Patch 2 drops a stale MCU_CLKOUT0 enable for ETH_1. V1.1 hardware uses
an external 25 MHz crystal, and support for earlier revisions was
already removed from the DT before upstreaming.

Link: https://lore.kernel.org/r/20260127101413.2812815-1-ernestvanhoecke@gmail.com
This commit is contained in:
Tom Rini 2026-02-03 15:45:09 -06:00
commit 1b0ac17ccf
2 changed files with 1 additions and 7 deletions

View File

@ -144,6 +144,7 @@
};
&usbss0 {
ti,modestrap-peripheral;
ti,usb2-only;
bootph-pre-ram;
};

View File

@ -22,8 +22,6 @@
#include "ddrs_patch.h"
#define CTRL_MMR_CFG0_MCU_ADC1_CTRL 0x40F040B4
#define CTRL_MMR_CFG0_MCU_CLKOUT0_CTRL 0x40F08010
#define MCU_CLKOUT0_CTRL_CLK_EN BIT(4)
#define HW_CFG_MEM_SZ_32GB 0x00
#define HW_CFG_MEM_SZ_16GB 0x01
@ -200,9 +198,4 @@ void spl_board_init(void)
if (ret)
printf("ESM PMIC init failed: %d\n", ret);
}
if (IS_ENABLED(CONFIG_TARGET_AQUILA_AM69_R5))
writel(readl(CTRL_MMR_CFG0_MCU_CLKOUT0_CTRL) |
MCU_CLKOUT0_CTRL_CLK_EN,
CTRL_MMR_CFG0_MCU_CLKOUT0_CTRL);
}