Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 14 additions & 7 deletions .github/workflows/dev_mspm33_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,6 @@ jobs:
source ~/zephyrproject/zephyr/zephyr-env.sh
west build -p always -b lp_mspm33c321a samples/basic/blinky

- name: Build ADC Sequence example
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why is this removed ?

Copy link
Collaborator Author

@Aman-Lachhiramka-ti Aman-Lachhiramka-ti Jan 5, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

HSADC has changed a lot during SDK APL release and that's why the sample is not building. So needs to inculcate those changes in the drivers

run: |
source ~/zephyrproject/.venv/bin/activate
cd ~/zephyrproject/zephyr
source ~/zephyrproject/zephyr/zephyr-env.sh
west build -p always -b lp_mspm33c321a samples/drivers/adc/adc_sequence

- name: Build Counter Alarm example
run: |
source ~/zephyrproject/.venv/bin/activate
Expand Down Expand Up @@ -130,3 +123,17 @@ jobs:
cd ~/zephyrproject/zephyr
source ~/zephyrproject/zephyr/zephyr-env.sh
west build -p always -b lp_mspm33c321a tests/drivers/counter/counter_basic_api

- name: Build DMA Channel Block Length Transfer Test
run: |
source ~/zephyrproject/.venv/bin/activate
cd ~/zephyrproject/zephyr
source ~/zephyrproject/zephyr/zephyr-env.sh
west build -p always -b lp_mspm33c321a tests/drivers/dma/chan_blen_transfer

- name: Build DMA Loop Transfer Test
run: |
source ~/zephyrproject/.venv/bin/activate
cd ~/zephyrproject/zephyr
source ~/zephyrproject/zephyr/zephyr-env.sh
west build -p always -b lp_mspm33c321a tests/drivers/dma/loop_transfer
1 change: 1 addition & 0 deletions drivers/dma/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -56,3 +56,4 @@ zephyr_library_sources_ifdef(CONFIG_DMA_NXP_SDMA dma_nxp_sdma.c)
zephyr_library_sources_ifdef(CONFIG_DMA_WCH dma_wch.c)
zephyr_library_sources_ifdef(CONFIG_DMA_TI_CC23X0 dma_ti_cc23x0.c)
zephyr_library_sources_ifdef(CONFIG_DMA_NPCX_GDMA dma_npcx_gdma.c)
zephyr_library_sources_ifdef(CONFIG_DMA_TI_MSP dma_ti_msp.c)
2 changes: 2 additions & 0 deletions drivers/dma/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -101,4 +101,6 @@ source "drivers/dma/Kconfig.ti_cc23x0"

source "drivers/dma/Kconfig.npcx"

source "drivers/dma/Kconfig.ti_msp"

endif # DMA
11 changes: 11 additions & 0 deletions drivers/dma/Kconfig.ti_msp
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Copyright (c) 2025 Texas Instruments.
#
# SPDX-License-Identifier: Apache-2.0

config DMA_TI_MSP
bool "Texas Instruments MSP DMA Controller Driver"
default y
depends on DT_HAS_TI_MSP_DMA_ENABLED
select USE_MSP_DL_DMA
help
Enable Texas Instruments MSP Family DMA driver.
Loading
Loading