Hi Claudiu, > -----Original Message----- > From: Claudiu <claudiu.beznea@xxxxxxxxx> > Sent: Thursday, July 11, 2024 12:52 PM > Subject: [PATCH v3 04/11] i2c: riic: Enable runtime PM autosuspend support > > From: Claudiu Beznea <claudiu.beznea.uj@xxxxxxxxxxxxxx> > > Enable runtime PM autosuspend support for the RIIC driver. With this, in case there are consecutive > xfer requests the device wouldn't be runtime enabled/disabled after each consecutive xfer but after > the the delay configured by user. With this, we can avoid touching hardware registers involved in > runtime PM suspend/resume saving in this way some cycles. The default chosen autosuspend delay is > zero to keep the previous driver behavior. On the other hand, you are saving power. Currently the driver is highly optimized for Power usage. Before transfer turn on the clock After transfer turn off the clock, this is the optimal power usage correspond to suspend delay. By adding suspend delay, you are consuming power corresponding to that delay. Cheers, Biju