-
Notifications
You must be signed in to change notification settings - Fork 238
Description
The SAM9X60 datasheet suggests in section 12. Boot Strategies the chip can boot from serial flash memory connected to flexcom, in default boot sequence: FLEXCOM0 - SPI (PA0, PA1, PA3, PA4). Details in section 12.1.4.7.4 SPI Flash Boot. We connected a standard 8-pin SPI serial flash to that interface, and want to put U-Boot image and probably U-Boot environment on it, too.
However at91boostrap does not seem to support this configuration, flexcom is only used for TWI. SPI memory is only accessed with hardware accelerated spi mem mode of QSPI controller. What's needed to add support for a configuration where SPI Flash Memory is connected to a standard SPI controller (or flexcom)? Probably an SPI host driver and the SPI memory commands in software?
Is anyone (at Microchip) working on that already?