2 * PCIe host controller driver for HiSilicon Hip05 SoC
4 * Copyright (C) 2015 HiSilicon Co., Ltd. http://www.hisilicon.com
6 * Author: Zhou Wang <wangzhou1@hisilicon.com>
7 * Dacai Zhu <zhudacai@hisilicon.com>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
13 #include <linux/interrupt.h>
14 #include <linux/module.h>
15 #include <linux/mfd/syscon.h>
16 #include <linux/of_address.h>
17 #include <linux/of_pci.h>
18 #include <linux/platform_device.h>
19 #include <linux/regmap.h>
21 #include "pcie-designware.h"
23 #define PCIE_SUBCTRL_SYS_STATE4_REG 0x6818
24 #define PCIE_LTSSM_LINKUP_STATE 0x11
25 #define PCIE_LTSSM_STATE_MASK 0x3F
27 #define to_hisi_pcie(x) container_of(x, struct hisi_pcie, pp)
30 struct regmap
*subctrl
;
31 void __iomem
*reg_base
;
36 static inline void hisi_pcie_apb_writel(struct hisi_pcie
*pcie
,
39 writel(val
, pcie
->reg_base
+ reg
);
42 static inline u32
hisi_pcie_apb_readl(struct hisi_pcie
*pcie
, u32 reg
)
44 return readl(pcie
->reg_base
+ reg
);
47 /* Hip05 PCIe host only supports 32-bit config access */
48 static int hisi_pcie_cfg_read(struct pcie_port
*pp
, int where
, int size
,
53 struct hisi_pcie
*pcie
= to_hisi_pcie(pp
);
54 void *walker
= ®_val
;
56 walker
+= (where
& 0x3);
58 reg_val
= hisi_pcie_apb_readl(pcie
, reg
);
61 *val
= *(u8 __force
*) walker
;
63 *val
= *(u16 __force
*) walker
;
67 return PCIBIOS_BAD_REGISTER_NUMBER
;
69 return PCIBIOS_SUCCESSFUL
;
72 /* Hip05 PCIe host only supports 32-bit config access */
73 static int hisi_pcie_cfg_write(struct pcie_port
*pp
, int where
, int size
,
78 struct hisi_pcie
*pcie
= to_hisi_pcie(pp
);
79 void *walker
= ®_val
;
81 walker
+= (where
& 0x3);
84 hisi_pcie_apb_writel(pcie
, val
, reg
);
86 reg_val
= hisi_pcie_apb_readl(pcie
, reg
);
87 *(u16 __force
*) walker
= val
;
88 hisi_pcie_apb_writel(pcie
, reg_val
, reg
);
89 } else if (size
== 1) {
90 reg_val
= hisi_pcie_apb_readl(pcie
, reg
);
91 *(u8 __force
*) walker
= val
;
92 hisi_pcie_apb_writel(pcie
, reg_val
, reg
);
94 return PCIBIOS_BAD_REGISTER_NUMBER
;
96 return PCIBIOS_SUCCESSFUL
;
99 static int hisi_pcie_link_up(struct pcie_port
*pp
)
102 struct hisi_pcie
*hisi_pcie
= to_hisi_pcie(pp
);
104 regmap_read(hisi_pcie
->subctrl
, PCIE_SUBCTRL_SYS_STATE4_REG
+
105 0x100 * hisi_pcie
->port_id
, &val
);
107 return ((val
& PCIE_LTSSM_STATE_MASK
) == PCIE_LTSSM_LINKUP_STATE
);
110 static struct pcie_host_ops hisi_pcie_host_ops
= {
111 .rd_own_conf
= hisi_pcie_cfg_read
,
112 .wr_own_conf
= hisi_pcie_cfg_write
,
113 .link_up
= hisi_pcie_link_up
,
116 static int hisi_add_pcie_port(struct pcie_port
*pp
,
117 struct platform_device
*pdev
)
121 struct hisi_pcie
*hisi_pcie
= to_hisi_pcie(pp
);
123 if (of_property_read_u32(pdev
->dev
.of_node
, "port-id", &port_id
)) {
124 dev_err(&pdev
->dev
, "failed to read port-id\n");
128 dev_err(&pdev
->dev
, "Invalid port-id: %d\n", port_id
);
131 hisi_pcie
->port_id
= port_id
;
133 pp
->ops
= &hisi_pcie_host_ops
;
135 ret
= dw_pcie_host_init(pp
);
137 dev_err(&pdev
->dev
, "failed to initialize host\n");
144 static int hisi_pcie_probe(struct platform_device
*pdev
)
146 struct hisi_pcie
*hisi_pcie
;
147 struct pcie_port
*pp
;
148 struct resource
*reg
;
151 hisi_pcie
= devm_kzalloc(&pdev
->dev
, sizeof(*hisi_pcie
), GFP_KERNEL
);
156 pp
->dev
= &pdev
->dev
;
159 syscon_regmap_lookup_by_compatible("hisilicon,pcie-sas-subctrl");
160 if (IS_ERR(hisi_pcie
->subctrl
)) {
161 dev_err(pp
->dev
, "cannot get subctrl base\n");
162 return PTR_ERR(hisi_pcie
->subctrl
);
165 reg
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
, "rc_dbi");
166 hisi_pcie
->reg_base
= devm_ioremap_resource(&pdev
->dev
, reg
);
167 if (IS_ERR(hisi_pcie
->reg_base
)) {
168 dev_err(pp
->dev
, "cannot get rc_dbi base\n");
169 return PTR_ERR(hisi_pcie
->reg_base
);
172 hisi_pcie
->pp
.dbi_base
= hisi_pcie
->reg_base
;
174 ret
= hisi_add_pcie_port(pp
, pdev
);
178 platform_set_drvdata(pdev
, hisi_pcie
);
180 dev_warn(pp
->dev
, "only 32-bit config accesses supported; smaller writes may corrupt adjacent RW1C fields\n");
185 static const struct of_device_id hisi_pcie_of_match
[] = {
186 {.compatible
= "hisilicon,hip05-pcie",},
190 MODULE_DEVICE_TABLE(of
, hisi_pcie_of_match
);
192 static struct platform_driver hisi_pcie_driver
= {
193 .probe
= hisi_pcie_probe
,
196 .of_match_table
= hisi_pcie_of_match
,
200 module_platform_driver(hisi_pcie_driver
);