Re: [PATCH v2 2/3] firmware: scmi: sandbox test for voltage regulator

2021-02-21 Thread Etienne Carriere
On Sat, 20 Feb 2021 at 12:55, Simon Glass wrote: > > On Fri, 19 Feb 2021 at 06:34, Etienne Carriere > wrote: > > > > Implement sandbox regulator devices for SCMI voltage domains > > and test them in DM scmi tests. > > > > Signed-off-by: Etienne Carriere > > --- > > Changes in v2: > > - don't

Re: [PATCH v2 2/3] firmware: scmi: sandbox test for voltage regulator

2021-02-21 Thread Jaehoon Chung
On 2/19/21 10:33 PM, Etienne Carriere wrote: > Implement sandbox regulator devices for SCMI voltage domains > and test them in DM scmi tests. > > Signed-off-by: Etienne Carriere Reviewed-by: Jaehoon Chung Best Regards, Jaehoon Chung > --- > Changes in v2: > - don't test

Re: [PATCH v2 2/3] firmware: scmi: sandbox test for voltage regulator

2021-02-20 Thread Simon Glass
On Fri, 19 Feb 2021 at 06:34, Etienne Carriere wrote: > > Implement sandbox regulator devices for SCMI voltage domains > and test them in DM scmi tests. > > Signed-off-by: Etienne Carriere > --- > Changes in v2: > - don't test IS_ENABLED(CONFIG_DM_REGULATOR_SCMI) in test/dm/scmi.c, >it's

[PATCH v2 2/3] firmware: scmi: sandbox test for voltage regulator

2021-02-19 Thread Etienne Carriere
Implement sandbox regulator devices for SCMI voltage domains and test them in DM scmi tests. Signed-off-by: Etienne Carriere --- Changes in v2: - don't test IS_ENABLED(CONFIG_DM_REGULATOR_SCMI) in test/dm/scmi.c, it's expected enabled when CONFIG_FIRMWARE_SCMI is enabled in sandbox. ---