Re: [RFC PATCH 05/10] hw/sd: Add sd_cmd_illegal() handler

2021-06-28 Thread Cédric Le Goater
On 6/24/21 4:22 PM, Philippe Mathieu-Daudé wrote: > Log illegal commands as GUEST_ERROR. > > Note: we are logging back the SDIO commands (CMD5, CMD52-54). > > Signed-off-by: Philippe Mathieu-Daudé > --- > hw/sd/sd.c | 57 ++ > 1 file changed,

Re: [RFC PATCH 05/10] hw/sd: Add sd_cmd_illegal() handler

2021-06-26 Thread Philippe Mathieu-Daudé
On 6/25/21 3:47 PM, Bin Meng wrote: > On Thu, Jun 24, 2021 at 10:23 PM Philippe Mathieu-Daudé > wrote: >> >> Log illegal commands as GUEST_ERROR. >> >> Note: we are logging back the SDIO commands (CMD5, CMD52-54). >> >> Signed-off-by: Philippe Mathieu-Daudé >> --- >> hw/sd/sd.c | 57 +++

Re: [RFC PATCH 05/10] hw/sd: Add sd_cmd_illegal() handler

2021-06-25 Thread Bin Meng
On Thu, Jun 24, 2021 at 10:23 PM Philippe Mathieu-Daudé wrote: > > Log illegal commands as GUEST_ERROR. > > Note: we are logging back the SDIO commands (CMD5, CMD52-54). > > Signed-off-by: Philippe Mathieu-Daudé > --- > hw/sd/sd.c | 57 ++ > 1

[RFC PATCH 05/10] hw/sd: Add sd_cmd_illegal() handler

2021-06-24 Thread Philippe Mathieu-Daudé
Log illegal commands as GUEST_ERROR. Note: we are logging back the SDIO commands (CMD5, CMD52-54). Signed-off-by: Philippe Mathieu-Daudé --- hw/sd/sd.c | 57 ++ 1 file changed, 23 insertions(+), 34 deletions(-) diff --git a/hw/sd/sd.c b/hw/sd