1 // SPDX-License-Identifier: GPL-2.0
3 * PCIe host controller driver for Amazon's Annapurna Labs IP (used in chips
4 * such as Graviton and Alpine)
6 * Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
8 * Author: Jonathan Chocron <jonnyc@amazon.com>
11 #include <linux/pci.h>
12 #include <linux/pci-ecam.h>
13 #include <linux/pci-acpi.h>
14 #include "../../pci.h"
16 #if defined(CONFIG_ACPI) && defined(CONFIG_PCI_QUIRKS)
19 void __iomem
*dbi_base
;
22 static void __iomem
*al_pcie_map_bus(struct pci_bus
*bus
, unsigned int devfn
,
25 struct pci_config_window
*cfg
= bus
->sysdata
;
26 struct al_pcie_acpi
*pcie
= cfg
->priv
;
27 void __iomem
*dbi_base
= pcie
->dbi_base
;
29 if (bus
->number
== cfg
->busr
.start
) {
31 * The DW PCIe core doesn't filter out transactions to other
32 * devices/functions on the root bus num, so we do this here.
34 if (PCI_SLOT(devfn
) > 0)
37 return dbi_base
+ where
;
40 return pci_ecam_map_bus(bus
, devfn
, where
);
43 static int al_pcie_init(struct pci_config_window
*cfg
)
45 struct device
*dev
= cfg
->parent
;
46 struct acpi_device
*adev
= to_acpi_device(dev
);
47 struct acpi_pci_root
*root
= acpi_driver_data(adev
);
48 struct al_pcie_acpi
*al_pcie
;
52 al_pcie
= devm_kzalloc(dev
, sizeof(*al_pcie
), GFP_KERNEL
);
56 res
= devm_kzalloc(dev
, sizeof(*res
), GFP_KERNEL
);
60 ret
= acpi_get_rc_resources(dev
, "AMZN0001", root
->segment
, res
);
62 dev_err(dev
, "can't get rc dbi base address for SEG %d\n",
67 dev_dbg(dev
, "Root port dbi res: %pR\n", res
);
69 al_pcie
->dbi_base
= devm_pci_remap_cfg_resource(dev
, res
);
70 if (IS_ERR(al_pcie
->dbi_base
))
71 return PTR_ERR(al_pcie
->dbi_base
);
78 const struct pci_ecam_ops al_pcie_ops
= {
81 .map_bus
= al_pcie_map_bus
,
82 .read
= pci_generic_config_read
,
83 .write
= pci_generic_config_write
,
87 #endif /* defined(CONFIG_ACPI) && defined(CONFIG_PCI_QUIRKS) */
91 #include <linux/of_pci.h>
92 #include "pcie-designware.h"
94 #define AL_PCIE_REV_ID_2 2
95 #define AL_PCIE_REV_ID_3 3
96 #define AL_PCIE_REV_ID_4 4
98 #define AXI_BASE_OFFSET 0x0
100 #define DEVICE_ID_OFFSET 0x16c
102 #define DEVICE_REV_ID 0x0
103 #define DEVICE_REV_ID_DEV_ID_MASK GENMASK(31, 16)
105 #define DEVICE_REV_ID_DEV_ID_X4 0
106 #define DEVICE_REV_ID_DEV_ID_X8 2
107 #define DEVICE_REV_ID_DEV_ID_X16 4
109 #define OB_CTRL_REV1_2_OFFSET 0x0040
110 #define OB_CTRL_REV3_5_OFFSET 0x0030
112 #define CFG_TARGET_BUS 0x0
113 #define CFG_TARGET_BUS_MASK_MASK GENMASK(7, 0)
114 #define CFG_TARGET_BUS_BUSNUM_MASK GENMASK(15, 8)
116 #define CFG_CONTROL 0x4
117 #define CFG_CONTROL_SUBBUS_MASK GENMASK(15, 8)
118 #define CFG_CONTROL_SEC_BUS_MASK GENMASK(23, 16)
120 struct al_pcie_reg_offsets
{
121 unsigned int ob_ctrl
;
124 struct al_pcie_target_bus_cfg
{
132 void __iomem
*controller_base
; /* base of PCIe unit (not DW core) */
134 resource_size_t ecam_size
;
135 unsigned int controller_rev_id
;
136 struct al_pcie_reg_offsets reg_offsets
;
137 struct al_pcie_target_bus_cfg target_bus_cfg
;
140 #define to_al_pcie(x) dev_get_drvdata((x)->dev)
142 static inline u32
al_pcie_controller_readl(struct al_pcie
*pcie
, u32 offset
)
144 return readl_relaxed(pcie
->controller_base
+ offset
);
147 static inline void al_pcie_controller_writel(struct al_pcie
*pcie
, u32 offset
,
150 writel_relaxed(val
, pcie
->controller_base
+ offset
);
153 static int al_pcie_rev_id_get(struct al_pcie
*pcie
, unsigned int *rev_id
)
158 dev_rev_id_val
= al_pcie_controller_readl(pcie
, AXI_BASE_OFFSET
+
161 dev_id_val
= FIELD_GET(DEVICE_REV_ID_DEV_ID_MASK
, dev_rev_id_val
);
163 switch (dev_id_val
) {
164 case DEVICE_REV_ID_DEV_ID_X4
:
165 *rev_id
= AL_PCIE_REV_ID_2
;
167 case DEVICE_REV_ID_DEV_ID_X8
:
168 *rev_id
= AL_PCIE_REV_ID_3
;
170 case DEVICE_REV_ID_DEV_ID_X16
:
171 *rev_id
= AL_PCIE_REV_ID_4
;
174 dev_err(pcie
->dev
, "Unsupported dev_id_val (0x%x)\n",
179 dev_dbg(pcie
->dev
, "dev_id_val: 0x%x\n", dev_id_val
);
184 static int al_pcie_reg_offsets_set(struct al_pcie
*pcie
)
186 switch (pcie
->controller_rev_id
) {
187 case AL_PCIE_REV_ID_2
:
188 pcie
->reg_offsets
.ob_ctrl
= OB_CTRL_REV1_2_OFFSET
;
190 case AL_PCIE_REV_ID_3
:
191 case AL_PCIE_REV_ID_4
:
192 pcie
->reg_offsets
.ob_ctrl
= OB_CTRL_REV3_5_OFFSET
;
195 dev_err(pcie
->dev
, "Unsupported controller rev_id: 0x%x\n",
196 pcie
->controller_rev_id
);
203 static inline void al_pcie_target_bus_set(struct al_pcie
*pcie
,
209 reg
= FIELD_PREP(CFG_TARGET_BUS_MASK_MASK
, mask_target_bus
) |
210 FIELD_PREP(CFG_TARGET_BUS_BUSNUM_MASK
, target_bus
);
212 al_pcie_controller_writel(pcie
, AXI_BASE_OFFSET
+
213 pcie
->reg_offsets
.ob_ctrl
+ CFG_TARGET_BUS
,
217 static void __iomem
*al_pcie_conf_addr_map_bus(struct pci_bus
*bus
,
218 unsigned int devfn
, int where
)
220 struct pcie_port
*pp
= bus
->sysdata
;
221 struct al_pcie
*pcie
= to_al_pcie(to_dw_pcie_from_pp(pp
));
222 unsigned int busnr
= bus
->number
;
223 struct al_pcie_target_bus_cfg
*target_bus_cfg
= &pcie
->target_bus_cfg
;
224 unsigned int busnr_ecam
= busnr
& target_bus_cfg
->ecam_mask
;
225 unsigned int busnr_reg
= busnr
& target_bus_cfg
->reg_mask
;
227 if (busnr_reg
!= target_bus_cfg
->reg_val
) {
228 dev_dbg(pcie
->pci
->dev
, "Changing target bus busnum val from 0x%x to 0x%x\n",
229 target_bus_cfg
->reg_val
, busnr_reg
);
230 target_bus_cfg
->reg_val
= busnr_reg
;
231 al_pcie_target_bus_set(pcie
,
232 target_bus_cfg
->reg_val
,
233 target_bus_cfg
->reg_mask
);
236 return pp
->va_cfg0_base
+ PCIE_ECAM_OFFSET(busnr_ecam
, devfn
, where
);
239 static struct pci_ops al_child_pci_ops
= {
240 .map_bus
= al_pcie_conf_addr_map_bus
,
241 .read
= pci_generic_config_read
,
242 .write
= pci_generic_config_write
,
245 static void al_pcie_config_prepare(struct al_pcie
*pcie
)
247 struct al_pcie_target_bus_cfg
*target_bus_cfg
;
248 struct pcie_port
*pp
= &pcie
->pci
->pp
;
249 unsigned int ecam_bus_mask
;
250 u32 cfg_control_offset
;
255 struct resource
*bus
= resource_list_first_type(&pp
->bridge
->windows
, IORESOURCE_BUS
)->res
;
257 target_bus_cfg
= &pcie
->target_bus_cfg
;
259 ecam_bus_mask
= (pcie
->ecam_size
>> PCIE_ECAM_BUS_SHIFT
) - 1;
260 if (ecam_bus_mask
> 255) {
261 dev_warn(pcie
->dev
, "ECAM window size is larger than 256MB. Cutting off at 256\n");
265 /* This portion is taken from the transaction address */
266 target_bus_cfg
->ecam_mask
= ecam_bus_mask
;
267 /* This portion is taken from the cfg_target_bus reg */
268 target_bus_cfg
->reg_mask
= ~target_bus_cfg
->ecam_mask
;
269 target_bus_cfg
->reg_val
= bus
->start
& target_bus_cfg
->reg_mask
;
271 al_pcie_target_bus_set(pcie
, target_bus_cfg
->reg_val
,
272 target_bus_cfg
->reg_mask
);
274 secondary_bus
= bus
->start
+ 1;
275 subordinate_bus
= bus
->end
;
277 /* Set the valid values of secondary and subordinate buses */
278 cfg_control_offset
= AXI_BASE_OFFSET
+ pcie
->reg_offsets
.ob_ctrl
+
281 cfg_control
= al_pcie_controller_readl(pcie
, cfg_control_offset
);
284 ~(CFG_CONTROL_SEC_BUS_MASK
| CFG_CONTROL_SUBBUS_MASK
);
286 reg
|= FIELD_PREP(CFG_CONTROL_SUBBUS_MASK
, subordinate_bus
) |
287 FIELD_PREP(CFG_CONTROL_SEC_BUS_MASK
, secondary_bus
);
289 al_pcie_controller_writel(pcie
, cfg_control_offset
, reg
);
292 static int al_pcie_host_init(struct pcie_port
*pp
)
294 struct dw_pcie
*pci
= to_dw_pcie_from_pp(pp
);
295 struct al_pcie
*pcie
= to_al_pcie(pci
);
298 pp
->bridge
->child_ops
= &al_child_pci_ops
;
300 rc
= al_pcie_rev_id_get(pcie
, &pcie
->controller_rev_id
);
304 rc
= al_pcie_reg_offsets_set(pcie
);
308 al_pcie_config_prepare(pcie
);
313 static const struct dw_pcie_host_ops al_pcie_host_ops
= {
314 .host_init
= al_pcie_host_init
,
317 static const struct dw_pcie_ops dw_pcie_ops
= {
320 static int al_pcie_probe(struct platform_device
*pdev
)
322 struct device
*dev
= &pdev
->dev
;
323 struct resource
*controller_res
;
324 struct resource
*ecam_res
;
325 struct al_pcie
*al_pcie
;
328 al_pcie
= devm_kzalloc(dev
, sizeof(*al_pcie
), GFP_KERNEL
);
332 pci
= devm_kzalloc(dev
, sizeof(*pci
), GFP_KERNEL
);
337 pci
->ops
= &dw_pcie_ops
;
338 pci
->pp
.ops
= &al_pcie_host_ops
;
343 ecam_res
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
, "config");
345 dev_err(dev
, "couldn't find 'config' reg in DT\n");
348 al_pcie
->ecam_size
= resource_size(ecam_res
);
350 controller_res
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
,
352 al_pcie
->controller_base
= devm_ioremap_resource(dev
, controller_res
);
353 if (IS_ERR(al_pcie
->controller_base
)) {
354 dev_err(dev
, "couldn't remap controller base %pR\n",
356 return PTR_ERR(al_pcie
->controller_base
);
359 dev_dbg(dev
, "From DT: controller_base: %pR\n", controller_res
);
361 platform_set_drvdata(pdev
, al_pcie
);
363 return dw_pcie_host_init(&pci
->pp
);
366 static const struct of_device_id al_pcie_of_match
[] = {
367 { .compatible
= "amazon,al-alpine-v2-pcie",
369 { .compatible
= "amazon,al-alpine-v3-pcie",
374 static struct platform_driver al_pcie_driver
= {
377 .of_match_table
= al_pcie_of_match
,
378 .suppress_bind_attrs
= true,
380 .probe
= al_pcie_probe
,
382 builtin_platform_driver(al_pcie_driver
);
384 #endif /* CONFIG_PCIE_AL*/