diff mbox

[2/4] acpi/gpe: expand bits of gpe register

Message ID 1369194397-608-3-git-send-email-lig.fnst@cn.fujitsu.com
State New
Headers show

Commit Message

liguang May 22, 2013, 3:46 a.m. UTC
Signed-off-by: liguang <lig.fnst@cn.fujitsu.com>
---
 hw/acpi/core.c         |    8 ++++----
 hw/acpi/ich9.c         |    2 +-
 hw/acpi/piix4.c        |    2 +-
 include/hw/acpi/acpi.h |    4 ++--
 4 files changed, 8 insertions(+), 8 deletions(-)

Comments

Isaku Yamahata May 22, 2013, 5:28 a.m. UTC | #1
Why?
And it breaks pointer operation like

>          cur = ar->gpe.sts + addr;

thanks,

On Wed, May 22, 2013 at 11:46:35AM +0800, liguang wrote:
> Signed-off-by: liguang <lig.fnst@cn.fujitsu.com>
> ---
>  hw/acpi/core.c         |    8 ++++----
>  hw/acpi/ich9.c         |    2 +-
>  hw/acpi/piix4.c        |    2 +-
>  include/hw/acpi/acpi.h |    4 ++--
>  4 files changed, 8 insertions(+), 8 deletions(-)
> 
> diff --git a/hw/acpi/core.c b/hw/acpi/core.c
> index 42eeace..38ddeb8 100644
> --- a/hw/acpi/core.c
> +++ b/hw/acpi/core.c
> @@ -575,9 +575,9 @@ void acpi_gpe_reset(ACPIREGS *ar)
>      memset(ar->gpe.en, 0, ar->gpe.len / 2);
>  }
>  
> -static uint8_t *acpi_gpe_ioport_get_ptr(ACPIREGS *ar, uint32_t addr)
> +static uint32_t *acpi_gpe_ioport_get_ptr(ACPIREGS *ar, uint32_t addr)
>  {
> -    uint8_t *cur = NULL;
> +    uint32_t *cur = NULL;
>  
>      if (addr < ar->gpe.len / 2) {
>          cur = ar->gpe.sts + addr;
> @@ -592,7 +592,7 @@ static uint8_t *acpi_gpe_ioport_get_ptr(ACPIREGS *ar, uint32_t addr)
>  
>  void acpi_gpe_ioport_writeb(ACPIREGS *ar, uint32_t addr, uint32_t val)
>  {
> -    uint8_t *cur;
> +    uint32_t *cur;
>  
>      cur = acpi_gpe_ioport_get_ptr(ar, addr);
>      if (addr < ar->gpe.len / 2) {
> @@ -608,7 +608,7 @@ void acpi_gpe_ioport_writeb(ACPIREGS *ar, uint32_t addr, uint32_t val)
>  
>  uint32_t acpi_gpe_ioport_readb(ACPIREGS *ar, uint32_t addr)
>  {
> -    uint8_t *cur;
> +    uint32_t *cur;
>      uint32_t val;
>  
>      cur = acpi_gpe_ioport_get_ptr(ar, addr);
> diff --git a/hw/acpi/ich9.c b/hw/acpi/ich9.c
> index 4a17f32..582dbec 100644
> --- a/hw/acpi/ich9.c
> +++ b/hw/acpi/ich9.c
> @@ -153,7 +153,7 @@ static int ich9_pm_post_load(void *opaque, int version_id)
>       .info       = &vmstate_info_uint8,                              \
>       .size       = sizeof(uint8_t),                                  \
>       .flags      = VMS_ARRAY | VMS_POINTER,                          \
> -     .offset     = vmstate_offset_pointer(_state, _field, uint8_t),  \
> +     .offset     = vmstate_offset_pointer(_state, _field, uint32_t),  \
>   }
>  
>  const VMStateDescription vmstate_ich9_pm = {
> diff --git a/hw/acpi/piix4.c b/hw/acpi/piix4.c
> index c4af1cc..3a7b669 100644
> --- a/hw/acpi/piix4.c
> +++ b/hw/acpi/piix4.c
> @@ -205,7 +205,7 @@ static int vmstate_acpi_post_load(void *opaque, int version_id)
>       .info       = &vmstate_info_uint16,                             \
>       .size       = sizeof(uint16_t),                                 \
>       .flags      = VMS_SINGLE | VMS_POINTER,                         \
> -     .offset     = vmstate_offset_pointer(_state, _field, uint8_t),  \
> +     .offset     = vmstate_offset_pointer(_state, _field, uint32_t),  \
>   }
>  
>  static const VMStateDescription vmstate_gpe = {
> diff --git a/include/hw/acpi/acpi.h b/include/hw/acpi/acpi.h
> index 635be7b..deca3ce 100644
> --- a/include/hw/acpi/acpi.h
> +++ b/include/hw/acpi/acpi.h
> @@ -112,8 +112,8 @@ struct ACPIPM1CNT {
>  struct ACPIGPE {
>      uint8_t len;
>  
> -    uint8_t *sts;
> -    uint8_t *en;
> +    uint32_t *sts;
> +    uint32_t *en;
>  };
>  
>  struct ACPIREGS {
> -- 
> 1.7.2.5
>
liguang May 22, 2013, 5:37 a.m. UTC | #2
在 2013-05-22三的 14:28 +0900,Isaku Yamahata写道:
> Why?
> And it breaks pointer operation like

the fact is I can't guess why gpe->sts is defined uint8_t 
but the real hardware is 32-bit width.
I expand it to 32 because the future usage for me will 
access bit beyond 8.
of course, I can keep it, but I don't if I can
violate the bit usage indication of this register.

> 
> >          cur = ar->gpe.sts + addr;
> 
> thanks,
> 
> On Wed, May 22, 2013 at 11:46:35AM +0800, liguang wrote:
> > Signed-off-by: liguang <lig.fnst@cn.fujitsu.com>
> > ---
> >  hw/acpi/core.c         |    8 ++++----
> >  hw/acpi/ich9.c         |    2 +-
> >  hw/acpi/piix4.c        |    2 +-
> >  include/hw/acpi/acpi.h |    4 ++--
> >  4 files changed, 8 insertions(+), 8 deletions(-)
> > 
> > diff --git a/hw/acpi/core.c b/hw/acpi/core.c
> > index 42eeace..38ddeb8 100644
> > --- a/hw/acpi/core.c
> > +++ b/hw/acpi/core.c
> > @@ -575,9 +575,9 @@ void acpi_gpe_reset(ACPIREGS *ar)
> >      memset(ar->gpe.en, 0, ar->gpe.len / 2);
> >  }
> >  
> > -static uint8_t *acpi_gpe_ioport_get_ptr(ACPIREGS *ar, uint32_t addr)
> > +static uint32_t *acpi_gpe_ioport_get_ptr(ACPIREGS *ar, uint32_t addr)
> >  {
> > -    uint8_t *cur = NULL;
> > +    uint32_t *cur = NULL;
> >  
> >      if (addr < ar->gpe.len / 2) {
> >          cur = ar->gpe.sts + addr;
> > @@ -592,7 +592,7 @@ static uint8_t *acpi_gpe_ioport_get_ptr(ACPIREGS *ar, uint32_t addr)
> >  
> >  void acpi_gpe_ioport_writeb(ACPIREGS *ar, uint32_t addr, uint32_t val)
> >  {
> > -    uint8_t *cur;
> > +    uint32_t *cur;
> >  
> >      cur = acpi_gpe_ioport_get_ptr(ar, addr);
> >      if (addr < ar->gpe.len / 2) {
> > @@ -608,7 +608,7 @@ void acpi_gpe_ioport_writeb(ACPIREGS *ar, uint32_t addr, uint32_t val)
> >  
> >  uint32_t acpi_gpe_ioport_readb(ACPIREGS *ar, uint32_t addr)
> >  {
> > -    uint8_t *cur;
> > +    uint32_t *cur;
> >      uint32_t val;
> >  
> >      cur = acpi_gpe_ioport_get_ptr(ar, addr);
> > diff --git a/hw/acpi/ich9.c b/hw/acpi/ich9.c
> > index 4a17f32..582dbec 100644
> > --- a/hw/acpi/ich9.c
> > +++ b/hw/acpi/ich9.c
> > @@ -153,7 +153,7 @@ static int ich9_pm_post_load(void *opaque, int version_id)
> >       .info       = &vmstate_info_uint8,                              \
> >       .size       = sizeof(uint8_t),                                  \
> >       .flags      = VMS_ARRAY | VMS_POINTER,                          \
> > -     .offset     = vmstate_offset_pointer(_state, _field, uint8_t),  \
> > +     .offset     = vmstate_offset_pointer(_state, _field, uint32_t),  \
> >   }
> >  
> >  const VMStateDescription vmstate_ich9_pm = {
> > diff --git a/hw/acpi/piix4.c b/hw/acpi/piix4.c
> > index c4af1cc..3a7b669 100644
> > --- a/hw/acpi/piix4.c
> > +++ b/hw/acpi/piix4.c
> > @@ -205,7 +205,7 @@ static int vmstate_acpi_post_load(void *opaque, int version_id)
> >       .info       = &vmstate_info_uint16,                             \
> >       .size       = sizeof(uint16_t),                                 \
> >       .flags      = VMS_SINGLE | VMS_POINTER,                         \
> > -     .offset     = vmstate_offset_pointer(_state, _field, uint8_t),  \
> > +     .offset     = vmstate_offset_pointer(_state, _field, uint32_t),  \
> >   }
> >  
> >  static const VMStateDescription vmstate_gpe = {
> > diff --git a/include/hw/acpi/acpi.h b/include/hw/acpi/acpi.h
> > index 635be7b..deca3ce 100644
> > --- a/include/hw/acpi/acpi.h
> > +++ b/include/hw/acpi/acpi.h
> > @@ -112,8 +112,8 @@ struct ACPIPM1CNT {
> >  struct ACPIGPE {
> >      uint8_t len;
> >  
> > -    uint8_t *sts;
> > -    uint8_t *en;
> > +    uint32_t *sts;
> > +    uint32_t *en;
> >  };
> >  
> >  struct ACPIREGS {
> > -- 
> > 1.7.2.5
> > 
>
Isaku Yamahata May 24, 2013, 1:24 a.m. UTC | #3
On Wed, May 22, 2013 at 01:37:41PM +0800, li guang wrote:
> 在 2013-05-22三的 14:28 +0900,Isaku Yamahata写道:
> > Why?
> > And it breaks pointer operation like
> 
> the fact is I can't guess why gpe->sts is defined uint8_t 
> but the real hardware is 32-bit width.

Which section of ACPI spec?


> I expand it to 32 because the future usage for me will 
> access bit beyond 8.
> of course, I can keep it, but I don't if I can
> violate the bit usage indication of this register.

I don't have strong opinion wheter uint8_t or uint32_t.
But the current patch is broken as the pointer offset 
operation needs to be fixed.

thanks,

> > >          cur = ar->gpe.sts + addr;
> > 
> > thanks,
> > 
> > On Wed, May 22, 2013 at 11:46:35AM +0800, liguang wrote:
> > > Signed-off-by: liguang <lig.fnst@cn.fujitsu.com>
> > > ---
> > >  hw/acpi/core.c         |    8 ++++----
> > >  hw/acpi/ich9.c         |    2 +-
> > >  hw/acpi/piix4.c        |    2 +-
> > >  include/hw/acpi/acpi.h |    4 ++--
> > >  4 files changed, 8 insertions(+), 8 deletions(-)
> > > 
> > > diff --git a/hw/acpi/core.c b/hw/acpi/core.c
> > > index 42eeace..38ddeb8 100644
> > > --- a/hw/acpi/core.c
> > > +++ b/hw/acpi/core.c
> > > @@ -575,9 +575,9 @@ void acpi_gpe_reset(ACPIREGS *ar)
> > >      memset(ar->gpe.en, 0, ar->gpe.len / 2);
> > >  }
> > >  
> > > -static uint8_t *acpi_gpe_ioport_get_ptr(ACPIREGS *ar, uint32_t addr)
> > > +static uint32_t *acpi_gpe_ioport_get_ptr(ACPIREGS *ar, uint32_t addr)
> > >  {
> > > -    uint8_t *cur = NULL;
> > > +    uint32_t *cur = NULL;
> > >  
> > >      if (addr < ar->gpe.len / 2) {
> > >          cur = ar->gpe.sts + addr;
> > > @@ -592,7 +592,7 @@ static uint8_t *acpi_gpe_ioport_get_ptr(ACPIREGS *ar, uint32_t addr)
> > >  
> > >  void acpi_gpe_ioport_writeb(ACPIREGS *ar, uint32_t addr, uint32_t val)
> > >  {
> > > -    uint8_t *cur;
> > > +    uint32_t *cur;
> > >  
> > >      cur = acpi_gpe_ioport_get_ptr(ar, addr);
> > >      if (addr < ar->gpe.len / 2) {
> > > @@ -608,7 +608,7 @@ void acpi_gpe_ioport_writeb(ACPIREGS *ar, uint32_t addr, uint32_t val)
> > >  
> > >  uint32_t acpi_gpe_ioport_readb(ACPIREGS *ar, uint32_t addr)
> > >  {
> > > -    uint8_t *cur;
> > > +    uint32_t *cur;
> > >      uint32_t val;
> > >  
> > >      cur = acpi_gpe_ioport_get_ptr(ar, addr);
> > > diff --git a/hw/acpi/ich9.c b/hw/acpi/ich9.c
> > > index 4a17f32..582dbec 100644
> > > --- a/hw/acpi/ich9.c
> > > +++ b/hw/acpi/ich9.c
> > > @@ -153,7 +153,7 @@ static int ich9_pm_post_load(void *opaque, int version_id)
> > >       .info       = &vmstate_info_uint8,                              \
> > >       .size       = sizeof(uint8_t),                                  \
> > >       .flags      = VMS_ARRAY | VMS_POINTER,                          \
> > > -     .offset     = vmstate_offset_pointer(_state, _field, uint8_t),  \
> > > +     .offset     = vmstate_offset_pointer(_state, _field, uint32_t),  \
> > >   }
> > >  
> > >  const VMStateDescription vmstate_ich9_pm = {
> > > diff --git a/hw/acpi/piix4.c b/hw/acpi/piix4.c
> > > index c4af1cc..3a7b669 100644
> > > --- a/hw/acpi/piix4.c
> > > +++ b/hw/acpi/piix4.c
> > > @@ -205,7 +205,7 @@ static int vmstate_acpi_post_load(void *opaque, int version_id)
> > >       .info       = &vmstate_info_uint16,                             \
> > >       .size       = sizeof(uint16_t),                                 \
> > >       .flags      = VMS_SINGLE | VMS_POINTER,                         \
> > > -     .offset     = vmstate_offset_pointer(_state, _field, uint8_t),  \
> > > +     .offset     = vmstate_offset_pointer(_state, _field, uint32_t),  \
> > >   }
> > >  
> > >  static const VMStateDescription vmstate_gpe = {
> > > diff --git a/include/hw/acpi/acpi.h b/include/hw/acpi/acpi.h
> > > index 635be7b..deca3ce 100644
> > > --- a/include/hw/acpi/acpi.h
> > > +++ b/include/hw/acpi/acpi.h
> > > @@ -112,8 +112,8 @@ struct ACPIPM1CNT {
> > >  struct ACPIGPE {
> > >      uint8_t len;
> > >  
> > > -    uint8_t *sts;
> > > -    uint8_t *en;
> > > +    uint32_t *sts;
> > > +    uint32_t *en;
> > >  };
> > >  
> > >  struct ACPIREGS {
> > > -- 
> > > 1.7.2.5
> > > 
> > 
> 
>
liguang May 24, 2013, 2:02 a.m. UTC | #4
在 2013-05-24五的 10:24 +0900,Isaku Yamahata写道:
> On Wed, May 22, 2013 at 01:37:41PM +0800, li guang wrote:
> > 在 2013-05-22三的 14:28 +0900,Isaku Yamahata写道:
> > > Why?
> > > And it breaks pointer operation like
> > 
> > the fact is I can't guess why gpe->sts is defined uint8_t 
> > but the real hardware is 32-bit width.
> 
> Which section of ACPI spec?

seems ACPI SPEC does not define the length,
but, real hardware does, e.g. ICH9.

> 
> 
> > I expand it to 32 because the future usage for me will 
> > access bit beyond 8.
> > of course, I can keep it, but I don't if I can
> > violate the bit usage indication of this register.
> 
> I don't have strong opinion wheter uint8_t or uint32_t.
> But the current patch is broken as the pointer offset 
> operation needs to be fixed.

Yes, I'll fix later

Thanks!

> 
> > > >          cur = ar->gpe.sts + addr;
> > > 
> > > thanks,
> > > 
> > > On Wed, May 22, 2013 at 11:46:35AM +0800, liguang wrote:
> > > > Signed-off-by: liguang <lig.fnst@cn.fujitsu.com>
> > > > ---
> > > >  hw/acpi/core.c         |    8 ++++----
> > > >  hw/acpi/ich9.c         |    2 +-
> > > >  hw/acpi/piix4.c        |    2 +-
> > > >  include/hw/acpi/acpi.h |    4 ++--
> > > >  4 files changed, 8 insertions(+), 8 deletions(-)
> > > > 
> > > > diff --git a/hw/acpi/core.c b/hw/acpi/core.c
> > > > index 42eeace..38ddeb8 100644
> > > > --- a/hw/acpi/core.c
> > > > +++ b/hw/acpi/core.c
> > > > @@ -575,9 +575,9 @@ void acpi_gpe_reset(ACPIREGS *ar)
> > > >      memset(ar->gpe.en, 0, ar->gpe.len / 2);
> > > >  }
> > > >  
> > > > -static uint8_t *acpi_gpe_ioport_get_ptr(ACPIREGS *ar, uint32_t addr)
> > > > +static uint32_t *acpi_gpe_ioport_get_ptr(ACPIREGS *ar, uint32_t addr)
> > > >  {
> > > > -    uint8_t *cur = NULL;
> > > > +    uint32_t *cur = NULL;
> > > >  
> > > >      if (addr < ar->gpe.len / 2) {
> > > >          cur = ar->gpe.sts + addr;
> > > > @@ -592,7 +592,7 @@ static uint8_t *acpi_gpe_ioport_get_ptr(ACPIREGS *ar, uint32_t addr)
> > > >  
> > > >  void acpi_gpe_ioport_writeb(ACPIREGS *ar, uint32_t addr, uint32_t val)
> > > >  {
> > > > -    uint8_t *cur;
> > > > +    uint32_t *cur;
> > > >  
> > > >      cur = acpi_gpe_ioport_get_ptr(ar, addr);
> > > >      if (addr < ar->gpe.len / 2) {
> > > > @@ -608,7 +608,7 @@ void acpi_gpe_ioport_writeb(ACPIREGS *ar, uint32_t addr, uint32_t val)
> > > >  
> > > >  uint32_t acpi_gpe_ioport_readb(ACPIREGS *ar, uint32_t addr)
> > > >  {
> > > > -    uint8_t *cur;
> > > > +    uint32_t *cur;
> > > >      uint32_t val;
> > > >  
> > > >      cur = acpi_gpe_ioport_get_ptr(ar, addr);
> > > > diff --git a/hw/acpi/ich9.c b/hw/acpi/ich9.c
> > > > index 4a17f32..582dbec 100644
> > > > --- a/hw/acpi/ich9.c
> > > > +++ b/hw/acpi/ich9.c
> > > > @@ -153,7 +153,7 @@ static int ich9_pm_post_load(void *opaque, int version_id)
> > > >       .info       = &vmstate_info_uint8,                              \
> > > >       .size       = sizeof(uint8_t),                                  \
> > > >       .flags      = VMS_ARRAY | VMS_POINTER,                          \
> > > > -     .offset     = vmstate_offset_pointer(_state, _field, uint8_t),  \
> > > > +     .offset     = vmstate_offset_pointer(_state, _field, uint32_t),  \
> > > >   }
> > > >  
> > > >  const VMStateDescription vmstate_ich9_pm = {
> > > > diff --git a/hw/acpi/piix4.c b/hw/acpi/piix4.c
> > > > index c4af1cc..3a7b669 100644
> > > > --- a/hw/acpi/piix4.c
> > > > +++ b/hw/acpi/piix4.c
> > > > @@ -205,7 +205,7 @@ static int vmstate_acpi_post_load(void *opaque, int version_id)
> > > >       .info       = &vmstate_info_uint16,                             \
> > > >       .size       = sizeof(uint16_t),                                 \
> > > >       .flags      = VMS_SINGLE | VMS_POINTER,                         \
> > > > -     .offset     = vmstate_offset_pointer(_state, _field, uint8_t),  \
> > > > +     .offset     = vmstate_offset_pointer(_state, _field, uint32_t),  \
> > > >   }
> > > >  
> > > >  static const VMStateDescription vmstate_gpe = {
> > > > diff --git a/include/hw/acpi/acpi.h b/include/hw/acpi/acpi.h
> > > > index 635be7b..deca3ce 100644
> > > > --- a/include/hw/acpi/acpi.h
> > > > +++ b/include/hw/acpi/acpi.h
> > > > @@ -112,8 +112,8 @@ struct ACPIPM1CNT {
> > > >  struct ACPIGPE {
> > > >      uint8_t len;
> > > >  
> > > > -    uint8_t *sts;
> > > > -    uint8_t *en;
> > > > +    uint32_t *sts;
> > > > +    uint32_t *en;
> > > >  };
> > > >  
> > > >  struct ACPIREGS {
> > > > -- 
> > > > 1.7.2.5
> > > > 
> > > 
> > 
> > 
>
Gerd Hoffmann May 27, 2013, 9 a.m. UTC | #5
On 05/24/13 04:02, li guang wrote:
> 在 2013-05-24五的 10:24 +0900,Isaku Yamahata写道:
>> On Wed, May 22, 2013 at 01:37:41PM +0800, li guang wrote:
>>> 在 2013-05-22三的 14:28 +0900,Isaku Yamahata写道:
>>>> Why?
>>>> And it breaks pointer operation like
>>>
>>> the fact is I can't guess why gpe->sts is defined uint8_t 
>>> but the real hardware is 32-bit width.
>>
>> Which section of ACPI spec?
> 
> seems ACPI SPEC does not define the length,
> but, real hardware does, e.g. ICH9.

Still fail to see what exactly you are trying to fix.

qemu can continue work with uint8_t internally just fine.  memory api
will split dword access by guests into 4 byte accesses.  ich9_gpe_ops
looks correct.

>>> I expand it to 32 because the future usage for me will 
>>> access bit beyond 8.

gpe->sts is an array, so you already have more than 8 bits.

>> I don't have strong opinion wheter uint8_t or uint32_t.
>> But the current patch is broken as the pointer offset 
>> operation needs to be fixed.

Oh, and it breaks live migration too.

cheers,
  Gerd
Gerd Hoffmann May 27, 2013, 9:06 a.m. UTC | #6
On 05/24/13 04:02, li guang wrote:
> 在 2013-05-24五的 10:24 +0900,Isaku Yamahata写道:
>> On Wed, May 22, 2013 at 01:37:41PM +0800, li guang wrote:
>>> 在 2013-05-22三的 14:28 +0900,Isaku Yamahata写道:
>>>> Why?
>>>> And it breaks pointer operation like
>>>
>>> the fact is I can't guess why gpe->sts is defined uint8_t 
>>> but the real hardware is 32-bit width.
>>
>> Which section of ACPI spec?
> 
> seems ACPI SPEC does not define the length,
> but, real hardware does, e.g. ICH9.

Still fail to see what exactly you are trying to fix.

qemu can continue work with uint8_t internally just fine.  memory api
will split dword access by guests into 4 byte accesses.  ich9_gpe_ops
looks correct.

>>> I expand it to 32 because the future usage for me will 
>>> access bit beyond 8.

gpe->sts is an array, so you already have more than 8 bits.

>> I don't have strong opinion wheter uint8_t or uint32_t.
>> But the current patch is broken as the pointer offset 
>> operation needs to be fixed.

Oh, and it breaks live migration too.

cheers,
  Gerd
liguang May 28, 2013, 12:32 a.m. UTC | #7
在 2013-05-27一的 11:00 +0200,Gerd Hoffmann写道:
> On 05/24/13 04:02, li guang wrote:
> > 在 2013-05-24五的 10:24 +0900,Isaku Yamahata写道:
> >> On Wed, May 22, 2013 at 01:37:41PM +0800, li guang wrote:
> >>> 在 2013-05-22三的 14:28 +0900,Isaku Yamahata写道:
> >>>> Why?
> >>>> And it breaks pointer operation like
> >>>
> >>> the fact is I can't guess why gpe->sts is defined uint8_t 
> >>> but the real hardware is 32-bit width.
> >>
> >> Which section of ACPI spec?
> > 
> > seems ACPI SPEC does not define the length,
> > but, real hardware does, e.g. ICH9.
> 
> Still fail to see what exactly you are trying to fix.
> 
> qemu can continue work with uint8_t internally just fine.  memory api
> will split dword access by guests into 4 byte accesses.  ich9_gpe_ops
> looks correct.
> 
> >>> I expand it to 32 because the future usage for me will 
> >>> access bit beyond 8.
> 
> gpe->sts is an array, so you already have more than 8 bits.
> 
> >> I don't have strong opinion wheter uint8_t or uint32_t.
> >> But the current patch is broken as the pointer offset 
> >> operation needs to be fixed.
> 
> Oh, and it breaks live migration too.
> 

Yes, I will re-consider this.

Thanks!
diff mbox

Patch

diff --git a/hw/acpi/core.c b/hw/acpi/core.c
index 42eeace..38ddeb8 100644
--- a/hw/acpi/core.c
+++ b/hw/acpi/core.c
@@ -575,9 +575,9 @@  void acpi_gpe_reset(ACPIREGS *ar)
     memset(ar->gpe.en, 0, ar->gpe.len / 2);
 }
 
-static uint8_t *acpi_gpe_ioport_get_ptr(ACPIREGS *ar, uint32_t addr)
+static uint32_t *acpi_gpe_ioport_get_ptr(ACPIREGS *ar, uint32_t addr)
 {
-    uint8_t *cur = NULL;
+    uint32_t *cur = NULL;
 
     if (addr < ar->gpe.len / 2) {
         cur = ar->gpe.sts + addr;
@@ -592,7 +592,7 @@  static uint8_t *acpi_gpe_ioport_get_ptr(ACPIREGS *ar, uint32_t addr)
 
 void acpi_gpe_ioport_writeb(ACPIREGS *ar, uint32_t addr, uint32_t val)
 {
-    uint8_t *cur;
+    uint32_t *cur;
 
     cur = acpi_gpe_ioport_get_ptr(ar, addr);
     if (addr < ar->gpe.len / 2) {
@@ -608,7 +608,7 @@  void acpi_gpe_ioport_writeb(ACPIREGS *ar, uint32_t addr, uint32_t val)
 
 uint32_t acpi_gpe_ioport_readb(ACPIREGS *ar, uint32_t addr)
 {
-    uint8_t *cur;
+    uint32_t *cur;
     uint32_t val;
 
     cur = acpi_gpe_ioport_get_ptr(ar, addr);
diff --git a/hw/acpi/ich9.c b/hw/acpi/ich9.c
index 4a17f32..582dbec 100644
--- a/hw/acpi/ich9.c
+++ b/hw/acpi/ich9.c
@@ -153,7 +153,7 @@  static int ich9_pm_post_load(void *opaque, int version_id)
      .info       = &vmstate_info_uint8,                              \
      .size       = sizeof(uint8_t),                                  \
      .flags      = VMS_ARRAY | VMS_POINTER,                          \
-     .offset     = vmstate_offset_pointer(_state, _field, uint8_t),  \
+     .offset     = vmstate_offset_pointer(_state, _field, uint32_t),  \
  }
 
 const VMStateDescription vmstate_ich9_pm = {
diff --git a/hw/acpi/piix4.c b/hw/acpi/piix4.c
index c4af1cc..3a7b669 100644
--- a/hw/acpi/piix4.c
+++ b/hw/acpi/piix4.c
@@ -205,7 +205,7 @@  static int vmstate_acpi_post_load(void *opaque, int version_id)
      .info       = &vmstate_info_uint16,                             \
      .size       = sizeof(uint16_t),                                 \
      .flags      = VMS_SINGLE | VMS_POINTER,                         \
-     .offset     = vmstate_offset_pointer(_state, _field, uint8_t),  \
+     .offset     = vmstate_offset_pointer(_state, _field, uint32_t),  \
  }
 
 static const VMStateDescription vmstate_gpe = {
diff --git a/include/hw/acpi/acpi.h b/include/hw/acpi/acpi.h
index 635be7b..deca3ce 100644
--- a/include/hw/acpi/acpi.h
+++ b/include/hw/acpi/acpi.h
@@ -112,8 +112,8 @@  struct ACPIPM1CNT {
 struct ACPIGPE {
     uint8_t len;
 
-    uint8_t *sts;
-    uint8_t *en;
+    uint32_t *sts;
+    uint32_t *en;
 };
 
 struct ACPIREGS {