]> git.sur5r.net Git - u-boot/commitdiff
cpu: bmips: fix probe to get the address
authorPhilippe Reynes <philippe.reynes@softathome.com>
Fri, 22 Jun 2018 16:52:05 +0000 (18:52 +0200)
committerDaniel Schwierzeck <daniel.schwierzeck@gmail.com>
Wed, 11 Jul 2018 12:23:55 +0000 (14:23 +0200)
In the device tree, the address for cpu is located in
the node "cpus", not in the cpu node (for exemple cpu@0).
So when probing cpu, the cpu address must be read in the
cpu parent.

The commit "cpu: bmips: convert to use live dt"
(sha1: c444afbbefa103d567f197393d39ec0fcca21a0c)
change this behaviour and read the address in the
cpu node when probing cpu.

We fix this by reading the address in the cpu parent.

Signed-off-by: Philippe Reynes <philippe.reynes@softathome.com>
drivers/cpu/bmips_cpu.c

index f5bacd2b187f7c5486833e0816d9bc25f8d3ae49..78560b0fb4ffdaef01c369ae0e6709df1845cfcb 100644 (file)
@@ -407,7 +407,7 @@ int bmips_cpu_probe(struct udevice *dev)
        const struct bmips_cpu_hw *hw =
                (const struct bmips_cpu_hw *)dev_get_driver_data(dev);
 
-       priv->regs = dev_remap_addr(dev);
+       priv->regs = dev_remap_addr(dev_get_parent(dev));
        if (!priv->regs)
                return -EINVAL;