Re: [Qemu-devel] [PATCHv3 01/13] sparc32_dma: rename SPARC32_DMA type to SPARC32_DMA_DEVICE

2017-10-27 Thread Philippe Mathieu-Daudé
On 10/20/2017 09:39 AM, Mark Cave-Ayland wrote:
>>> Also update the function names to match as appropriate. While we're
>>> here rename the type from sparc32_dma to sparc32-dma in order to
>>> match the current QOM convention.
>>
>> Where can I read on the QOM convention?
> 
> The relevant documentation is in include/qom/object.h on line 937: "In
> general, you should use hyphens '-' instead of underscores '_' when
> naming properties.". Note that while the type name isn't strictly a
> property, I have been asked previously to change type names to use
> hyphens on submitted patches.

OK, thanks.

>>> -#define TYPE_SPARC32_DMA "sparc32_dma"
>>> -#define SPARC32_DMA(obj) OBJECT_CHECK(DMAState, (obj), TYPE_SPARC32_DMA)
>>> +#define TYPE_SPARC32_DMA_DEVICE "sparc32-dma-device"
>>> +#define SPARC32_DMA_DEVICE(obj) OBJECT_CHECK(DMADeviceState, (obj), \
>>
>> not sure this is an improvement.
> 
> Can you clarify this further? The patchset introduces a common
> SPARC32_DMA_DEVICE superclass which is intended to be the superclass for
> the le/esp devices. Later on in the patchset, the previous SPARC32_DMA
> object becomes a container effectively representing the memory region
> holding the DMA registers for these devices.

Fine :)

> 
>>> + TYPE_SPARC32_DMA_DEVICE)
[...]
>>> -dev = qdev_create(NULL, "sparc32_dma");
>>> +dev = qdev_create(NULL, "sparc32-dma-device");
>>
>> Can you use TYPE_SPARC32_DMA_DEVICE instead here?
> 
> No not at this point (you'll see I change this later in the patchset)
> because the type is still currently defined in sparc32_dma.c and hasn't
> (yet) been moved to sparc32_dma.h.

OK!



Re: [Qemu-devel] [PATCHv3 01/13] sparc32_dma: rename SPARC32_DMA type to SPARC32_DMA_DEVICE

2017-10-20 Thread Mark Cave-Ayland
On 19/10/17 05:26, Philippe Mathieu-Daudé wrote:

> Hi Mark,
> 
> On 10/14/2017 03:38 PM, Mark Cave-Ayland wrote:
>> Also update the function names to match as appropriate. While we're
>> here rename the type from sparc32_dma to sparc32-dma in order to
>> match the current QOM convention.
> 
> Where can I read on the QOM convention?

The relevant documentation is in include/qom/object.h on line 937: "In
general, you should use hyphens '-' instead of underscores '_' when
naming properties.". Note that while the type name isn't strictly a
property, I have been asked previously to change type names to use
hyphens on submitted patches.

>> Signed-off-by: Mark Cave-Ayland 
>> ---
>>  hw/dma/sparc32_dma.c |   67 
>> +-
>>  hw/sparc/sun4m.c |2 +-
>>  2 files changed, 35 insertions(+), 34 deletions(-)
>>
>> diff --git a/hw/dma/sparc32_dma.c b/hw/dma/sparc32_dma.c
>> index eb491b5..a8d31c1 100644
>> --- a/hw/dma/sparc32_dma.c
>> +++ b/hw/dma/sparc32_dma.c
>> @@ -61,12 +61,13 @@
>>  /* XXX SCSI and ethernet should have different read-only bit masks */
>>  #define DMA_CSR_RO_MASK 0xfe07
>>  
>> -#define TYPE_SPARC32_DMA "sparc32_dma"
>> -#define SPARC32_DMA(obj) OBJECT_CHECK(DMAState, (obj), TYPE_SPARC32_DMA)
>> +#define TYPE_SPARC32_DMA_DEVICE "sparc32-dma-device"
>> +#define SPARC32_DMA_DEVICE(obj) OBJECT_CHECK(DMADeviceState, (obj), \
> 
> not sure this is an improvement.

Can you clarify this further? The patchset introduces a common
SPARC32_DMA_DEVICE superclass which is intended to be the superclass for
the le/esp devices. Later on in the patchset, the previous SPARC32_DMA
object becomes a container effectively representing the memory region
holding the DMA registers for these devices.

>> + TYPE_SPARC32_DMA_DEVICE)
>>  
>> -typedef struct DMAState DMAState;
>> +typedef struct DMADeviceState DMADeviceState;
>>  
>> -struct DMAState {
>> +struct DMADeviceState {
>>  SysBusDevice parent_obj;
>>  
>>  MemoryRegion iomem;
>> @@ -86,7 +87,7 @@ enum {
>>  void ledma_memory_read(void *opaque, hwaddr addr,
>> uint8_t *buf, int len, int do_bswap)
>>  {
>> -DMAState *s = opaque;
>> +DMADeviceState *s = opaque;
>>  int i;
>>  
>>  addr |= s->dmaregs[3];
>> @@ -106,7 +107,7 @@ void ledma_memory_read(void *opaque, hwaddr addr,
>>  void ledma_memory_write(void *opaque, hwaddr addr,
>>  uint8_t *buf, int len, int do_bswap)
>>  {
>> -DMAState *s = opaque;
>> +DMADeviceState *s = opaque;
>>  int l, i;
>>  uint16_t tmp_buf[32];
>>  
>> @@ -134,7 +135,7 @@ void ledma_memory_write(void *opaque, hwaddr addr,
>>  
>>  static void dma_set_irq(void *opaque, int irq, int level)
>>  {
>> -DMAState *s = opaque;
>> +DMADeviceState *s = opaque;
>>  if (level) {
>>  s->dmaregs[0] |= DMA_INTR;
>>  if (s->dmaregs[0] & DMA_INTREN) {
>> @@ -154,7 +155,7 @@ static void dma_set_irq(void *opaque, int irq, int level)
>>  
>>  void espdma_memory_read(void *opaque, uint8_t *buf, int len)
>>  {
>> -DMAState *s = opaque;
>> +DMADeviceState *s = opaque;
>>  
>>  trace_espdma_memory_read(s->dmaregs[1]);
>>  sparc_iommu_memory_read(s->iommu, s->dmaregs[1], buf, len);
>> @@ -163,7 +164,7 @@ void espdma_memory_read(void *opaque, uint8_t *buf, int 
>> len)
>>  
>>  void espdma_memory_write(void *opaque, uint8_t *buf, int len)
>>  {
>> -DMAState *s = opaque;
>> +DMADeviceState *s = opaque;
>>  
>>  trace_espdma_memory_write(s->dmaregs[1]);
>>  sparc_iommu_memory_write(s->iommu, s->dmaregs[1], buf, len);
>> @@ -173,7 +174,7 @@ void espdma_memory_write(void *opaque, uint8_t *buf, int 
>> len)
>>  static uint64_t dma_mem_read(void *opaque, hwaddr addr,
>>   unsigned size)
>>  {
>> -DMAState *s = opaque;
>> +DMADeviceState *s = opaque;
>>  uint32_t saddr;
>>  
>>  if (s->is_ledma && (addr > DMA_MAX_REG_OFFSET)) {
>> @@ -190,7 +191,7 @@ static uint64_t dma_mem_read(void *opaque, hwaddr addr,
>>  static void dma_mem_write(void *opaque, hwaddr addr,
>>uint64_t val, unsigned size)
>>  {
>> -DMAState *s = opaque;
>> +DMADeviceState *s = opaque;
>>  uint32_t saddr;
>>  
>>  if (s->is_ledma && (addr > DMA_MAX_REG_OFFSET)) {
>> @@ -252,28 +253,28 @@ static const MemoryRegionOps dma_mem_ops = {
>>  },
>>  };
>>  
>> -static void dma_reset(DeviceState *d)
>> +static void sparc32_dma_device_reset(DeviceState *d)
>>  {
>> -DMAState *s = SPARC32_DMA(d);
>> +DMADeviceState *s = SPARC32_DMA_DEVICE(d);
>>  
>>  memset(s->dmaregs, 0, DMA_SIZE);
>>  s->dmaregs[0] = DMA_VER;
>>  }
>>  
>> -static const VMStateDescription vmstate_dma = {
>> +static const VMStateDescription vmstate_sparc32_dma_device = {
>>  .name ="sparc32_dma",
>>  .version_id = 2,
>>  .minimum_version_id = 2,
>>  

Re: [Qemu-devel] [PATCHv3 01/13] sparc32_dma: rename SPARC32_DMA type to SPARC32_DMA_DEVICE

2017-10-18 Thread Philippe Mathieu-Daudé
Hi Mark,

On 10/14/2017 03:38 PM, Mark Cave-Ayland wrote:
> Also update the function names to match as appropriate. While we're
> here rename the type from sparc32_dma to sparc32-dma in order to
> match the current QOM convention.

Where can I read on the QOM convention?

> 
> Signed-off-by: Mark Cave-Ayland 
> ---
>  hw/dma/sparc32_dma.c |   67 
> +-
>  hw/sparc/sun4m.c |2 +-
>  2 files changed, 35 insertions(+), 34 deletions(-)
> 
> diff --git a/hw/dma/sparc32_dma.c b/hw/dma/sparc32_dma.c
> index eb491b5..a8d31c1 100644
> --- a/hw/dma/sparc32_dma.c
> +++ b/hw/dma/sparc32_dma.c
> @@ -61,12 +61,13 @@
>  /* XXX SCSI and ethernet should have different read-only bit masks */
>  #define DMA_CSR_RO_MASK 0xfe07
>  
> -#define TYPE_SPARC32_DMA "sparc32_dma"
> -#define SPARC32_DMA(obj) OBJECT_CHECK(DMAState, (obj), TYPE_SPARC32_DMA)
> +#define TYPE_SPARC32_DMA_DEVICE "sparc32-dma-device"
> +#define SPARC32_DMA_DEVICE(obj) OBJECT_CHECK(DMADeviceState, (obj), \

not sure this is an improvement.

> + TYPE_SPARC32_DMA_DEVICE)
>  
> -typedef struct DMAState DMAState;
> +typedef struct DMADeviceState DMADeviceState;
>  
> -struct DMAState {
> +struct DMADeviceState {
>  SysBusDevice parent_obj;
>  
>  MemoryRegion iomem;
> @@ -86,7 +87,7 @@ enum {
>  void ledma_memory_read(void *opaque, hwaddr addr,
> uint8_t *buf, int len, int do_bswap)
>  {
> -DMAState *s = opaque;
> +DMADeviceState *s = opaque;
>  int i;
>  
>  addr |= s->dmaregs[3];
> @@ -106,7 +107,7 @@ void ledma_memory_read(void *opaque, hwaddr addr,
>  void ledma_memory_write(void *opaque, hwaddr addr,
>  uint8_t *buf, int len, int do_bswap)
>  {
> -DMAState *s = opaque;
> +DMADeviceState *s = opaque;
>  int l, i;
>  uint16_t tmp_buf[32];
>  
> @@ -134,7 +135,7 @@ void ledma_memory_write(void *opaque, hwaddr addr,
>  
>  static void dma_set_irq(void *opaque, int irq, int level)
>  {
> -DMAState *s = opaque;
> +DMADeviceState *s = opaque;
>  if (level) {
>  s->dmaregs[0] |= DMA_INTR;
>  if (s->dmaregs[0] & DMA_INTREN) {
> @@ -154,7 +155,7 @@ static void dma_set_irq(void *opaque, int irq, int level)
>  
>  void espdma_memory_read(void *opaque, uint8_t *buf, int len)
>  {
> -DMAState *s = opaque;
> +DMADeviceState *s = opaque;
>  
>  trace_espdma_memory_read(s->dmaregs[1]);
>  sparc_iommu_memory_read(s->iommu, s->dmaregs[1], buf, len);
> @@ -163,7 +164,7 @@ void espdma_memory_read(void *opaque, uint8_t *buf, int 
> len)
>  
>  void espdma_memory_write(void *opaque, uint8_t *buf, int len)
>  {
> -DMAState *s = opaque;
> +DMADeviceState *s = opaque;
>  
>  trace_espdma_memory_write(s->dmaregs[1]);
>  sparc_iommu_memory_write(s->iommu, s->dmaregs[1], buf, len);
> @@ -173,7 +174,7 @@ void espdma_memory_write(void *opaque, uint8_t *buf, int 
> len)
>  static uint64_t dma_mem_read(void *opaque, hwaddr addr,
>   unsigned size)
>  {
> -DMAState *s = opaque;
> +DMADeviceState *s = opaque;
>  uint32_t saddr;
>  
>  if (s->is_ledma && (addr > DMA_MAX_REG_OFFSET)) {
> @@ -190,7 +191,7 @@ static uint64_t dma_mem_read(void *opaque, hwaddr addr,
>  static void dma_mem_write(void *opaque, hwaddr addr,
>uint64_t val, unsigned size)
>  {
> -DMAState *s = opaque;
> +DMADeviceState *s = opaque;
>  uint32_t saddr;
>  
>  if (s->is_ledma && (addr > DMA_MAX_REG_OFFSET)) {
> @@ -252,28 +253,28 @@ static const MemoryRegionOps dma_mem_ops = {
>  },
>  };
>  
> -static void dma_reset(DeviceState *d)
> +static void sparc32_dma_device_reset(DeviceState *d)
>  {
> -DMAState *s = SPARC32_DMA(d);
> +DMADeviceState *s = SPARC32_DMA_DEVICE(d);
>  
>  memset(s->dmaregs, 0, DMA_SIZE);
>  s->dmaregs[0] = DMA_VER;
>  }
>  
> -static const VMStateDescription vmstate_dma = {
> +static const VMStateDescription vmstate_sparc32_dma_device = {
>  .name ="sparc32_dma",
>  .version_id = 2,
>  .minimum_version_id = 2,
>  .fields = (VMStateField[]) {
> -VMSTATE_UINT32_ARRAY(dmaregs, DMAState, DMA_REGS),
> +VMSTATE_UINT32_ARRAY(dmaregs, DMADeviceState, DMA_REGS),
>  VMSTATE_END_OF_LIST()
>  }
>  };
>  
> -static void sparc32_dma_init(Object *obj)
> +static void sparc32_dma_device_init(Object *obj)
>  {
>  DeviceState *dev = DEVICE(obj);
> -DMAState *s = SPARC32_DMA(obj);
> +DMADeviceState *s = SPARC32_DMA_DEVICE(obj);
>  SysBusDevice *sbd = SYS_BUS_DEVICE(obj);
>  
>  sysbus_init_irq(sbd, >irq);
> @@ -284,9 +285,9 @@ static void sparc32_dma_init(Object *obj)
>  qdev_init_gpio_out(dev, s->gpio, 2);
>  }
>  
> -static void sparc32_dma_realize(DeviceState *dev, Error **errp)
> +static void sparc32_dma_device_realize(DeviceState *dev, Error **errp)
>  {
> -

[Qemu-devel] [PATCHv3 01/13] sparc32_dma: rename SPARC32_DMA type to SPARC32_DMA_DEVICE

2017-10-14 Thread Mark Cave-Ayland
Also update the function names to match as appropriate. While we're
here rename the type from sparc32_dma to sparc32-dma in order to
match the current QOM convention.

Signed-off-by: Mark Cave-Ayland 
---
 hw/dma/sparc32_dma.c |   67 +-
 hw/sparc/sun4m.c |2 +-
 2 files changed, 35 insertions(+), 34 deletions(-)

diff --git a/hw/dma/sparc32_dma.c b/hw/dma/sparc32_dma.c
index eb491b5..a8d31c1 100644
--- a/hw/dma/sparc32_dma.c
+++ b/hw/dma/sparc32_dma.c
@@ -61,12 +61,13 @@
 /* XXX SCSI and ethernet should have different read-only bit masks */
 #define DMA_CSR_RO_MASK 0xfe07
 
-#define TYPE_SPARC32_DMA "sparc32_dma"
-#define SPARC32_DMA(obj) OBJECT_CHECK(DMAState, (obj), TYPE_SPARC32_DMA)
+#define TYPE_SPARC32_DMA_DEVICE "sparc32-dma-device"
+#define SPARC32_DMA_DEVICE(obj) OBJECT_CHECK(DMADeviceState, (obj), \
+ TYPE_SPARC32_DMA_DEVICE)
 
-typedef struct DMAState DMAState;
+typedef struct DMADeviceState DMADeviceState;
 
-struct DMAState {
+struct DMADeviceState {
 SysBusDevice parent_obj;
 
 MemoryRegion iomem;
@@ -86,7 +87,7 @@ enum {
 void ledma_memory_read(void *opaque, hwaddr addr,
uint8_t *buf, int len, int do_bswap)
 {
-DMAState *s = opaque;
+DMADeviceState *s = opaque;
 int i;
 
 addr |= s->dmaregs[3];
@@ -106,7 +107,7 @@ void ledma_memory_read(void *opaque, hwaddr addr,
 void ledma_memory_write(void *opaque, hwaddr addr,
 uint8_t *buf, int len, int do_bswap)
 {
-DMAState *s = opaque;
+DMADeviceState *s = opaque;
 int l, i;
 uint16_t tmp_buf[32];
 
@@ -134,7 +135,7 @@ void ledma_memory_write(void *opaque, hwaddr addr,
 
 static void dma_set_irq(void *opaque, int irq, int level)
 {
-DMAState *s = opaque;
+DMADeviceState *s = opaque;
 if (level) {
 s->dmaregs[0] |= DMA_INTR;
 if (s->dmaregs[0] & DMA_INTREN) {
@@ -154,7 +155,7 @@ static void dma_set_irq(void *opaque, int irq, int level)
 
 void espdma_memory_read(void *opaque, uint8_t *buf, int len)
 {
-DMAState *s = opaque;
+DMADeviceState *s = opaque;
 
 trace_espdma_memory_read(s->dmaregs[1]);
 sparc_iommu_memory_read(s->iommu, s->dmaregs[1], buf, len);
@@ -163,7 +164,7 @@ void espdma_memory_read(void *opaque, uint8_t *buf, int len)
 
 void espdma_memory_write(void *opaque, uint8_t *buf, int len)
 {
-DMAState *s = opaque;
+DMADeviceState *s = opaque;
 
 trace_espdma_memory_write(s->dmaregs[1]);
 sparc_iommu_memory_write(s->iommu, s->dmaregs[1], buf, len);
@@ -173,7 +174,7 @@ void espdma_memory_write(void *opaque, uint8_t *buf, int 
len)
 static uint64_t dma_mem_read(void *opaque, hwaddr addr,
  unsigned size)
 {
-DMAState *s = opaque;
+DMADeviceState *s = opaque;
 uint32_t saddr;
 
 if (s->is_ledma && (addr > DMA_MAX_REG_OFFSET)) {
@@ -190,7 +191,7 @@ static uint64_t dma_mem_read(void *opaque, hwaddr addr,
 static void dma_mem_write(void *opaque, hwaddr addr,
   uint64_t val, unsigned size)
 {
-DMAState *s = opaque;
+DMADeviceState *s = opaque;
 uint32_t saddr;
 
 if (s->is_ledma && (addr > DMA_MAX_REG_OFFSET)) {
@@ -252,28 +253,28 @@ static const MemoryRegionOps dma_mem_ops = {
 },
 };
 
-static void dma_reset(DeviceState *d)
+static void sparc32_dma_device_reset(DeviceState *d)
 {
-DMAState *s = SPARC32_DMA(d);
+DMADeviceState *s = SPARC32_DMA_DEVICE(d);
 
 memset(s->dmaregs, 0, DMA_SIZE);
 s->dmaregs[0] = DMA_VER;
 }
 
-static const VMStateDescription vmstate_dma = {
+static const VMStateDescription vmstate_sparc32_dma_device = {
 .name ="sparc32_dma",
 .version_id = 2,
 .minimum_version_id = 2,
 .fields = (VMStateField[]) {
-VMSTATE_UINT32_ARRAY(dmaregs, DMAState, DMA_REGS),
+VMSTATE_UINT32_ARRAY(dmaregs, DMADeviceState, DMA_REGS),
 VMSTATE_END_OF_LIST()
 }
 };
 
-static void sparc32_dma_init(Object *obj)
+static void sparc32_dma_device_init(Object *obj)
 {
 DeviceState *dev = DEVICE(obj);
-DMAState *s = SPARC32_DMA(obj);
+DMADeviceState *s = SPARC32_DMA_DEVICE(obj);
 SysBusDevice *sbd = SYS_BUS_DEVICE(obj);
 
 sysbus_init_irq(sbd, >irq);
@@ -284,9 +285,9 @@ static void sparc32_dma_init(Object *obj)
 qdev_init_gpio_out(dev, s->gpio, 2);
 }
 
-static void sparc32_dma_realize(DeviceState *dev, Error **errp)
+static void sparc32_dma_device_realize(DeviceState *dev, Error **errp)
 {
-DMAState *s = SPARC32_DMA(dev);
+DMADeviceState *s = SPARC32_DMA_DEVICE(dev);
 int reg_size;
 
 reg_size = s->is_ledma ? DMA_ETH_SIZE : DMA_SIZE;
@@ -294,35 +295,35 @@ static void sparc32_dma_realize(DeviceState *dev, Error 
**errp)
   "dma", reg_size);
 }
 
-static Property sparc32_dma_properties[] = {
-DEFINE_PROP_PTR("iommu_opaque", DMAState, iommu),
-