Tom Rini 2020-06-19 12:41:05 -04:00
commit d0cc022820
5 changed files with 13 additions and 4 deletions

View file

@ -335,4 +335,9 @@
status = "disabled";
};
};
psci {
compatible = "arm,psci-1.0";
method = "smc";
};
};

View file

@ -867,6 +867,11 @@
};
};
psci {
compatible = "arm,psci-1.0";
method = "smc";
};
timer {
compatible = "arm,armv8-timer";
interrupts = <GIC_PPI 13

View file

@ -1,5 +1,5 @@
COLIBRI_T20
M: Lucas Stach <dev@lynxeye.de>
M: Igor Opaniuk <igor.opaniuk@toradex.com>
S: Maintained
F: board/toradex/colibri_t20/
F: include/configs/colibri_t20.h

View file

@ -56,3 +56,4 @@ CONFIG_CI_UDC=y
CONFIG_USB_GADGET_DOWNLOAD=y
CONFIG_USB_HOST_ETHER=y
CONFIG_USB_ETHER_ASIX=y
CONFIG_NVME=y

View file

@ -67,11 +67,9 @@ static int psci_bind(struct udevice *dev)
static int psci_probe(struct udevice *dev)
{
DECLARE_GLOBAL_DATA_PTR;
const char *method;
method = fdt_stringlist_get(gd->fdt_blob, dev_of_offset(dev), "method",
0, NULL);
method = ofnode_read_string(dev_ofnode(dev), "method");
if (!method) {
pr_warn("missing \"method\" property\n");
return -ENXIO;