mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
This commit is contained in:
commit
d0cc022820
5 changed files with 13 additions and 4 deletions
|
@ -335,4 +335,9 @@
|
|||
status = "disabled";
|
||||
};
|
||||
};
|
||||
|
||||
psci {
|
||||
compatible = "arm,psci-1.0";
|
||||
method = "smc";
|
||||
};
|
||||
};
|
||||
|
|
|
@ -867,6 +867,11 @@
|
|||
};
|
||||
};
|
||||
|
||||
psci {
|
||||
compatible = "arm,psci-1.0";
|
||||
method = "smc";
|
||||
};
|
||||
|
||||
timer {
|
||||
compatible = "arm,armv8-timer";
|
||||
interrupts = <GIC_PPI 13
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue