Skip to content

Commit d929a25

Browse files
committed
boards: phytec: add support for phyBOARD-Atlas i.MX RT1170
Add initial support for PHYTEC phyBOARD-Atlas i.MX RT1170 based on the PHYTEC phyCORE-i.MX RT1170 SOM. SOM uses dual-core NXP i.MX RT1170 SoC as a basis, with Cortex-M7 core running at 1 GHz and Cortex-M4 core at 400 MHz. Supported features: * Accelerometer * Audio codec * CAN * DAC * EEPROM * Ethernet * External display * I2C * RS-232 * SD-Card * SPI * UART * USB Signed-off-by: John Ma <jma@phytec.com> Signed-off-by: Daniel Schultz <d.schultz@phytec.de> Signed-off-by: Florijan Plohl <florijan.plohl@norik.com>
1 parent db6661d commit d929a25

16 files changed

+1269
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
if(CONFIG_NXP_IMXRT_BOOT_HEADER)
2+
zephyr_library()
3+
set(RT1170_BOARD_NAME "evkmimxrt1170")
4+
set(RT1170_BOARD_DIR
5+
"${ZEPHYR_HAL_NXP_MODULE_DIR}/mcux/mcux-sdk/boards/${RT1170_BOARD_NAME}")
6+
if(CONFIG_BOOT_FLEXSPI_NOR)
7+
# Include flash configuration block for RT1170 EVK from NXP's HAL.
8+
# This configuration block may need modification if another flash chip is
9+
# used on your custom board. See NXP AN12238 for more information.
10+
zephyr_compile_definitions(XIP_BOOT_HEADER_ENABLE=1)
11+
zephyr_compile_definitions(BOARD_FLASH_SIZE=CONFIG_FLASH_SIZE*1024)
12+
zephyr_library_sources(flexspi_nor_config.c)
13+
endif()
14+
if(CONFIG_DEVICE_CONFIGURATION_DATA)
15+
# Include device configuration data block for RT1170 EVK from NXP's HAL.
16+
# This configuration block may need modification if another SDRAM chip
17+
# is used on your custom board.
18+
zephyr_compile_definitions(XIP_BOOT_HEADER_DCD_ENABLE=1)
19+
zephyr_library_sources(${RT1170_BOARD_DIR}/dcd.c)
20+
else()
21+
if(CONFIG_SRAM_BASE_ADDRESS EQUAL 0x80000000)
22+
message(WARNING "You are using SDRAM as RAM but no device "
23+
"configuration data (DCD) is included. This configuration may not boot")
24+
endif()
25+
endif()
26+
endif()
27+
28+
if(CONFIG_MCUX_GPT_TIMER)
29+
message(WARNING "You appear to be using the GPT hardware timer. "
30+
"This timer will enable lower power modes, but at the cost of reduced "
31+
"hardware timer resolution")
32+
endif()
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# PHYBOARD-ATLAS
2+
3+
# Copyright (c) 2025 PHYTEC America, LLC
4+
# SPDX-License-Identifier: Apache-2.0
5+
6+
if BOARD_PHYBOARD_ATLAS
7+
8+
# Only use DCD when booting primary core (M7)
9+
config DEVICE_CONFIGURATION_DATA
10+
default y if CPU_CORTEX_M7
11+
12+
config NXP_IMX_EXTERNAL_SDRAM
13+
default y if CPU_CORTEX_M7
14+
15+
if SECOND_CORE_MCUX && CPU_CORTEX_M4
16+
17+
config BUILD_OUTPUT_INFO_HEADER
18+
default y
19+
20+
DT_CHOSEN_IMAGE_M4 = nxp,m4-partition
21+
22+
# Adjust the offset of the output image if building for RT11xx SOC
23+
config BUILD_OUTPUT_ADJUST_LMA
24+
default "($(dt_chosen_reg_addr_hex,$(DT_CHOSEN_IMAGE_M4)) + \
25+
$(dt_node_reg_addr_hex,/soc/spi@400cc000,1)) - \
26+
$(dt_node_reg_addr_hex,/soc/ocram@20200000)"
27+
28+
endif # SECOND_CORE_MCUX && CPU_CORTEX_M4
29+
30+
if NETWORKING
31+
32+
config NET_L2_ETHERNET
33+
default y if CPU_CORTEX_M7 # No cache memory support is required for driver
34+
35+
endif # NETWORKING
36+
37+
if DISK_DRIVERS
38+
39+
config IMX_USDHC_DAT3_PWR_TOGGLE
40+
default y
41+
42+
endif # DISK_DRIVERS
43+
44+
endif # BOARD_PHYBOARD_ATLAS
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Copyright 2025 PHYTEC America, LLC
2+
# SPDX-License-Identifier: Apache-2.0
3+
4+
config BOARD_PHYBOARD_ATLAS
5+
select SOC_MIMXRT1176_CM7 if BOARD_PHYBOARD_ATLAS_MIMXRT1176_CM7
6+
select SOC_MIMXRT1176_CM4 if BOARD_PHYBOARD_ATLAS_MIMXRT1176_CM4
7+
select SOC_PART_NUMBER_MIMXRT1176DVMAA
+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
if(CONFIG_SOC_MIMXRT1176_CM7 OR CONFIG_SECOND_CORE_MCUX)
2+
board_runner_args(pyocd "--target=mimxrt1170_cm7")
3+
board_runner_args(jlink "--device=MIMXRT1176xxxA_M7" "--reset-after-load")
4+
5+
board_runner_args(linkserver "--device=MIMXRT1176xxxxx:MIMXRT1170-EVK")
6+
board_runner_args(linkserver "--core=cm7")
7+
8+
elseif(CONFIG_SOC_MIMXRT1176_CM4)
9+
board_runner_args(pyocd "--target=mimxrt1170_cm4")
10+
# Note: Please use JLINK above V7.50 (Only support run cm4 image when debugging due to default boot core on board is cm7 core)
11+
board_runner_args(jlink "--device=MIMXRT1176xxxA_M4")
12+
13+
board_runner_args(linkserver "--device=MIMXRT1176xxxxx:MIMXRT1170-EVK")
14+
board_runner_args(linkserver "--core=cm4")
15+
16+
endif()
17+
18+
include(${ZEPHYR_BASE}/boards/common/jlink.board.cmake)
19+
include(${ZEPHYR_BASE}/boards/common/pyocd.board.cmake)
20+
include(${ZEPHYR_BASE}/boards/common/linkserver.board.cmake)
+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
board:
2+
name: phyboard_atlas
3+
full_name: phyBOARD-Atlas i.MX RT1170
4+
vendor: phytec
5+
socs:
6+
- name: mimxrt1176
Binary file not shown.

