Linux Audio

Check our new training course

Loading...
v6.13.7
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * Loongson PCI Host Controller Driver
  4 *
  5 * Copyright (C) 2020 Jiaxun Yang <jiaxun.yang@flygoat.com>
  6 */
  7
  8#include <linux/of.h>
  9#include <linux/of_pci.h>
 10#include <linux/pci.h>
 11#include <linux/pci_ids.h>
 12#include <linux/pci-acpi.h>
 13#include <linux/pci-ecam.h>
 14
 15#include "../pci.h"
 16
 17/* Device IDs */
 18#define DEV_LS2K_PCIE_PORT0	0x1a05
 19#define DEV_LS7A_PCIE_PORT0	0x7a09
 20#define DEV_LS7A_PCIE_PORT1	0x7a19
 21#define DEV_LS7A_PCIE_PORT2	0x7a29
 22#define DEV_LS7A_PCIE_PORT3	0x7a39
 23#define DEV_LS7A_PCIE_PORT4	0x7a49
 24#define DEV_LS7A_PCIE_PORT5	0x7a59
 25#define DEV_LS7A_PCIE_PORT6	0x7a69
 26
 27#define DEV_LS2K_APB	0x7a02
 28#define DEV_LS7A_GMAC	0x7a03
 29#define DEV_LS7A_DC1	0x7a06
 30#define DEV_LS7A_LPC	0x7a0c
 31#define DEV_LS7A_AHCI	0x7a08
 32#define DEV_LS7A_CONF	0x7a10
 33#define DEV_LS7A_GNET	0x7a13
 34#define DEV_LS7A_EHCI	0x7a14
 35#define DEV_LS7A_DC2	0x7a36
 36#define DEV_LS7A_HDMI	0x7a37
 37
 38#define FLAG_CFG0	BIT(0)
 39#define FLAG_CFG1	BIT(1)
 40#define FLAG_DEV_FIX	BIT(2)
 41#define FLAG_DEV_HIDDEN	BIT(3)
 42
 43struct loongson_pci_data {
 44	u32 flags;
 45	struct pci_ops *ops;
 46};
 47
 48struct loongson_pci {
 49	void __iomem *cfg0_base;
 50	void __iomem *cfg1_base;
 51	struct platform_device *pdev;
 52	const struct loongson_pci_data *data;
 53};
 54
 55/* Fixup wrong class code in PCIe bridges */
 56static void bridge_class_quirk(struct pci_dev *dev)
 57{
 58	dev->class = PCI_CLASS_BRIDGE_PCI_NORMAL;
 59}
 60DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_LOONGSON,
 61			DEV_LS7A_PCIE_PORT0, bridge_class_quirk);
 62DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_LOONGSON,
 63			DEV_LS7A_PCIE_PORT1, bridge_class_quirk);
 64DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_LOONGSON,
 65			DEV_LS7A_PCIE_PORT2, bridge_class_quirk);
 66
 67static void system_bus_quirk(struct pci_dev *pdev)
 68{
 69	/*
 70	 * The address space consumed by these devices is outside the
 71	 * resources of the host bridge.
 72	 */
 73	pdev->mmio_always_on = 1;
 74	pdev->non_compliant_bars = 1;
 75}
 76DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_LOONGSON,
 77			DEV_LS2K_APB, system_bus_quirk);
 78DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_LOONGSON,
 79			DEV_LS7A_CONF, system_bus_quirk);
 80DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_LOONGSON,
 81			DEV_LS7A_LPC, system_bus_quirk);
 82
 83/*
 84 * Some Loongson PCIe ports have hardware limitations on their Maximum Read
 85 * Request Size. They can't handle anything larger than this.  Sane
 86 * firmware will set proper MRRS at boot, so we only need no_inc_mrrs for
 87 * bridges. However, some MIPS Loongson firmware doesn't set MRRS properly,
 88 * so we have to enforce maximum safe MRRS, which is 256 bytes.
 89 */
 90#ifdef CONFIG_MIPS
 91static void loongson_set_min_mrrs_quirk(struct pci_dev *pdev)
 92{
 93	struct pci_bus *bus = pdev->bus;
 94	struct pci_dev *bridge;
 95	static const struct pci_device_id bridge_devids[] = {
 96		{ PCI_VDEVICE(LOONGSON, DEV_LS2K_PCIE_PORT0) },
 97		{ PCI_VDEVICE(LOONGSON, DEV_LS7A_PCIE_PORT0) },
 98		{ PCI_VDEVICE(LOONGSON, DEV_LS7A_PCIE_PORT1) },
 99		{ PCI_VDEVICE(LOONGSON, DEV_LS7A_PCIE_PORT2) },
100		{ PCI_VDEVICE(LOONGSON, DEV_LS7A_PCIE_PORT3) },
101		{ PCI_VDEVICE(LOONGSON, DEV_LS7A_PCIE_PORT4) },
102		{ PCI_VDEVICE(LOONGSON, DEV_LS7A_PCIE_PORT5) },
103		{ PCI_VDEVICE(LOONGSON, DEV_LS7A_PCIE_PORT6) },
104		{ 0, },
105	};
106
107	/* look for the matching bridge */
108	while (!pci_is_root_bus(bus)) {
109		bridge = bus->self;
110		bus = bus->parent;
111
 
 
 
 
 
112		if (pci_match_id(bridge_devids, bridge)) {
113			if (pcie_get_readrq(pdev) > 256) {
114				pci_info(pdev, "limiting MRRS to 256\n");
115				pcie_set_readrq(pdev, 256);
116			}
117			break;
118		}
119	}
120}
121DECLARE_PCI_FIXUP_ENABLE(PCI_ANY_ID, PCI_ANY_ID, loongson_set_min_mrrs_quirk);
122#endif
123
124static void loongson_mrrs_quirk(struct pci_dev *pdev)
125{
126	struct pci_host_bridge *bridge = pci_find_host_bridge(pdev->bus);
127
128	bridge->no_inc_mrrs = 1;
129}
130DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_LOONGSON,
131			DEV_LS2K_PCIE_PORT0, loongson_mrrs_quirk);
132DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_LOONGSON,
133			DEV_LS7A_PCIE_PORT0, loongson_mrrs_quirk);
134DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_LOONGSON,
135			DEV_LS7A_PCIE_PORT1, loongson_mrrs_quirk);
136DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_LOONGSON,
137			DEV_LS7A_PCIE_PORT2, loongson_mrrs_quirk);
138DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_LOONGSON,
139			DEV_LS7A_PCIE_PORT3, loongson_mrrs_quirk);
140DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_LOONGSON,
141			DEV_LS7A_PCIE_PORT4, loongson_mrrs_quirk);
142DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_LOONGSON,
143			DEV_LS7A_PCIE_PORT5, loongson_mrrs_quirk);
144DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_LOONGSON,
145			DEV_LS7A_PCIE_PORT6, loongson_mrrs_quirk);
146
147static void loongson_pci_pin_quirk(struct pci_dev *pdev)
 
148{
149	pdev->pin = 1 + (PCI_FUNC(pdev->devfn) & 3);
150}
151DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_LOONGSON,
152			DEV_LS7A_DC1, loongson_pci_pin_quirk);
153DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_LOONGSON,
154			DEV_LS7A_DC2, loongson_pci_pin_quirk);
155DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_LOONGSON,
156			DEV_LS7A_GMAC, loongson_pci_pin_quirk);
157DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_LOONGSON,
158			DEV_LS7A_AHCI, loongson_pci_pin_quirk);
159DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_LOONGSON,
160			DEV_LS7A_EHCI, loongson_pci_pin_quirk);
161DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_LOONGSON,
162			DEV_LS7A_GNET, loongson_pci_pin_quirk);
163DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_LOONGSON,
164			DEV_LS7A_HDMI, loongson_pci_pin_quirk);
165
166static void loongson_pci_msi_quirk(struct pci_dev *dev)
167{
168	u16 val, class = dev->class >> 8;
169
170	if (class != PCI_CLASS_BRIDGE_HOST)
171		return;
172
173	pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &val);
174	val |= PCI_MSI_FLAGS_ENABLE;
175	pci_write_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, val);
176}
177DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_LOONGSON, DEV_LS7A_PCIE_PORT5, loongson_pci_msi_quirk);
178
179static struct loongson_pci *pci_bus_to_loongson_pci(struct pci_bus *bus)
180{
181	struct pci_config_window *cfg;
182
183	if (acpi_disabled)
184		return (struct loongson_pci *)(bus->sysdata);
185
186	cfg = bus->sysdata;
187	return (struct loongson_pci *)(cfg->priv);
 
 
 
188}
189
190static void __iomem *cfg0_map(struct loongson_pci *priv, struct pci_bus *bus,
191			      unsigned int devfn, int where)
192{
193	unsigned long addroff = 0x0;
194	unsigned char busnum = bus->number;
195
196	if (!pci_is_root_bus(bus)) {
197		addroff |= BIT(24); /* Type 1 Access */
198		addroff |= (busnum << 16);
199	}
200	addroff |= (devfn << 8) | where;
201	return priv->cfg0_base + addroff;
202}
203
204static void __iomem *cfg1_map(struct loongson_pci *priv, struct pci_bus *bus,
205			      unsigned int devfn, int where)
206{
207	unsigned long addroff = 0x0;
208	unsigned char busnum = bus->number;
209
210	if (!pci_is_root_bus(bus)) {
211		addroff |= BIT(28); /* Type 1 Access */
212		addroff |= (busnum << 16);
213	}
214	addroff |= (devfn << 8) | (where & 0xff) | ((where & 0xf00) << 16);
215	return priv->cfg1_base + addroff;
216}
217
218static bool pdev_may_exist(struct pci_bus *bus, unsigned int device,
219			   unsigned int function)
220{
221	return !(pci_is_root_bus(bus) &&
222		(device >= 9 && device <= 20) && (function > 0));
223}
224
225static void __iomem *pci_loongson_map_bus(struct pci_bus *bus,
226					  unsigned int devfn, int where)
227{
228	unsigned int device = PCI_SLOT(devfn);
229	unsigned int function = PCI_FUNC(devfn);
230	struct loongson_pci *priv = pci_bus_to_loongson_pci(bus);
231
232	/*
233	 * Do not read more than one device on the bus other than
234	 * the host bus.
235	 */
236	if ((priv->data->flags & FLAG_DEV_FIX) && bus->self) {
237		if (!pci_is_root_bus(bus) && (device > 0))
238			return NULL;
239	}
240
241	/* Don't access non-existent devices */
242	if (priv->data->flags & FLAG_DEV_HIDDEN) {
243		if (!pdev_may_exist(bus, device, function))
244			return NULL;
245	}
246
247	/* CFG0 can only access standard space */
248	if (where < PCI_CFG_SPACE_SIZE && priv->cfg0_base)
249		return cfg0_map(priv, bus, devfn, where);
250
251	/* CFG1 can access extended space */
252	if (where < PCI_CFG_SPACE_EXP_SIZE && priv->cfg1_base)
253		return cfg1_map(priv, bus, devfn, where);
254
255	return NULL;
256}
257
258#ifdef CONFIG_OF
259
260static int loongson_map_irq(const struct pci_dev *dev, u8 slot, u8 pin)
261{
262	int irq;
263	u8 val;
264
265	irq = of_irq_parse_and_map_pci(dev, slot, pin);
266	if (irq > 0)
267		return irq;
268
269	/* Care i8259 legacy systems */
270	pci_read_config_byte(dev, PCI_INTERRUPT_LINE, &val);
271	/* i8259 only have 15 IRQs */
272	if (val > 15)
273		return 0;
274
275	return val;
276}
277
278/* LS2K/LS7A accept 8/16/32-bit PCI config operations */
279static struct pci_ops loongson_pci_ops = {
280	.map_bus = pci_loongson_map_bus,
281	.read	= pci_generic_config_read,
282	.write	= pci_generic_config_write,
283};
284
285/* RS780/SR5690 only accept 32-bit PCI config operations */
286static struct pci_ops loongson_pci_ops32 = {
287	.map_bus = pci_loongson_map_bus,
288	.read	= pci_generic_config_read32,
289	.write	= pci_generic_config_write32,
290};
291
292static const struct loongson_pci_data ls2k_pci_data = {
293	.flags = FLAG_CFG1 | FLAG_DEV_FIX | FLAG_DEV_HIDDEN,
294	.ops = &loongson_pci_ops,
295};
296
297static const struct loongson_pci_data ls7a_pci_data = {
298	.flags = FLAG_CFG1 | FLAG_DEV_FIX | FLAG_DEV_HIDDEN,
299	.ops = &loongson_pci_ops,
300};
301
302static const struct loongson_pci_data rs780e_pci_data = {
303	.flags = FLAG_CFG0,
304	.ops = &loongson_pci_ops32,
305};
306
307static const struct of_device_id loongson_pci_of_match[] = {
308	{ .compatible = "loongson,ls2k-pci",
309		.data = &ls2k_pci_data, },
310	{ .compatible = "loongson,ls7a-pci",
311		.data = &ls7a_pci_data, },
312	{ .compatible = "loongson,rs780e-pci",
313		.data = &rs780e_pci_data, },
314	{}
315};
316
317static int loongson_pci_probe(struct platform_device *pdev)
318{
319	struct loongson_pci *priv;
320	struct device *dev = &pdev->dev;
321	struct device_node *node = dev->of_node;
322	struct pci_host_bridge *bridge;
323	struct resource *regs;
324
325	if (!node)
326		return -ENODEV;
327
328	bridge = devm_pci_alloc_host_bridge(dev, sizeof(*priv));
329	if (!bridge)
330		return -ENODEV;
331
332	priv = pci_host_bridge_priv(bridge);
333	priv->pdev = pdev;
334	priv->data = of_device_get_match_data(dev);
335
336	if (priv->data->flags & FLAG_CFG0) {
337		regs = platform_get_resource(pdev, IORESOURCE_MEM, 0);
338		if (!regs)
339			dev_err(dev, "missing mem resources for cfg0\n");
340		else {
341			priv->cfg0_base = devm_pci_remap_cfg_resource(dev, regs);
342			if (IS_ERR(priv->cfg0_base))
343				return PTR_ERR(priv->cfg0_base);
344		}
345	}
346
347	if (priv->data->flags & FLAG_CFG1) {
 
 
 
 
 
348		regs = platform_get_resource(pdev, IORESOURCE_MEM, 1);
349		if (!regs)
350			dev_info(dev, "missing mem resource for cfg1\n");
351		else {
352			priv->cfg1_base = devm_pci_remap_cfg_resource(dev, regs);
353			if (IS_ERR(priv->cfg1_base))
354				priv->cfg1_base = NULL;
355		}
356	}
357
358	bridge->sysdata = priv;
359	bridge->ops = priv->data->ops;
360	bridge->map_irq = loongson_map_irq;
361
362	return pci_host_probe(bridge);
363}
364
365static struct platform_driver loongson_pci_driver = {
366	.driver = {
367		.name = "loongson-pci",
368		.of_match_table = loongson_pci_of_match,
369	},
370	.probe = loongson_pci_probe,
371};
372builtin_platform_driver(loongson_pci_driver);
373
374#endif
375
376#ifdef CONFIG_ACPI
377
378static int loongson_pci_ecam_init(struct pci_config_window *cfg)
379{
380	struct device *dev = cfg->parent;
381	struct loongson_pci *priv;
382	struct loongson_pci_data *data;
383
384	priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
385	if (!priv)
386		return -ENOMEM;
387
388	data = devm_kzalloc(dev, sizeof(*data), GFP_KERNEL);
389	if (!data)
390		return -ENOMEM;
391
392	cfg->priv = priv;
393	data->flags = FLAG_CFG1 | FLAG_DEV_HIDDEN;
394	priv->data = data;
395	priv->cfg1_base = cfg->win - (cfg->busr.start << 16);
396
397	return 0;
398}
399
400const struct pci_ecam_ops loongson_pci_ecam_ops = {
401	.bus_shift = 16,
402	.init	   = loongson_pci_ecam_init,
403	.pci_ops   = {
404		.map_bus = pci_loongson_map_bus,
405		.read	 = pci_generic_config_read,
406		.write	 = pci_generic_config_write,
407	}
408};
409
410#endif
v5.14.15
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * Loongson PCI Host Controller Driver
  4 *
  5 * Copyright (C) 2020 Jiaxun Yang <jiaxun.yang@flygoat.com>
  6 */
  7
  8#include <linux/of_device.h>
  9#include <linux/of_pci.h>
 10#include <linux/pci.h>
 11#include <linux/pci_ids.h>
 
 
 12
 13#include "../pci.h"
 14
 15/* Device IDs */
 16#define DEV_PCIE_PORT_0	0x7a09
 17#define DEV_PCIE_PORT_1	0x7a19
 18#define DEV_PCIE_PORT_2	0x7a29
 
 
 
 
 
 19
 20#define DEV_LS2K_APB	0x7a02
 
 
 
 
 21#define DEV_LS7A_CONF	0x7a10
 22#define DEV_LS7A_LPC	0x7a0c
 
 
 
 23
 24#define FLAG_CFG0	BIT(0)
 25#define FLAG_CFG1	BIT(1)
 26#define FLAG_DEV_FIX	BIT(2)
 
 
 
 
 
 
 27
 28struct loongson_pci {
 29	void __iomem *cfg0_base;
 30	void __iomem *cfg1_base;
 31	struct platform_device *pdev;
 32	u32 flags;
 33};
 34
 35/* Fixup wrong class code in PCIe bridges */
 36static void bridge_class_quirk(struct pci_dev *dev)
 37{
 38	dev->class = PCI_CLASS_BRIDGE_PCI << 8;
 39}
 40DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_LOONGSON,
 41			DEV_PCIE_PORT_0, bridge_class_quirk);
 42DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_LOONGSON,
 43			DEV_PCIE_PORT_1, bridge_class_quirk);
 44DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_LOONGSON,
 45			DEV_PCIE_PORT_2, bridge_class_quirk);
 46
 47static void system_bus_quirk(struct pci_dev *pdev)
 48{
 49	/*
 50	 * The address space consumed by these devices is outside the
 51	 * resources of the host bridge.
 52	 */
 53	pdev->mmio_always_on = 1;
 54	pdev->non_compliant_bars = 1;
 55}
 56DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_LOONGSON,
 57			DEV_LS2K_APB, system_bus_quirk);
 58DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_LOONGSON,
 59			DEV_LS7A_CONF, system_bus_quirk);
 60DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_LOONGSON,
 61			DEV_LS7A_LPC, system_bus_quirk);
 62
 63static void loongson_mrrs_quirk(struct pci_dev *dev)
 
 
 
 
 
 
 
 
 64{
 65	struct pci_bus *bus = dev->bus;
 66	struct pci_dev *bridge;
 67	static const struct pci_device_id bridge_devids[] = {
 68		{ PCI_VDEVICE(LOONGSON, DEV_PCIE_PORT_0) },
 69		{ PCI_VDEVICE(LOONGSON, DEV_PCIE_PORT_1) },
 70		{ PCI_VDEVICE(LOONGSON, DEV_PCIE_PORT_2) },
 
 
 
 
 
 71		{ 0, },
 72	};
 73
 74	/* look for the matching bridge */
 75	while (!pci_is_root_bus(bus)) {
 76		bridge = bus->self;
 77		bus = bus->parent;
 78		/*
 79		 * Some Loongson PCIe ports have a h/w limitation of
 80		 * 256 bytes maximum read request size. They can't handle
 81		 * anything larger than this. So force this limit on
 82		 * any devices attached under these ports.
 83		 */
 84		if (pci_match_id(bridge_devids, bridge)) {
 85			if (pcie_get_readrq(dev) > 256) {
 86				pci_info(dev, "limiting MRRS to 256\n");
 87				pcie_set_readrq(dev, 256);
 88			}
 89			break;
 90		}
 91	}
 92}
 93DECLARE_PCI_FIXUP_ENABLE(PCI_ANY_ID, PCI_ANY_ID, loongson_mrrs_quirk);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 94
 95static void __iomem *cfg1_map(struct loongson_pci *priv, int bus,
 96				unsigned int devfn, int where)
 97{
 98	unsigned long addroff = 0x0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 99
100	if (bus != 0)
101		addroff |= BIT(28); /* Type 1 Access */
102	addroff |= (where & 0xff) | ((where & 0xf00) << 16);
103	addroff |= (bus << 16) | (devfn << 8);
104	return priv->cfg1_base + addroff;
105}
106
107static void __iomem *cfg0_map(struct loongson_pci *priv, int bus,
108				unsigned int devfn, int where)
109{
110	unsigned long addroff = 0x0;
 
111
112	if (bus != 0)
113		addroff |= BIT(24); /* Type 1 Access */
114	addroff |= (bus << 16) | (devfn << 8) | where;
 
 
115	return priv->cfg0_base + addroff;
116}
117
118static void __iomem *pci_loongson_map_bus(struct pci_bus *bus, unsigned int devfn,
119			       int where)
120{
 
121	unsigned char busnum = bus->number;
122	struct pci_host_bridge *bridge = pci_find_host_bridge(bus);
123	struct loongson_pci *priv =  pci_host_bridge_priv(bridge);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
124
125	/*
126	 * Do not read more than one device on the bus other than
127	 * the host bus. For our hardware the root bus is always bus 0.
128	 */
129	if (priv->flags & FLAG_DEV_FIX && busnum != 0 &&
130		PCI_SLOT(devfn) > 0)
131		return NULL;
 
 
 
 
 
 
 
132
133	/* CFG0 can only access standard space */
134	if (where < PCI_CFG_SPACE_SIZE && priv->cfg0_base)
135		return cfg0_map(priv, busnum, devfn, where);
136
137	/* CFG1 can access extended space */
138	if (where < PCI_CFG_SPACE_EXP_SIZE && priv->cfg1_base)
139		return cfg1_map(priv, busnum, devfn, where);
140
141	return NULL;
142}
143
 
 
144static int loongson_map_irq(const struct pci_dev *dev, u8 slot, u8 pin)
145{
146	int irq;
147	u8 val;
148
149	irq = of_irq_parse_and_map_pci(dev, slot, pin);
150	if (irq > 0)
151		return irq;
152
153	/* Care i8259 legacy systems */
154	pci_read_config_byte(dev, PCI_INTERRUPT_LINE, &val);
155	/* i8259 only have 15 IRQs */
156	if (val > 15)
157		return 0;
158
159	return val;
160}
161
162/* H/w only accept 32-bit PCI operations */
163static struct pci_ops loongson_pci_ops = {
164	.map_bus = pci_loongson_map_bus,
 
 
 
 
 
 
 
165	.read	= pci_generic_config_read32,
166	.write	= pci_generic_config_write32,
167};
168
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
169static const struct of_device_id loongson_pci_of_match[] = {
170	{ .compatible = "loongson,ls2k-pci",
171		.data = (void *)(FLAG_CFG0 | FLAG_CFG1 | FLAG_DEV_FIX), },
172	{ .compatible = "loongson,ls7a-pci",
173		.data = (void *)(FLAG_CFG0 | FLAG_CFG1 | FLAG_DEV_FIX), },
174	{ .compatible = "loongson,rs780e-pci",
175		.data = (void *)(FLAG_CFG0), },
176	{}
177};
178
179static int loongson_pci_probe(struct platform_device *pdev)
180{
181	struct loongson_pci *priv;
182	struct device *dev = &pdev->dev;
183	struct device_node *node = dev->of_node;
184	struct pci_host_bridge *bridge;
185	struct resource *regs;
186
187	if (!node)
188		return -ENODEV;
189
190	bridge = devm_pci_alloc_host_bridge(dev, sizeof(*priv));
191	if (!bridge)
192		return -ENODEV;
193
194	priv = pci_host_bridge_priv(bridge);
195	priv->pdev = pdev;
196	priv->flags = (unsigned long)of_device_get_match_data(dev);
197
198	regs = platform_get_resource(pdev, IORESOURCE_MEM, 0);
199	if (!regs) {
200		dev_err(dev, "missing mem resources for cfg0\n");
201		return -EINVAL;
 
 
 
 
 
202	}
203
204	priv->cfg0_base = devm_pci_remap_cfg_resource(dev, regs);
205	if (IS_ERR(priv->cfg0_base))
206		return PTR_ERR(priv->cfg0_base);
207
208	/* CFG1 is optional */
209	if (priv->flags & FLAG_CFG1) {
210		regs = platform_get_resource(pdev, IORESOURCE_MEM, 1);
211		if (!regs)
212			dev_info(dev, "missing mem resource for cfg1\n");
213		else {
214			priv->cfg1_base = devm_pci_remap_cfg_resource(dev, regs);
215			if (IS_ERR(priv->cfg1_base))
216				priv->cfg1_base = NULL;
217		}
218	}
219
220	bridge->sysdata = priv;
221	bridge->ops = &loongson_pci_ops;
222	bridge->map_irq = loongson_map_irq;
223
224	return pci_host_probe(bridge);
225}
226
227static struct platform_driver loongson_pci_driver = {
228	.driver = {
229		.name = "loongson-pci",
230		.of_match_table = loongson_pci_of_match,
231	},
232	.probe = loongson_pci_probe,
233};
234builtin_platform_driver(loongson_pci_driver);