Re: [PATCH v2 09/25] hw/sd: ssi-sd: Fix the wrong command index for STOP_TRANSMISSION

2021-01-24 Thread Bin Meng
On Mon, Jan 25, 2021 at 8:33 AM Bin Meng wrote: > > On Mon, Jan 25, 2021 at 1:33 AM Philippe Mathieu-Daudé > wrote: > > > > On 1/23/21 11:40 AM, Bin Meng wrote: > > > From: Bin Meng > > > > > > This fixes the wrong command index for STOP_TRANSMISSION, the > > > required command to interrupt the

Re: [PATCH v2 09/25] hw/sd: ssi-sd: Fix the wrong command index for STOP_TRANSMISSION

2021-01-24 Thread Bin Meng
On Mon, Jan 25, 2021 at 1:33 AM Philippe Mathieu-Daudé wrote: > > On 1/23/21 11:40 AM, Bin Meng wrote: > > From: Bin Meng > > > > This fixes the wrong command index for STOP_TRANSMISSION, the > > required command to interrupt the multiple block read command, > > in the old codes. It should be CMD

Re: [PATCH v2 09/25] hw/sd: ssi-sd: Fix the wrong command index for STOP_TRANSMISSION

2021-01-24 Thread Philippe Mathieu-Daudé
On 1/24/21 6:33 PM, Philippe Mathieu-Daudé wrote: > On 1/23/21 11:40 AM, Bin Meng wrote: >> From: Bin Meng >> >> This fixes the wrong command index for STOP_TRANSMISSION, the >> required command to interrupt the multiple block read command, >> in the old codes. It should be CMD12 (0x4c), not CMD13

Re: [PATCH v2 09/25] hw/sd: ssi-sd: Fix the wrong command index for STOP_TRANSMISSION

2021-01-24 Thread Philippe Mathieu-Daudé
On 1/23/21 11:40 AM, Bin Meng wrote: > From: Bin Meng > > This fixes the wrong command index for STOP_TRANSMISSION, the > required command to interrupt the multiple block read command, > in the old codes. It should be CMD12 (0x4c), not CMD13 (0x4d). > > Fixes: 775616c3ae8c ("Partial SD card SPI

[PATCH v2 09/25] hw/sd: ssi-sd: Fix the wrong command index for STOP_TRANSMISSION

2021-01-23 Thread Bin Meng
From: Bin Meng This fixes the wrong command index for STOP_TRANSMISSION, the required command to interrupt the multiple block read command, in the old codes. It should be CMD12 (0x4c), not CMD13 (0x4d). Fixes: 775616c3ae8c ("Partial SD card SPI mode support") Signed-off-by: Bin Meng --- Chang