[PATCH 2/4] ich9: fix getter type for sci_int property

2020-02-03 Thread Felipe Franciosi
When QOM APIs were added to ich9 in 6f1426ab, the getter for sci_int was
written using uint32_t. However, the object property is uint8_t. This
fixes the getter for correctness.

Signed-off-by: Felipe Franciosi 
---
 hw/isa/lpc_ich9.c | 6 ++
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/hw/isa/lpc_ich9.c b/hw/isa/lpc_ich9.c
index 0b6cf6f0dd..71de9cf1ad 100644
--- a/hw/isa/lpc_ich9.c
+++ b/hw/isa/lpc_ich9.c
@@ -630,9 +630,7 @@ static void ich9_lpc_get_sci_int(Object *obj, Visitor *v, 
const char *name,
  void *opaque, Error **errp)
 {
 ICH9LPCState *lpc = ICH9_LPC_DEVICE(obj);
-uint32_t value = lpc->sci_gsi;
-
-visit_type_uint32(v, name, , errp);
+visit_type_uint8(v, name, >sci_gsi, errp);
 }
 
 static void ich9_lpc_add_properties(ICH9LPCState *lpc)
@@ -640,7 +638,7 @@ static void ich9_lpc_add_properties(ICH9LPCState *lpc)
 static const uint8_t acpi_enable_cmd = ICH9_APM_ACPI_ENABLE;
 static const uint8_t acpi_disable_cmd = ICH9_APM_ACPI_DISABLE;
 
