sandbox: scmi: test against a single scmi agent
As per DT bindings since Linux kernel v5.14, the device tree can define only 1 SCMI agent node that is named scmi [1]. As a consequence, change implementation of the SCMI driver test through sandbox architecture to reflect that. This change updates sandbox test DT and sandbox SCMI driver accordingly since all these are impacted. Cc: Simon Glass <sjg@chromium.org> Reviewed-by: Patrick Delaunay <patrick.delaunay@foss.st.com> Signed-off-by: Etienne Carriere <etienne.carriere@linaro.org>
This commit is contained in:
committed by
Tom Rini
parent
4dea25a00d
commit
41d62e2f27
+53
-61
@@ -5,7 +5,7 @@
|
||||
* Tests scmi_agent uclass and the SCMI drivers implemented in other
|
||||
* uclass devices probe when a SCMI server exposes resources.
|
||||
*
|
||||
* Note in test.dts the protocol@10 node in agent 1. Protocol 0x10 is not
|
||||
* Note in test.dts the protocol@10 node in scmi node. Protocol 0x10 is not
|
||||
* implemented in U-Boot SCMI components but the implementation is exepected
|
||||
* to not complain on unknown protocol IDs, as long as it is not used. Note
|
||||
* in test.dts tests that SCMI drivers probing does not fail for such an
|
||||
@@ -28,8 +28,7 @@ static int ut_assert_scmi_state_preprobe(struct unit_test_state *uts)
|
||||
struct sandbox_scmi_service *scmi_ctx = sandbox_scmi_service_ctx();
|
||||
|
||||
ut_assertnonnull(scmi_ctx);
|
||||
if (scmi_ctx->agent_count)
|
||||
ut_asserteq(2, scmi_ctx->agent_count);
|
||||
ut_assertnull(scmi_ctx->agent);
|
||||
|
||||
return 0;
|
||||
}
|
||||
@@ -39,35 +38,26 @@ static int ut_assert_scmi_state_postprobe(struct unit_test_state *uts,
|
||||
{
|
||||
struct sandbox_scmi_devices *scmi_devices;
|
||||
struct sandbox_scmi_service *scmi_ctx;
|
||||
struct sandbox_scmi_agent *agent0;
|
||||
struct sandbox_scmi_agent *agent1;
|
||||
struct sandbox_scmi_agent *agent;
|
||||
|
||||
/* Device references to check context against test sequence */
|
||||
scmi_devices = sandbox_scmi_devices_ctx(dev);
|
||||
|
||||
ut_assertnonnull(scmi_devices);
|
||||
ut_asserteq(3, scmi_devices->clk_count);
|
||||
ut_asserteq(2, scmi_devices->clk_count);
|
||||
ut_asserteq(1, scmi_devices->reset_count);
|
||||
ut_asserteq(2, scmi_devices->regul_count);
|
||||
|
||||
/* State of the simulated SCMI server exposed */
|
||||
scmi_ctx = sandbox_scmi_service_ctx();
|
||||
agent0 = scmi_ctx->agent[0];
|
||||
agent1 = scmi_ctx->agent[1];
|
||||
|
||||
ut_asserteq(2, scmi_ctx->agent_count);
|
||||
|
||||
ut_assertnonnull(agent0);
|
||||
ut_asserteq(2, agent0->clk_count);
|
||||
ut_assertnonnull(agent0->clk);
|
||||
ut_asserteq(1, agent0->reset_count);
|
||||
ut_assertnonnull(agent0->reset);
|
||||
ut_asserteq(2, agent0->voltd_count);
|
||||
ut_assertnonnull(agent0->voltd);
|
||||
|
||||
ut_assertnonnull(agent1);
|
||||
ut_assertnonnull(agent1->clk);
|
||||
ut_asserteq(1, agent1->clk_count);
|
||||
ut_assertnonnull(scmi_ctx);
|
||||
agent = scmi_ctx->agent;
|
||||
ut_assertnonnull(agent);
|
||||
ut_asserteq(2, agent->clk_count);
|
||||
ut_assertnonnull(agent->clk);
|
||||
ut_asserteq(1, agent->reset_count);
|
||||
ut_assertnonnull(agent->reset);
|
||||
ut_asserteq(2, agent->voltd_count);
|
||||
ut_assertnonnull(agent->voltd);
|
||||
|
||||
return 0;
|
||||
}
|
||||
@@ -118,9 +108,8 @@ static int dm_test_scmi_clocks(struct unit_test_state *uts)
|
||||
{
|
||||
struct sandbox_scmi_devices *scmi_devices;
|
||||
struct sandbox_scmi_service *scmi_ctx;
|
||||
struct sandbox_scmi_agent *agent0;
|
||||
struct sandbox_scmi_agent *agent1;
|
||||
struct udevice *dev = NULL;
|
||||
struct sandbox_scmi_agent *agent;
|
||||
struct udevice *dev;
|
||||
int ret_dev;
|
||||
int ret;
|
||||
|
||||
@@ -129,48 +118,45 @@ static int dm_test_scmi_clocks(struct unit_test_state *uts)
|
||||
return ret;
|
||||
|
||||
scmi_devices = sandbox_scmi_devices_ctx(dev);
|
||||
ut_assertnonnull(scmi_devices);
|
||||
scmi_ctx = sandbox_scmi_service_ctx();
|
||||
agent0 = scmi_ctx->agent[0];
|
||||
agent1 = scmi_ctx->agent[1];
|
||||
ut_assertnonnull(scmi_ctx);
|
||||
agent = scmi_ctx->agent;
|
||||
ut_assertnonnull(agent);
|
||||
|
||||
/* Test SCMI clocks rate manipulation */
|
||||
ut_asserteq(1000, clk_get_rate(&scmi_devices->clk[0]));
|
||||
ut_asserteq(333, clk_get_rate(&scmi_devices->clk[1]));
|
||||
ut_asserteq(44, clk_get_rate(&scmi_devices->clk[2]));
|
||||
|
||||
ret_dev = clk_set_rate(&scmi_devices->clk[1], 1088);
|
||||
ut_assert(!ret_dev || ret_dev == 1088);
|
||||
|
||||
ut_asserteq(1000, agent0->clk[0].rate);
|
||||
ut_asserteq(1088, agent0->clk[1].rate);
|
||||
ut_asserteq(44, agent1->clk[0].rate);
|
||||
ut_asserteq(1000, agent->clk[0].rate);
|
||||
ut_asserteq(1088, agent->clk[1].rate);
|
||||
|
||||
ut_asserteq(1000, clk_get_rate(&scmi_devices->clk[0]));
|
||||
ut_asserteq(1088, clk_get_rate(&scmi_devices->clk[1]));
|
||||
ut_asserteq(44, clk_get_rate(&scmi_devices->clk[2]));
|
||||
|
||||
/* restore original rate for further tests */
|
||||
ret_dev = clk_set_rate(&scmi_devices->clk[1], 333);
|
||||
ut_assert(!ret_dev || ret_dev == 333);
|
||||
|
||||
/* Test SCMI clocks gating manipulation */
|
||||
ut_assert(!agent0->clk[0].enabled);
|
||||
ut_assert(!agent0->clk[1].enabled);
|
||||
ut_assert(!agent1->clk[0].enabled);
|
||||
ut_assert(!agent->clk[0].enabled);
|
||||
ut_assert(!agent->clk[1].enabled);
|
||||
ut_assert(!agent->clk[2].enabled);
|
||||
|
||||
ut_asserteq(0, clk_enable(&scmi_devices->clk[1]));
|
||||
ut_asserteq(0, clk_enable(&scmi_devices->clk[2]));
|
||||
|
||||
ut_assert(!agent0->clk[0].enabled);
|
||||
ut_assert(agent0->clk[1].enabled);
|
||||
ut_assert(agent1->clk[0].enabled);
|
||||
ut_assert(!agent->clk[0].enabled);
|
||||
ut_assert(agent->clk[1].enabled);
|
||||
ut_assert(!agent->clk[2].enabled);
|
||||
|
||||
ut_assertok(clk_disable(&scmi_devices->clk[1]));
|
||||
ut_assertok(clk_disable(&scmi_devices->clk[2]));
|
||||
|
||||
ut_assert(!agent0->clk[0].enabled);
|
||||
ut_assert(!agent0->clk[1].enabled);
|
||||
ut_assert(!agent1->clk[0].enabled);
|
||||
ut_assert(!agent->clk[0].enabled);
|
||||
ut_assert(!agent->clk[1].enabled);
|
||||
ut_assert(!agent->clk[2].enabled);
|
||||
|
||||
return release_sandbox_scmi_test_devices(uts, dev);
|
||||
}
|
||||
@@ -180,7 +166,7 @@ static int dm_test_scmi_resets(struct unit_test_state *uts)
|
||||
{
|
||||
struct sandbox_scmi_devices *scmi_devices;
|
||||
struct sandbox_scmi_service *scmi_ctx;
|
||||
struct sandbox_scmi_agent *agent0;
|
||||
struct sandbox_scmi_agent *agent;
|
||||
struct udevice *dev = NULL;
|
||||
int ret;
|
||||
|
||||
@@ -189,17 +175,20 @@ static int dm_test_scmi_resets(struct unit_test_state *uts)
|
||||
return ret;
|
||||
|
||||
scmi_devices = sandbox_scmi_devices_ctx(dev);
|
||||
ut_assertnonnull(scmi_devices);
|
||||
scmi_ctx = sandbox_scmi_service_ctx();
|
||||
agent0 = scmi_ctx->agent[0];
|
||||
ut_assertnonnull(scmi_ctx);
|
||||
agent = scmi_ctx->agent;
|
||||
ut_assertnonnull(agent);
|
||||
|
||||
/* Test SCMI resect controller manipulation */
|
||||
ut_assert(!agent0->reset[0].asserted)
|
||||
ut_assert(!agent->reset[0].asserted)
|
||||
|
||||
ut_assertok(reset_assert(&scmi_devices->reset[0]));
|
||||
ut_assert(agent0->reset[0].asserted)
|
||||
ut_assert(agent->reset[0].asserted)
|
||||
|
||||
ut_assertok(reset_deassert(&scmi_devices->reset[0]));
|
||||
ut_assert(!agent0->reset[0].asserted);
|
||||
ut_assert(!agent->reset[0].asserted);
|
||||
|
||||
return release_sandbox_scmi_test_devices(uts, dev);
|
||||
}
|
||||
@@ -209,7 +198,7 @@ static int dm_test_scmi_voltage_domains(struct unit_test_state *uts)
|
||||
{
|
||||
struct sandbox_scmi_devices *scmi_devices;
|
||||
struct sandbox_scmi_service *scmi_ctx;
|
||||
struct sandbox_scmi_agent *agent0;
|
||||
struct sandbox_scmi_agent *agent;
|
||||
struct dm_regulator_uclass_plat *uc_pdata;
|
||||
struct udevice *dev;
|
||||
struct udevice *regul0_dev;
|
||||
@@ -217,8 +206,11 @@ static int dm_test_scmi_voltage_domains(struct unit_test_state *uts)
|
||||
ut_assertok(load_sandbox_scmi_test_devices(uts, &dev));
|
||||
|
||||
scmi_devices = sandbox_scmi_devices_ctx(dev);
|
||||
ut_assertnonnull(scmi_devices);
|
||||
scmi_ctx = sandbox_scmi_service_ctx();
|
||||
agent0 = scmi_ctx->agent[0];
|
||||
ut_assertnonnull(scmi_ctx);
|
||||
agent = scmi_ctx->agent;
|
||||
ut_assertnonnull(agent);
|
||||
|
||||
/* Set/Get an SCMI voltage domain level */
|
||||
regul0_dev = scmi_devices->regul[0];
|
||||
@@ -228,32 +220,32 @@ static int dm_test_scmi_voltage_domains(struct unit_test_state *uts)
|
||||
ut_assert(uc_pdata);
|
||||
|
||||
ut_assertok(regulator_set_value(regul0_dev, uc_pdata->min_uV));
|
||||
ut_asserteq(agent0->voltd[0].voltage_uv, uc_pdata->min_uV);
|
||||
ut_asserteq(agent->voltd[0].voltage_uv, uc_pdata->min_uV);
|
||||
|
||||
ut_assert(regulator_get_value(regul0_dev) == uc_pdata->min_uV);
|
||||
|
||||
ut_assertok(regulator_set_value(regul0_dev, uc_pdata->max_uV));
|
||||
ut_asserteq(agent0->voltd[0].voltage_uv, uc_pdata->max_uV);
|
||||
ut_asserteq(agent->voltd[0].voltage_uv, uc_pdata->max_uV);
|
||||
|
||||
ut_assert(regulator_get_value(regul0_dev) == uc_pdata->max_uV);
|
||||
|
||||
/* Enable/disable SCMI voltage domains */
|
||||
ut_assertok(regulator_set_enable(scmi_devices->regul[0], false));
|
||||
ut_assertok(regulator_set_enable(scmi_devices->regul[1], false));
|
||||
ut_assert(!agent0->voltd[0].enabled);
|
||||
ut_assert(!agent0->voltd[1].enabled);
|
||||
ut_assert(!agent->voltd[0].enabled);
|
||||
ut_assert(!agent->voltd[1].enabled);
|
||||
|
||||
ut_assertok(regulator_set_enable(scmi_devices->regul[0], true));
|
||||
ut_assert(agent0->voltd[0].enabled);
|
||||
ut_assert(!agent0->voltd[1].enabled);
|
||||
ut_assert(agent->voltd[0].enabled);
|
||||
ut_assert(!agent->voltd[1].enabled);
|
||||
|
||||
ut_assertok(regulator_set_enable(scmi_devices->regul[1], true));
|
||||
ut_assert(agent0->voltd[0].enabled);
|
||||
ut_assert(agent0->voltd[1].enabled);
|
||||
ut_assert(agent->voltd[0].enabled);
|
||||
ut_assert(agent->voltd[1].enabled);
|
||||
|
||||
ut_assertok(regulator_set_enable(scmi_devices->regul[0], false));
|
||||
ut_assert(!agent0->voltd[0].enabled);
|
||||
ut_assert(agent0->voltd[1].enabled);
|
||||
ut_assert(!agent->voltd[0].enabled);
|
||||
ut_assert(agent->voltd[1].enabled);
|
||||
|
||||
return release_sandbox_scmi_test_devices(uts, dev);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user