xref: /openbmc/linux/drivers/misc/cxl/vphb.c (revision c8d43cf08ab8c0b8829e67f7711bc72a3be6503f)
16f7f0b3dSMichael Neuling /*
26f7f0b3dSMichael Neuling  * Copyright 2014 IBM Corp.
36f7f0b3dSMichael Neuling  *
46f7f0b3dSMichael Neuling  * This program is free software; you can redistribute it and/or
56f7f0b3dSMichael Neuling  * modify it under the terms of the GNU General Public License
66f7f0b3dSMichael Neuling  * as published by the Free Software Foundation; either version
76f7f0b3dSMichael Neuling  * 2 of the License, or (at your option) any later version.
86f7f0b3dSMichael Neuling  */
96f7f0b3dSMichael Neuling 
106f7f0b3dSMichael Neuling #include <linux/pci.h>
116f7f0b3dSMichael Neuling #include <misc/cxl.h>
126f7f0b3dSMichael Neuling #include "cxl.h"
136f7f0b3dSMichael Neuling 
146f7f0b3dSMichael Neuling static int cxl_dma_set_mask(struct pci_dev *pdev, u64 dma_mask)
156f7f0b3dSMichael Neuling {
166f7f0b3dSMichael Neuling 	if (dma_mask < DMA_BIT_MASK(64)) {
176f7f0b3dSMichael Neuling 		pr_info("%s only 64bit DMA supported on CXL", __func__);
186f7f0b3dSMichael Neuling 		return -EIO;
196f7f0b3dSMichael Neuling 	}
206f7f0b3dSMichael Neuling 
216f7f0b3dSMichael Neuling 	*(pdev->dev.dma_mask) = dma_mask;
226f7f0b3dSMichael Neuling 	return 0;
236f7f0b3dSMichael Neuling }
246f7f0b3dSMichael Neuling 
256f7f0b3dSMichael Neuling static int cxl_pci_probe_mode(struct pci_bus *bus)
266f7f0b3dSMichael Neuling {
276f7f0b3dSMichael Neuling 	return PCI_PROBE_NORMAL;
286f7f0b3dSMichael Neuling }
296f7f0b3dSMichael Neuling 
306f7f0b3dSMichael Neuling static int cxl_setup_msi_irqs(struct pci_dev *pdev, int nvec, int type)
316f7f0b3dSMichael Neuling {
326f7f0b3dSMichael Neuling 	return -ENODEV;
336f7f0b3dSMichael Neuling }
346f7f0b3dSMichael Neuling 
356f7f0b3dSMichael Neuling static void cxl_teardown_msi_irqs(struct pci_dev *pdev)
366f7f0b3dSMichael Neuling {
376f7f0b3dSMichael Neuling 	/*
386f7f0b3dSMichael Neuling 	 * MSI should never be set but need still need to provide this call
396f7f0b3dSMichael Neuling 	 * back.
406f7f0b3dSMichael Neuling 	 */
416f7f0b3dSMichael Neuling }
426f7f0b3dSMichael Neuling 
436f7f0b3dSMichael Neuling static bool cxl_pci_enable_device_hook(struct pci_dev *dev)
446f7f0b3dSMichael Neuling {
456f7f0b3dSMichael Neuling 	struct pci_controller *phb;
466f7f0b3dSMichael Neuling 	struct cxl_afu *afu;
476f7f0b3dSMichael Neuling 
486f7f0b3dSMichael Neuling 	phb = pci_bus_to_host(dev->bus);
496f7f0b3dSMichael Neuling 	afu = (struct cxl_afu *)phb->private_data;
507d1647dcSAndrew Donnellan 
510d400f77SChristophe Lombard 	if (!cxl_ops->link_ok(afu->adapter, afu)) {
527d1647dcSAndrew Donnellan 		dev_warn(&dev->dev, "%s: Device link is down, refusing to enable AFU\n", __func__);
537d1647dcSAndrew Donnellan 		return false;
547d1647dcSAndrew Donnellan 	}
557d1647dcSAndrew Donnellan 
562d9d6f6cSChristoph Hellwig 	set_dma_ops(&dev->dev, &dma_nommu_ops);
576f7f0b3dSMichael Neuling 	set_dma_offset(&dev->dev, PAGE_OFFSET);
586f7f0b3dSMichael Neuling 
59a19bd79eSIan Munsie 	return _cxl_pci_associate_default_context(dev, afu);
606f7f0b3dSMichael Neuling }
616f7f0b3dSMichael Neuling 
626f7f0b3dSMichael Neuling static resource_size_t cxl_pci_window_alignment(struct pci_bus *bus,
636f7f0b3dSMichael Neuling 						unsigned long type)
646f7f0b3dSMichael Neuling {
656f7f0b3dSMichael Neuling 	return 1;
666f7f0b3dSMichael Neuling }
676f7f0b3dSMichael Neuling 
686f7f0b3dSMichael Neuling static void cxl_pci_reset_secondary_bus(struct pci_dev *dev)
696f7f0b3dSMichael Neuling {
706f7f0b3dSMichael Neuling 	/* Should we do an AFU reset here ? */
716f7f0b3dSMichael Neuling }
726f7f0b3dSMichael Neuling 
736f7f0b3dSMichael Neuling static int cxl_pcie_cfg_record(u8 bus, u8 devfn)
746f7f0b3dSMichael Neuling {
756f7f0b3dSMichael Neuling 	return (bus << 8) + devfn;
766f7f0b3dSMichael Neuling }
776f7f0b3dSMichael Neuling 
7814a3ae34SAndrew Donnellan static inline struct cxl_afu *pci_bus_to_afu(struct pci_bus *bus)
796f7f0b3dSMichael Neuling {
8014a3ae34SAndrew Donnellan 	struct pci_controller *phb = bus ? pci_bus_to_host(bus) : NULL;
8114a3ae34SAndrew Donnellan 
8214a3ae34SAndrew Donnellan 	return phb ? phb->private_data : NULL;
8314a3ae34SAndrew Donnellan }
8414a3ae34SAndrew Donnellan 
85171ed0fcSAndrew Donnellan static void cxl_afu_configured_put(struct cxl_afu *afu)
86171ed0fcSAndrew Donnellan {
87171ed0fcSAndrew Donnellan 	atomic_dec_if_positive(&afu->configured_state);
88171ed0fcSAndrew Donnellan }
89171ed0fcSAndrew Donnellan 
90171ed0fcSAndrew Donnellan static bool cxl_afu_configured_get(struct cxl_afu *afu)
91171ed0fcSAndrew Donnellan {
92171ed0fcSAndrew Donnellan 	return atomic_inc_unless_negative(&afu->configured_state);
93171ed0fcSAndrew Donnellan }
94171ed0fcSAndrew Donnellan 
9514a3ae34SAndrew Donnellan static inline int cxl_pcie_config_info(struct pci_bus *bus, unsigned int devfn,
9614a3ae34SAndrew Donnellan 				       struct cxl_afu *afu, int *_record)
9714a3ae34SAndrew Donnellan {
98d601ea91SFrederic Barrat 	int record;
996f7f0b3dSMichael Neuling 
100d601ea91SFrederic Barrat 	record = cxl_pcie_cfg_record(bus->number, devfn);
101d601ea91SFrederic Barrat 	if (record > afu->crs_num)
1026f7f0b3dSMichael Neuling 		return PCIBIOS_DEVICE_NOT_FOUND;
1036f7f0b3dSMichael Neuling 
104d601ea91SFrederic Barrat 	*_record = record;
1056f7f0b3dSMichael Neuling 	return 0;
1066f7f0b3dSMichael Neuling }
1076f7f0b3dSMichael Neuling 
1086f7f0b3dSMichael Neuling static int cxl_pcie_read_config(struct pci_bus *bus, unsigned int devfn,
1096f7f0b3dSMichael Neuling 				int offset, int len, u32 *val)
1106f7f0b3dSMichael Neuling {
111d601ea91SFrederic Barrat 	int rc, record;
112d601ea91SFrederic Barrat 	struct cxl_afu *afu;
113d601ea91SFrederic Barrat 	u8 val8;
114d601ea91SFrederic Barrat 	u16 val16;
115d601ea91SFrederic Barrat 	u32 val32;
1166f7f0b3dSMichael Neuling 
11714a3ae34SAndrew Donnellan 	afu = pci_bus_to_afu(bus);
11814a3ae34SAndrew Donnellan 	/* Grab a reader lock on afu. */
119171ed0fcSAndrew Donnellan 	if (afu == NULL || !cxl_afu_configured_get(afu))
12014a3ae34SAndrew Donnellan 		return PCIBIOS_DEVICE_NOT_FOUND;
12114a3ae34SAndrew Donnellan 
12214a3ae34SAndrew Donnellan 	rc = cxl_pcie_config_info(bus, devfn, afu, &record);
1236f7f0b3dSMichael Neuling 	if (rc)
12414a3ae34SAndrew Donnellan 		goto out;
1256f7f0b3dSMichael Neuling 
126d601ea91SFrederic Barrat 	switch (len) {
127d601ea91SFrederic Barrat 	case 1:
128d601ea91SFrederic Barrat 		rc = cxl_ops->afu_cr_read8(afu, record, offset,	&val8);
129d601ea91SFrederic Barrat 		*val = val8;
130d601ea91SFrederic Barrat 		break;
131d601ea91SFrederic Barrat 	case 2:
132d601ea91SFrederic Barrat 		rc = cxl_ops->afu_cr_read16(afu, record, offset, &val16);
133d601ea91SFrederic Barrat 		*val = val16;
134d601ea91SFrederic Barrat 		break;
135d601ea91SFrederic Barrat 	case 4:
136d601ea91SFrederic Barrat 		rc = cxl_ops->afu_cr_read32(afu, record, offset, &val32);
137d601ea91SFrederic Barrat 		*val = val32;
138d601ea91SFrederic Barrat 		break;
139d601ea91SFrederic Barrat 	default:
140d601ea91SFrederic Barrat 		WARN_ON(1);
141d601ea91SFrederic Barrat 	}
142d601ea91SFrederic Barrat 
14314a3ae34SAndrew Donnellan out:
144171ed0fcSAndrew Donnellan 	cxl_afu_configured_put(afu);
14514a3ae34SAndrew Donnellan 	return rc ? PCIBIOS_DEVICE_NOT_FOUND : PCIBIOS_SUCCESSFUL;
1466f7f0b3dSMichael Neuling }
1476f7f0b3dSMichael Neuling 
1486f7f0b3dSMichael Neuling static int cxl_pcie_write_config(struct pci_bus *bus, unsigned int devfn,
1496f7f0b3dSMichael Neuling 				 int offset, int len, u32 val)
1506f7f0b3dSMichael Neuling {
151d601ea91SFrederic Barrat 	int rc, record;
152d601ea91SFrederic Barrat 	struct cxl_afu *afu;
1536f7f0b3dSMichael Neuling 
15414a3ae34SAndrew Donnellan 	afu = pci_bus_to_afu(bus);
15514a3ae34SAndrew Donnellan 	/* Grab a reader lock on afu. */
156171ed0fcSAndrew Donnellan 	if (afu == NULL || !cxl_afu_configured_get(afu))
15714a3ae34SAndrew Donnellan 		return PCIBIOS_DEVICE_NOT_FOUND;
15814a3ae34SAndrew Donnellan 
15914a3ae34SAndrew Donnellan 	rc = cxl_pcie_config_info(bus, devfn, afu, &record);
1606f7f0b3dSMichael Neuling 	if (rc)
16114a3ae34SAndrew Donnellan 		goto out;
1626f7f0b3dSMichael Neuling 
163d601ea91SFrederic Barrat 	switch (len) {
164d601ea91SFrederic Barrat 	case 1:
165d601ea91SFrederic Barrat 		rc = cxl_ops->afu_cr_write8(afu, record, offset, val & 0xff);
166d601ea91SFrederic Barrat 		break;
167d601ea91SFrederic Barrat 	case 2:
168d601ea91SFrederic Barrat 		rc = cxl_ops->afu_cr_write16(afu, record, offset, val & 0xffff);
169d601ea91SFrederic Barrat 		break;
170d601ea91SFrederic Barrat 	case 4:
171d601ea91SFrederic Barrat 		rc = cxl_ops->afu_cr_write32(afu, record, offset, val);
172d601ea91SFrederic Barrat 		break;
173d601ea91SFrederic Barrat 	default:
174d601ea91SFrederic Barrat 		WARN_ON(1);
175d601ea91SFrederic Barrat 	}
1760b3f9c75SDaniel Axtens 
17714a3ae34SAndrew Donnellan out:
178171ed0fcSAndrew Donnellan 	cxl_afu_configured_put(afu);
17914a3ae34SAndrew Donnellan 	return rc ? PCIBIOS_SET_FAILED : PCIBIOS_SUCCESSFUL;
1806f7f0b3dSMichael Neuling }
1816f7f0b3dSMichael Neuling 
1826f7f0b3dSMichael Neuling static struct pci_ops cxl_pcie_pci_ops =
1836f7f0b3dSMichael Neuling {
1846f7f0b3dSMichael Neuling 	.read = cxl_pcie_read_config,
1856f7f0b3dSMichael Neuling 	.write = cxl_pcie_write_config,
1866f7f0b3dSMichael Neuling };
1876f7f0b3dSMichael Neuling 
1886f7f0b3dSMichael Neuling 
1896f7f0b3dSMichael Neuling static struct pci_controller_ops cxl_pci_controller_ops =
1906f7f0b3dSMichael Neuling {
1916f7f0b3dSMichael Neuling 	.probe_mode = cxl_pci_probe_mode,
1926f7f0b3dSMichael Neuling 	.enable_device_hook = cxl_pci_enable_device_hook,
193a19bd79eSIan Munsie 	.disable_device = _cxl_pci_disable_device,
194a19bd79eSIan Munsie 	.release_device = _cxl_pci_disable_device,
1956f7f0b3dSMichael Neuling 	.window_alignment = cxl_pci_window_alignment,
1966f7f0b3dSMichael Neuling 	.reset_secondary_bus = cxl_pci_reset_secondary_bus,
1976f7f0b3dSMichael Neuling 	.setup_msi_irqs = cxl_setup_msi_irqs,
1986f7f0b3dSMichael Neuling 	.teardown_msi_irqs = cxl_teardown_msi_irqs,
1996f7f0b3dSMichael Neuling 	.dma_set_mask = cxl_dma_set_mask,
2006f7f0b3dSMichael Neuling };
2016f7f0b3dSMichael Neuling 
2026f7f0b3dSMichael Neuling int cxl_pci_vphb_add(struct cxl_afu *afu)
2036f7f0b3dSMichael Neuling {
204a4307390SFrederic Barrat 	struct pci_controller *phb;
205d601ea91SFrederic Barrat 	struct device_node *vphb_dn;
206d601ea91SFrederic Barrat 	struct device *parent;
2076f7f0b3dSMichael Neuling 
208e4f5fc00SIan Munsie 	/*
209e4f5fc00SIan Munsie 	 * If there are no AFU configuration records we won't have anything to
210e4f5fc00SIan Munsie 	 * expose under the vPHB, so skip creating one, returning success since
211e4f5fc00SIan Munsie 	 * this is still a valid case. This will also opt us out of EEH
212e4f5fc00SIan Munsie 	 * handling since we won't have anything special to do if there are no
213e4f5fc00SIan Munsie 	 * kernel drivers attached to the vPHB, and EEH handling is not yet
214e4f5fc00SIan Munsie 	 * supported in the peer model.
215e4f5fc00SIan Munsie 	 */
216e4f5fc00SIan Munsie 	if (!afu->crs_num)
217e4f5fc00SIan Munsie 		return 0;
218e4f5fc00SIan Munsie 
219a4307390SFrederic Barrat 	/* The parent device is the adapter. Reuse the device node of
220a4307390SFrederic Barrat 	 * the adapter.
221a4307390SFrederic Barrat 	 * We don't seem to care what device node is used for the vPHB,
222a4307390SFrederic Barrat 	 * but tools such as lsvpd walk up the device parents looking
223a4307390SFrederic Barrat 	 * for a valid location code, so we might as well show devices
224a4307390SFrederic Barrat 	 * attached to the adapter as being located on that adapter.
225a4307390SFrederic Barrat 	 */
226d601ea91SFrederic Barrat 	parent = afu->adapter->dev.parent;
227a4307390SFrederic Barrat 	vphb_dn = parent->of_node;
2286f7f0b3dSMichael Neuling 
2296f7f0b3dSMichael Neuling 	/* Alloc and setup PHB data structure */
230d601ea91SFrederic Barrat 	phb = pcibios_alloc_controller(vphb_dn);
2316f7f0b3dSMichael Neuling 	if (!phb)
2326f7f0b3dSMichael Neuling 		return -ENODEV;
2336f7f0b3dSMichael Neuling 
2346f7f0b3dSMichael Neuling 	/* Setup parent in sysfs */
235d601ea91SFrederic Barrat 	phb->parent = parent;
2366f7f0b3dSMichael Neuling 
2376f7f0b3dSMichael Neuling 	/* Setup the PHB using arch provided callback */
2386f7f0b3dSMichael Neuling 	phb->ops = &cxl_pcie_pci_ops;
239d601ea91SFrederic Barrat 	phb->cfg_addr = NULL;
2406fd40f19SAndrew Donnellan 	phb->cfg_data = NULL;
2416f7f0b3dSMichael Neuling 	phb->private_data = afu;
2426f7f0b3dSMichael Neuling 	phb->controller_ops = cxl_pci_controller_ops;
2436f7f0b3dSMichael Neuling 
2446f7f0b3dSMichael Neuling 	/* Scan the bus */
2456f7f0b3dSMichael Neuling 	pcibios_scan_phb(phb);
2466f7f0b3dSMichael Neuling 	if (phb->bus == NULL)
2476f7f0b3dSMichael Neuling 		return -ENXIO;
2486f7f0b3dSMichael Neuling 
2496f38a8b9SAndrew Donnellan 	/* Set release hook on root bus */
2506f38a8b9SAndrew Donnellan 	pci_set_host_bridge_release(to_pci_host_bridge(phb->bus->bridge),
2516f38a8b9SAndrew Donnellan 				    pcibios_free_controller_deferred,
2526f38a8b9SAndrew Donnellan 				    (void *) phb);
2536f38a8b9SAndrew Donnellan 
2546f7f0b3dSMichael Neuling 	/* Claim resources. This might need some rework as well depending
2556f7f0b3dSMichael Neuling 	 * whether we are doing probe-only or not, like assigning unassigned
2566f7f0b3dSMichael Neuling 	 * resources etc...
2576f7f0b3dSMichael Neuling 	 */
2586f7f0b3dSMichael Neuling 	pcibios_claim_one_bus(phb->bus);
2596f7f0b3dSMichael Neuling 
2606f7f0b3dSMichael Neuling 	/* Add probed PCI devices to the device model */
2616f7f0b3dSMichael Neuling 	pci_bus_add_devices(phb->bus);
2626f7f0b3dSMichael Neuling 
2636f7f0b3dSMichael Neuling 	afu->phb = phb;
2646f7f0b3dSMichael Neuling 
2656f7f0b3dSMichael Neuling 	return 0;
2666f7f0b3dSMichael Neuling }
2676f7f0b3dSMichael Neuling 
2686f7f0b3dSMichael Neuling void cxl_pci_vphb_remove(struct cxl_afu *afu)
2696f7f0b3dSMichael Neuling {
2706f7f0b3dSMichael Neuling 	struct pci_controller *phb;
2716f7f0b3dSMichael Neuling 
2726f7f0b3dSMichael Neuling 	/* If there is no configuration record we won't have one of these */
2736f7f0b3dSMichael Neuling 	if (!afu || !afu->phb)
2746f7f0b3dSMichael Neuling 		return;
2756f7f0b3dSMichael Neuling 
2766f7f0b3dSMichael Neuling 	phb = afu->phb;
2772e1a2556SAndrew Donnellan 	afu->phb = NULL;
2786f7f0b3dSMichael Neuling 
2796f7f0b3dSMichael Neuling 	pci_remove_root_bus(phb->bus);
2806f38a8b9SAndrew Donnellan 	/*
2816f38a8b9SAndrew Donnellan 	 * We don't free phb here - that's handled by
2826f38a8b9SAndrew Donnellan 	 * pcibios_free_controller_deferred()
2836f38a8b9SAndrew Donnellan 	 */
2846f7f0b3dSMichael Neuling }
2856f7f0b3dSMichael Neuling 
28617eb3eefSVaibhav Jain bool cxl_pci_is_vphb_device(struct pci_dev *dev)
28717eb3eefSVaibhav Jain {
28817eb3eefSVaibhav Jain 	struct pci_controller *phb;
28917eb3eefSVaibhav Jain 
29017eb3eefSVaibhav Jain 	phb = pci_bus_to_host(dev->bus);
29117eb3eefSVaibhav Jain 
292*c8d43cf0SAlastair D'Silva 	return (phb->ops == &cxl_pcie_pci_ops);
29317eb3eefSVaibhav Jain }
29417eb3eefSVaibhav Jain 
2956f7f0b3dSMichael Neuling struct cxl_afu *cxl_pci_to_afu(struct pci_dev *dev)
2966f7f0b3dSMichael Neuling {
2976f7f0b3dSMichael Neuling 	struct pci_controller *phb;
2986f7f0b3dSMichael Neuling 
2996f7f0b3dSMichael Neuling 	phb = pci_bus_to_host(dev->bus);
3006f7f0b3dSMichael Neuling 
3016f7f0b3dSMichael Neuling 	return (struct cxl_afu *)phb->private_data;
3026f7f0b3dSMichael Neuling }
3036f7f0b3dSMichael Neuling EXPORT_SYMBOL_GPL(cxl_pci_to_afu);
3046f7f0b3dSMichael Neuling 
3056f7f0b3dSMichael Neuling unsigned int cxl_pci_to_cfg_record(struct pci_dev *dev)
3066f7f0b3dSMichael Neuling {
3076f7f0b3dSMichael Neuling 	return cxl_pcie_cfg_record(dev->bus->number, dev->devfn);
3086f7f0b3dSMichael Neuling }
3096f7f0b3dSMichael Neuling EXPORT_SYMBOL_GPL(cxl_pci_to_cfg_record);
310