PCI: rockchip: add devicetree property rockchip,skip-reset-in-config
This commit is contained in:
parent
b2999aeaf7
commit
e5038ede92
1 changed files with 4 additions and 1 deletions
|
|
@ -1473,7 +1473,10 @@ static int rk_pcie_hardware_io_config(struct rk_pcie *rk_pcie)
|
|||
return ret;
|
||||
}
|
||||
|
||||
reset_control_assert(rk_pcie->rsts);
|
||||
if (device_property_read_bool(dev, "rockchip,skip-reset-in-config")) {
|
||||
dev_info(dev, "skip reset controller\n");
|
||||
} else
|
||||
reset_control_assert(rk_pcie->rsts);
|
||||
udelay(10);
|
||||
|
||||
ret = clk_bulk_prepare_enable(rk_pcie->clk_cnt, rk_pcie->clks);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue