Re: [PATCH v2 1/6] i3c: master: add enable(disable) hot join in sys entry

From: Frank Li
Date: Fri Oct 20 2023 - 12:25:02 EST


On Fri, Oct 20, 2023 at 04:33:48PM +0200, Miquel Raynal wrote:
> Hi Frank,
>
> Frank.li@xxxxxxx wrote on Fri, 20 Oct 2023 10:20:57 -0400:
>
> > On Fri, Oct 20, 2023 at 03:45:28PM +0200, Miquel Raynal wrote:
> > > Hi Lukwinski,
> > >
> > > zbigniew.lukwinski@xxxxxxxxxxxxxxx wrote on Fri, 20 Oct 2023 10:55:27
> > > +0200:
> > >
> > > > On 10/18/2023 10:59 PM, Frank Li wrote:
> > > > > Add hotjoin entry in sys file system allow user enable/disable hotjoin
> > > > > feature.
> > > > >
> > > > > Add (*enable(disable)_hotjoin)() to i3c_master_controller_ops.
> > > > > Add api i3c_master_enable(disable)_hotjoin();
> > > >
> > > > What is the use case for having HJ enable knob in sysfs available for user space other than for debug stuff? In other words, does user space really need to enable/disable HJ in runtime for other reason but debug? If it is only for debug maybe it  could be move to debugFS?
> > >
> > > I don't think hotjoin should be considered as a debug feature. The
> > > problem here is the power consumption which is higher if you enable
> > > this feature (you need to keep everything clocked and ready to handle
> > > an IBI) whereas if your design is "fixed" (more like an I2C bus) you
> > > may save power by disabling this feature.
> > >
> > > A module parameter does not fit here because it's a per-bus
> > > configuration.
> >
> > I agree. sys entry is more flexiable. and let controller choose better
> > power saving policy for difference user case.
>
> Maybe it's not the first time this case is faced, would you mind
> including power management maintainers in this discussion? Perhaps they
> might have pointers or even have the solution already.

@Ulf and pm experts.

I3C have a features, which call hotjoin. Some controller need enable clock
and some power domain if support hotjoin.

there are two kinds user case.

case1: All devices attached into I3C bus, not hotjoin happen. So
controller can use runtime_pm frame to make clock and power domain on only
when transferring data.

case2: some devices can dynamitc join when system running. Some clocks or
power domain need be kept to make hotjoin event detect logic work.

In one system, two cases may exist at same time. I3C bus1 for case1, I3C
bus2 for case 2.

I add sys entry in I3C bus driver to let user can turn on/off this feature
for specific controller.

My question: any exited solution can handle these in current power
mnanagement system.

Frank

>
> Thanks,
> Miquèl