Hi all,
We have a custom made RZA1L based board and using latest BSP-4.9, using MACRONIX-MX25L3233F (32Mb) flash, made the appropriate changes as per our board,
Pins Used for console
pfc_set_pin_function(7, 1, ALT4, 0, 0); /* P3_0 = TxD2 */
pfc_set_pin_function(1, 10, ALT3, 0, 0); /* P3_2 = RxD2 */
AND for SPI We used
pfc_set_pin_function(4, 4, ALT2, 0, 0); /* P9_2 = SPBCLK_0 */
pfc_set_pin_function(4, 5, ALT2, 0, 0); /* P9_3 = SPBSSL_0 */
pfc_set_pin_function(4, 6, ALT2, 0, 1); /* P9_4 = SPBIO00_0 (bi dir) */
pfc_set_pin_function(4, 7, ALT2, 0, 1); /* P9_5 = SPBIO10_0 (bi dir) */
pfc_set_pin_function(4, 2, ALT2, 0, 1); /* P9_6 = SPBIO20_0 (bi dir) */
pfc_set_pin_function(4, 3, ALT2, 0, 1); /* P9_7 = SPBIO30_0 (bi dir) */
And follwed the instruction as per porting guide. and selected macronix driver , build u-boot and flashing the image into the spi flash using below command.
./build.sh jlink output/u-boot-2017.05/u-boot.bin 0x18000000
able to flash the u-boot into the flash.
But not able to see anything in serial port.
Tried to build and download to RAM Boot directly by using mode=3 but still not getting any on console.
Please any one here guide me what am i missing here and how to go about it.
Thanks and regards,
Nagaraja