Re: [PATCH v2] hw/block: m25p80: Support fast read for SST flashes

2021-03-22 Thread Alistair Francis
On Sat, Mar 6, 2021 at 1:02 AM Bin Meng wrote: > > From: Bin Meng > > Per SST25VF016B datasheet [1], SST flash requires a dummy byte after > the address bytes. Note only SPI mode is supported by SST flashes. > > [1] http://ww1.microchip.com/downloads/en/devicedoc/s71271_04.pdf > > Signed-off-by:

Re: [PATCH v2] hw/block: m25p80: Support fast read for SST flashes

2021-03-21 Thread Bin Meng
On Tue, Mar 16, 2021 at 9:39 AM Bin Meng wrote: > > On Thu, Mar 11, 2021 at 4:18 PM Bin Meng wrote: > > > > On Sat, Mar 6, 2021 at 2:01 PM Bin Meng wrote: > > > > > > From: Bin Meng > > > > > > Per SST25VF016B datasheet [1], SST flash requires a dummy byte after > > > the address bytes. Note on

Re: [PATCH v2] hw/block: m25p80: Support fast read for SST flashes

2021-03-15 Thread Bin Meng
On Thu, Mar 11, 2021 at 4:18 PM Bin Meng wrote: > > On Sat, Mar 6, 2021 at 2:01 PM Bin Meng wrote: > > > > From: Bin Meng > > > > Per SST25VF016B datasheet [1], SST flash requires a dummy byte after > > the address bytes. Note only SPI mode is supported by SST flashes. > > > > [1] http://ww1.mic

Re: [PATCH v2] hw/block: m25p80: Support fast read for SST flashes

2021-03-11 Thread Bin Meng
On Sat, Mar 6, 2021 at 2:01 PM Bin Meng wrote: > > From: Bin Meng > > Per SST25VF016B datasheet [1], SST flash requires a dummy byte after > the address bytes. Note only SPI mode is supported by SST flashes. > > [1] http://ww1.microchip.com/downloads/en/devicedoc/s71271_04.pdf > > Signed-off-by:

[PATCH v2] hw/block: m25p80: Support fast read for SST flashes

2021-03-05 Thread Bin Meng
From: Bin Meng Per SST25VF016B datasheet [1], SST flash requires a dummy byte after the address bytes. Note only SPI mode is supported by SST flashes. [1] http://ww1.microchip.com/downloads/en/devicedoc/s71271_04.pdf Signed-off-by: Bin Meng Acked-by: Alistair Francis --- Changes in v2: - re