Commit a937fe08 authored by Kishon Vijay Abraham I's avatar Kishon Vijay Abraham I Committed by Bjorn Helgaas

PCI: dwc: designware: Provide page_size to pci_epc_mem

Use the newly introduced __pci_epc_mem_init() instead of pci_epc_mem_init()
to provide page_size to pci_epc_mem. This is in preparation for
adding EP support to K2G which has a restriction that the
address region should be either divided into 1MB/2MB/4MB or 8MB
sizes (Ref: 11.14.4.9.1 Outbound Address Translation in K2G TRM SPRUHY8F
January 2016 – Revised May 2017).
Signed-off-by: default avatarKishon Vijay Abraham I <kishon@ti.com>
Signed-off-by: default avatarBjorn Helgaas <bhelgaas@google.com>
parent 2ca93ffa
...@@ -328,7 +328,8 @@ int dw_pcie_ep_init(struct dw_pcie_ep *ep) ...@@ -328,7 +328,8 @@ int dw_pcie_ep_init(struct dw_pcie_ep *ep)
if (ret < 0) if (ret < 0)
epc->max_functions = 1; epc->max_functions = 1;
ret = pci_epc_mem_init(epc, ep->phys_base, ep->addr_size); ret = __pci_epc_mem_init(epc, ep->phys_base, ep->addr_size,
ep->page_size);
if (ret < 0) { if (ret < 0) {
dev_err(dev, "Failed to initialize address space\n"); dev_err(dev, "Failed to initialize address space\n");
return ret; return ret;
......
...@@ -186,6 +186,7 @@ struct dw_pcie_ep { ...@@ -186,6 +186,7 @@ struct dw_pcie_ep {
struct dw_pcie_ep_ops *ops; struct dw_pcie_ep_ops *ops;
phys_addr_t phys_base; phys_addr_t phys_base;
size_t addr_size; size_t addr_size;
size_t page_size;
u8 bar_to_atu[6]; u8 bar_to_atu[6];
phys_addr_t *outbound_addr; phys_addr_t *outbound_addr;
unsigned long ib_window_map; unsigned long ib_window_map;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment