NOTICE: The Processors Wiki will End-of-Life on January 15, 2021. It is recommended to download any files or other content you may need that are hosted on processors.wiki.ti.com. The site is now set to read only.

AM35x-NOR-Flash-Support-ApplicationNote

From Texas Instruments Wiki
Jump to: navigation, search

Content is no longer maintained and is being kept for reference only!

TIBanner.png

Important
Please note that Currently NOR boot mode is not supported in PSP releases.

Overview[edit]

Content is no longer maintained and is being kept for reference only!

This wiki page provides information on using NOR Flash (PC28F640P30B85) support available on Logic PD's AM3517 Application board. This document talks about how to add support for NOR Flash (PC28F640P30B85) in X-loader (Primary Boot-loader), U-Boot (secondary boot-loader), Linux Kernel and will demonstrate NOR Flash boot mode.

NOTE: Since NOR is XIP we do not need to have two stage booting process, ROM code can directly jump to U-boot start address in NOR Flash. But to keep consistency with other boot mode options (NAND, MMC, etc...) we are following up two stage process here.

Background Information[edit]

  • Since NOR Flash is XIP not special configuration other than GPMC initialization required in X-Loader. But natively X-Loader is designed (or rather required) considering NAND and MMC boot mode.
  • U-Boot does support and have common interfaces for CFI Complaint flash devices. Also the NOR Flash (PC28F640P30B85) available on AM3517 Application board is CFI Complaint.
  • User can choose the boot medium (either NOR or NAND Flash) using user configurable switch S11. Below are the supported options through S11,

AM3517-S11-switch-conf.PNG


Note: Please note that NOR Flash is located on Application board and requires hardware modification to get NOR boot mode working. Please refer to section "EVM configuration" for more details.


  • EVM Configuration

In NAND Boot mode :-

Set S7 switch position to

                 1     2     3     4     5
               -----|-----|-----|-----|-----
                off   off   off   off   off

nCS0 => NAND Flash device (Boot device)

nCS2 => NOR Flash device


In NOR Flash boot mode :-

Set S7 switch position to

                 1     2     3     4     5
               -----|-----|-----|-----|-----
                 on   off   off   off   off

nCS0 => NOR Flash device (Boot device)

nCS2 => NAND Flash device


EVM Board modification (NOR Boot mode) -

  • From the baseboard remove R235 resistor (located underneath S7).
  • And configure switch S7 in NOR Flash boot mode (as described above)

NOTE: Please note that, once you remove R235 resistor from the baseboard, you will not be able to boot from NAND without Application board. The GPMC_nCS0 is now routed through Application board.


NOR Flash Layout[edit]

As mentioned above, there are 2 possible options here,

  • Over nCS0, where it will work as a boot medium.
  • Over nCS2, as a data flash

The NOR part on the EVM has been configured in the following manner. Please note that the base address is dependent on the boot device, so below layout shows the offset and not actual base address.

Note
If NOR Flash is detected on CS0, the address would be 0x00000000 and if NOR Flash is detected on CS2, the address would be 0x08000000.


 +------------+->0x00000000-> X-loader start
 |            |
 |            |-->0x0001FFFF-> X-loader end  
 |            |-->0x00020000-> U-Boot start
 |            |
 |            |
 |            |-->0x000BFFFF-> U-Boot end  
 |            |-->0x000C0000-> ENV start
 |            |
 |            |-->0x000FFFFF-> ENV end
 |            |-->0x00100000-> Linux Kernel start
 |            |
 |            |
 |            |
 |            |-->0x004FFFFF-> Linux Kernel end
 |            |-->0x00500000-> Filesystem start
 |            |
 |            |
 |            |
 |            |
 |            |
 |            |
 |            |
 |            |
 +------------+-->0x007FFFFF-> Filesystem end


Adding support in X-Loader, U-Boot & Kernel (on top of PSP03.00.01.06 release)[edit]

Adding support in X-Loader[edit]

