Skip to content

Commit 4772ade

Browse files
committed
Merge branch 'remotes/lorenzo/pci/xilinx'
- Add support for coherent PCIe DMA traffic using CCI (Bharat Kumar Gogada) - Add optional "dma-coherent" DT property (Bharat Kumar Gogada) * remotes/lorenzo/pci/xilinx: PCI: xilinx-nwl: Add optional "dma-coherent" property PCI: xilinx-nwl: Enable coherent PCIe DMA traffic using CCI
2 parents 2a2dd35 + 1c4422f commit 4772ade

2 files changed

Lines changed: 9 additions & 0 deletions

File tree

Documentation/devicetree/bindings/pci/xilinx-nwl-pcie.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ Required properties:
3333
- #address-cells: specifies the number of cells needed to encode an
3434
address. The value must be 0.
3535

36+
Optional properties:
37+
- dma-coherent: present if DMA operations are coherent
3638

3739
Example:
3840
++++++++

drivers/pci/controller/pcie-xilinx-nwl.c

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626

2727
/* Bridge core config registers */
2828
#define BRCFG_PCIE_RX0 0x00000000
29+
#define BRCFG_PCIE_RX1 0x00000004
2930
#define BRCFG_INTERRUPT 0x00000010
3031
#define BRCFG_PCIE_RX_MSG_FILTER 0x00000020
3132

@@ -128,6 +129,7 @@
128129
#define NWL_ECAM_VALUE_DEFAULT 12
129130

130131
#define CFG_DMA_REG_BAR GENMASK(2, 0)
132+
#define CFG_PCIE_CACHE GENMASK(7, 0)
131133

132134
#define INT_PCI_MSI_NR (2 * 32)
133135

@@ -675,6 +677,11 @@ static int nwl_pcie_bridge_init(struct nwl_pcie *pcie)
675677
nwl_bridge_writel(pcie, CFG_ENABLE_MSG_FILTER_MASK,
676678
BRCFG_PCIE_RX_MSG_FILTER);
677679

680+
/* This routes the PCIe DMA traffic to go through CCI path */
681+
if (of_dma_is_coherent(dev->of_node))
682+
nwl_bridge_writel(pcie, nwl_bridge_readl(pcie, BRCFG_PCIE_RX1) |
683+
CFG_PCIE_CACHE, BRCFG_PCIE_RX1);
684+
678685
err = nwl_wait_for_link(pcie);
679686
if (err)
680687
return err;

0 commit comments

Comments
 (0)