mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 06:08:08 +00:00
029093a302
This target has full device tree support, thus reducing the number of patches needed for bcm63xx, in which there's a patch for every board. The intention is to start with a minimal amount of downstream patches and start upstreaming all of them. Current status: - Enabling EHCI/OHCI on BCM6358 causes a kernel panic. - BCM63268 lacks Timer Clocks/Reset support. - No PCI/PCIe drivers. - No ethernet drivers. Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com> Acked-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
13 lines
461 B
Diff
13 lines
461 B
Diff
--- a/drivers/usb/host/ehci-platform.c
|
|
+++ b/drivers/usb/host/ehci-platform.c
|
|
@@ -286,6 +286,9 @@ static int ehci_platform_probe(struct pl
|
|
if (of_property_read_bool(dev->dev.of_node, "big-endian"))
|
|
ehci->big_endian_mmio = ehci->big_endian_desc = 1;
|
|
|
|
+ if (of_property_read_bool(dev->dev.of_node, "ignore-oc"))
|
|
+ ehci->ignore_oc = 1;
|
|
+
|
|
if (of_property_read_bool(dev->dev.of_node,
|
|
"needs-reset-on-resume"))
|
|
priv->reset_on_resume = true;
|