Patch: File:X-loader-AM3517-NOR-Flash-Support2.tar.gz

Adding support in U-Boot[edit]

Patch: File:U-boot-AM3517-NOR-Flash-Support.tar.gz

Adding support in Linux Kernel[edit]

Nor Flash hook up -

Patch: File:Linux-AM3517-NOR-Flash-Support.tar.gz


NOTE: Please note that above patch disabled the NAND initialization in board init sequence.


Defconfig changes required to enable NOR Flash -

Patch: File:Linux-AM3517-NOR-Flash-defconfig.tar.gz


Adding support in X-Loader, U-Boot & Kernel(on top of PSP04.02.00.06 release)[edit]

Please note that support for NOR Flash is disabled in U-boot configuration, whereas in X-loader & Linux it is enabled by default.

Adding support in U-Boot[edit]

Since NOR Flash is mounted on Application board and natively u-boot doesn't support run-time detection and configuration of Flash devices, the NOR Flash support is disabled in U-boot. Please enable.

Patch: File:U-boot-AM3517-NOR-Flash-Support-04.02.00.06.tar.gz

Support in U-Boot and Kernel (in AMSDK 05.03.02 and later)[edit]

In this version the changes for support are already integrated in U-Boot and the Kernel. There is no X-Loader for any bootmode and U-Boot is run directly from NOR without need of a previous stage.

Building U-Boot[edit]

Please refer back to the AMSDK u-boot User's Guide for general build information. In this case you need to build for am3517_evm_norflash and boot the resulting MLO and u-boot.img from a non-NOR media and also build for am3517_evm_norflash_boot and write the resulting u-boot.bin to NOR.

Building the Linux Kernel[edit]

Start building the kernel with the am3517_evm_nor_defconfig config file as a reference.

Usage[edit]

This section talks about default partitions defined and how user can flash the images to respective partition in NOR flash -

Default Partition configiration[edit]

To keep aligned with other flash devices supported with OMAP family of devices like, NAND or OneNAND we have defined similar partition table for NOR Flash. Please note that, first 4 blocks are of 32K and rest all blocks are 128K.

Prior to AMSDK 05.03.02.00[edit]

X-Loader      :-     0x00000000 - 0x00020000 (4 blocks = 128K)
U-Boot        :-     0x00020000 - 0x000C0000 (5 blocks = 864K)
U-Boot Env    :-     0x000C0000 - 0x00100000 (2 blocks = 1M)
Kernel        :-     0x00100000 - 0x00500000 (32 blocks = 4MB)
Data/FS       :-     0x00500000 - 0x07FFFFFF (Rest all)

AMSDK 05.03.02.00 and later[edit]

U-Boot        :-     0x00000000 - 0x00080000 (512K)
U-Boot Env    :-     0x00080000 - 0x000A0000 (128K)
Kernel        :-     0x000A0000 - 0x003A0000 (3MB)
Data/FS       :-     0x003A0000 - 0x07FFFFFF (Rest all)

Flashing Instruction[edit]

This section describes how to flash x-load.bin and u-boot.bin to NOR flash, please note that flashing is achieved from another uboot image, booted up from MMC/NAND Flash.

Prior to AMSDK 05.03.02.00[edit]

X-Loader[edit]
AM3517_EVM #
AM3517_EVM # protect off 0x08000000 +0x20000
Un-Protect Flash Bank # 1
.... done
AM3517_EVM # erase 0x08000000 +0x20000
Erase Flash Bank # 1
.... done
AM3517_EVM # mw.b 0x80000000 0xff 0x20000
AM3517_EVM # loadb 80000000
## Ready for binary (kermit) download to 0x80000000 at 115200 bps...
## Total Size      = 0x000042b0 = 17072 Bytes
## Start Addr      = 0x80000000
AM3517_EVM # cp.b 0x80000000 0x08000000 0x20000
Copy to Flash... done
AM3517_EVM #

