Skip to content

Commit 97d7218

Browse files
am62ax: mcu-r5f: library and sysconfig:Add Ospi NAND flash support
-Add Sysconfig and library support for ospi and nand flash Fixes: SITSW-4814 Signed-off-by: Vaibhav Reddy <vaibhav.reddy@ti.com>
1 parent e143347 commit 97d7218

File tree

4 files changed

+14
-0
lines changed

4 files changed

+14
-0
lines changed

source/board/.meta/soc/board_am62ax.syscfg.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ const driverVer = {
1212

1313
const topModules_mcu_r5 = [
1414
"/board/led/led",
15+
"/board/flash/flash",
1516
"/board/eeprom/eeprom",
1617
];
1718
const topModules_dm_r5 = [

source/drivers/.meta/soc/drivers_am62ax.syscfg.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ const topModules_mcu = [
9191
"/drivers/ipc/ipc",
9292
"/drivers/mcan/mcan",
9393
"/drivers/mcspi/mcspi",
94+
"/drivers/ospi/ospi",
9495
"/drivers/uart/uart",
9596
"/drivers/udma/udma",
9697
];

source/drivers/.project/project_am62ax.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,11 @@ const files_mcu_r5f = {
2828
"mcspi_dma.c",
2929
"mcspi_dma_udma.c",
3030
"pinmux.c",
31+
"ospi_v0.c",
32+
"ospi_dma.c",
33+
"ospi_dma_udma.c",
34+
"ospi_nor_flash.c",
35+
"ospi_phy.c",
3136
"sciclient.c",
3237
"sciclient_lpm.c",
3338
"sciclient_pm.c",
@@ -53,6 +58,7 @@ const files_mcu_r5f = {
5358
"udma_rmcfg.c",
5459
"udma_soc.c",
5560
"utils.c",
61+
"vtm.c",
5662
],
5763
};
5864

source/drivers/makefile.am62ax.r5f.ti-arm-clang

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,11 @@ FILES_common := \
4040
mcspi_dma.c \
4141
mcspi_dma_udma.c \
4242
pinmux.c \
43+
ospi_v0.c \
44+
ospi_dma.c \
45+
ospi_dma_udma.c \
46+
ospi_nor_flash.c \
47+
ospi_phy.c \
4348
sciclient.c \
4449
sciclient_lpm.c \
4550
sciclient_pm.c \
@@ -65,6 +70,7 @@ FILES_common := \
6570
udma_rmcfg.c \
6671
udma_soc.c \
6772
utils.c \
73+
vtm.c \
6874

6975
FILES_PATH_common = \
7076
bootloader \

0 commit comments

Comments
 (0)