-object_property_add(OBJECT(lpc), ACPI_PM_PROP_SCI_INT, "uint32",
+object_property_add(OBJECT(lpc), ACPI_PM_PROP_SCI_INT, "uint8",
 ich9_lpc_get_sci_int,
 NULL, NULL, NULL, NULL);
 object_property_add_uint8_ptr(OBJECT(lpc), ACPI_PM_PROP_ACPI_ENABLE_CMD,
-- 
2.20.1




Re: [PATCH 2/4] ich9: fix getter type for sci_int property

2019-11-26 Thread Felipe Franciosi
Hi

> On Nov 25, 2019, at 4:43 PM, Philippe Mathieu-Daudé  wrote:
> 
> On 11/25/19 4:36 PM, Felipe Franciosi wrote:
>> When QOM APIs were added to ich9 in 6f1426ab, the getter for sci_int was
>> written using uint32_t. However, the object property is uint8_t. This
>> fixes the getter for correctness.
>> Signed-off-by: Felipe Franciosi 
>> ---
>>  hw/isa/lpc_ich9.c | 6 +++---
>>  1 file changed, 3 insertions(+), 3 deletions(-)
>> diff --git a/hw/isa/lpc_ich9.c b/hw/isa/lpc_ich9.c
>> index ce3342..240979885d 100644
>> --- a/hw/isa/lpc_ich9.c
>> +++ b/hw/isa/lpc_ich9.c
>> @@ -631,9 +631,9 @@ static void ich9_lpc_get_sci_int(Object *obj, Visitor 
>> *v, const char *name,
>>   void *opaque, Error **errp)
>>  {
>>  ICH9LPCState *lpc = ICH9_LPC_DEVICE(obj);
>> -uint32_t value = lpc->sci_gsi;
>> +uint8_t value = lpc->sci_gsi;
>>  -visit_type_uint32(v, name, , errp);
>> +visit_type_uint8(v, name, , errp);
> 
> Maybe directly as:
> 
>   visit_type_uint8(v, name, >sci_gsi, errp);
> 

Thanks for the suggestion. I'll improve it on a v2 which I'm sending
out anyway for other reasons.

For my own sake: why is the field called "sci_gsi", but
ACPI_PM_PROP_SCI_INT (and the getter) are called "sci_int"?

Thanks,
F.

> With/without stack variable:
> Reviewed-by: Philippe Mathieu-Daudé 
> 
>>  }
>>static void ich9_lpc_add_properties(ICH9LPCState *lpc)
>> @@ -641,7 +641,7 @@ static void ich9_lpc_add_properties(ICH9LPCState *lpc)
>>  static const uint8_t acpi_enable_cmd = ICH9_APM_ACPI_ENABLE;
>>  static const uint8_t acpi_disable_cmd = ICH9_APM_ACPI_DISABLE;
>>  -object_property_add(OBJECT(lpc), ACPI_PM_PROP_SCI_INT, "uint32",
>> +object_property_add(OBJECT(lpc), ACPI_PM_PROP_SCI_INT, "uint8",
>>  ich9_lpc_get_sci_int,
>>  NULL, NULL, NULL, NULL);
>>  object_property_add_uint8_ptr(OBJECT(lpc), ACPI_PM_PROP_ACPI_ENABLE_CMD,
> 



Re: [PATCH 2/4] ich9: fix getter type for sci_int property

2019-11-26 Thread Marc-André Lureau
On Mon, Nov 25, 2019 at 7:37 PM Felipe Franciosi  wrote:
>
> When QOM APIs were added to ich9 in 6f1426ab, the getter for sci_int was
> written using uint32_t. However, the object property is uint8_t. This
> fixes the getter for correctness.
>
> Signed-off-by: Felipe Franciosi 

Good catch! (I have a few like that in a series pending. This one I didn't spot)

Reviewed-by: Marc-André Lureau 


thanks


> ---
>  hw/isa/lpc_ich9.c | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/hw/isa/lpc_ich9.c b/hw/isa/lpc_ich9.c
> index ce3342..240979885d 100644
> --- a/hw/isa/lpc_ich9.c
> +++ b/hw/isa/lpc_ich9.c
> @@ -631,9 +631,9 @@ static void ich9_lpc_get_sci_int(Object *obj, Visitor *v, 
> const char *name,
>   void *opaque, Error **errp)
>  {
>  ICH9LPCState *lpc = ICH9_LPC_DEVICE(obj);
> -uint32_t value = lpc->sci_gsi;
> +uint8_t value = lpc->sci_gsi;
>
> -visit_type_uint32(v, name, , errp);
> +visit_type_uint8(v, name, , errp);
>  }
>
>  static void ich9_lpc_add_properties(ICH9LPCState *lpc)
> @@ -641,7 +641,7 @@ static void ich9_lpc_add_properties(ICH9LPCState *lpc)
>  static const uint8_t acpi_enable_cmd = ICH9_APM_ACPI_ENABLE;
>  static const uint8_t acpi_disable_cmd = ICH9_APM_ACPI_DISABLE;
>
> -object_property_add(OBJECT(lpc), ACPI_PM_PROP_SCI_INT, "uint32",
> +object_property_add(OBJECT(lpc), ACPI_PM_PROP_SCI_INT, "uint8",
>  ich9_lpc_get_sci_int,
>  NULL, NULL, NULL, NULL);
>  object_property_add_uint8_ptr(OBJECT(lpc), ACPI_PM_PROP_ACPI_ENABLE_CMD,
> --
> 2.20.1
>


--
Marc-André Lureau



Re: [PATCH 2/4] ich9: fix getter type for sci_int property

2019-11-25 Thread Philippe Mathieu-Daudé

On 11/25/19 4:36 PM, Felipe Franciosi wrote:

When QOM APIs were added to ich9 in 6f1426ab, the getter for sci_int was
written using uint32_t. However, the object property is uint8_t. This
fixes the getter for correctness.

Signed-off-by: Felipe Franciosi 
---
  hw/isa/lpc_ich9.c | 6 +++---
  1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/hw/isa/lpc_ich9.c b/hw/isa/lpc_ich9.c
index ce3342..240979885d 100644
--- a/hw/isa/lpc_ich9.c
+++ b/hw/isa/lpc_ich9.c
@@ -631,9 +631,9 @@ static void ich9_lpc_get_sci_int(Object *obj, Visitor *v, 
const char *name,
   void *opaque, Error **errp)
  {
  ICH9LPCState *lpc = ICH9_LPC_DEVICE(obj);
-uint32_t value = lpc->sci_gsi;
+uint8_t value = lpc->sci_gsi;
  
-visit_type_uint32(v, name, , errp);

+visit_type_uint8(v, name, , errp);


Maybe directly as:

   visit_type_uint8(v, name, >sci_gsi, errp);

With/without stack variable:
Reviewed-by: Philippe Mathieu-Daudé 


  }
  
  static void ich9_lpc_add_properties(ICH9LPCState *lpc)

@@ -641,7 +641,7 @@ static void ich9_lpc_add_properties(ICH9LPCState *lpc)
  static const uint8_t acpi_enable_cmd = ICH9_APM_ACPI_ENABLE;
  static const uint8_t acpi_disable_cmd = ICH9_APM_ACPI_DISABLE;
  
-object_property_add(OBJECT(lpc), ACPI_PM_PROP_SCI_INT, "uint32",

+object_property_add(OBJECT(lpc), ACPI_PM_PROP_SCI_INT, "uint8",
  ich9_lpc_get_sci_int,
  NULL, NULL, NULL, NULL);
  object_property_add_uint8_ptr(OBJECT(lpc), ACPI_PM_PROP_ACPI_ENABLE_CMD,






[PATCH 2/4] ich9: fix getter type for sci_int property

2019-11-25 Thread Felipe Franciosi
When QOM APIs were added to ich9 in 6f1426ab, the getter for sci_int was
written using uint32_t. However, the object property is uint8_t. This
fixes the getter for correctness.

Signed-off-by: Felipe Franciosi 
---
 hw/isa/lpc_ich9.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/hw/isa/lpc_ich9.c b/hw/isa/lpc_ich9.c
index ce3342..240979885d 100644
--- a/hw/isa/lpc_ich9.c
+++ b/hw/isa/lpc_ich9.c
@@ -631,9 +631,9 @@ static void ich9_lpc_get_sci_int(Object *obj, Visitor *v, 
const char *name,
  void *opaque, Error **errp)
 {
 ICH9LPCState *lpc = ICH9_LPC_DEVICE(obj);
-uint32_t value = lpc->sci_gsi;
+uint8_t value = lpc->sci_gsi;
 
-visit_type_uint32(v, name, , errp);
+visit_type_uint8(v, name, , errp);
 }
 
 static void ich9_lpc_add_properties(ICH9LPCState *lpc)
@@ -641,7 +641,7 @@ static void ich9_lpc_add_properties(ICH9LPCState *lpc)
 static const uint8_t acpi_enable_cmd = ICH9_APM_ACPI_ENABLE;
 static const uint8_t acpi_disable_cmd = ICH9_APM_ACPI_DISABLE;
 
-object_property_add(OBJECT(lpc), ACPI_PM_PROP_SCI_INT, "uint32",
+object_property_add(OBJECT(lpc), ACPI_PM_PROP_SCI_INT, "uint8",
 ich9_lpc_get_sci_int,
 NULL, NULL, NULL, NULL);
 object_property_add_uint8_ptr(OBJECT(lpc), ACPI_PM_PROP_ACPI_ENABLE_CMD,
-- 
2.20.1