mirror of https://gitee.com/openkylin/linux.git
PCI: rockchip: Split out rockchip_pcie_parse_dt() to parse DT
Most of the DT properties are used for both of RC driver and EP driver, so split them out in a new function, rockchip_pcie_parse_dt(), in pcie-rockchip.c and rename the original function to rockchip_pcie_parse_host_dt() to avoid confusion. No functional changed intended. Signed-off-by: Shawn Lin <shawn.lin@rock-chips.com> Signed-off-by: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> Tested-by: Jeffy Chen <jeffy.chen@rock-chips.com>
This commit is contained in:
parent
956cd99b35
commit
964bac9455
|
@ -705,130 +705,20 @@ static int rockchip_pcie_setup_irq(struct rockchip_pcie *rockchip)
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* rockchip_pcie_parse_dt - Parse Device Tree
|
* rockchip_pcie_parse_host_dt - Parse Device Tree
|
||||||
* @rockchip: PCIe port information
|
* @rockchip: PCIe port information
|
||||||
*
|
*
|
||||||
* Return: '0' on success and error value on failure
|
* Return: '0' on success and error value on failure
|
||||||
*/
|
*/
|
||||||
static int rockchip_pcie_parse_dt(struct rockchip_pcie *rockchip)
|
static int rockchip_pcie_parse_host_dt(struct rockchip_pcie *rockchip)
|
||||||
{
|
{
|
||||||
struct device *dev = rockchip->dev;
|
struct device *dev = rockchip->dev;
|
||||||
struct platform_device *pdev = to_platform_device(dev);
|
|
||||||
struct device_node *node = dev->of_node;
|
|
||||||
struct resource *regs;
|
|
||||||
int err;
|
int err;
|
||||||
|
|
||||||
regs = platform_get_resource_byname(pdev,
|
err = rockchip_pcie_parse_dt(rockchip);
|
||||||
IORESOURCE_MEM,
|
|
||||||
"axi-base");
|
|
||||||
rockchip->reg_base = devm_pci_remap_cfg_resource(dev, regs);
|
|
||||||
if (IS_ERR(rockchip->reg_base))
|
|
||||||
return PTR_ERR(rockchip->reg_base);
|
|
||||||
|
|
||||||
regs = platform_get_resource_byname(pdev,
|
|
||||||
IORESOURCE_MEM,
|
|
||||||
"apb-base");
|
|
||||||
rockchip->apb_base = devm_ioremap_resource(dev, regs);
|
|
||||||
if (IS_ERR(rockchip->apb_base))
|
|
||||||
return PTR_ERR(rockchip->apb_base);
|
|
||||||
|
|
||||||
err = rockchip_pcie_get_phys(rockchip);
|
|
||||||
if (err)
|
if (err)
|
||||||
return err;
|
return err;
|
||||||
|
|
||||||
rockchip->lanes = 1;
|
|
||||||
err = of_property_read_u32(node, "num-lanes", &rockchip->lanes);
|
|
||||||
if (!err && (rockchip->lanes == 0 ||
|
|
||||||
rockchip->lanes == 3 ||
|
|
||||||
rockchip->lanes > 4)) {
|
|
||||||
dev_warn(dev, "invalid num-lanes, default to use one lane\n");
|
|
||||||
rockchip->lanes = 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
rockchip->link_gen = of_pci_get_max_link_speed(node);
|
|
||||||
if (rockchip->link_gen < 0 || rockchip->link_gen > 2)
|
|
||||||
rockchip->link_gen = 2;
|
|
||||||
|
|
||||||
rockchip->core_rst = devm_reset_control_get_exclusive(dev, "core");
|
|
||||||
if (IS_ERR(rockchip->core_rst)) {
|
|
||||||
if (PTR_ERR(rockchip->core_rst) != -EPROBE_DEFER)
|
|
||||||
dev_err(dev, "missing core reset property in node\n");
|
|
||||||
return PTR_ERR(rockchip->core_rst);
|
|
||||||
}
|
|
||||||
|
|
||||||
rockchip->mgmt_rst = devm_reset_control_get_exclusive(dev, "mgmt");
|
|
||||||
if (IS_ERR(rockchip->mgmt_rst)) {
|
|
||||||
if (PTR_ERR(rockchip->mgmt_rst) != -EPROBE_DEFER)
|
|
||||||
dev_err(dev, "missing mgmt reset property in node\n");
|
|
||||||
return PTR_ERR(rockchip->mgmt_rst);
|
|
||||||
}
|
|
||||||
|
|
||||||
rockchip->mgmt_sticky_rst = devm_reset_control_get_exclusive(dev,
|
|
||||||
"mgmt-sticky");
|
|
||||||
if (IS_ERR(rockchip->mgmt_sticky_rst)) {
|
|
||||||
if (PTR_ERR(rockchip->mgmt_sticky_rst) != -EPROBE_DEFER)
|
|
||||||
dev_err(dev, "missing mgmt-sticky reset property in node\n");
|
|
||||||
return PTR_ERR(rockchip->mgmt_sticky_rst);
|
|
||||||
}
|
|
||||||
|
|
||||||
rockchip->pipe_rst = devm_reset_control_get_exclusive(dev, "pipe");
|
|
||||||
if (IS_ERR(rockchip->pipe_rst)) {
|
|
||||||
if (PTR_ERR(rockchip->pipe_rst) != -EPROBE_DEFER)
|
|
||||||
dev_err(dev, "missing pipe reset property in node\n");
|
|
||||||
return PTR_ERR(rockchip->pipe_rst);
|
|
||||||
}
|
|
||||||
|
|
||||||
rockchip->pm_rst = devm_reset_control_get_exclusive(dev, "pm");
|
|
||||||
if (IS_ERR(rockchip->pm_rst)) {
|
|
||||||
if (PTR_ERR(rockchip->pm_rst) != -EPROBE_DEFER)
|
|
||||||
dev_err(dev, "missing pm reset property in node\n");
|
|
||||||
return PTR_ERR(rockchip->pm_rst);
|
|
||||||
}
|
|
||||||
|
|
||||||
rockchip->pclk_rst = devm_reset_control_get_exclusive(dev, "pclk");
|
|
||||||
if (IS_ERR(rockchip->pclk_rst)) {
|
|
||||||
if (PTR_ERR(rockchip->pclk_rst) != -EPROBE_DEFER)
|
|
||||||
dev_err(dev, "missing pclk reset property in node\n");
|
|
||||||
return PTR_ERR(rockchip->pclk_rst);
|
|
||||||
}
|
|
||||||
|
|
||||||
rockchip->aclk_rst = devm_reset_control_get_exclusive(dev, "aclk");
|
|
||||||
if (IS_ERR(rockchip->aclk_rst)) {
|
|
||||||
if (PTR_ERR(rockchip->aclk_rst) != -EPROBE_DEFER)
|
|
||||||
dev_err(dev, "missing aclk reset property in node\n");
|
|
||||||
return PTR_ERR(rockchip->aclk_rst);
|
|
||||||
}
|
|
||||||
|
|
||||||
rockchip->ep_gpio = devm_gpiod_get(dev, "ep", GPIOD_OUT_HIGH);
|
|
||||||
if (IS_ERR(rockchip->ep_gpio)) {
|
|
||||||
dev_err(dev, "missing ep-gpios property in node\n");
|
|
||||||
return PTR_ERR(rockchip->ep_gpio);
|
|
||||||
}
|
|
||||||
|
|
||||||
rockchip->aclk_pcie = devm_clk_get(dev, "aclk");
|
|
||||||
if (IS_ERR(rockchip->aclk_pcie)) {
|
|
||||||
dev_err(dev, "aclk clock not found\n");
|
|
||||||
return PTR_ERR(rockchip->aclk_pcie);
|
|
||||||
}
|
|
||||||
|
|
||||||
rockchip->aclk_perf_pcie = devm_clk_get(dev, "aclk-perf");
|
|
||||||
if (IS_ERR(rockchip->aclk_perf_pcie)) {
|
|
||||||
dev_err(dev, "aclk_perf clock not found\n");
|
|
||||||
return PTR_ERR(rockchip->aclk_perf_pcie);
|
|
||||||
}
|
|
||||||
|
|
||||||
rockchip->hclk_pcie = devm_clk_get(dev, "hclk");
|
|
||||||
if (IS_ERR(rockchip->hclk_pcie)) {
|
|
||||||
dev_err(dev, "hclk clock not found\n");
|
|
||||||
return PTR_ERR(rockchip->hclk_pcie);
|
|
||||||
}
|
|
||||||
|
|
||||||
rockchip->clk_pcie_pm = devm_clk_get(dev, "pm");
|
|
||||||
if (IS_ERR(rockchip->clk_pcie_pm)) {
|
|
||||||
dev_err(dev, "pm clock not found\n");
|
|
||||||
return PTR_ERR(rockchip->clk_pcie_pm);
|
|
||||||
}
|
|
||||||
|
|
||||||
err = rockchip_pcie_setup_irq(rockchip);
|
err = rockchip_pcie_setup_irq(rockchip);
|
||||||
if (err)
|
if (err)
|
||||||
return err;
|
return err;
|
||||||
|
@ -1195,8 +1085,9 @@ static int rockchip_pcie_probe(struct platform_device *pdev)
|
||||||
|
|
||||||
platform_set_drvdata(pdev, rockchip);
|
platform_set_drvdata(pdev, rockchip);
|
||||||
rockchip->dev = dev;
|
rockchip->dev = dev;
|
||||||
|
rockchip->is_rc = true;
|
||||||
|
|
||||||
err = rockchip_pcie_parse_dt(rockchip);
|
err = rockchip_pcie_parse_host_dt(rockchip);
|
||||||
if (err)
|
if (err)
|
||||||
return err;
|
return err;
|
||||||
|
|
||||||
|
|
|
@ -12,10 +12,139 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <linux/clk.h>
|
#include <linux/clk.h>
|
||||||
|
#include <linux/gpio/consumer.h>
|
||||||
|
#include <linux/of_pci.h>
|
||||||
#include <linux/phy/phy.h>
|
#include <linux/phy/phy.h>
|
||||||
|
#include <linux/platform_device.h>
|
||||||
|
#include <linux/reset.h>
|
||||||
|
|
||||||
#include "pcie-rockchip.h"
|
#include "pcie-rockchip.h"
|
||||||
|
|
||||||
|
int rockchip_pcie_parse_dt(struct rockchip_pcie *rockchip)
|
||||||
|
{
|
||||||
|
struct device *dev = rockchip->dev;
|
||||||
|
struct platform_device *pdev = to_platform_device(dev);
|
||||||
|
struct device_node *node = dev->of_node;
|
||||||
|
struct resource *regs;
|
||||||
|
int err;
|
||||||
|
|
||||||
|
regs = platform_get_resource_byname(pdev,
|
||||||
|
IORESOURCE_MEM,
|
||||||
|
"axi-base");
|
||||||
|
rockchip->reg_base = devm_pci_remap_cfg_resource(dev, regs);
|
||||||
|
if (IS_ERR(rockchip->reg_base))
|
||||||
|
return PTR_ERR(rockchip->reg_base);
|
||||||
|
|
||||||
|
regs = platform_get_resource_byname(pdev,
|
||||||
|
IORESOURCE_MEM,
|
||||||
|
"apb-base");
|
||||||
|
rockchip->apb_base = devm_ioremap_resource(dev, regs);
|
||||||
|
if (IS_ERR(rockchip->apb_base))
|
||||||
|
return PTR_ERR(rockchip->apb_base);
|
||||||
|
|
||||||
|
err = rockchip_pcie_get_phys(rockchip);
|
||||||
|
if (err)
|
||||||
|
return err;
|
||||||
|
|
||||||
|
rockchip->lanes = 1;
|
||||||
|
err = of_property_read_u32(node, "num-lanes", &rockchip->lanes);
|
||||||
|
if (!err && (rockchip->lanes == 0 ||
|
||||||
|
rockchip->lanes == 3 ||
|
||||||
|
rockchip->lanes > 4)) {
|
||||||
|
dev_warn(dev, "invalid num-lanes, default to use one lane\n");
|
||||||
|
rockchip->lanes = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
rockchip->link_gen = of_pci_get_max_link_speed(node);
|
||||||
|
if (rockchip->link_gen < 0 || rockchip->link_gen > 2)
|
||||||
|
rockchip->link_gen = 2;
|
||||||
|
|
||||||
|
rockchip->core_rst = devm_reset_control_get_exclusive(dev, "core");
|
||||||
|
if (IS_ERR(rockchip->core_rst)) {
|
||||||
|
if (PTR_ERR(rockchip->core_rst) != -EPROBE_DEFER)
|
||||||
|
dev_err(dev, "missing core reset property in node\n");
|
||||||
|
return PTR_ERR(rockchip->core_rst);
|
||||||
|
}
|
||||||
|
|
||||||
|
rockchip->mgmt_rst = devm_reset_control_get_exclusive(dev, "mgmt");
|
||||||
|
if (IS_ERR(rockchip->mgmt_rst)) {
|
||||||
|
if (PTR_ERR(rockchip->mgmt_rst) != -EPROBE_DEFER)
|
||||||
|
dev_err(dev, "missing mgmt reset property in node\n");
|
||||||
|
return PTR_ERR(rockchip->mgmt_rst);
|
||||||
|
}
|
||||||
|
|
||||||
|
rockchip->mgmt_sticky_rst = devm_reset_control_get_exclusive(dev,
|
||||||
|
"mgmt-sticky");
|
||||||
|
if (IS_ERR(rockchip->mgmt_sticky_rst)) {
|
||||||
|
if (PTR_ERR(rockchip->mgmt_sticky_rst) != -EPROBE_DEFER)
|
||||||
|
dev_err(dev, "missing mgmt-sticky reset property in node\n");
|
||||||
|
return PTR_ERR(rockchip->mgmt_sticky_rst);
|
||||||
|
}
|
||||||
|
|
||||||
|
rockchip->pipe_rst = devm_reset_control_get_exclusive(dev, "pipe");
|
||||||
|
if (IS_ERR(rockchip->pipe_rst)) {
|
||||||
|
if (PTR_ERR(rockchip->pipe_rst) != -EPROBE_DEFER)
|
||||||
|
dev_err(dev, "missing pipe reset property in node\n");
|
||||||
|
return PTR_ERR(rockchip->pipe_rst);
|
||||||
|
}
|
||||||
|
|
||||||
|
rockchip->pm_rst = devm_reset_control_get_exclusive(dev, "pm");
|
||||||
|
if (IS_ERR(rockchip->pm_rst)) {
|
||||||
|
if (PTR_ERR(rockchip->pm_rst) != -EPROBE_DEFER)
|
||||||
|
dev_err(dev, "missing pm reset property in node\n");
|
||||||
|
return PTR_ERR(rockchip->pm_rst);
|
||||||
|
}
|
||||||
|
|
||||||
|
rockchip->pclk_rst = devm_reset_control_get_exclusive(dev, "pclk");
|
||||||
|
if (IS_ERR(rockchip->pclk_rst)) {
|
||||||
|
if (PTR_ERR(rockchip->pclk_rst) != -EPROBE_DEFER)
|
||||||
|
dev_err(dev, "missing pclk reset property in node\n");
|
||||||
|
return PTR_ERR(rockchip->pclk_rst);
|
||||||
|
}
|
||||||
|
|
||||||
|
rockchip->aclk_rst = devm_reset_control_get_exclusive(dev, "aclk");
|
||||||
|
if (IS_ERR(rockchip->aclk_rst)) {
|
||||||
|
if (PTR_ERR(rockchip->aclk_rst) != -EPROBE_DEFER)
|
||||||
|
dev_err(dev, "missing aclk reset property in node\n");
|
||||||
|
return PTR_ERR(rockchip->aclk_rst);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (rockchip->is_rc) {
|
||||||
|
rockchip->ep_gpio = devm_gpiod_get(dev, "ep", GPIOD_OUT_HIGH);
|
||||||
|
if (IS_ERR(rockchip->ep_gpio)) {
|
||||||
|
dev_err(dev, "missing ep-gpios property in node\n");
|
||||||
|
return PTR_ERR(rockchip->ep_gpio);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
rockchip->aclk_pcie = devm_clk_get(dev, "aclk");
|
||||||
|
if (IS_ERR(rockchip->aclk_pcie)) {
|
||||||
|
dev_err(dev, "aclk clock not found\n");
|
||||||
|
return PTR_ERR(rockchip->aclk_pcie);
|
||||||
|
}
|
||||||
|
|
||||||
|
rockchip->aclk_perf_pcie = devm_clk_get(dev, "aclk-perf");
|
||||||
|
if (IS_ERR(rockchip->aclk_perf_pcie)) {
|
||||||
|
dev_err(dev, "aclk_perf clock not found\n");
|
||||||
|
return PTR_ERR(rockchip->aclk_perf_pcie);
|
||||||
|
}
|
||||||
|
|
||||||
|
rockchip->hclk_pcie = devm_clk_get(dev, "hclk");
|
||||||
|
if (IS_ERR(rockchip->hclk_pcie)) {
|
||||||
|
dev_err(dev, "hclk clock not found\n");
|
||||||
|
return PTR_ERR(rockchip->hclk_pcie);
|
||||||
|
}
|
||||||
|
|
||||||
|
rockchip->clk_pcie_pm = devm_clk_get(dev, "pm");
|
||||||
|
if (IS_ERR(rockchip->clk_pcie_pm)) {
|
||||||
|
dev_err(dev, "pm clock not found\n");
|
||||||
|
return PTR_ERR(rockchip->clk_pcie_pm);
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
EXPORT_SYMBOL_GPL(rockchip_pcie_parse_dt);
|
||||||
|
|
||||||
int rockchip_pcie_get_phys(struct rockchip_pcie *rockchip)
|
int rockchip_pcie_get_phys(struct rockchip_pcie *rockchip)
|
||||||
{
|
{
|
||||||
struct device *dev = rockchip->dev;
|
struct device *dev = rockchip->dev;
|
||||||
|
|
|
@ -222,6 +222,7 @@ struct rockchip_pcie {
|
||||||
u32 mem_size;
|
u32 mem_size;
|
||||||
phys_addr_t msg_bus_addr;
|
phys_addr_t msg_bus_addr;
|
||||||
phys_addr_t mem_bus_addr;
|
phys_addr_t mem_bus_addr;
|
||||||
|
bool is_rc;
|
||||||
};
|
};
|
||||||
|
|
||||||
static u32 rockchip_pcie_read(struct rockchip_pcie *rockchip, u32 reg)
|
static u32 rockchip_pcie_read(struct rockchip_pcie *rockchip, u32 reg)
|
||||||
|
@ -235,6 +236,7 @@ static void rockchip_pcie_write(struct rockchip_pcie *rockchip, u32 val,
|
||||||
writel(val, rockchip->apb_base + reg);
|
writel(val, rockchip->apb_base + reg);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int rockchip_pcie_parse_dt(struct rockchip_pcie *rockchip);
|
||||||
int rockchip_pcie_get_phys(struct rockchip_pcie *rockchip);
|
int rockchip_pcie_get_phys(struct rockchip_pcie *rockchip);
|
||||||
void rockchip_pcie_deinit_phys(struct rockchip_pcie *rockchip);
|
void rockchip_pcie_deinit_phys(struct rockchip_pcie *rockchip);
|
||||||
int rockchip_pcie_enable_clocks(struct rockchip_pcie *rockchip);
|
int rockchip_pcie_enable_clocks(struct rockchip_pcie *rockchip);
|
||||||
|
|
Loading…
Reference in New Issue