configs/imxrt1050-evk: Fix OCRAM size used in linker script.

This commit is contained in:
Gregory Nutt 2018-05-24 16:51:18 -06:00
parent a7f1c2415c
commit e07504291e
7 changed files with 8 additions and 7 deletions

View File

@ -59,7 +59,7 @@
defined(CONFIG_ARCH_CHIP_MIMXRT1052DVL6A) || \ defined(CONFIG_ARCH_CHIP_MIMXRT1052DVL6A) || \
defined(CONFIG_ARCH_CHIP_MIMXRT1052CVL5A) defined(CONFIG_ARCH_CHIP_MIMXRT1052CVL5A)
#define IMXRT_OCRAM_SIZE (512 * 1024) /* 512Kb OCRAM */ # define IMXRT_OCRAM_SIZE (512 * 1024) /* 512Kb OCRAM */
#else #else
# error "Unknown i.MX RT chip type" # error "Unknown i.MX RT chip type"
#endif #endif

View File

@ -170,4 +170,5 @@ Configuration sub-directories
Configures the NuttShell (nsh) located at examples/nsh. This NSH Configures the NuttShell (nsh) located at examples/nsh. This NSH
configuration is focused on low level, command-line driver testing. configuration is focused on low level, command-line driver testing.
It has no network. Built-in applications are supported, but none are enabled. This
configuration does not support a network.

View File

@ -38,7 +38,7 @@
MEMORY MEMORY
{ {
flash (rx) : ORIGIN = 0x60000000, LENGTH = 0x04000000 flash (rx) : ORIGIN = 0x60000000, LENGTH = 0x04000000
sram (rwx) : ORIGIN = 0x20200000, LENGTH = 0x00040000 sram (rwx) : ORIGIN = 0x20200000, LENGTH = 0x00080000
itcm (rwx) : ORIGIN = 0x00000000, LENGTH = 0x00020000 itcm (rwx) : ORIGIN = 0x00000000, LENGTH = 0x00020000
dtcm (rwx) : ORIGIN = 0x20000000, LENGTH = 0x00020000 dtcm (rwx) : ORIGIN = 0x20000000, LENGTH = 0x00020000
} }

View File

@ -38,7 +38,7 @@
ASRCS = ASRCS =
CSRCS = imxrt_boot.c imxrt_flexspi_nor_boot.c imxrt_flexspi_nor_flash.c CSRCS = imxrt_boot.c imxrt_flexspi_nor_boot.c imxrt_flexspi_nor_flash.c
ifeq ($(CONFIG_SAMV7_SDRAMC),y) ifeq ($(CONFIG_IMXRT_SDRAMC),y)
CSRCS += imxrt_sdram.c CSRCS += imxrt_sdram.c
endif endif

View File

@ -140,7 +140,7 @@ void imxrt_autoled_initialize(void);
* Name: imxrt_spidev_initialize * Name: imxrt_spidev_initialize
* *
* Description: * Description:
* Called to configure SPI chip select GPIO pins for the SAMV71-XULT board. * Called to configure SPI chip select GPIO pins for the i.MXRT1050 EVK.
* *
****************************************************************************/ ****************************************************************************/

View File

@ -48,7 +48,7 @@
* *
* This LED is not used by the board port unless CONFIG_ARCH_LEDS is * This LED is not used by the board port unless CONFIG_ARCH_LEDS is
* defined. In that case, the usage by the board port is defined in * defined. In that case, the usage by the board port is defined in
* include/board.h and src/sam_autoleds.c. The LED is used to encode * include/board.h and src/imxrt_autoleds.c. The LED is used to encode
* OS-related events as follows: * OS-related events as follows:
* *
* -------------------- ----------------------- ------ * -------------------- ----------------------- ------

View File

@ -53,7 +53,7 @@
* Name: imxrt_boardinitialize * Name: imxrt_boardinitialize
* *
* Description: * Description:
* All SAMV7 architectures must provide the following entry point. This * All i.MX RT architectures must provide the following entry point. This
* entry point is called early in the initialization -- after clocking and * entry point is called early in the initialization -- after clocking and
* memory have been configured but before caches have been enabled and * memory have been configured but before caches have been enabled and
* before any devices have been initialized. * before any devices have been initialized.