Uh oh!
There was an error while loading. Please reload this page.
boards: ace30: Enable CONFIG_UAOL for PTL - #10616
Conversation
There was a problem hiding this comment.
Pull request overview
Enables the Zephyr UAOL (USB Audio Offload Link) driver on the intel_adsp_ace30_ptl board configuration to restore builds after UAOL stopped being enabled by default upstream.
Changes:
- Turn on
CONFIG_UAOL=yfor the PTL board config to avoid UAOL-related link failures.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| @@ -56,6 +56,7 @@ CONFIG_MM_DRV_INTEL_ADSP_TLB_REMAP_UNUSED_RAM=y | |||
| CONFIG_MM_DRV_INTEL_VIRTUAL_REGION_COUNT=2 | |||
| CONFIG_XTENSA_MMU_NUM_L2_TABLES=128 | |||
| CONFIG_SYS_CLOCK_TICKS_PER_SEC=12000 | |||
There was a problem hiding this comment.
Consider adding a short comment explaining why CONFIG_UAOL must be enabled for PTL (e.g., UAOL no longer default-enabled since Zephyr commit fc2b1b2f3e2 and disabling causes linker errors / missing UAOL device). This will help future maintainers understand why the symbol is forced on in this board config.
| CONFIG_SYS_CLOCK_TICKS_PER_SEC=12000 | |
| CONFIG_SYS_CLOCK_TICKS_PER_SEC=12000 | |
| # UAOL is no longer default-enabled since Zephyr commit fc2b1b2f3e2; | |
| # it must be forced on for PTL or the build fails with linker errors | |
| # due to the missing UAOL device. |
Starting from Zephyr commit fc2b1b2f3e2 ("drivers: uaol: Do not enable
by default UAOL"), the UAOL (USB Audio Offload Link) driver is no
longer enabled by default. This change cause build failures
with linker errors:
undefined reference to `__device_dts_ord_110'
This commit enables CONFIG_UAOL=y for PTL
Signed-off-by: Mateusz Junkier <mateusz.junkier@intel.com>abonislawski
commented
Mar 16, 2026
We need this PR for UAOL: #10567 |
majunkier
commented
Mar 16, 2026
Closed as duplicate |
Starting from Zephyr commit fc2b1b2f3e2 ("drivers: uaol: Do not enable by default UAOL"), the UAOL (USB Audio Offload Link) driver is no longer enabled by default. This change cause build failures with linker errors:
undefined reference to `__device_dts_ord_110'
This commit enables CONFIG_UAOL=y for PTL