Re: [Intel-gfx] [PATCH 1/2] drm/i915: remove confusing GPIO vs PCH_GPIO

2018-07-13 Thread Ville Syrjälä
n Fri, Jul 13, 2018 at 10:48:02AM +0200, Daniel Vetter wrote:
> On Thu, Jul 12, 2018 at 08:23:05PM +0300, Ville Syrjälä wrote:
> > On Thu, Jul 12, 2018 at 07:03:58PM +0200, Daniel Vetter wrote:
> > > On Thu, Jul 12, 2018 at 6:24 PM, Lucas De Marchi
> > >  wrote:
> > > > On Thu, Jul 12, 2018 at 05:04:03PM +0200, Daniel Vetter wrote:
> > > >> On Mon, Jul 09, 2018 at 09:22:21AM -0700, Lucas De Marchi wrote:
> > > >> > Instead of defining all registers twice, define just a PCH_GPIO_BASE
> > > >> > that has the same address as PCH_GPIO_A and use that to calculate all
> > > >> > the others. This also brings VLV and !HAS_GMCH_DISPLAY in line, doing
> > > >> > the same thing.
> > > >> >
> > > >> > This also rewrites the GMBUS[05] registers since they depend on
> > > >> > gpio_mmio_base.
> > > >> >
> > > >> > v2: Fix GMBUS registers to be relative to gpio base; create GPIO()
> > > >> > macro to return a particular gpio address and move the enum out 
> > > >> > of
> > > >> > i915_reg.h (suggested by Jani)
> > > >> >
> > > >> > Signed-off-by: Lucas De Marchi 
> > > >> > ---
> > > >> >  drivers/gpu/drm/i915/gvt/handlers.c |  2 +-
> > > >> >  drivers/gpu/drm/i915/i915_reg.h | 53 
> > > >> > +++--
> > > >> >  drivers/gpu/drm/i915/intel_drv.h| 16 +
> > > >> >  drivers/gpu/drm/i915/intel_i2c.c| 16 -
> > > >> >  4 files changed, 52 insertions(+), 35 deletions(-)
> > > >> >
> > > >> > diff --git a/drivers/gpu/drm/i915/gvt/handlers.c 
> > > >> > b/drivers/gpu/drm/i915/gvt/handlers.c
> > > >> > index e39492aaff6c..e25a74fe753b 100644
> > > >> > --- a/drivers/gpu/drm/i915/gvt/handlers.c
> > > >> > +++ b/drivers/gpu/drm/i915/gvt/handlers.c
> > > >> > @@ -2084,7 +2084,7 @@ static int init_generic_mmio_info(struct 
> > > >> > intel_gvt *gvt)
> > > >> >
> > > >> > MMIO_F(PCH_GMBUS0, 4 * 4, 0, 0, 0, D_ALL, gmbus_mmio_read,
> > > >> > gmbus_mmio_write);
> > > >> > -   MMIO_F(PCH_GPIOA, 6 * 4, F_UNALIGN, 0, 0, D_ALL, NULL, NULL);
> > > >> > +   MMIO_F(_MMIO(PCH_GPIO_BASE), 6 * 4, F_UNALIGN, 0, 0, D_ALL, 
> > > >> > NULL, NULL);
> > > >> > MMIO_F(_MMIO(0xe4f00), 0x28, 0, 0, 0, D_ALL, NULL, NULL);
> > > >> >
> > > >> > MMIO_F(_MMIO(_PCH_DPB_AUX_CH_CTL), 6 * 4, 0, 0, 0, D_PRE_SKL, 
> > > >> > NULL,
> > > >> > diff --git a/drivers/gpu/drm/i915/i915_reg.h 
> > > >> > b/drivers/gpu/drm/i915/i915_reg.h
> > > >> > index 0424e45f88db..f8f71d577613 100644
> > > >> > --- a/drivers/gpu/drm/i915/i915_reg.h
> > > >> > +++ b/drivers/gpu/drm/i915/i915_reg.h
> > > >> > @@ -3088,18 +3088,11 @@ enum i915_power_well_id {
> > > >> >  /*
> > > >> >   * GPIO regs
> > > >> >   */
> > > >> > -#define GPIOA  _MMIO(0x5010)
> > > >> > -#define GPIOB  _MMIO(0x5014)
> > > >> > -#define GPIOC  _MMIO(0x5018)
> > > >> > -#define GPIOD  _MMIO(0x501c)
> > > >> > -#define GPIOE  _MMIO(0x5020)
> > > >> > -#define GPIOF  _MMIO(0x5024)
> > > >> > -#define GPIOG  _MMIO(0x5028)
> > > >> > -#define GPIOH  _MMIO(0x502c)
> > > >> > -#define GPIOJ  _MMIO(0x5034)
> > > >> > -#define GPIOK  _MMIO(0x5038)
> > > >> > -#define GPIOL  _MMIO(0x503C)
> > > >> > -#define GPIOM  _MMIO(0x5040)
> > > >> > +#define GPIO_OFFSET0x5010u
> > > >> > +#define PCH_GPIO_BASE  (0xcu + GPIO_OFFSET)
> > > >> > +#define VLV_GPIO_BASE  (VLV_DISPLAY_BASE + GPIO_OFFSET)
> > > >>
> > > >> This is a rather peculiar choice of baseline address. I'd either go 
> > > >> with
> > > >> 0x5000u or 0xu (which avoids the need to change all the gmbus 
> > > >> macros).
> > > >
> > > > I'm all for a round 0x5 number, however it doesn't match the spec.
> > > > I don't understand how 0x0 would make sense here. Are you suggesting to
> > > > embed the GPIO_OFFSET into the GPIO macro and get rid of the GPIO_BASE?
> > > >
> > > > #define GPIO_OFFSET 0x5010u
> > > > /* THESE 2 BELOW COULD USE ANOTHER BETTER NAME */
> > > > #define PCH_GPIO_BASE   0xcu
> > > > #define VLV_GPIO_BASE   VLV_DISPLAY_BASE
> > > > #define GPIO(gpio)  _MMIO(dev_priv->gpio_mmio_base + 0x5010 + 4 * 
> > > > (gpio))
> > > 
> > > Yeah that's what I had in mind.
> > 
> > I think I like this one the most. Keeps the 0x5010 in the GPIO() macro
> > so less confusion when looking it up in the spec (except on PCH platforms
> > perhaps).
> > 
> > Also I would drop the VLV_GPIO_BASE and PCH_GPIO_BASE definitions and
> > just do gpio_mmio_Base = VLV_DISPLAY_BASE/PCH_DISPLAY_BASE or something
> > like that.
> > 
> > I've occasionally pondered about some kind of generic south_display_base
> > thing that could maybe cover all the things that live on the PCH side on
> > those platforms. But I never bothered to look at all the register offsets
> > hard enough to figure out whether it'd be actually useful.
> 
> 

Re: [Intel-gfx] [PATCH 1/2] drm/i915: remove confusing GPIO vs PCH_GPIO

2018-07-13 Thread Daniel Vetter
On Thu, Jul 12, 2018 at 08:23:05PM +0300, Ville Syrjälä wrote:
> On Thu, Jul 12, 2018 at 07:03:58PM +0200, Daniel Vetter wrote:
> > On Thu, Jul 12, 2018 at 6:24 PM, Lucas De Marchi
> >  wrote:
> > > On Thu, Jul 12, 2018 at 05:04:03PM +0200, Daniel Vetter wrote:
> > >> On Mon, Jul 09, 2018 at 09:22:21AM -0700, Lucas De Marchi wrote:
> > >> > Instead of defining all registers twice, define just a PCH_GPIO_BASE
> > >> > that has the same address as PCH_GPIO_A and use that to calculate all
> > >> > the others. This also brings VLV and !HAS_GMCH_DISPLAY in line, doing
> > >> > the same thing.
> > >> >
> > >> > This also rewrites the GMBUS[05] registers since they depend on
> > >> > gpio_mmio_base.
> > >> >
> > >> > v2: Fix GMBUS registers to be relative to gpio base; create GPIO()
> > >> > macro to return a particular gpio address and move the enum out of
> > >> > i915_reg.h (suggested by Jani)
> > >> >
> > >> > Signed-off-by: Lucas De Marchi 
> > >> > ---
> > >> >  drivers/gpu/drm/i915/gvt/handlers.c |  2 +-
> > >> >  drivers/gpu/drm/i915/i915_reg.h | 53 +++--
> > >> >  drivers/gpu/drm/i915/intel_drv.h| 16 +
> > >> >  drivers/gpu/drm/i915/intel_i2c.c| 16 -
> > >> >  4 files changed, 52 insertions(+), 35 deletions(-)
> > >> >
> > >> > diff --git a/drivers/gpu/drm/i915/gvt/handlers.c 
> > >> > b/drivers/gpu/drm/i915/gvt/handlers.c
> > >> > index e39492aaff6c..e25a74fe753b 100644
> > >> > --- a/drivers/gpu/drm/i915/gvt/handlers.c
> > >> > +++ b/drivers/gpu/drm/i915/gvt/handlers.c
> > >> > @@ -2084,7 +2084,7 @@ static int init_generic_mmio_info(struct 
> > >> > intel_gvt *gvt)
> > >> >
> > >> > MMIO_F(PCH_GMBUS0, 4 * 4, 0, 0, 0, D_ALL, gmbus_mmio_read,
> > >> > gmbus_mmio_write);
> > >> > -   MMIO_F(PCH_GPIOA, 6 * 4, F_UNALIGN, 0, 0, D_ALL, NULL, NULL);
> > >> > +   MMIO_F(_MMIO(PCH_GPIO_BASE), 6 * 4, F_UNALIGN, 0, 0, D_ALL, NULL, 
> > >> > NULL);
> > >> > MMIO_F(_MMIO(0xe4f00), 0x28, 0, 0, 0, D_ALL, NULL, NULL);
> > >> >
> > >> > MMIO_F(_MMIO(_PCH_DPB_AUX_CH_CTL), 6 * 4, 0, 0, 0, D_PRE_SKL, NULL,
> > >> > diff --git a/drivers/gpu/drm/i915/i915_reg.h 
> > >> > b/drivers/gpu/drm/i915/i915_reg.h
> > >> > index 0424e45f88db..f8f71d577613 100644
> > >> > --- a/drivers/gpu/drm/i915/i915_reg.h
> > >> > +++ b/drivers/gpu/drm/i915/i915_reg.h
> > >> > @@ -3088,18 +3088,11 @@ enum i915_power_well_id {
> > >> >  /*
> > >> >   * GPIO regs
> > >> >   */
> > >> > -#define GPIOA  _MMIO(0x5010)
> > >> > -#define GPIOB  _MMIO(0x5014)
> > >> > -#define GPIOC  _MMIO(0x5018)
> > >> > -#define GPIOD  _MMIO(0x501c)
> > >> > -#define GPIOE  _MMIO(0x5020)
> > >> > -#define GPIOF  _MMIO(0x5024)
> > >> > -#define GPIOG  _MMIO(0x5028)
> > >> > -#define GPIOH  _MMIO(0x502c)
> > >> > -#define GPIOJ  _MMIO(0x5034)
> > >> > -#define GPIOK  _MMIO(0x5038)
> > >> > -#define GPIOL  _MMIO(0x503C)
> > >> > -#define GPIOM  _MMIO(0x5040)
> > >> > +#define GPIO_OFFSET0x5010u
> > >> > +#define PCH_GPIO_BASE  (0xcu + GPIO_OFFSET)
> > >> > +#define VLV_GPIO_BASE  (VLV_DISPLAY_BASE + GPIO_OFFSET)
> > >>
> > >> This is a rather peculiar choice of baseline address. I'd either go with
> > >> 0x5000u or 0xu (which avoids the need to change all the gmbus 
> > >> macros).
> > >
> > > I'm all for a round 0x5 number, however it doesn't match the spec.
> > > I don't understand how 0x0 would make sense here. Are you suggesting to
> > > embed the GPIO_OFFSET into the GPIO macro and get rid of the GPIO_BASE?
> > >
> > > #define GPIO_OFFSET 0x5010u
> > > /* THESE 2 BELOW COULD USE ANOTHER BETTER NAME */
> > > #define PCH_GPIO_BASE   0xcu
> > > #define VLV_GPIO_BASE   VLV_DISPLAY_BASE
> > > #define GPIO(gpio)  _MMIO(dev_priv->gpio_mmio_base + 0x5010 + 4 * 
> > > (gpio))
> > 
> > Yeah that's what I had in mind.
> 
> I think I like this one the most. Keeps the 0x5010 in the GPIO() macro
> so less confusion when looking it up in the spec (except on PCH platforms
> perhaps).
> 
> Also I would drop the VLV_GPIO_BASE and PCH_GPIO_BASE definitions and
> just do gpio_mmio_Base = VLV_DISPLAY_BASE/PCH_DISPLAY_BASE or something
> like that.
> 
> I've occasionally pondered about some kind of generic south_display_base
> thing that could maybe cover all the things that live on the PCH side on
> those platforms. But I never bothered to look at all the register offsets
> hard enough to figure out whether it'd be actually useful.

Problem with a generic south_display_base is that some things moved
between south and north block. So not sure the generic south_display_base
would actually be all that useful.
-Daniel
-- 
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch
___

Re: [Intel-gfx] [PATCH 1/2] drm/i915: remove confusing GPIO vs PCH_GPIO

2018-07-12 Thread Ville Syrjälä
On Thu, Jul 12, 2018 at 07:03:58PM +0200, Daniel Vetter wrote:
> On Thu, Jul 12, 2018 at 6:24 PM, Lucas De Marchi
>  wrote:
> > On Thu, Jul 12, 2018 at 05:04:03PM +0200, Daniel Vetter wrote:
> >> On Mon, Jul 09, 2018 at 09:22:21AM -0700, Lucas De Marchi wrote:
> >> > Instead of defining all registers twice, define just a PCH_GPIO_BASE
> >> > that has the same address as PCH_GPIO_A and use that to calculate all
> >> > the others. This also brings VLV and !HAS_GMCH_DISPLAY in line, doing
> >> > the same thing.
> >> >
> >> > This also rewrites the GMBUS[05] registers since they depend on
> >> > gpio_mmio_base.
> >> >
> >> > v2: Fix GMBUS registers to be relative to gpio base; create GPIO()
> >> > macro to return a particular gpio address and move the enum out of
> >> > i915_reg.h (suggested by Jani)
> >> >
> >> > Signed-off-by: Lucas De Marchi 
> >> > ---
> >> >  drivers/gpu/drm/i915/gvt/handlers.c |  2 +-
> >> >  drivers/gpu/drm/i915/i915_reg.h | 53 +++--
> >> >  drivers/gpu/drm/i915/intel_drv.h| 16 +
> >> >  drivers/gpu/drm/i915/intel_i2c.c| 16 -
> >> >  4 files changed, 52 insertions(+), 35 deletions(-)
> >> >
> >> > diff --git a/drivers/gpu/drm/i915/gvt/handlers.c 
> >> > b/drivers/gpu/drm/i915/gvt/handlers.c
> >> > index e39492aaff6c..e25a74fe753b 100644
> >> > --- a/drivers/gpu/drm/i915/gvt/handlers.c
> >> > +++ b/drivers/gpu/drm/i915/gvt/handlers.c
> >> > @@ -2084,7 +2084,7 @@ static int init_generic_mmio_info(struct intel_gvt 
> >> > *gvt)
> >> >
> >> > MMIO_F(PCH_GMBUS0, 4 * 4, 0, 0, 0, D_ALL, gmbus_mmio_read,
> >> > gmbus_mmio_write);
> >> > -   MMIO_F(PCH_GPIOA, 6 * 4, F_UNALIGN, 0, 0, D_ALL, NULL, NULL);
> >> > +   MMIO_F(_MMIO(PCH_GPIO_BASE), 6 * 4, F_UNALIGN, 0, 0, D_ALL, NULL, 
> >> > NULL);
> >> > MMIO_F(_MMIO(0xe4f00), 0x28, 0, 0, 0, D_ALL, NULL, NULL);
> >> >
> >> > MMIO_F(_MMIO(_PCH_DPB_AUX_CH_CTL), 6 * 4, 0, 0, 0, D_PRE_SKL, NULL,
> >> > diff --git a/drivers/gpu/drm/i915/i915_reg.h 
> >> > b/drivers/gpu/drm/i915/i915_reg.h
> >> > index 0424e45f88db..f8f71d577613 100644
> >> > --- a/drivers/gpu/drm/i915/i915_reg.h
> >> > +++ b/drivers/gpu/drm/i915/i915_reg.h
> >> > @@ -3088,18 +3088,11 @@ enum i915_power_well_id {
> >> >  /*
> >> >   * GPIO regs
> >> >   */
> >> > -#define GPIOA  _MMIO(0x5010)
> >> > -#define GPIOB  _MMIO(0x5014)
> >> > -#define GPIOC  _MMIO(0x5018)
> >> > -#define GPIOD  _MMIO(0x501c)
> >> > -#define GPIOE  _MMIO(0x5020)
> >> > -#define GPIOF  _MMIO(0x5024)
> >> > -#define GPIOG  _MMIO(0x5028)
> >> > -#define GPIOH  _MMIO(0x502c)
> >> > -#define GPIOJ  _MMIO(0x5034)
> >> > -#define GPIOK  _MMIO(0x5038)
> >> > -#define GPIOL  _MMIO(0x503C)
> >> > -#define GPIOM  _MMIO(0x5040)
> >> > +#define GPIO_OFFSET0x5010u
> >> > +#define PCH_GPIO_BASE  (0xcu + GPIO_OFFSET)
> >> > +#define VLV_GPIO_BASE  (VLV_DISPLAY_BASE + GPIO_OFFSET)
> >>
> >> This is a rather peculiar choice of baseline address. I'd either go with
> >> 0x5000u or 0xu (which avoids the need to change all the gmbus macros).
> >
> > I'm all for a round 0x5 number, however it doesn't match the spec.
> > I don't understand how 0x0 would make sense here. Are you suggesting to
> > embed the GPIO_OFFSET into the GPIO macro and get rid of the GPIO_BASE?
> >
> > #define GPIO_OFFSET 0x5010u
> > /* THESE 2 BELOW COULD USE ANOTHER BETTER NAME */
> > #define PCH_GPIO_BASE   0xcu
> > #define VLV_GPIO_BASE   VLV_DISPLAY_BASE
> > #define GPIO(gpio)  _MMIO(dev_priv->gpio_mmio_base + 0x5010 + 4 * 
> > (gpio))
> 
> Yeah that's what I had in mind.

I think I like this one the most. Keeps the 0x5010 in the GPIO() macro
so less confusion when looking it up in the spec (except on PCH platforms
perhaps).

Also I would drop the VLV_GPIO_BASE and PCH_GPIO_BASE definitions and
just do gpio_mmio_Base = VLV_DISPLAY_BASE/PCH_DISPLAY_BASE or something
like that.

I've occasionally pondered about some kind of generic south_display_base
thing that could maybe cover all the things that live on the PCH side on
those platforms. But I never bothered to look at all the register offsets
hard enough to figure out whether it'd be actually useful.

-- 
Ville Syrjälä
Intel
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH 1/2] drm/i915: remove confusing GPIO vs PCH_GPIO

2018-07-12 Thread Daniel Vetter
On Thu, Jul 12, 2018 at 6:24 PM, Lucas De Marchi
 wrote:
> On Thu, Jul 12, 2018 at 05:04:03PM +0200, Daniel Vetter wrote:
>> On Mon, Jul 09, 2018 at 09:22:21AM -0700, Lucas De Marchi wrote:
>> > Instead of defining all registers twice, define just a PCH_GPIO_BASE
>> > that has the same address as PCH_GPIO_A and use that to calculate all
>> > the others. This also brings VLV and !HAS_GMCH_DISPLAY in line, doing
>> > the same thing.
>> >
>> > This also rewrites the GMBUS[05] registers since they depend on
>> > gpio_mmio_base.
>> >
>> > v2: Fix GMBUS registers to be relative to gpio base; create GPIO()
>> > macro to return a particular gpio address and move the enum out of
>> > i915_reg.h (suggested by Jani)
>> >
>> > Signed-off-by: Lucas De Marchi 
>> > ---
>> >  drivers/gpu/drm/i915/gvt/handlers.c |  2 +-
>> >  drivers/gpu/drm/i915/i915_reg.h | 53 +++--
>> >  drivers/gpu/drm/i915/intel_drv.h| 16 +
>> >  drivers/gpu/drm/i915/intel_i2c.c| 16 -
>> >  4 files changed, 52 insertions(+), 35 deletions(-)
>> >
>> > diff --git a/drivers/gpu/drm/i915/gvt/handlers.c 
>> > b/drivers/gpu/drm/i915/gvt/handlers.c
>> > index e39492aaff6c..e25a74fe753b 100644
>> > --- a/drivers/gpu/drm/i915/gvt/handlers.c
>> > +++ b/drivers/gpu/drm/i915/gvt/handlers.c
>> > @@ -2084,7 +2084,7 @@ static int init_generic_mmio_info(struct intel_gvt 
>> > *gvt)
>> >
>> > MMIO_F(PCH_GMBUS0, 4 * 4, 0, 0, 0, D_ALL, gmbus_mmio_read,
>> > gmbus_mmio_write);
>> > -   MMIO_F(PCH_GPIOA, 6 * 4, F_UNALIGN, 0, 0, D_ALL, NULL, NULL);
>> > +   MMIO_F(_MMIO(PCH_GPIO_BASE), 6 * 4, F_UNALIGN, 0, 0, D_ALL, NULL, 
>> > NULL);
>> > MMIO_F(_MMIO(0xe4f00), 0x28, 0, 0, 0, D_ALL, NULL, NULL);
>> >
>> > MMIO_F(_MMIO(_PCH_DPB_AUX_CH_CTL), 6 * 4, 0, 0, 0, D_PRE_SKL, NULL,
>> > diff --git a/drivers/gpu/drm/i915/i915_reg.h 
>> > b/drivers/gpu/drm/i915/i915_reg.h
>> > index 0424e45f88db..f8f71d577613 100644
>> > --- a/drivers/gpu/drm/i915/i915_reg.h
>> > +++ b/drivers/gpu/drm/i915/i915_reg.h
>> > @@ -3088,18 +3088,11 @@ enum i915_power_well_id {
>> >  /*
>> >   * GPIO regs
>> >   */
>> > -#define GPIOA  _MMIO(0x5010)
>> > -#define GPIOB  _MMIO(0x5014)
>> > -#define GPIOC  _MMIO(0x5018)
>> > -#define GPIOD  _MMIO(0x501c)
>> > -#define GPIOE  _MMIO(0x5020)
>> > -#define GPIOF  _MMIO(0x5024)
>> > -#define GPIOG  _MMIO(0x5028)
>> > -#define GPIOH  _MMIO(0x502c)
>> > -#define GPIOJ  _MMIO(0x5034)
>> > -#define GPIOK  _MMIO(0x5038)
>> > -#define GPIOL  _MMIO(0x503C)
>> > -#define GPIOM  _MMIO(0x5040)
>> > +#define GPIO_OFFSET0x5010u
>> > +#define PCH_GPIO_BASE  (0xcu + GPIO_OFFSET)
>> > +#define VLV_GPIO_BASE  (VLV_DISPLAY_BASE + GPIO_OFFSET)
>>
>> This is a rather peculiar choice of baseline address. I'd either go with
>> 0x5000u or 0xu (which avoids the need to change all the gmbus macros).
>
> I'm all for a round 0x5 number, however it doesn't match the spec.
> I don't understand how 0x0 would make sense here. Are you suggesting to
> embed the GPIO_OFFSET into the GPIO macro and get rid of the GPIO_BASE?
>
> #define GPIO_OFFSET 0x5010u
> /* THESE 2 BELOW COULD USE ANOTHER BETTER NAME */
> #define PCH_GPIO_BASE   0xcu
> #define VLV_GPIO_BASE   VLV_DISPLAY_BASE
> #define GPIO(gpio)  _MMIO(dev_priv->gpio_mmio_base + 0x5010 + 4 * (gpio))

Yeah that's what I had in mind.

> That would make sense, but I don't think it's a better option due to
> GPIO_BASE now and mmio_gpio_base matching nothing in the spec (and the
> extra add on every gpio).
>
>> Only needs a slight adjustment to your GPIO macro, but avoids the rather
>> onerous - GPIO_OFFSET + GMBUS_OFFSET you have below. That one kinda
>> indicates your offset is all confused.
>
> well.. this is only because there I'm actually interested in the vlv
> display / pch offset. The subtraction is done so I don't have to store
> a gmbus_mmio_base and can rather work it out from the gpio one.

If you want to stick with your approach, at least extract the common
->gpio_mmio_base - GPIO_OFFSET + GMBUS_OFFSET computation into a
GMBUS_BASE(dev) macro or something like that. I think that would be a
good solution too.

Either approach has my a-b (I'll be on vacations next 3 weeks to
probably no r-b from me).
-Daniel

>
> Lucas De Marchi
>
>>
>> Anyway, just a drive-by comment, I was looking for some other gmbus patch.
>> -Daniel
>>
>> > +#define GPIO(gpio)  _MMIO(dev_priv->gpio_mmio_base + 4 * (gpio))
>> > +
>> >  # define GPIO_CLOCK_DIR_MASK   (1 << 0)
>> >  # define GPIO_CLOCK_DIR_IN (0 << 1)
>> >  # define GPIO_CLOCK_DIR_OUT(1 << 1)
>> > @@ -3115,7 +3108,11 @@ enum i915_power_well_id {
>> >  # define GPIO_DATA_VAL_IN  (1 << 12)
>> >  # d

Re: [Intel-gfx] [PATCH 1/2] drm/i915: remove confusing GPIO vs PCH_GPIO

2018-07-12 Thread Lucas De Marchi
On Thu, Jul 12, 2018 at 05:04:03PM +0200, Daniel Vetter wrote:
> On Mon, Jul 09, 2018 at 09:22:21AM -0700, Lucas De Marchi wrote:
> > Instead of defining all registers twice, define just a PCH_GPIO_BASE
> > that has the same address as PCH_GPIO_A and use that to calculate all
> > the others. This also brings VLV and !HAS_GMCH_DISPLAY in line, doing
> > the same thing.
> > 
> > This also rewrites the GMBUS[05] registers since they depend on
> > gpio_mmio_base.
> > 
> > v2: Fix GMBUS registers to be relative to gpio base; create GPIO()
> > macro to return a particular gpio address and move the enum out of
> > i915_reg.h (suggested by Jani)
> > 
> > Signed-off-by: Lucas De Marchi 
> > ---
> >  drivers/gpu/drm/i915/gvt/handlers.c |  2 +-
> >  drivers/gpu/drm/i915/i915_reg.h | 53 +++--
> >  drivers/gpu/drm/i915/intel_drv.h| 16 +
> >  drivers/gpu/drm/i915/intel_i2c.c| 16 -
> >  4 files changed, 52 insertions(+), 35 deletions(-)
> > 
> > diff --git a/drivers/gpu/drm/i915/gvt/handlers.c 
> > b/drivers/gpu/drm/i915/gvt/handlers.c
> > index e39492aaff6c..e25a74fe753b 100644
> > --- a/drivers/gpu/drm/i915/gvt/handlers.c
> > +++ b/drivers/gpu/drm/i915/gvt/handlers.c
> > @@ -2084,7 +2084,7 @@ static int init_generic_mmio_info(struct intel_gvt 
> > *gvt)
> >  
> > MMIO_F(PCH_GMBUS0, 4 * 4, 0, 0, 0, D_ALL, gmbus_mmio_read,
> > gmbus_mmio_write);
> > -   MMIO_F(PCH_GPIOA, 6 * 4, F_UNALIGN, 0, 0, D_ALL, NULL, NULL);
> > +   MMIO_F(_MMIO(PCH_GPIO_BASE), 6 * 4, F_UNALIGN, 0, 0, D_ALL, NULL, NULL);
> > MMIO_F(_MMIO(0xe4f00), 0x28, 0, 0, 0, D_ALL, NULL, NULL);
> >  
> > MMIO_F(_MMIO(_PCH_DPB_AUX_CH_CTL), 6 * 4, 0, 0, 0, D_PRE_SKL, NULL,
> > diff --git a/drivers/gpu/drm/i915/i915_reg.h 
> > b/drivers/gpu/drm/i915/i915_reg.h
> > index 0424e45f88db..f8f71d577613 100644
> > --- a/drivers/gpu/drm/i915/i915_reg.h
> > +++ b/drivers/gpu/drm/i915/i915_reg.h
> > @@ -3088,18 +3088,11 @@ enum i915_power_well_id {
> >  /*
> >   * GPIO regs
> >   */
> > -#define GPIOA  _MMIO(0x5010)
> > -#define GPIOB  _MMIO(0x5014)
> > -#define GPIOC  _MMIO(0x5018)
> > -#define GPIOD  _MMIO(0x501c)
> > -#define GPIOE  _MMIO(0x5020)
> > -#define GPIOF  _MMIO(0x5024)
> > -#define GPIOG  _MMIO(0x5028)
> > -#define GPIOH  _MMIO(0x502c)
> > -#define GPIOJ  _MMIO(0x5034)
> > -#define GPIOK  _MMIO(0x5038)
> > -#define GPIOL  _MMIO(0x503C)
> > -#define GPIOM  _MMIO(0x5040)
> > +#define GPIO_OFFSET0x5010u
> > +#define PCH_GPIO_BASE  (0xcu + GPIO_OFFSET)
> > +#define VLV_GPIO_BASE  (VLV_DISPLAY_BASE + GPIO_OFFSET)
> 
> This is a rather peculiar choice of baseline address. I'd either go with
> 0x5000u or 0xu (which avoids the need to change all the gmbus macros).

I'm all for a round 0x5 number, however it doesn't match the spec.
I don't understand how 0x0 would make sense here. Are you suggesting to
embed the GPIO_OFFSET into the GPIO macro and get rid of the GPIO_BASE?

#define GPIO_OFFSET 0x5010u
/* THESE 2 BELOW COULD USE ANOTHER BETTER NAME */
#define PCH_GPIO_BASE   0xcu
#define VLV_GPIO_BASE   VLV_DISPLAY_BASE
#define GPIO(gpio)  _MMIO(dev_priv->gpio_mmio_base + 0x5010 + 4 * (gpio))


That would make sense, but I don't think it's a better option due to
GPIO_BASE now and mmio_gpio_base matching nothing in the spec (and the
extra add on every gpio).

> Only needs a slight adjustment to your GPIO macro, but avoids the rather
> onerous - GPIO_OFFSET + GMBUS_OFFSET you have below. That one kinda
> indicates your offset is all confused.

well.. this is only because there I'm actually interested in the vlv
display / pch offset. The subtraction is done so I don't have to store
a gmbus_mmio_base and can rather work it out from the gpio one.

Lucas De Marchi

> 
> Anyway, just a drive-by comment, I was looking for some other gmbus patch.
> -Daniel
> 
> > +#define GPIO(gpio)  _MMIO(dev_priv->gpio_mmio_base + 4 * (gpio))
> > +
> >  # define GPIO_CLOCK_DIR_MASK   (1 << 0)
> >  # define GPIO_CLOCK_DIR_IN (0 << 1)
> >  # define GPIO_CLOCK_DIR_OUT(1 << 1)
> > @@ -3115,7 +3108,11 @@ enum i915_power_well_id {
> >  # define GPIO_DATA_VAL_IN  (1 << 12)
> >  # define GPIO_DATA_PULLUP_DISABLE  (1 << 13)
> >  
> > -#define GMBUS0 _MMIO(dev_priv->gpio_mmio_base + 
> > 0x5100) /* clock/port select */
> > +#define GMBUS_OFFSET   0x5100u
> > +
> > +/* clock/port select */
> > +#define GMBUS0 _MMIO(dev_priv->gpio_mmio_base - 
> > GPIO_OFFSET \
> > + + GMBUS_OFFSET)
> >  #define   GMBUS_AKSV_SELECT(1 << 11)
> >  #define   GMBUS_RATE_100KHZ(0 << 8)
> >  #define   GMBUS_RATE_50KHZ (1 << 8

Re: [Intel-gfx] [PATCH 1/2] drm/i915: remove confusing GPIO vs PCH_GPIO

2018-07-12 Thread Daniel Vetter
On Mon, Jul 09, 2018 at 09:22:21AM -0700, Lucas De Marchi wrote:
> Instead of defining all registers twice, define just a PCH_GPIO_BASE
> that has the same address as PCH_GPIO_A and use that to calculate all
> the others. This also brings VLV and !HAS_GMCH_DISPLAY in line, doing
> the same thing.
> 
> This also rewrites the GMBUS[05] registers since they depend on
> gpio_mmio_base.
> 
> v2: Fix GMBUS registers to be relative to gpio base; create GPIO()
> macro to return a particular gpio address and move the enum out of
> i915_reg.h (suggested by Jani)
> 
> Signed-off-by: Lucas De Marchi 
> ---
>  drivers/gpu/drm/i915/gvt/handlers.c |  2 +-
>  drivers/gpu/drm/i915/i915_reg.h | 53 +++--
>  drivers/gpu/drm/i915/intel_drv.h| 16 +
>  drivers/gpu/drm/i915/intel_i2c.c| 16 -
>  4 files changed, 52 insertions(+), 35 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/gvt/handlers.c 
> b/drivers/gpu/drm/i915/gvt/handlers.c
> index e39492aaff6c..e25a74fe753b 100644
> --- a/drivers/gpu/drm/i915/gvt/handlers.c
> +++ b/drivers/gpu/drm/i915/gvt/handlers.c
> @@ -2084,7 +2084,7 @@ static int init_generic_mmio_info(struct intel_gvt *gvt)
>  
>   MMIO_F(PCH_GMBUS0, 4 * 4, 0, 0, 0, D_ALL, gmbus_mmio_read,
>   gmbus_mmio_write);
> - MMIO_F(PCH_GPIOA, 6 * 4, F_UNALIGN, 0, 0, D_ALL, NULL, NULL);
> + MMIO_F(_MMIO(PCH_GPIO_BASE), 6 * 4, F_UNALIGN, 0, 0, D_ALL, NULL, NULL);
>   MMIO_F(_MMIO(0xe4f00), 0x28, 0, 0, 0, D_ALL, NULL, NULL);
>  
>   MMIO_F(_MMIO(_PCH_DPB_AUX_CH_CTL), 6 * 4, 0, 0, 0, D_PRE_SKL, NULL,
> diff --git a/drivers/gpu/drm/i915/i915_reg.h b/drivers/gpu/drm/i915/i915_reg.h
> index 0424e45f88db..f8f71d577613 100644
> --- a/drivers/gpu/drm/i915/i915_reg.h
> +++ b/drivers/gpu/drm/i915/i915_reg.h
> @@ -3088,18 +3088,11 @@ enum i915_power_well_id {
>  /*
>   * GPIO regs
>   */
> -#define GPIOA_MMIO(0x5010)
> -#define GPIOB_MMIO(0x5014)
> -#define GPIOC_MMIO(0x5018)
> -#define GPIOD_MMIO(0x501c)
> -#define GPIOE_MMIO(0x5020)
> -#define GPIOF_MMIO(0x5024)
> -#define GPIOG_MMIO(0x5028)
> -#define GPIOH_MMIO(0x502c)
> -#define GPIOJ_MMIO(0x5034)
> -#define GPIOK_MMIO(0x5038)
> -#define GPIOL_MMIO(0x503C)
> -#define GPIOM_MMIO(0x5040)
> +#define GPIO_OFFSET  0x5010u
> +#define PCH_GPIO_BASE(0xcu + GPIO_OFFSET)
> +#define VLV_GPIO_BASE(VLV_DISPLAY_BASE + GPIO_OFFSET)

This is a rather peculiar choice of baseline address. I'd either go with
0x5000u or 0xu (which avoids the need to change all the gmbus macros).
Only needs a slight adjustment to your GPIO macro, but avoids the rather
onerous - GPIO_OFFSET + GMBUS_OFFSET you have below. That one kinda
indicates your offset is all confused.

Anyway, just a drive-by comment, I was looking for some other gmbus patch.
-Daniel

> +#define GPIO(gpio)  _MMIO(dev_priv->gpio_mmio_base + 4 * (gpio))
> +
>  # define GPIO_CLOCK_DIR_MASK (1 << 0)
>  # define GPIO_CLOCK_DIR_IN   (0 << 1)
>  # define GPIO_CLOCK_DIR_OUT  (1 << 1)
> @@ -3115,7 +3108,11 @@ enum i915_power_well_id {
>  # define GPIO_DATA_VAL_IN(1 << 12)
>  # define GPIO_DATA_PULLUP_DISABLE(1 << 13)
>  
> -#define GMBUS0   _MMIO(dev_priv->gpio_mmio_base + 
> 0x5100) /* clock/port select */
> +#define GMBUS_OFFSET 0x5100u
> +
> +/* clock/port select */
> +#define GMBUS0   _MMIO(dev_priv->gpio_mmio_base - 
> GPIO_OFFSET \
> +   + GMBUS_OFFSET)
>  #define   GMBUS_AKSV_SELECT  (1 << 11)
>  #define   GMBUS_RATE_100KHZ  (0 << 8)
>  #define   GMBUS_RATE_50KHZ   (1 << 8)
> @@ -3141,7 +3138,10 @@ enum i915_power_well_id {
>  #define   GMBUS_PIN_12_TC4_ICP   12
>  
>  #define   GMBUS_NUM_PINS 13 /* including 0 */
> -#define GMBUS1   _MMIO(dev_priv->gpio_mmio_base + 
> 0x5104) /* command/status */
> +
> +/* command/status */
> +#define GMBUS1   _MMIO(dev_priv->gpio_mmio_base - 
> GPIO_OFFSET \
> +   + GMBUS_OFFSET + 0x4)
>  #define   GMBUS_SW_CLR_INT   (1 << 31)
>  #define   GMBUS_SW_RDY   (1 << 30)
>  #define   GMBUS_ENT  (1 << 29) /* enable timeout */
> @@ -3155,7 +3155,10 @@ enum i915_power_well_id {
>  #define   GMBUS_SLAVE_ADDR_SHIFT 1
>  #define   GMBUS_SLAVE_READ   (1 << 0)
>  #define   GMBUS_SLAVE_WRITE  (0 << 0)
> -#define GMBUS2   _MMIO(dev_priv->gpio_mmio_base + 
> 0x5108) /* status */
> +
> +/* status */
> +#define GMBUS2   _MMIO(dev_priv->gpio_mmio_base - 
> GPIO_OFFSET \
> +   + GMBUS_OFFSET + 0x8)
>  #define   GMBUS_INUSE(1 <<