Lines Matching +full:aux +full:- +full:bus

1 // SPDX-License-Identifier: GPL-2.0
5 * Copyright (C) 2016-2017 HiSilicon Co., Ltd. http://www.hisilicon.com
24 #include "pcie-designware.h"
26 #define to_histb_pcie(x) dev_get_drvdata((x)->dev)
69 return readl(histb_pcie->ctrl + reg); in histb_pcie_readl()
74 writel(val, histb_pcie->ctrl + reg); in histb_pcie_writel()
110 histb_pcie_dbi_r_mode(&pci->pp, true); in histb_pcie_read_dbi()
112 histb_pcie_dbi_r_mode(&pci->pp, false); in histb_pcie_read_dbi()
120 histb_pcie_dbi_w_mode(&pci->pp, true); in histb_pcie_write_dbi()
122 histb_pcie_dbi_w_mode(&pci->pp, false); in histb_pcie_write_dbi()
125 static int histb_pcie_rd_own_conf(struct pci_bus *bus, unsigned int devfn, in histb_pcie_rd_own_conf() argument
128 struct dw_pcie *pci = to_dw_pcie_from_pp(bus->sysdata); in histb_pcie_rd_own_conf()
137 static int histb_pcie_wr_own_conf(struct pci_bus *bus, unsigned int devfn, in histb_pcie_wr_own_conf() argument
140 struct dw_pcie *pci = to_dw_pcie_from_pp(bus->sysdata); in histb_pcie_wr_own_conf()
189 pp->bridge->ops = &histb_pci_ops; in histb_pcie_host_init()
206 reset_control_assert(hipcie->soft_reset); in histb_pcie_host_disable()
207 reset_control_assert(hipcie->sys_reset); in histb_pcie_host_disable()
208 reset_control_assert(hipcie->bus_reset); in histb_pcie_host_disable()
210 clk_disable_unprepare(hipcie->aux_clk); in histb_pcie_host_disable()
211 clk_disable_unprepare(hipcie->pipe_clk); in histb_pcie_host_disable()
212 clk_disable_unprepare(hipcie->sys_clk); in histb_pcie_host_disable()
213 clk_disable_unprepare(hipcie->bus_clk); in histb_pcie_host_disable()
215 if (gpio_is_valid(hipcie->reset_gpio)) in histb_pcie_host_disable()
216 gpio_set_value_cansleep(hipcie->reset_gpio, 0); in histb_pcie_host_disable()
218 if (hipcie->vpcie) in histb_pcie_host_disable()
219 regulator_disable(hipcie->vpcie); in histb_pcie_host_disable()
226 struct device *dev = pci->dev; in histb_pcie_host_enable()
230 if (hipcie->vpcie) { in histb_pcie_host_enable()
231 ret = regulator_enable(hipcie->vpcie); in histb_pcie_host_enable()
238 if (gpio_is_valid(hipcie->reset_gpio)) in histb_pcie_host_enable()
239 gpio_set_value_cansleep(hipcie->reset_gpio, 1); in histb_pcie_host_enable()
241 ret = clk_prepare_enable(hipcie->bus_clk); in histb_pcie_host_enable()
243 dev_err(dev, "cannot prepare/enable bus clk\n"); in histb_pcie_host_enable()
247 ret = clk_prepare_enable(hipcie->sys_clk); in histb_pcie_host_enable()
253 ret = clk_prepare_enable(hipcie->pipe_clk); in histb_pcie_host_enable()
259 ret = clk_prepare_enable(hipcie->aux_clk); in histb_pcie_host_enable()
261 dev_err(dev, "cannot prepare/enable aux clk\n"); in histb_pcie_host_enable()
265 reset_control_assert(hipcie->soft_reset); in histb_pcie_host_enable()
266 reset_control_deassert(hipcie->soft_reset); in histb_pcie_host_enable()
268 reset_control_assert(hipcie->sys_reset); in histb_pcie_host_enable()
269 reset_control_deassert(hipcie->sys_reset); in histb_pcie_host_enable()
271 reset_control_assert(hipcie->bus_reset); in histb_pcie_host_enable()
272 reset_control_deassert(hipcie->bus_reset); in histb_pcie_host_enable()
277 clk_disable_unprepare(hipcie->pipe_clk); in histb_pcie_host_enable()
279 clk_disable_unprepare(hipcie->sys_clk); in histb_pcie_host_enable()
281 clk_disable_unprepare(hipcie->bus_clk); in histb_pcie_host_enable()
283 if (hipcie->vpcie) in histb_pcie_host_enable()
284 regulator_disable(hipcie->vpcie); in histb_pcie_host_enable()
301 struct device_node *np = pdev->dev.of_node; in histb_pcie_probe()
302 struct device *dev = &pdev->dev; in histb_pcie_probe()
309 return -ENOMEM; in histb_pcie_probe()
313 return -ENOMEM; in histb_pcie_probe()
315 hipcie->pci = pci; in histb_pcie_probe()
316 pp = &pci->pp; in histb_pcie_probe()
317 pci->dev = dev; in histb_pcie_probe()
318 pci->ops = &dw_pcie_ops; in histb_pcie_probe()
320 hipcie->ctrl = devm_platform_ioremap_resource_byname(pdev, "control"); in histb_pcie_probe()
321 if (IS_ERR(hipcie->ctrl)) { in histb_pcie_probe()
323 return PTR_ERR(hipcie->ctrl); in histb_pcie_probe()
326 pci->dbi_base = devm_platform_ioremap_resource_byname(pdev, "rc-dbi"); in histb_pcie_probe()
327 if (IS_ERR(pci->dbi_base)) { in histb_pcie_probe()
328 dev_err(dev, "cannot get rc-dbi base\n"); in histb_pcie_probe()
329 return PTR_ERR(pci->dbi_base); in histb_pcie_probe()
332 hipcie->vpcie = devm_regulator_get_optional(dev, "vpcie"); in histb_pcie_probe()
333 if (IS_ERR(hipcie->vpcie)) { in histb_pcie_probe()
334 if (PTR_ERR(hipcie->vpcie) != -ENODEV) in histb_pcie_probe()
335 return PTR_ERR(hipcie->vpcie); in histb_pcie_probe()
336 hipcie->vpcie = NULL; in histb_pcie_probe()
339 hipcie->reset_gpio = of_get_named_gpio_flags(np, in histb_pcie_probe()
340 "reset-gpios", 0, &of_flags); in histb_pcie_probe()
343 if (gpio_is_valid(hipcie->reset_gpio)) { in histb_pcie_probe()
344 ret = devm_gpio_request_one(dev, hipcie->reset_gpio, in histb_pcie_probe()
352 hipcie->aux_clk = devm_clk_get(dev, "aux"); in histb_pcie_probe()
353 if (IS_ERR(hipcie->aux_clk)) { in histb_pcie_probe()
354 dev_err(dev, "Failed to get PCIe aux clk\n"); in histb_pcie_probe()
355 return PTR_ERR(hipcie->aux_clk); in histb_pcie_probe()
358 hipcie->pipe_clk = devm_clk_get(dev, "pipe"); in histb_pcie_probe()
359 if (IS_ERR(hipcie->pipe_clk)) { in histb_pcie_probe()
361 return PTR_ERR(hipcie->pipe_clk); in histb_pcie_probe()
364 hipcie->sys_clk = devm_clk_get(dev, "sys"); in histb_pcie_probe()
365 if (IS_ERR(hipcie->sys_clk)) { in histb_pcie_probe()
367 return PTR_ERR(hipcie->sys_clk); in histb_pcie_probe()
370 hipcie->bus_clk = devm_clk_get(dev, "bus"); in histb_pcie_probe()
371 if (IS_ERR(hipcie->bus_clk)) { in histb_pcie_probe()
372 dev_err(dev, "Failed to get PCIe bus clk\n"); in histb_pcie_probe()
373 return PTR_ERR(hipcie->bus_clk); in histb_pcie_probe()
376 hipcie->soft_reset = devm_reset_control_get(dev, "soft"); in histb_pcie_probe()
377 if (IS_ERR(hipcie->soft_reset)) { in histb_pcie_probe()
379 return PTR_ERR(hipcie->soft_reset); in histb_pcie_probe()
382 hipcie->sys_reset = devm_reset_control_get(dev, "sys"); in histb_pcie_probe()
383 if (IS_ERR(hipcie->sys_reset)) { in histb_pcie_probe()
385 return PTR_ERR(hipcie->sys_reset); in histb_pcie_probe()
388 hipcie->bus_reset = devm_reset_control_get(dev, "bus"); in histb_pcie_probe()
389 if (IS_ERR(hipcie->bus_reset)) { in histb_pcie_probe()
390 dev_err(dev, "couldn't get bus reset\n"); in histb_pcie_probe()
391 return PTR_ERR(hipcie->bus_reset); in histb_pcie_probe()
394 hipcie->phy = devm_phy_get(dev, "phy"); in histb_pcie_probe()
395 if (IS_ERR(hipcie->phy)) { in histb_pcie_probe()
396 dev_info(dev, "no pcie-phy found\n"); in histb_pcie_probe()
397 hipcie->phy = NULL; in histb_pcie_probe()
399 * if no pcie-phy found, phy init in histb_pcie_probe()
403 phy_init(hipcie->phy); in histb_pcie_probe()
406 pp->ops = &histb_pcie_host_ops; in histb_pcie_probe()
431 if (hipcie->phy) in histb_pcie_remove()
432 phy_exit(hipcie->phy); in histb_pcie_remove()
438 { .compatible = "hisilicon,hi3798cv200-pcie", },
447 .name = "histb-pcie",