U-Boot[edit]
AM3517_EVM #
AM3517_EVM # protect off 0x08020000 +0xA0000
Un-Protect Flash Bank # 1
...... done
AM3517_EVM # erase 0x08020000 +0xA0000
Erase Flash Bank # 1
...... done
AM3517_EVM # mw.b 0x80000000 0xFF 0xA0000
AM3517_EVM # loadb 0x80000000
## Ready for binary (kermit) download to 0x80000000 at 115200 bps...
## Total Size      = 0x00039128 = 233768 Bytes
## Start Addr      = 0x80000000
AM3517_EVM # cp.b 0x80000000 0x08020000 0xA0000
Copy to Flash... done

AMSDK 05.03.02.00 and later[edit]

U-Boot[edit]
AM3517_EVM #
AM3517_EVM # protect off 0x08000000 +0xA0000
Un-Protect Flash Bank # 1
.... done
AM3517_EVM # erase 0x08000000 +0xA0000
Erase Flash Bank # 1
.... done
AM3517_EVM # mw.b 0x80000000 0xff 0xA0000
AM3517_EVM # loadb 80000000
## Ready for binary (kermit) download to 0x80000000 at 115200 bps...
## Total Size      = 0x00039128 = 233768 Bytes
## Start Addr      = 0x80000000
AM3517_EVM # cp.b 0x80000000 0x08000000 0xA0000
Copy to Flash... done


NOTE: Please note that early revision of Application board doesn't work with NOR flash boot mode due to HW issue. The NOR boot mode has been validated against >=Rev4 revision of Application board.


NOTE: Please untar the file to access the patch, tar file has been attached since Wiki page doesn't allow to attach .patch extension files.


NOTE: Please note that the above patches have not went under regression test, so likely to have some issues. We are working on this and will update this page once we are done with your testing. By default, NOR Flash goes to nCS2 chip select and will be able to use Data Flash.

E2e.jpg {{
  1. switchcategory:MultiCore=
  • For technical support on MultiCore devices, please post your questions in the C6000 MultiCore Forum
  • For questions related to the BIOS MultiCore SDK (MCSDK), please use the BIOS Forum

Please post only comments related to the article AM35x-NOR-Flash-Support-ApplicationNote here.

Keystone=
  • For technical support on MultiCore devices, please post your questions in the C6000 MultiCore Forum
  • For questions related to the BIOS MultiCore SDK (MCSDK), please use the BIOS Forum

Please post only comments related to the article AM35x-NOR-Flash-Support-ApplicationNote here.

C2000=For technical support on the C2000 please post your questions on The C2000 Forum. Please post only comments about the article AM35x-NOR-Flash-Support-ApplicationNote here. DaVinci=For technical support on DaVincoplease post your questions on The DaVinci Forum. Please post only comments about the article AM35x-NOR-Flash-Support-ApplicationNote here. MSP430=For technical support on MSP430 please post your questions on The MSP430 Forum. Please post only comments about the article AM35x-NOR-Flash-Support-ApplicationNote here. OMAP35x=For technical support on OMAP please post your questions on The OMAP Forum. Please post only comments about the article AM35x-NOR-Flash-Support-ApplicationNote here. OMAPL1=For technical support on OMAP please post your questions on The OMAP Forum. Please post only comments about the article AM35x-NOR-Flash-Support-ApplicationNote here. MAVRK=For technical support on MAVRK please post your questions on The MAVRK Toolbox Forum. Please post only comments about the article AM35x-NOR-Flash-Support-ApplicationNote here. For technical support please post your questions at http://e2e.ti.com. Please post only comments about the article AM35x-NOR-Flash-Support-ApplicationNote here.

}}

Hyperlink blue.png Links

Amplifiers & Linear
Audio
Broadband RF/IF & Digital Radio
Clocks & Timers
Data Converters

DLP & MEMS
High-Reliability
Interface
Logic
Power Management

Processors

Switches & Multiplexers
Temperature Sensors & Control ICs
Wireless Connectivity