[PATCH v2 10/11] q800: add default vendor and product information for scsi-hd devices

Mark Cave-Ayland posted 11 patches 3 years, 9 months ago
Maintainers: Laurent Vivier <laurent@vivier.eu>, Paolo Bonzini <pbonzini@redhat.com>, Fam Zheng <fam@euphon.net>
There is a newer version of this series
[PATCH v2 10/11] q800: add default vendor and product information for scsi-hd devices
Posted by Mark Cave-Ayland 3 years, 9 months ago
The Apple HD SC Setup program uses a SCSI INQUIRY command to check that any SCSI
hard disks detected match a whitelist of vendors and products before allowing
the "Initialise" button to prepare an empty disk.

Add known-good default vendor and product information using the existing
compat_prop mechanism so the user doesn't have to use long command lines to set
the qdev properties manually.

Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
---
 hw/m68k/q800.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/hw/m68k/q800.c b/hw/m68k/q800.c
index f27ed01785..abb549f8d8 100644
--- a/hw/m68k/q800.c
+++ b/hw/m68k/q800.c
@@ -688,6 +688,9 @@ static void q800_init(MachineState *machine)
 
 static GlobalProperty hw_compat_q800[] = {
     { "scsi-hd", "quirk_mode_page_apple_vendor", "on"},
+    { "scsi-hd", "vendor", " SEAGATE" },
+    { "scsi-hd", "product", "          ST225N" },
+    { "scsi-hd", "ver", "1.0 " },
     { "scsi-cd", "quirk_mode_sense_rom_force_dbd", "on"},
 };
 static const size_t hw_compat_q800_len = G_N_ELEMENTS(hw_compat_q800);
-- 
2.20.1
Re: [PATCH v2 10/11] q800: add default vendor and product information for scsi-hd devices
Posted by Laurent Vivier 3 years, 8 months ago
Le 24/04/2022 à 18:49, Mark Cave-Ayland a écrit :
> The Apple HD SC Setup program uses a SCSI INQUIRY command to check that any SCSI
> hard disks detected match a whitelist of vendors and products before allowing
> the "Initialise" button to prepare an empty disk.
> 
> Add known-good default vendor and product information using the existing
> compat_prop mechanism so the user doesn't have to use long command lines to set
> the qdev properties manually.
> 
> Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
> ---
>   hw/m68k/q800.c | 3 +++
>   1 file changed, 3 insertions(+)
> 
> diff --git a/hw/m68k/q800.c b/hw/m68k/q800.c
> index f27ed01785..abb549f8d8 100644
> --- a/hw/m68k/q800.c
> +++ b/hw/m68k/q800.c
> @@ -688,6 +688,9 @@ static void q800_init(MachineState *machine)
>   
>   static GlobalProperty hw_compat_q800[] = {
>       { "scsi-hd", "quirk_mode_page_apple_vendor", "on"},
> +    { "scsi-hd", "vendor", " SEAGATE" },
> +    { "scsi-hd", "product", "          ST225N" },
> +    { "scsi-hd", "ver", "1.0 " },
>       { "scsi-cd", "quirk_mode_sense_rom_force_dbd", "on"},
>   };
>   static const size_t hw_compat_q800_len = G_N_ELEMENTS(hw_compat_q800);

Reviewed-by: Laurent Vivier <laurent@vivier.eu>