diff options
author | Anton Vorontsov <avorontsov@ru.mvista.com> | 2008-07-08 20:59:43 +0400 |
---|---|---|
committer | Kim Phillips <kim.phillips@freescale.com> | 2008-07-16 14:16:44 -0500 |
commit | 015b27b9e165fcf220e42f2c4afbaeaa2758fcf6 (patch) | |
tree | 0396a9a8b9c6c34b2b12f2eab5a5242214e7a323 /common/fdt_support.c | |
parent | 699f05125509249072a0b865c8d35520d97cd501 (diff) | |
download | u-boot-imx-015b27b9e165fcf220e42f2c4afbaeaa2758fcf6.zip u-boot-imx-015b27b9e165fcf220e42f2c4afbaeaa2758fcf6.tar.gz u-boot-imx-015b27b9e165fcf220e42f2c4afbaeaa2758fcf6.tar.bz2 |
fdt_support: fdt_fixup_dr_usb: add support for phy_type fixups
Currently U-Boot can only fixup the usb dr_mode, but some boards (namely
MPC8315E-RDB) can use two PHY types: ULPI (stand-alone OTG port) or UTMI
(connected to the four-ports hub, usb host only).
This patch implements support for passing Dual-Role USB controller's
device tree property phy_type through the usb_phy_type environment
variable.
Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
Acked-by: Gerald Van Baren <vanbaren@cideas.com>
Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
Diffstat (limited to 'common/fdt_support.c')
-rw-r--r-- | common/fdt_support.c | 30 |
1 files changed, 23 insertions, 7 deletions
diff --git a/common/fdt_support.c b/common/fdt_support.c index 93b144e..2a32376 100644 --- a/common/fdt_support.c +++ b/common/fdt_support.c @@ -422,24 +422,40 @@ void fdt_fixup_ethernet(void *fdt, bd_t *bd) void fdt_fixup_dr_usb(void *blob, bd_t *bd) { char *mode; + char *type; const char *compat = "fsl-usb2-dr"; - const char *prop = "dr_mode"; + const char *prop_mode = "dr_mode"; + const char *prop_type = "phy_type"; int node_offset; int err; mode = getenv("usb_dr_mode"); - if (!mode) + type = getenv("usb_phy_type"); + if (!mode && !type) return; node_offset = fdt_node_offset_by_compatible(blob, 0, compat); - if (node_offset < 0) + if (node_offset < 0) { printf("WARNING: could not find compatible node %s: %s.\n", compat, fdt_strerror(node_offset)); + return; + } - err = fdt_setprop(blob, node_offset, prop, mode, strlen(mode) + 1); - if (err < 0) - printf("WARNING: could not set %s for %s: %s.\n", - prop, compat, fdt_strerror(err)); + if (mode) { + err = fdt_setprop(blob, node_offset, prop_mode, mode, + strlen(mode) + 1); + if (err < 0) + printf("WARNING: could not set %s for %s: %s.\n", + prop_mode, compat, fdt_strerror(err)); + } + + if (type) { + err = fdt_setprop(blob, node_offset, prop_type, type, + strlen(type) + 1); + if (err < 0) + printf("WARNING: could not set %s for %s: %s.\n", + prop_type, compat, fdt_strerror(err)); + } } #endif /* CONFIG_HAS_FSL_DR_USB */ |