qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH 12/17] e500: add i2c controller to CCSR


From: David Gibson
Subject: Re: [Qemu-devel] [PATCH 12/17] e500: add i2c controller to CCSR
Date: Tue, 5 Dec 2017 17:49:06 +1100
User-agent: Mutt/1.9.1 (2017-09-22)

On Sun, Nov 26, 2017 at 03:59:10PM -0600, Michael Davidsaver wrote:
> Add i2c controller found on mpc8540,
> mpc8544, and P2010 (newer ppc, unmodeled).

This adds it unconditionally.  Are there any E500 models where it
doesn't exist?

> 
> Signed-off-by: Michael Davidsaver <address@hidden>
> ---
>  hw/ppc/e500_ccsr.c | 15 +++++++++++++++
>  1 file changed, 15 insertions(+)
> 
> diff --git a/hw/ppc/e500_ccsr.c b/hw/ppc/e500_ccsr.c
> index c479ed91ee..cd8216daaf 100644
> --- a/hw/ppc/e500_ccsr.c
> +++ b/hw/ppc/e500_ccsr.c
> @@ -46,6 +46,8 @@
>  #define E500_ERR_DETECT  (0x2e40)
>  #define E500_ERR_DISABLE (0x2e44)
>  
> +#define E500_I2C_OFFSET  (0x3000)
> +
>  #define E500_DUART_OFFSET(N) (0x4500 + (N) * 0x100)
>  
>  #define E500_PORPLLSR    (0xE0000)
> @@ -72,6 +74,7 @@ typedef struct {
>      uint32_t ccb_freq;
>  
>      DeviceState *pic;
> +    DeviceState *i2c;
>  } CCSRState;
>  
>  #define TYPE_E500_CCSR "e500-ccsr"
> @@ -272,6 +275,18 @@ static void e500_ccsr_realize(DeviceState *dev, Error 
> **errp)
>                                  sysbus_mmio_get_region(pic, 0));
>      /* Note: MPIC internal interrupts are offset by 16 */
>  
> +    /* attach I2C controller */
> +    ccsr->i2c = qdev_create(NULL, "mpc8540-i2c");

Ah.. so I think I missed this on many earlier patches.  I believe
you're not generally supposed to create new subdevices at realize()
time.  Instead the device should be created at CCSR instance_init()
time (but the sub device's "realized" property will need to be set to
1 from CCSR realize()).

> +    object_property_add_child(qdev_get_machine(), "i2c[*]",
> +                              OBJECT(ccsr->i2c), NULL);
> +    qdev_init_nofail(ccsr->i2c);
> +    memory_region_add_subregion(&ccsr->iomem, E500_I2C_OFFSET,
> +                                sysbus_mmio_get_region(
> +                                    SYS_BUS_DEVICE(ccsr->i2c), 0));
> +    sysbus_connect_irq(SYS_BUS_DEVICE(ccsr->i2c), 0,
> +                          qdev_get_gpio_in(ccsr->pic, 16 + 27));
> +
> +
>      /* DUARTS */
>      /* for mpc8540, mpc8544, and P2010 (unmodeled), the DUART reference clock
>       * is the CCB clock divided by 16.

-- 
David Gibson                    | I'll have my music baroque, and my code
david AT gibson.dropbear.id.au  | minimalist, thank you.  NOT _the_ _other_
                                | _way_ _around_!
http://www.ozlabs.org/~dgibson

Attachment: signature.asc
Description: PGP signature


reply via email to

[Prev in Thread] Current Thread [Next in Thread]