Content originally posted in LPCWare by fiosca on Wed Sep 02 02:47:46 MST 2015
We have a board with LPC4357 and many external memories (static and dynamics).
Static memories are connected on:
CS0 --> 32-bit wide NOR Flash
CS2 --> 8-bit wide FRAM
We configured EMC in order to work in 32-bit mode for CS0 and 8-bit mode with CS2.
The NOR flash on CS0 works properly, but the FRAM on CS2 doesn't.
I think there's a problem on how EMC performs access to the bus.
If we write or read one single byte on FRAM everything is fine,
but once we try a 16-bit or 32-bit access, it looks like EMC performs one single bus access (16-bit or 32-bit wide) instead of 2 or 4 read or write cycles.
Just to be clear, this is the problem that can be reproduced with this sequence:
-------------------------------------------------------------------------------------------------------------------
Initial setup:
Write 0x11 to 0x1E000000
Write 0x22 to 0x1E000001
Write 0x33 to 0x1E000002
Write 0x44 to 0x1E000003
Then I launch some readings:
Read 8-bit at 0x1E000000 --> get 0x11 --> CORRECT
Read 8-bit at 0x1E000001 --> get 0x22 --> CORRECT
Read 8-bit at 0x1E000002 --> get 0x33 --> CORRECT
Read 8-bit at 0x1E000003 --> get 0x44 --> CORRECT
Read 16-bit at 0x1E000000 --> get 0x1111 --> WRONG (it should be 0x1122)
Read 32-bit at 0x1E000000 --> get 0x11111111 --> WRONG (it should be 0x11223344)
It sounds like EMC performs many readings, but the address points always to the first byte.
-------------------------------------------------------------------------------------------------------------------
Connection is quite simple and follows NXP user manual, with full address bus (A0..A12) and only the first byte of data bus (D0...D7).
We don't use byte lanes, only CS, WE and OE standard pins.
Below the configuration of EMC for CS2:
LPC_EMC->STATICCONFIG2 = (1 << 7) ; /* Byte lane state: use WE signal */
LPC_EMC->STATICWAITOEN2 = (0 << 0) ; /* Wait output enable: No delay */
LPC_EMC->STATICWAITRD2 = 1 + EMC_NANOSEC(70, SystemCoreClock, div);
I already tried to reverse byte lane polarity (even though we don't use byte lane at all!), enabling/disabling page mode and buffers but it has no effect.
Whal could be the reason? Some suggestions?