]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
sandbox: correct cpu nodes
authorHeinrich Schuchardt <xypron.glpk@gmx.de>
Sat, 28 Aug 2021 09:42:08 +0000 (11:42 +0200)
committerSimon Glass <sjg@chromium.org>
Sat, 25 Sep 2021 15:46:15 +0000 (09:46 -0600)
The cpu nodes in arch/sandbox/dts/test.dts should conform to the devicetree
specification:

* property device_type must be set to "cpu"
* the reg property must be provided
* the cpu nodes must have an address

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Reviewed-by: Simon Glass <sjg@chromium.org>
arch/sandbox/dts/test.dts
drivers/cpu/cpu_sandbox.c
test/dm/cpu.c
test/dm/timer.c

index 2dfae1c1061193b2f138cf97442e52e90c732567..e27d106466b4dfca0638be4f9fdb136c2f0dfaa1 100644 (file)
        };
 
        cpus {
+               #address-cells = <1>;
+               #size-cells = <0>;
                timebase-frequency = <2000000>;
-               cpu-test1 {
+               cpu1: cpu@1 {
+                       device_type = "cpu";
+                       reg = <0x1>;
                        timebase-frequency = <3000000>;
                        compatible = "sandbox,cpu_sandbox";
                        u-boot,dm-pre-reloc;
                };
 
-               cpu-test2 {
+               cpu2: cpu@2 {
+                       device_type = "cpu";
+                       reg = <0x2>;
                        compatible = "sandbox,cpu_sandbox";
                        u-boot,dm-pre-reloc;
                };
 
-               cpu-test3 {
+               cpu3: cpu@3 {
+                       device_type = "cpu";
+                       reg = <0x3>;
                        compatible = "sandbox,cpu_sandbox";
                        u-boot,dm-pre-reloc;
                };
index fe6772ba5ac22b32167f0e5e91d2c9e36ca90d2a..2e871fe313c107d83a0c85e103e406cfe2ed57fe 100644 (file)
@@ -38,7 +38,7 @@ static int cpu_sandbox_get_vendor(const struct udevice *dev, char *buf,
        return 0;
 }
 
-static const char *cpu_current = "cpu-test1";
+static const char *cpu_current = "cpu@1";
 
 void cpu_sandbox_set_current(const char *name)
 {
index ed12cafee2b9cc44b05cfb4d02b4082a56cd1bdd..d7e596ee3965e2c191612f1ed2733f753841709c 100644 (file)
@@ -27,7 +27,7 @@ static int dm_test_cpu(struct unit_test_state *uts)
             uclass_find_next_device(&dev))
                ut_assert(dev_get_flags(dev) & DM_FLAG_ACTIVATED);
 
-       ut_assertok(uclass_get_device_by_name(UCLASS_CPU, "cpu-test1", &dev));
+       ut_assertok(uclass_get_device_by_name(UCLASS_CPU, "cpu@1", &dev));
        ut_asserteq_ptr(cpu_get_current_dev(), dev);
        ut_asserteq(cpu_is_current(dev), 1);
 
index 70043b9eeed4d4559ce56765cbcc3b167544f72a..9f94d47692003f0b45afdf98035fe93dfe9566c0 100644 (file)
@@ -33,16 +33,16 @@ static int dm_test_timer_timebase_fallback(struct unit_test_state *uts)
 {
        struct udevice *dev;
 
-       cpu_sandbox_set_current("cpu-test1");
+       cpu_sandbox_set_current("cpu@1");
        ut_assertok(uclass_get_device_by_name(UCLASS_TIMER, "timer@1", &dev));
        ut_asserteq(3000000, timer_get_rate(dev));
        ut_assertok(device_remove(dev, DM_REMOVE_NORMAL));
 
-       cpu_sandbox_set_current("cpu-test2");
+       cpu_sandbox_set_current("cpu@2");
        ut_assertok(uclass_get_device_by_name(UCLASS_TIMER, "timer@1", &dev));
        ut_asserteq(2000000, timer_get_rate(dev));
 
-       cpu_sandbox_set_current("cpu-test1");
+       cpu_sandbox_set_current("cpu@1");
 
        return 0;
 }