boards/phytec/phyboard_atlas/doc/index.rst

+388
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
/*
2+
* Copyright (c) 2025 PHYTEC America, LLC
3+
* All rights reserved.
4+
*
5+
* SPDX-License-Identifier: Apache-2.0
6+
*/
7+
8+
#include <flexspi_nor_config.h>
9+
10+
/* Component ID definition, used by tools. */
11+
#ifndef FSL_COMPONENT_ID
12+
#define FSL_COMPONENT_ID "platform.drivers.xip_board"
13+
#endif
14+
15+
/*******************************************************************************
16+
* Code
17+
******************************************************************************/
18+
#if defined(XIP_BOOT_HEADER_ENABLE) && (XIP_BOOT_HEADER_ENABLE == 1)
19+
#if defined(__CC_ARM) || defined(__ARMCC_VERSION) || defined(__GNUC__)
20+
__attribute__((section(".boot_hdr.conf"), used))
21+
#elif defined(__ICCARM__)
22+
#pragma location = ".boot_hdr.conf"
23+
#endif
24+
25+
#define FLASH_DUMMY_CYCLES 0x06
26+
#define FLASH_DUMMY_VALUE 0x06
27+
28+
const struct flexspi_nor_config_t qspiflash_config = {
29+
.memConfig = {
30+
.tag = FLEXSPI_CFG_BLK_TAG,
31+
.version = FLEXSPI_CFG_BLK_VERSION,
32+
.readSampleClkSrc = kFlexSPIReadSampleClk_LoopbackFromDqsPad,
33+
.csHoldTime = 3u,
34+
.csSetupTime = 3u,
35+
.controllerMiscOption = 0x10,
36+
.deviceType = kFlexSpiDeviceType_SerialNOR,
37+
.sflashPadType = kSerialFlash_4Pads,
38+
.serialClkFreq = kFlexSpiSerialClk_100MHz,
39+
.sflashA1Size = 16u * 1024u * 1024u,
40+
.configCmdEnable = 1u,
41+
.configModeType[0] = kDeviceConfigCmdType_Generic,
42+
.configCmdSeqs[0] = {
43+
.seqNum = 1,
44+
.seqId = 12,
45+
.reserved = 0,
46+
},
47+
.configCmdArgs[0] = (FLASH_DUMMY_VALUE << 3),
48+
.lookupTable = {
49+
/* Fast read quad mode - SDR */
50+
[4 * CMD_LUT_SEQ_IDX_READ + 0] =
51+
FLEXSPI_LUT_SEQ(CMD_SDR, FLEXSPI_1PAD, 0xEB,
52+
RADDR_SDR, FLEXSPI_4PAD, 0x18),
53+
[4 * CMD_LUT_SEQ_IDX_READ + 1] = FLEXSPI_LUT_SEQ(
54+
DUMMY_SDR, FLEXSPI_4PAD, FLASH_DUMMY_CYCLES,
55+
READ_SDR, FLEXSPI_4PAD, 0x04),
56+
57+
/* Read Status LUTs */
58+
[4 * CMD_LUT_SEQ_IDX_READSTATUS + 0] =
59+
FLEXSPI_LUT_SEQ(CMD_SDR, FLEXSPI_1PAD, 0x05,
60+
READ_SDR, FLEXSPI_1PAD, 0x04),
61+
62+
/* Write Enable LUTs */
63+
[4 * CMD_LUT_SEQ_IDX_WRITEENABLE + 0] =
64+
FLEXSPI_LUT_SEQ(CMD_SDR, FLEXSPI_1PAD, 0x06, STOP,
65+
FLEXSPI_1PAD, 0x0),
66+
67+
/* Page Program LUTs */
68+
[4 * CMD_LUT_SEQ_IDX_WRITE + 0] =
69+
FLEXSPI_LUT_SEQ(CMD_SDR, FLEXSPI_1PAD, 0x02,
70+
RADDR_SDR, FLEXSPI_1PAD, 0x18),
71+
[4 * CMD_LUT_SEQ_IDX_WRITE + 1] =
72+
FLEXSPI_LUT_SEQ(WRITE_SDR, FLEXSPI_1PAD, 0x04, STOP,
73+
FLEXSPI_1PAD, 0x0),
74+
},
75+
},
76+
.pageSize = 256u,
77+
.sectorSize = 4u * 1024u,
78+
.ipcmdSerialClkFreq = 0x1,
79+
.blockSize = 64u * 1024u,
80+
.isUniformBlockSize = false,
81+
};
82+
#endif /* XIP_BOOT_HEADER_ENABLE */

0 commit comments

Comments
 (0)