firmware: scmi: fix inline comments and minor coding style issues
authorEtienne Carriere <etienne.carriere@linaro.org>
Mon, 8 Mar 2021 21:38:08 +0000 (22:38 +0100)
committerTom Rini <trini@konsulko.com>
Mon, 12 Apr 2021 21:17:11 +0000 (17:17 -0400)
Fix inline comments and empty line in scmi driver and test files.

Remove test on IS_ENABLED(CONFIG_*_SCMI) in test/dm/scmi.c since these
configuration are expected enabled when CONFIG_FIRMWARE_SCMI is enabled
in sandbox configuration.

Signed-off-by: Etienne Carriere <etienne.carriere@linaro.org>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Jaehoon Chung <jh80.chung@samsung.com>
arch/sandbox/include/asm/scmi_test.h
drivers/firmware/scmi/sandbox-scmi_agent.c
test/dm/scmi.c

index 9b70315..2930e68 100644 (file)
@@ -24,6 +24,7 @@ struct sandbox_scmi_clk {
 
 /**
  * struct sandbox_scmi_reset - Simulated reset controller exposed by SCMI
+ * @id:                Identifier of the reset controller used in the SCMI protocol
  * @asserted:  Reset control state: true if asserted, false if desasserted
  */
 struct sandbox_scmi_reset {
@@ -48,8 +49,8 @@ struct sandbox_scmi_voltd {
  * @idx:       Identifier for the SCMI agent, its index
  * @clk:       Simulated clocks
  * @clk_count: Simulated clocks array size
- * @clk:       Simulated reset domains
- * @clk_count: Simulated reset domains array size
+ * @reset:     Simulated reset domains
+ * @reset_count: Simulated reset domains array size
  * @voltd:      Simulated voltage domains (regulators)
  * @voltd_count: Simulated voltage domains array size
  */
index 45a82d6..4b96820 100644 (file)
@@ -20,7 +20,7 @@
  * processing. It simulates few of the SCMI services for some of the
  * SCMI protocols embedded in U-Boot. Currently:
  * - SCMI clock protocol: emulate 2 agents each exposing few clocks
- * - SCMI reset protocol: emulate 1 agents each exposing a reset
+ * - SCMI reset protocol: emulate 1 agent exposing a reset controller
  * - SCMI voltage domain protocol: emulate 1 agent exposing 2 regulators
  *
  * Agent #0 simulates 2 clocks, 1 reset domain and 1 voltage domain.
@@ -31,7 +31,7 @@
  *
  * All clocks and regulators are default disabled and reset controller down.
  *
- * This Driver exports sandbox_scmi_service_ct() for the test sequence to
+ * This Driver exports sandbox_scmi_service_ctx() for the test sequence to
  * get the state of the simulated services (clock state, rate, ...) and
  * check back-end device state reflects the request send through the
  * various uclass devices, as clocks and reset controllers.
index 7924103..2eaf063 100644 (file)
@@ -44,10 +44,8 @@ static int ut_assert_scmi_state_postprobe(struct unit_test_state *uts,
        scmi_devices = sandbox_scmi_devices_ctx(dev);
 
        ut_assertnonnull(scmi_devices);
-       if (IS_ENABLED(CONFIG_CLK_SCMI))
-               ut_asserteq(3, scmi_devices->clk_count);
-       if (IS_ENABLED(CONFIG_RESET_SCMI))
-               ut_asserteq(1, scmi_devices->reset_count);
+       ut_asserteq(3, 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 */
@@ -110,7 +108,6 @@ static int dm_test_scmi_sandbox_agent(struct unit_test_state *uts)
 
        return ret;
 }
-
 DM_TEST(dm_test_scmi_sandbox_agent, UT_TESTF_SCAN_FDT);
 
 static int dm_test_scmi_clocks(struct unit_test_state *uts)
@@ -121,9 +118,6 @@ static int dm_test_scmi_clocks(struct unit_test_state *uts)
        int ret_dev;
        int ret;
 
-       if (!IS_ENABLED(CONFIG_CLK_SCMI))
-               return 0;
-
        ret = load_sandbox_scmi_test_devices(uts, &dev);
        if (ret)
                return ret;
@@ -172,7 +166,6 @@ static int dm_test_scmi_clocks(struct unit_test_state *uts)
 
        return release_sandbox_scmi_test_devices(uts, dev);
 }
-
 DM_TEST(dm_test_scmi_clocks, UT_TESTF_SCAN_FDT);
 
 static int dm_test_scmi_resets(struct unit_test_state *uts)
@@ -182,9 +175,6 @@ static int dm_test_scmi_resets(struct unit_test_state *uts)
        struct udevice *dev = NULL;
        int ret;
 
-       if (!IS_ENABLED(CONFIG_RESET_SCMI))
-               return 0;
-
        ret = load_sandbox_scmi_test_devices(uts, &dev);
        if (ret)
                return ret;
@@ -203,7 +193,6 @@ static int dm_test_scmi_resets(struct unit_test_state *uts)
 
        return release_sandbox_scmi_test_devices(uts, dev);
 }
-
 DM_TEST(dm_test_scmi_resets, UT_TESTF_SCAN_FDT);
 
 static int dm_test_scmi_voltage_domains(struct unit_test_state *uts)