Hello. I have device with N32926U1DN cpu, which booting from SPI flash.
I want to boot from sd card. How can I make bootable SD?
Cant found any datasheets with boot description.
Here is starting log, SD booting has first priority:
-------------------------------------------------------------------
Initial RTC .Enable Access Fail - Timeout
DRAM Init..2p
SD Port 0 Booting Fail - No/Unknown Device
NAND CS0 Booting Fail - No Boot Code Header
NAND CS1 Booting Fail - No Boot Code Header
SPI Booting
Write - 0xB0000204 = 0xFFFFFFFF
Write - 0xB0000208 = 0xFFFFFFFF
Write - 0xB0003008 = 0x0000805A
Write - 0xB0003028 = 0x2AFF3B4A
Write - 0xB0003004 = 0x00000021
Delay 256 us
....
-------------------------------------------------------------------
离线
新唐ARM9系列芯片手册大全
http://whycan.com/t_4553.html
(出处:哇酷开发者社区)
离线
Hello. I have device with N32926U1DN cpu, which booting from SPI flash.
I want to boot from sd card. How can I make bootable SD?
Cant found any datasheets with boot description.Here is starting log, SD booting has first priority:
-------------------------------------------------------------------
Initial RTC .Enable Access Fail - Timeout
DRAM Init..2p
SD Port 0 Booting Fail - No/Unknown Device
NAND CS0 Booting Fail - No Boot Code Header
NAND CS1 Booting Fail - No Boot Code Header
SPI Booting
Write - 0xB0000204 = 0xFFFFFFFF
Write - 0xB0000208 = 0xFFFFFFFF
Write - 0xB0003008 = 0x0000805A
Write - 0xB0003028 = 0x2AFF3B4A
Write - 0xB0003004 = 0x00000021
Delay 256 us
....
-------------------------------------------------------------------
你需要在SD卡中写入启动IMG
离线
你需要在SD卡中写入启动IMG
where i can download bootable image for SD card?
最近编辑记录 Serj (2021-01-29 16:34:59)
离线
sjshe3326 说:你需要在SD卡中写入启动IMG
where i can download bootable image for SD card?
我使用的是N32905,926应该也是类似的。在固件包中有一个SDLoader的工程。编译这个SDLoader 就是SD启动的文件。
将编译好的SDLoader.bin文件用TurboWriter工具写在SD卡的sector0中。然后就可以用SD卡启动了,会加载用户代码执行。
离线
我使用的是N32905,926应该也是类似的。在固件包中有一个SDLoader的工程。编译这个SDLoader 就是SD启动的文件。
将编译好的SDLoader.bin文件用TurboWriter工具写在SD卡的sector0中。然后就可以用SD卡启动了,会加载用户代码执行。
I have not 固件包中.
I saw only some documentation on nuvoton site, and i dont know where I can download flash packet.
离线
sjshe3326 说:我使用的是N32905,926应该也是类似的。在固件包中有一个SDLoader的工程。编译这个SDLoader 就是SD启动的文件。
将编译好的SDLoader.bin文件用TurboWriter工具写在SD卡的sector0中。然后就可以用SD卡启动了,会加载用户代码执行。I have not 固件包中.
I saw only some documentation on nuvoton site, and i dont know where I can download flash packet.
你可以在 https://gitee.com/OpenNuvoton 中找到你需要的BSP。
如果不使用linux系统,可以编译 https://gitee.com/OpenNuvoton/N32926_NonOS_BSP/tree/master/Loader/SDLoader 的工程,
生成SDLoader.bin用于SD启动。
如果使用Linux 也有对应的工具可能是uboot。
离线
Serj 说:sjshe3326 说:我使用的是N32905,926应该也是类似的。在固件包中有一个SDLoader的工程。编译这个SDLoader 就是SD启动的文件。
将编译好的SDLoader.bin文件用TurboWriter工具写在SD卡的sector0中。然后就可以用SD卡启动了,会加载用户代码执行。I have not 固件包中.
I saw only some documentation on nuvoton site, and i dont know where I can download flash packet.你可以在 https://gitee.com/OpenNuvoton 中找到你需要的BSP。
如果不使用linux系统,可以编译 https://gitee.com/OpenNuvoton/N32926_NonOS_BSP/tree/master/Loader/SDLoader 的工程,
生成SDLoader.bin用于SD启动。
如果使用Linux 也有对应的工具可能是uboot。
loader就是裸奔non-os里面编译的吧,linux的loader和NON-os的不一样么?
离线