blob: 1e7b02221eac934ea28b72c3094587c71c4fb96b [file] [log] [blame]
Bjorn Helgaas8cfab3c2018-01-26 12:50:27 -06001// SPDX-License-Identifier: GPL-2.0
Kishon Vijay Abraham If8aed6e2017-03-27 15:15:05 +05302/**
Bjorn Helgaas96291d52017-09-01 16:35:50 -05003 * Synopsys DesignWare PCIe Endpoint controller driver
Kishon Vijay Abraham If8aed6e2017-03-27 15:15:05 +05304 *
5 * Copyright (C) 2017 Texas Instruments
6 * Author: Kishon Vijay Abraham I <kishon@ti.com>
Kishon Vijay Abraham If8aed6e2017-03-27 15:15:05 +05307 */
8
9#include <linux/of.h>
10
11#include "pcie-designware.h"
12#include <linux/pci-epc.h>
13#include <linux/pci-epf.h>
14
15void dw_pcie_ep_linkup(struct dw_pcie_ep *ep)
16{
17 struct pci_epc *epc = ep->epc;
18
19 pci_epc_linkup(epc);
20}
21
Niklas Cassel77d08db2018-03-28 13:50:14 +020022static void __dw_pcie_ep_reset_bar(struct dw_pcie *pci, enum pci_barno bar,
23 int flags)
Kishon Vijay Abraham If8aed6e2017-03-27 15:15:05 +053024{
25 u32 reg;
26
27 reg = PCI_BASE_ADDRESS_0 + (4 * bar);
Niklas Cassel1cab8262017-12-20 00:29:24 +010028 dw_pcie_dbi_ro_wr_en(pci);
Kishon Vijay Abraham If8aed6e2017-03-27 15:15:05 +053029 dw_pcie_writel_dbi2(pci, reg, 0x0);
30 dw_pcie_writel_dbi(pci, reg, 0x0);
Niklas Cassel96a3be42018-03-28 13:50:16 +020031 if (flags & PCI_BASE_ADDRESS_MEM_TYPE_64) {
32 dw_pcie_writel_dbi2(pci, reg + 4, 0x0);
33 dw_pcie_writel_dbi(pci, reg + 4, 0x0);
34 }
Niklas Cassel1cab8262017-12-20 00:29:24 +010035 dw_pcie_dbi_ro_wr_dis(pci);
Kishon Vijay Abraham If8aed6e2017-03-27 15:15:05 +053036}
37
Niklas Cassel77d08db2018-03-28 13:50:14 +020038void dw_pcie_ep_reset_bar(struct dw_pcie *pci, enum pci_barno bar)
39{
40 __dw_pcie_ep_reset_bar(pci, bar, 0);
41}
42
Gustavo Pimentelbeb46412018-07-19 10:32:14 +020043static u8 __dw_pcie_ep_find_next_cap(struct dw_pcie *pci, u8 cap_ptr,
44 u8 cap)
45{
46 u8 cap_id, next_cap_ptr;
47 u16 reg;
48
49 reg = dw_pcie_readw_dbi(pci, cap_ptr);
50 next_cap_ptr = (reg & 0xff00) >> 8;
51 cap_id = (reg & 0x00ff);
52
53 if (!next_cap_ptr || cap_id > PCI_CAP_ID_MAX)
54 return 0;
55
56 if (cap_id == cap)
57 return cap_ptr;
58
59 return __dw_pcie_ep_find_next_cap(pci, next_cap_ptr, cap);
60}
61
62static u8 dw_pcie_ep_find_capability(struct dw_pcie *pci, u8 cap)
63{
64 u8 next_cap_ptr;
65 u16 reg;
66
67 reg = dw_pcie_readw_dbi(pci, PCI_CAPABILITY_LIST);
68 next_cap_ptr = (reg & 0x00ff);
69
70 if (!next_cap_ptr)
71 return 0;
72
73 return __dw_pcie_ep_find_next_cap(pci, next_cap_ptr, cap);
74}
75
Cyrille Pitchen44947382018-01-30 21:56:56 +010076static int dw_pcie_ep_write_header(struct pci_epc *epc, u8 func_no,
Kishon Vijay Abraham If8aed6e2017-03-27 15:15:05 +053077 struct pci_epf_header *hdr)
78{
79 struct dw_pcie_ep *ep = epc_get_drvdata(epc);
80 struct dw_pcie *pci = to_dw_pcie_from_ep(ep);
81
Niklas Cassel1cab8262017-12-20 00:29:24 +010082 dw_pcie_dbi_ro_wr_en(pci);
Kishon Vijay Abraham If8aed6e2017-03-27 15:15:05 +053083 dw_pcie_writew_dbi(pci, PCI_VENDOR_ID, hdr->vendorid);
84 dw_pcie_writew_dbi(pci, PCI_DEVICE_ID, hdr->deviceid);
85 dw_pcie_writeb_dbi(pci, PCI_REVISION_ID, hdr->revid);
86 dw_pcie_writeb_dbi(pci, PCI_CLASS_PROG, hdr->progif_code);
87 dw_pcie_writew_dbi(pci, PCI_CLASS_DEVICE,
88 hdr->subclass_code | hdr->baseclass_code << 8);
89 dw_pcie_writeb_dbi(pci, PCI_CACHE_LINE_SIZE,
90 hdr->cache_line_size);
91 dw_pcie_writew_dbi(pci, PCI_SUBSYSTEM_VENDOR_ID,
92 hdr->subsys_vendor_id);
93 dw_pcie_writew_dbi(pci, PCI_SUBSYSTEM_ID, hdr->subsys_id);
94 dw_pcie_writeb_dbi(pci, PCI_INTERRUPT_PIN,
95 hdr->interrupt_pin);
Niklas Cassel1cab8262017-12-20 00:29:24 +010096 dw_pcie_dbi_ro_wr_dis(pci);
Kishon Vijay Abraham If8aed6e2017-03-27 15:15:05 +053097
98 return 0;
99}
100
101static int dw_pcie_ep_inbound_atu(struct dw_pcie_ep *ep, enum pci_barno bar,
102 dma_addr_t cpu_addr,
103 enum dw_pcie_as_type as_type)
104{
105 int ret;
106 u32 free_win;
107 struct dw_pcie *pci = to_dw_pcie_from_ep(ep);
108
Niklas Casselad4a5be2017-12-14 14:01:44 +0100109 free_win = find_first_zero_bit(ep->ib_window_map, ep->num_ib_windows);
Kishon Vijay Abraham If8aed6e2017-03-27 15:15:05 +0530110 if (free_win >= ep->num_ib_windows) {
Gustavo Pimentelb4a8a512018-05-14 16:09:48 +0100111 dev_err(pci->dev, "No free inbound window\n");
Kishon Vijay Abraham If8aed6e2017-03-27 15:15:05 +0530112 return -EINVAL;
113 }
114
115 ret = dw_pcie_prog_inbound_atu(pci, free_win, bar, cpu_addr,
116 as_type);
117 if (ret < 0) {
118 dev_err(pci->dev, "Failed to program IB window\n");
119 return ret;
120 }
121
122 ep->bar_to_atu[bar] = free_win;
Niklas Casselad4a5be2017-12-14 14:01:44 +0100123 set_bit(free_win, ep->ib_window_map);
Kishon Vijay Abraham If8aed6e2017-03-27 15:15:05 +0530124
125 return 0;
126}
127
128static int dw_pcie_ep_outbound_atu(struct dw_pcie_ep *ep, phys_addr_t phys_addr,
129 u64 pci_addr, size_t size)
130{
131 u32 free_win;
132 struct dw_pcie *pci = to_dw_pcie_from_ep(ep);
133
Niklas Casselad4a5be2017-12-14 14:01:44 +0100134 free_win = find_first_zero_bit(ep->ob_window_map, ep->num_ob_windows);
Kishon Vijay Abraham If8aed6e2017-03-27 15:15:05 +0530135 if (free_win >= ep->num_ob_windows) {
Gustavo Pimentelb4a8a512018-05-14 16:09:48 +0100136 dev_err(pci->dev, "No free outbound window\n");
Kishon Vijay Abraham If8aed6e2017-03-27 15:15:05 +0530137 return -EINVAL;
138 }
139
140 dw_pcie_prog_outbound_atu(pci, free_win, PCIE_ATU_TYPE_MEM,
141 phys_addr, pci_addr, size);
142
Niklas Casselad4a5be2017-12-14 14:01:44 +0100143 set_bit(free_win, ep->ob_window_map);
Kishon Vijay Abraham If8aed6e2017-03-27 15:15:05 +0530144 ep->outbound_addr[free_win] = phys_addr;
145
146 return 0;
147}
148
Cyrille Pitchen44947382018-01-30 21:56:56 +0100149static void dw_pcie_ep_clear_bar(struct pci_epc *epc, u8 func_no,
Niklas Cassel77d08db2018-03-28 13:50:14 +0200150 struct pci_epf_bar *epf_bar)
Kishon Vijay Abraham If8aed6e2017-03-27 15:15:05 +0530151{
152 struct dw_pcie_ep *ep = epc_get_drvdata(epc);
153 struct dw_pcie *pci = to_dw_pcie_from_ep(ep);
Niklas Cassel77d08db2018-03-28 13:50:14 +0200154 enum pci_barno bar = epf_bar->barno;
Kishon Vijay Abraham If8aed6e2017-03-27 15:15:05 +0530155 u32 atu_index = ep->bar_to_atu[bar];
156
Niklas Cassel77d08db2018-03-28 13:50:14 +0200157 __dw_pcie_ep_reset_bar(pci, bar, epf_bar->flags);
Kishon Vijay Abraham If8aed6e2017-03-27 15:15:05 +0530158
159 dw_pcie_disable_atu(pci, atu_index, DW_PCIE_REGION_INBOUND);
Niklas Casselad4a5be2017-12-14 14:01:44 +0100160 clear_bit(atu_index, ep->ib_window_map);
Kishon Vijay Abraham If8aed6e2017-03-27 15:15:05 +0530161}
162
Cyrille Pitchen44947382018-01-30 21:56:56 +0100163static int dw_pcie_ep_set_bar(struct pci_epc *epc, u8 func_no,
Niklas Casselbc4a4892018-03-28 13:50:07 +0200164 struct pci_epf_bar *epf_bar)
Kishon Vijay Abraham If8aed6e2017-03-27 15:15:05 +0530165{
166 int ret;
167 struct dw_pcie_ep *ep = epc_get_drvdata(epc);
168 struct dw_pcie *pci = to_dw_pcie_from_ep(ep);
Niklas Casselbc4a4892018-03-28 13:50:07 +0200169 enum pci_barno bar = epf_bar->barno;
170 size_t size = epf_bar->size;
171 int flags = epf_bar->flags;
Kishon Vijay Abraham If8aed6e2017-03-27 15:15:05 +0530172 enum dw_pcie_as_type as_type;
173 u32 reg = PCI_BASE_ADDRESS_0 + (4 * bar);
174
175 if (!(flags & PCI_BASE_ADDRESS_SPACE))
176 as_type = DW_PCIE_AS_MEM;
177 else
178 as_type = DW_PCIE_AS_IO;
179
Niklas Casselbc4a4892018-03-28 13:50:07 +0200180 ret = dw_pcie_ep_inbound_atu(ep, bar, epf_bar->phys_addr, as_type);
Kishon Vijay Abraham If8aed6e2017-03-27 15:15:05 +0530181 if (ret)
182 return ret;
183
Niklas Cassel1cab8262017-12-20 00:29:24 +0100184 dw_pcie_dbi_ro_wr_en(pci);
Niklas Casseld28810b2018-03-28 13:50:11 +0200185
186 dw_pcie_writel_dbi2(pci, reg, lower_32_bits(size - 1));
Kishon Vijay Abraham If8aed6e2017-03-27 15:15:05 +0530187 dw_pcie_writel_dbi(pci, reg, flags);
Niklas Casseld28810b2018-03-28 13:50:11 +0200188
189 if (flags & PCI_BASE_ADDRESS_MEM_TYPE_64) {
190 dw_pcie_writel_dbi2(pci, reg + 4, upper_32_bits(size - 1));
191 dw_pcie_writel_dbi(pci, reg + 4, 0);
192 }
193
Niklas Cassel1cab8262017-12-20 00:29:24 +0100194 dw_pcie_dbi_ro_wr_dis(pci);
Kishon Vijay Abraham If8aed6e2017-03-27 15:15:05 +0530195
196 return 0;
197}
198
199static int dw_pcie_find_index(struct dw_pcie_ep *ep, phys_addr_t addr,
200 u32 *atu_index)
201{
202 u32 index;
203
204 for (index = 0; index < ep->num_ob_windows; index++) {
205 if (ep->outbound_addr[index] != addr)
206 continue;
207 *atu_index = index;
208 return 0;
209 }
210
211 return -EINVAL;
212}
213
Cyrille Pitchen44947382018-01-30 21:56:56 +0100214static void dw_pcie_ep_unmap_addr(struct pci_epc *epc, u8 func_no,
215 phys_addr_t addr)
Kishon Vijay Abraham If8aed6e2017-03-27 15:15:05 +0530216{
217 int ret;
218 u32 atu_index;
219 struct dw_pcie_ep *ep = epc_get_drvdata(epc);
220 struct dw_pcie *pci = to_dw_pcie_from_ep(ep);
221
222 ret = dw_pcie_find_index(ep, addr, &atu_index);
223 if (ret < 0)
224 return;
225
226 dw_pcie_disable_atu(pci, atu_index, DW_PCIE_REGION_OUTBOUND);
Niklas Casselad4a5be2017-12-14 14:01:44 +0100227 clear_bit(atu_index, ep->ob_window_map);
Kishon Vijay Abraham If8aed6e2017-03-27 15:15:05 +0530228}
229
Cyrille Pitchen44947382018-01-30 21:56:56 +0100230static int dw_pcie_ep_map_addr(struct pci_epc *epc, u8 func_no,
231 phys_addr_t addr,
Kishon Vijay Abraham If8aed6e2017-03-27 15:15:05 +0530232 u64 pci_addr, size_t size)
233{
234 int ret;
235 struct dw_pcie_ep *ep = epc_get_drvdata(epc);
236 struct dw_pcie *pci = to_dw_pcie_from_ep(ep);
237
238 ret = dw_pcie_ep_outbound_atu(ep, addr, pci_addr, size);
239 if (ret) {
Gustavo Pimentelb4a8a512018-05-14 16:09:48 +0100240 dev_err(pci->dev, "Failed to enable address\n");
Kishon Vijay Abraham If8aed6e2017-03-27 15:15:05 +0530241 return ret;
242 }
243
244 return 0;
245}
246
Cyrille Pitchen44947382018-01-30 21:56:56 +0100247static int dw_pcie_ep_get_msi(struct pci_epc *epc, u8 func_no)
Kishon Vijay Abraham If8aed6e2017-03-27 15:15:05 +0530248{
Kishon Vijay Abraham If8aed6e2017-03-27 15:15:05 +0530249 struct dw_pcie_ep *ep = epc_get_drvdata(epc);
250 struct dw_pcie *pci = to_dw_pcie_from_ep(ep);
Gustavo Pimentel3920a5d2018-07-19 10:32:15 +0200251 u32 val, reg;
Kishon Vijay Abraham If8aed6e2017-03-27 15:15:05 +0530252
Gustavo Pimentel3920a5d2018-07-19 10:32:15 +0200253 if (!ep->msi_cap)
Kishon Vijay Abraham If8aed6e2017-03-27 15:15:05 +0530254 return -EINVAL;
255
Gustavo Pimentel3920a5d2018-07-19 10:32:15 +0200256 reg = ep->msi_cap + PCI_MSI_FLAGS;
257 val = dw_pcie_readw_dbi(pci, reg);
258 if (!(val & PCI_MSI_FLAGS_ENABLE))
259 return -EINVAL;
260
261 val = (val & PCI_MSI_FLAGS_QSIZE) >> 4;
262
Kishon Vijay Abraham If8aed6e2017-03-27 15:15:05 +0530263 return val;
264}
265
Gustavo Pimentel3920a5d2018-07-19 10:32:15 +0200266static int dw_pcie_ep_set_msi(struct pci_epc *epc, u8 func_no, u8 interrupts)
Kishon Vijay Abraham If8aed6e2017-03-27 15:15:05 +0530267{
Kishon Vijay Abraham If8aed6e2017-03-27 15:15:05 +0530268 struct dw_pcie_ep *ep = epc_get_drvdata(epc);
269 struct dw_pcie *pci = to_dw_pcie_from_ep(ep);
Gustavo Pimentel3920a5d2018-07-19 10:32:15 +0200270 u32 val, reg;
Kishon Vijay Abraham If8aed6e2017-03-27 15:15:05 +0530271
Gustavo Pimentel3920a5d2018-07-19 10:32:15 +0200272 if (!ep->msi_cap)
273 return -EINVAL;
274
275 reg = ep->msi_cap + PCI_MSI_FLAGS;
276 val = dw_pcie_readw_dbi(pci, reg);
277 val &= ~PCI_MSI_FLAGS_QMASK;
278 val |= (interrupts << 1) & PCI_MSI_FLAGS_QMASK;
Niklas Cassel1cab8262017-12-20 00:29:24 +0100279 dw_pcie_dbi_ro_wr_en(pci);
Gustavo Pimentel3920a5d2018-07-19 10:32:15 +0200280 dw_pcie_writew_dbi(pci, reg, val);
Niklas Cassel1cab8262017-12-20 00:29:24 +0100281 dw_pcie_dbi_ro_wr_dis(pci);
Kishon Vijay Abraham If8aed6e2017-03-27 15:15:05 +0530282
283 return 0;
284}
285
Gustavo Pimentelbeb46412018-07-19 10:32:14 +0200286static int dw_pcie_ep_get_msix(struct pci_epc *epc, u8 func_no)
287{
288 struct dw_pcie_ep *ep = epc_get_drvdata(epc);
289 struct dw_pcie *pci = to_dw_pcie_from_ep(ep);
290 u32 val, reg;
291
292 if (!ep->msix_cap)
293 return -EINVAL;
294
295 reg = ep->msix_cap + PCI_MSIX_FLAGS;
296 val = dw_pcie_readw_dbi(pci, reg);
297 if (!(val & PCI_MSIX_FLAGS_ENABLE))
298 return -EINVAL;
299
300 val &= PCI_MSIX_FLAGS_QSIZE;
301
302 return val;
303}
304
305static int dw_pcie_ep_set_msix(struct pci_epc *epc, u8 func_no, u16 interrupts)
306{
307 struct dw_pcie_ep *ep = epc_get_drvdata(epc);
308 struct dw_pcie *pci = to_dw_pcie_from_ep(ep);
309 u32 val, reg;
310
311 if (!ep->msix_cap)
312 return -EINVAL;
313
314 reg = ep->msix_cap + PCI_MSIX_FLAGS;
315 val = dw_pcie_readw_dbi(pci, reg);
316 val &= ~PCI_MSIX_FLAGS_QSIZE;
317 val |= interrupts;
318 dw_pcie_dbi_ro_wr_en(pci);
319 dw_pcie_writew_dbi(pci, reg, val);
320 dw_pcie_dbi_ro_wr_dis(pci);
321
322 return 0;
323}
324
Cyrille Pitchen44947382018-01-30 21:56:56 +0100325static int dw_pcie_ep_raise_irq(struct pci_epc *epc, u8 func_no,
Gustavo Pimenteld3c70a92018-07-19 10:32:13 +0200326 enum pci_epc_irq_type type, u16 interrupt_num)
Kishon Vijay Abraham If8aed6e2017-03-27 15:15:05 +0530327{
328 struct dw_pcie_ep *ep = epc_get_drvdata(epc);
329
330 if (!ep->ops->raise_irq)
331 return -EINVAL;
332
Bjorn Helgaas16093362018-02-01 11:36:07 -0600333 return ep->ops->raise_irq(ep, func_no, type, interrupt_num);
Kishon Vijay Abraham If8aed6e2017-03-27 15:15:05 +0530334}
335
336static void dw_pcie_ep_stop(struct pci_epc *epc)
337{
338 struct dw_pcie_ep *ep = epc_get_drvdata(epc);
339 struct dw_pcie *pci = to_dw_pcie_from_ep(ep);
340
341 if (!pci->ops->stop_link)
342 return;
343
344 pci->ops->stop_link(pci);
345}
346
347static int dw_pcie_ep_start(struct pci_epc *epc)
348{
349 struct dw_pcie_ep *ep = epc_get_drvdata(epc);
350 struct dw_pcie *pci = to_dw_pcie_from_ep(ep);
351
352 if (!pci->ops->start_link)
353 return -EINVAL;
354
355 return pci->ops->start_link(pci);
356}
357
358static const struct pci_epc_ops epc_ops = {
359 .write_header = dw_pcie_ep_write_header,
360 .set_bar = dw_pcie_ep_set_bar,
361 .clear_bar = dw_pcie_ep_clear_bar,
362 .map_addr = dw_pcie_ep_map_addr,
363 .unmap_addr = dw_pcie_ep_unmap_addr,
364 .set_msi = dw_pcie_ep_set_msi,
365 .get_msi = dw_pcie_ep_get_msi,
Gustavo Pimentelbeb46412018-07-19 10:32:14 +0200366 .set_msix = dw_pcie_ep_set_msix,
367 .get_msix = dw_pcie_ep_get_msix,
Kishon Vijay Abraham If8aed6e2017-03-27 15:15:05 +0530368 .raise_irq = dw_pcie_ep_raise_irq,
369 .start = dw_pcie_ep_start,
370 .stop = dw_pcie_ep_stop,
371};
372
Gustavo Pimentelcb22d402018-07-19 10:32:16 +0200373int dw_pcie_ep_raise_legacy_irq(struct dw_pcie_ep *ep, u8 func_no)
374{
375 struct dw_pcie *pci = to_dw_pcie_from_ep(ep);
376 struct device *dev = pci->dev;
377
378 dev_err(dev, "EP cannot trigger legacy IRQs\n");
379
380 return -EINVAL;
381}
382
Bjorn Helgaas16093362018-02-01 11:36:07 -0600383int dw_pcie_ep_raise_msi_irq(struct dw_pcie_ep *ep, u8 func_no,
Niklas Cassel6f6d7872017-12-20 00:29:27 +0100384 u8 interrupt_num)
385{
386 struct dw_pcie *pci = to_dw_pcie_from_ep(ep);
387 struct pci_epc *epc = ep->epc;
388 u16 msg_ctrl, msg_data;
Gustavo Pimentel3920a5d2018-07-19 10:32:15 +0200389 u32 msg_addr_lower, msg_addr_upper, reg;
Niklas Cassel6f6d7872017-12-20 00:29:27 +0100390 u64 msg_addr;
391 bool has_upper;
392 int ret;
393
Gustavo Pimentel3920a5d2018-07-19 10:32:15 +0200394 if (!ep->msi_cap)
395 return -EINVAL;
396
Niklas Cassel6f6d7872017-12-20 00:29:27 +0100397 /* Raise MSI per the PCI Local Bus Specification Revision 3.0, 6.8.1. */
Gustavo Pimentel3920a5d2018-07-19 10:32:15 +0200398 reg = ep->msi_cap + PCI_MSI_FLAGS;
399 msg_ctrl = dw_pcie_readw_dbi(pci, reg);
Niklas Cassel6f6d7872017-12-20 00:29:27 +0100400 has_upper = !!(msg_ctrl & PCI_MSI_FLAGS_64BIT);
Gustavo Pimentel3920a5d2018-07-19 10:32:15 +0200401 reg = ep->msi_cap + PCI_MSI_ADDRESS_LO;
402 msg_addr_lower = dw_pcie_readl_dbi(pci, reg);
Niklas Cassel6f6d7872017-12-20 00:29:27 +0100403 if (has_upper) {
Gustavo Pimentel3920a5d2018-07-19 10:32:15 +0200404 reg = ep->msi_cap + PCI_MSI_ADDRESS_HI;
405 msg_addr_upper = dw_pcie_readl_dbi(pci, reg);
406 reg = ep->msi_cap + PCI_MSI_DATA_64;
407 msg_data = dw_pcie_readw_dbi(pci, reg);
Niklas Cassel6f6d7872017-12-20 00:29:27 +0100408 } else {
409 msg_addr_upper = 0;
Gustavo Pimentel3920a5d2018-07-19 10:32:15 +0200410 reg = ep->msi_cap + PCI_MSI_DATA_32;
411 msg_data = dw_pcie_readw_dbi(pci, reg);
Niklas Cassel6f6d7872017-12-20 00:29:27 +0100412 }
413 msg_addr = ((u64) msg_addr_upper) << 32 | msg_addr_lower;
Bjorn Helgaas16093362018-02-01 11:36:07 -0600414 ret = dw_pcie_ep_map_addr(epc, func_no, ep->msi_mem_phys, msg_addr,
Niklas Cassel6f6d7872017-12-20 00:29:27 +0100415 epc->mem->page_size);
416 if (ret)
417 return ret;
418
419 writel(msg_data | (interrupt_num - 1), ep->msi_mem);
420
Bjorn Helgaas16093362018-02-01 11:36:07 -0600421 dw_pcie_ep_unmap_addr(epc, func_no, ep->msi_mem_phys);
Niklas Cassel6f6d7872017-12-20 00:29:27 +0100422
423 return 0;
424}
425
Gustavo Pimentelbeb46412018-07-19 10:32:14 +0200426int dw_pcie_ep_raise_msix_irq(struct dw_pcie_ep *ep, u8 func_no,
427 u16 interrupt_num)
428{
429 struct dw_pcie *pci = to_dw_pcie_from_ep(ep);
430 struct pci_epc *epc = ep->epc;
431 u16 tbl_offset, bir;
432 u32 bar_addr_upper, bar_addr_lower;
433 u32 msg_addr_upper, msg_addr_lower;
434 u32 reg, msg_data, vec_ctrl;
435 u64 tbl_addr, msg_addr, reg_u64;
436 void __iomem *msix_tbl;
437 int ret;
438
439 reg = ep->msix_cap + PCI_MSIX_TABLE;
440 tbl_offset = dw_pcie_readl_dbi(pci, reg);
441 bir = (tbl_offset & PCI_MSIX_TABLE_BIR);
442 tbl_offset &= PCI_MSIX_TABLE_OFFSET;
443 tbl_offset >>= 3;
444
445 reg = PCI_BASE_ADDRESS_0 + (4 * bir);
446 bar_addr_upper = 0;
447 bar_addr_lower = dw_pcie_readl_dbi(pci, reg);
448 reg_u64 = (bar_addr_lower & PCI_BASE_ADDRESS_MEM_TYPE_MASK);
449 if (reg_u64 == PCI_BASE_ADDRESS_MEM_TYPE_64)
450 bar_addr_upper = dw_pcie_readl_dbi(pci, reg + 4);
451
452 tbl_addr = ((u64) bar_addr_upper) << 32 | bar_addr_lower;
453 tbl_addr += (tbl_offset + ((interrupt_num - 1) * PCI_MSIX_ENTRY_SIZE));
454 tbl_addr &= PCI_BASE_ADDRESS_MEM_MASK;
455
456 msix_tbl = ioremap_nocache(ep->phys_base + tbl_addr,
457 PCI_MSIX_ENTRY_SIZE);
458 if (!msix_tbl)
459 return -EINVAL;
460
461 msg_addr_lower = readl(msix_tbl + PCI_MSIX_ENTRY_LOWER_ADDR);
462 msg_addr_upper = readl(msix_tbl + PCI_MSIX_ENTRY_UPPER_ADDR);
463 msg_addr = ((u64) msg_addr_upper) << 32 | msg_addr_lower;
464 msg_data = readl(msix_tbl + PCI_MSIX_ENTRY_DATA);
465 vec_ctrl = readl(msix_tbl + PCI_MSIX_ENTRY_VECTOR_CTRL);
466
467 iounmap(msix_tbl);
468
469 if (vec_ctrl & PCI_MSIX_ENTRY_CTRL_MASKBIT)
470 return -EPERM;
471
472 ret = dw_pcie_ep_map_addr(epc, func_no, ep->msi_mem_phys, msg_addr,
473 epc->mem->page_size);
474 if (ret)
475 return ret;
476
477 writel(msg_data, ep->msi_mem);
478
479 dw_pcie_ep_unmap_addr(epc, func_no, ep->msi_mem_phys);
480
481 return 0;
482}
483
Kishon Vijay Abraham If8aed6e2017-03-27 15:15:05 +0530484void dw_pcie_ep_exit(struct dw_pcie_ep *ep)
485{
486 struct pci_epc *epc = ep->epc;
487
Niklas Cassel2fd0c9d2017-12-20 00:29:25 +0100488 pci_epc_mem_free_addr(epc, ep->msi_mem_phys, ep->msi_mem,
489 epc->mem->page_size);
490
Kishon Vijay Abraham If8aed6e2017-03-27 15:15:05 +0530491 pci_epc_mem_exit(epc);
492}
493
494int dw_pcie_ep_init(struct dw_pcie_ep *ep)
495{
496 int ret;
497 void *addr;
Kishon Vijay Abraham If8aed6e2017-03-27 15:15:05 +0530498 struct pci_epc *epc;
499 struct dw_pcie *pci = to_dw_pcie_from_ep(ep);
500 struct device *dev = pci->dev;
501 struct device_node *np = dev->of_node;
502
503 if (!pci->dbi_base || !pci->dbi_base2) {
Niklas Casselae15d862018-02-01 15:02:23 +0100504 dev_err(dev, "dbi_base/dbi_base2 is not populated\n");
Kishon Vijay Abraham If8aed6e2017-03-27 15:15:05 +0530505 return -EINVAL;
506 }
507
508 ret = of_property_read_u32(np, "num-ib-windows", &ep->num_ib_windows);
509 if (ret < 0) {
Gustavo Pimentelb4a8a512018-05-14 16:09:48 +0100510 dev_err(dev, "Unable to read *num-ib-windows* property\n");
Kishon Vijay Abraham If8aed6e2017-03-27 15:15:05 +0530511 return ret;
512 }
Niklas Casselad4a5be2017-12-14 14:01:44 +0100513 if (ep->num_ib_windows > MAX_IATU_IN) {
Gustavo Pimentelb4a8a512018-05-14 16:09:48 +0100514 dev_err(dev, "Invalid *num-ib-windows*\n");
Niklas Casselad4a5be2017-12-14 14:01:44 +0100515 return -EINVAL;
516 }
Kishon Vijay Abraham If8aed6e2017-03-27 15:15:05 +0530517
518 ret = of_property_read_u32(np, "num-ob-windows", &ep->num_ob_windows);
519 if (ret < 0) {
Gustavo Pimentelb4a8a512018-05-14 16:09:48 +0100520 dev_err(dev, "Unable to read *num-ob-windows* property\n");
Kishon Vijay Abraham If8aed6e2017-03-27 15:15:05 +0530521 return ret;
522 }
Niklas Casselad4a5be2017-12-14 14:01:44 +0100523 if (ep->num_ob_windows > MAX_IATU_OUT) {
Gustavo Pimentelb4a8a512018-05-14 16:09:48 +0100524 dev_err(dev, "Invalid *num-ob-windows*\n");
Niklas Casselad4a5be2017-12-14 14:01:44 +0100525 return -EINVAL;
526 }
527
Kees Cooka86854d2018-06-12 14:07:58 -0700528 ep->ib_window_map = devm_kcalloc(dev,
Niklas Casselad4a5be2017-12-14 14:01:44 +0100529 BITS_TO_LONGS(ep->num_ib_windows),
Kees Cooka86854d2018-06-12 14:07:58 -0700530 sizeof(long),
Niklas Casselad4a5be2017-12-14 14:01:44 +0100531 GFP_KERNEL);
532 if (!ep->ib_window_map)
533 return -ENOMEM;
534
Kees Cooka86854d2018-06-12 14:07:58 -0700535 ep->ob_window_map = devm_kcalloc(dev,
Niklas Casselad4a5be2017-12-14 14:01:44 +0100536 BITS_TO_LONGS(ep->num_ob_windows),
Kees Cooka86854d2018-06-12 14:07:58 -0700537 sizeof(long),
Niklas Casselad4a5be2017-12-14 14:01:44 +0100538 GFP_KERNEL);
539 if (!ep->ob_window_map)
540 return -ENOMEM;
Kishon Vijay Abraham If8aed6e2017-03-27 15:15:05 +0530541
Kees Cooka86854d2018-06-12 14:07:58 -0700542 addr = devm_kcalloc(dev, ep->num_ob_windows, sizeof(phys_addr_t),
Kishon Vijay Abraham If8aed6e2017-03-27 15:15:05 +0530543 GFP_KERNEL);
544 if (!addr)
545 return -ENOMEM;
546 ep->outbound_addr = addr;
547
Kishon Vijay Abraham If8aed6e2017-03-27 15:15:05 +0530548 epc = devm_pci_epc_create(dev, &epc_ops);
549 if (IS_ERR(epc)) {
Gustavo Pimentelb4a8a512018-05-14 16:09:48 +0100550 dev_err(dev, "Failed to create epc device\n");
Kishon Vijay Abraham If8aed6e2017-03-27 15:15:05 +0530551 return PTR_ERR(epc);
552 }
553
Gustavo Pimentel4e965ed2018-07-19 10:32:11 +0200554 ep->epc = epc;
555 epc_set_drvdata(epc, ep);
556
557 if (ep->ops->ep_init)
558 ep->ops->ep_init(ep);
559
Kishon Vijay Abraham If8aed6e2017-03-27 15:15:05 +0530560 ret = of_property_read_u8(np, "max-functions", &epc->max_functions);
561 if (ret < 0)
562 epc->max_functions = 1;
563
Kishon Vijay Abraham Ia937fe02017-08-18 20:28:02 +0530564 ret = __pci_epc_mem_init(epc, ep->phys_base, ep->addr_size,
565 ep->page_size);
Kishon Vijay Abraham If8aed6e2017-03-27 15:15:05 +0530566 if (ret < 0) {
567 dev_err(dev, "Failed to initialize address space\n");
568 return ret;
569 }
570
Niklas Cassel2fd0c9d2017-12-20 00:29:25 +0100571 ep->msi_mem = pci_epc_mem_alloc_addr(epc, &ep->msi_mem_phys,
572 epc->mem->page_size);
573 if (!ep->msi_mem) {
Gustavo Pimentelbeb46412018-07-19 10:32:14 +0200574 dev_err(dev, "Failed to reserve memory for MSI/MSI-X\n");
Niklas Cassel2fd0c9d2017-12-20 00:29:25 +0100575 return -ENOMEM;
576 }
Gustavo Pimentelbeb46412018-07-19 10:32:14 +0200577 ep->msi_cap = dw_pcie_ep_find_capability(pci, PCI_CAP_ID_MSI);
578
579 ep->msix_cap = dw_pcie_ep_find_capability(pci, PCI_CAP_ID_MSIX);
Niklas Cassel2fd0c9d2017-12-20 00:29:25 +0100580
Kishon Vijay Abraham If8aed6e2017-03-27 15:15:05 +0530581 dw_pcie_setup(pci);
582
583 return 0;
584}