hw/sd/sdcard: When card is in wrong state, log which state it is
authorPhilippe Mathieu-Daudé <f4bug@amsat.org>
Mon, 7 Jun 2021 15:24:58 +0000 (17:24 +0200)
committerPhilippe Mathieu-Daudé <f4bug@amsat.org>
Mon, 12 Jul 2021 10:27:38 +0000 (12:27 +0200)
We report the card is in an inconsistent state, but don't precise
in which state it is. Add this information, as it is useful when
debugging problems.

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Message-Id: <20210624142209.1193073-2-f4bug@amsat.org>
Reviewed-by: Alexander Bulekov <alxndr@bu.edu>
hw/sd/sd.c

index 282d39a704274ac2838c9c0810f0833ff762e0c8..d8fdf84f4dbbfd948e553041431b80dc33235393 100644 (file)
@@ -1504,7 +1504,8 @@ static sd_rsp_type_t sd_normal_command(SDState *sd, SDRequest req)
         return sd_illegal;
     }
 
-    qemu_log_mask(LOG_GUEST_ERROR, "SD: CMD%i in a wrong state\n", req.cmd);
+    qemu_log_mask(LOG_GUEST_ERROR, "SD: CMD%i in a wrong state: %s\n",
+                  req.cmd, sd_state_name(sd->state));
     return sd_illegal;
 }