2 * Copyright 2014 IBM Corp.
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
10 #include <linux/pci.h>
12 #include <asm/pnv-pci.h>
15 static int cxl_dma_set_mask(struct pci_dev
*pdev
, u64 dma_mask
)
17 if (dma_mask
< DMA_BIT_MASK(64)) {
18 pr_info("%s only 64bit DMA supported on CXL", __func__
);
22 *(pdev
->dev
.dma_mask
) = dma_mask
;
26 static int cxl_pci_probe_mode(struct pci_bus
*bus
)
28 return PCI_PROBE_NORMAL
;
31 static int cxl_setup_msi_irqs(struct pci_dev
*pdev
, int nvec
, int type
)
36 static void cxl_teardown_msi_irqs(struct pci_dev
*pdev
)
39 * MSI should never be set but need still need to provide this call
44 static bool cxl_pci_enable_device_hook(struct pci_dev
*dev
)
46 struct pci_controller
*phb
;
49 phb
= pci_bus_to_host(dev
->bus
);
50 afu
= (struct cxl_afu
*)phb
->private_data
;
52 if (!cxl_ops
->link_ok(afu
->adapter
, afu
)) {
53 dev_warn(&dev
->dev
, "%s: Device link is down, refusing to enable AFU\n", __func__
);
57 set_dma_ops(&dev
->dev
, &dma_direct_ops
);
58 set_dma_offset(&dev
->dev
, PAGE_OFFSET
);
60 return _cxl_pci_associate_default_context(dev
, afu
);
63 static resource_size_t
cxl_pci_window_alignment(struct pci_bus
*bus
,
69 static void cxl_pci_reset_secondary_bus(struct pci_dev
*dev
)
71 /* Should we do an AFU reset here ? */
74 static int cxl_pcie_cfg_record(u8 bus
, u8 devfn
)
76 return (bus
<< 8) + devfn
;
79 static int cxl_pcie_config_info(struct pci_bus
*bus
, unsigned int devfn
,
80 struct cxl_afu
**_afu
, int *_record
)
82 struct pci_controller
*phb
;
86 phb
= pci_bus_to_host(bus
);
88 return PCIBIOS_DEVICE_NOT_FOUND
;
90 afu
= (struct cxl_afu
*)phb
->private_data
;
91 record
= cxl_pcie_cfg_record(bus
->number
, devfn
);
92 if (record
> afu
->crs_num
)
93 return PCIBIOS_DEVICE_NOT_FOUND
;
100 static int cxl_pcie_read_config(struct pci_bus
*bus
, unsigned int devfn
,
101 int offset
, int len
, u32
*val
)
109 rc
= cxl_pcie_config_info(bus
, devfn
, &afu
, &record
);
115 rc
= cxl_ops
->afu_cr_read8(afu
, record
, offset
, &val8
);
119 rc
= cxl_ops
->afu_cr_read16(afu
, record
, offset
, &val16
);
123 rc
= cxl_ops
->afu_cr_read32(afu
, record
, offset
, &val32
);
131 return PCIBIOS_DEVICE_NOT_FOUND
;
133 return PCIBIOS_SUCCESSFUL
;
136 static int cxl_pcie_write_config(struct pci_bus
*bus
, unsigned int devfn
,
137 int offset
, int len
, u32 val
)
142 rc
= cxl_pcie_config_info(bus
, devfn
, &afu
, &record
);
148 rc
= cxl_ops
->afu_cr_write8(afu
, record
, offset
, val
& 0xff);
151 rc
= cxl_ops
->afu_cr_write16(afu
, record
, offset
, val
& 0xffff);
154 rc
= cxl_ops
->afu_cr_write32(afu
, record
, offset
, val
);
161 return PCIBIOS_SET_FAILED
;
163 return PCIBIOS_SUCCESSFUL
;
166 static struct pci_ops cxl_pcie_pci_ops
=
168 .read
= cxl_pcie_read_config
,
169 .write
= cxl_pcie_write_config
,
173 static struct pci_controller_ops cxl_pci_controller_ops
=
175 .probe_mode
= cxl_pci_probe_mode
,
176 .enable_device_hook
= cxl_pci_enable_device_hook
,
177 .disable_device
= _cxl_pci_disable_device
,
178 .release_device
= _cxl_pci_disable_device
,
179 .window_alignment
= cxl_pci_window_alignment
,
180 .reset_secondary_bus
= cxl_pci_reset_secondary_bus
,
181 .setup_msi_irqs
= cxl_setup_msi_irqs
,
182 .teardown_msi_irqs
= cxl_teardown_msi_irqs
,
183 .dma_set_mask
= cxl_dma_set_mask
,
186 int cxl_pci_vphb_add(struct cxl_afu
*afu
)
188 struct pci_controller
*phb
;
189 struct device_node
*vphb_dn
;
190 struct device
*parent
;
193 * If there are no AFU configuration records we won't have anything to
194 * expose under the vPHB, so skip creating one, returning success since
195 * this is still a valid case. This will also opt us out of EEH
196 * handling since we won't have anything special to do if there are no
197 * kernel drivers attached to the vPHB, and EEH handling is not yet
198 * supported in the peer model.
203 /* The parent device is the adapter. Reuse the device node of
205 * We don't seem to care what device node is used for the vPHB,
206 * but tools such as lsvpd walk up the device parents looking
207 * for a valid location code, so we might as well show devices
208 * attached to the adapter as being located on that adapter.
210 parent
= afu
->adapter
->dev
.parent
;
211 vphb_dn
= parent
->of_node
;
213 /* Alloc and setup PHB data structure */
214 phb
= pcibios_alloc_controller(vphb_dn
);
218 /* Setup parent in sysfs */
219 phb
->parent
= parent
;
221 /* Setup the PHB using arch provided callback */
222 phb
->ops
= &cxl_pcie_pci_ops
;
223 phb
->cfg_addr
= NULL
;
224 phb
->cfg_data
= NULL
;
225 phb
->private_data
= afu
;
226 phb
->controller_ops
= cxl_pci_controller_ops
;
229 pcibios_scan_phb(phb
);
230 if (phb
->bus
== NULL
)
233 /* Set release hook on root bus */
234 pci_set_host_bridge_release(to_pci_host_bridge(phb
->bus
->bridge
),
235 pcibios_free_controller_deferred
,
238 /* Claim resources. This might need some rework as well depending
239 * whether we are doing probe-only or not, like assigning unassigned
242 pcibios_claim_one_bus(phb
->bus
);
244 /* Add probed PCI devices to the device model */
245 pci_bus_add_devices(phb
->bus
);
252 void cxl_pci_vphb_remove(struct cxl_afu
*afu
)
254 struct pci_controller
*phb
;
256 /* If there is no configuration record we won't have one of these */
257 if (!afu
|| !afu
->phb
)
263 pci_remove_root_bus(phb
->bus
);
265 * We don't free phb here - that's handled by
266 * pcibios_free_controller_deferred()
270 static bool _cxl_pci_is_vphb_device(struct pci_controller
*phb
)
272 return (phb
->ops
== &cxl_pcie_pci_ops
);
275 bool cxl_pci_is_vphb_device(struct pci_dev
*dev
)
277 struct pci_controller
*phb
;
279 phb
= pci_bus_to_host(dev
->bus
);
281 return _cxl_pci_is_vphb_device(phb
);
284 struct cxl_afu
*cxl_pci_to_afu(struct pci_dev
*dev
)
286 struct pci_controller
*phb
;
288 phb
= pci_bus_to_host(dev
->bus
);
290 if (_cxl_pci_is_vphb_device(phb
))
291 return (struct cxl_afu
*)phb
->private_data
;
293 if (pnv_pci_on_cxl_phb(dev
))
294 return pnv_cxl_phb_to_afu(phb
);
296 return ERR_PTR(-ENODEV
);
298 EXPORT_SYMBOL_GPL(cxl_pci_to_afu
);
300 unsigned int cxl_pci_to_cfg_record(struct pci_dev
*dev
)
302 return cxl_pcie_cfg_record(dev
->bus
->number
, dev
->devfn
);
304 EXPORT_SYMBOL_GPL(cxl_pci_to_cfg_record
);