[PATCH v8 17/26] PM / devfreq: rockchip-dfi: make register stride SoC specific

Chanwoo Choi cw00.choi at samsung.com
Thu Oct 19 05:17:39 PDT 2023



> -----Original Message-----
> From: Chanwoo Choi <chanwoo at kernel.org>
> Sent: Thursday, October 19, 2023 12:11 AM
> To: Sascha Hauer <s.hauer at pengutronix.de>; linux-
> rockchip at lists.infradead.org
> Cc: linux-arm-kernel at lists.infradead.org; linux-kernel at vger.kernel.org;
> linux-pm at vger.kernel.org; Heiko Stuebner <heiko at sntech.de>; Kyungmin Park
> <kyungmin.park at samsung.com>; MyungJoo Ham <myungjoo.ham at samsung.com>; Will
> Deacon <will at kernel.org>; Mark Rutland <mark.rutland at arm.com>;
> kernel at pengutronix.de; Michael Riesch <michael.riesch at wolfvision.net>;
> Robin Murphy <robin.murphy at arm.com>; Vincent Legoll
> <vincent.legoll at gmail.com>; Rob Herring <robh+dt at kernel.org>; Krzysztof
> Kozlowski <krzysztof.kozlowski+dt at linaro.org>; Conor Dooley
> <conor+dt at kernel.org>; devicetree at vger.kernel.org; Sebastian Reichel
> <sebastian.reichel at collabora.com>; Jonathan Cameron
> <Jonathan.Cameron at huawei.com>
> Subject: Re: [PATCH v8 17/26] PM / devfreq: rockchip-dfi: make register
> stride SoC specific
> 
> On 23. 10. 18. 15:17, Sascha Hauer wrote:
> > The currently supported RK3399 has a stride of 20 between the channel
> > specific registers. Upcoming RK3588 has a different stride, so put the
> > stride into driver data to make it configurable.
> > While at it convert decimal 20 to hex 0x14 for consistency with RK3588
> > which has a register stride 0x4000 and we want to write that in hex as
> > well.
> >
> > Reviewed-by: Jonathan Cameron <Jonathan.Cameron at huawei.com>
> > Reviewed-by: Sebastian Reichel <sebastian.reichel at collabora.com>
> > Signed-off-by: Sascha Hauer <s.hauer at pengutronix.de>
> > ---
> >
> > Notes:
> >     Changes since v7:
> >      - Initialize ddrmon_stride for RK3568 and explain why it's not
> > needed
> >
> >  drivers/devfreq/event/rockchip-dfi.c | 13 +++++++++----
> >  1 file changed, 9 insertions(+), 4 deletions(-)
> >
> > diff --git a/drivers/devfreq/event/rockchip-dfi.c
> > b/drivers/devfreq/event/rockchip-dfi.c
> > index 63977f9fc2693..a3d823ac68ace 100644
> > --- a/drivers/devfreq/event/rockchip-dfi.c
> > +++ b/drivers/devfreq/event/rockchip-dfi.c
> > @@ -113,6 +113,7 @@ struct rockchip_dfi {
> >  	int active_events;
> >  	int burst_len;
> >  	int buswidth[DMC_MAX_CHANNELS];
> > +	int ddrmon_stride;
> >  };
> >
> >  static int rockchip_dfi_enable(struct rockchip_dfi *dfi) @@ -190,13
> > +191,13 @@ static void rockchip_dfi_read_counters(struct rockchip_dfi
> *dfi, struct dmc_coun
> >  		if (!(dfi->channel_mask & BIT(i)))
> >  			continue;
> >  		res->c[i].read_access = readl_relaxed(dfi_regs +
> > -				DDRMON_CH0_RD_NUM + i * 20);
> > +				DDRMON_CH0_RD_NUM + i * dfi->ddrmon_stride);
> >  		res->c[i].write_access = readl_relaxed(dfi_regs +
> > -				DDRMON_CH0_WR_NUM + i * 20);
> > +				DDRMON_CH0_WR_NUM + i * dfi->ddrmon_stride);
> >  		res->c[i].access = readl_relaxed(dfi_regs +
> > -				DDRMON_CH0_DFI_ACCESS_NUM + i * 20);
> > +				DDRMON_CH0_DFI_ACCESS_NUM + i * dfi-
> >ddrmon_stride);
> >  		res->c[i].clock_cycles = readl_relaxed(dfi_regs +
> > -				DDRMON_CH0_COUNT_NUM + i * 20);
> > +				DDRMON_CH0_COUNT_NUM + i * dfi->ddrmon_stride);
> >  	}
> >  }
> >
> > @@ -664,6 +665,8 @@ static int rk3399_dfi_init(struct rockchip_dfi *dfi)
> >  	dfi->buswidth[0] = FIELD_GET(RK3399_PMUGRF_OS_REG2_BW_CH0, val) ==
> 0 ? 4 : 2;
> >  	dfi->buswidth[1] = FIELD_GET(RK3399_PMUGRF_OS_REG2_BW_CH1, val) ==
> 0
> > ? 4 : 2;
> >
> > +	dfi->ddrmon_stride = 0x14;
> > +
> >  	return 0;
> >  };
> >
> > @@ -690,6 +693,8 @@ static int rk3568_dfi_init(struct rockchip_dfi
> > *dfi)
> >
> >  	dfi->buswidth[0] = FIELD_GET(RK3568_PMUGRF_OS_REG2_BW_CH0, reg2) ==
> > 0 ? 4 : 2;
> >
> > +	dfi->ddrmon_stride = 0x0; /* not relevant, we only have a single
> > +channel on this SoC */
> > +
> >  	return 0;
> >  };
> >
> 
> Acked-by: Chanwoo Choi <cw00.choi at samsung.com>
> 
> --
> Best Regards,
> Samsung Electronics
> Chanwoo Choi


Applied it. Thanks

Best Regards,
Chanwoo Choi




More information about the Linux-rockchip mailing list