提交 8824cfc1 编写于 作者: M Masahiro Yamada 提交者: Tom Rini

usb: ehci-generic: support reset control for generic EHCI

This driver is designed in a generic manner, so resets should be
handled generically as well.
Signed-off-by: NMasahiro Yamada <yamada.masahiro@socionext.com>
上级 4815db87
......@@ -6,6 +6,7 @@
#include <common.h>
#include <clk.h>
#include <reset.h>
#include <asm/io.h>
#include <dm.h>
#include "ehci.h"
......@@ -37,6 +38,18 @@ static int ehci_usb_probe(struct udevice *dev)
clk_free(&clk);
}
for (i = 0; ; i++) {
struct reset_ctl reset;
int ret;
ret = reset_get_by_index(dev, i, &reset);
if (ret < 0)
break;
if (reset_deassert(&reset))
printf("failed to deassert reset %d\n", i);
reset_free(&reset);
}
hccr = map_physmem(dev_get_addr(dev), 0x100, MAP_NOCACHE);
hcor = (struct ehci_hcor *)((uintptr_t)hccr +
HC_LENGTH(ehci_readl(&hccr->cr_capbase)));
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册