fsl_msi.c 11.1 KB
Newer Older
1
/*
2
 * Copyright (C) 2007-2011 Freescale Semiconductor, Inc.
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
 *
 * Author: Tony Li <tony.li@freescale.com>
 *	   Jason Jin <Jason.jin@freescale.com>
 *
 * The hwirq alloc and free code reuse from sysdev/mpic_msi.c
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; version 2 of the
 * License.
 *
 */
#include <linux/irq.h>
#include <linux/bootmem.h>
#include <linux/msi.h>
#include <linux/pci.h>
19
#include <linux/slab.h>
20 21 22 23 24
#include <linux/of_platform.h>
#include <sysdev/fsl_soc.h>
#include <asm/prom.h>
#include <asm/hw_irq.h>
#include <asm/ppc-pci.h>
25
#include <asm/mpic.h>
26
#include "fsl_msi.h"
27
#include "fsl_pci.h"
28

29 30
LIST_HEAD(msi_head);

31 32
struct fsl_msi_feature {
	u32 fsl_pic_ip;
33
	u32 msiir_offset; /* Offset of MSIIR, relative to start of MSIR bank */
34 35
};

36 37 38 39
struct fsl_msi_cascade_data {
	struct fsl_msi *msi_data;
	int index;
};
40 41 42 43 44 45 46 47 48 49

static inline u32 fsl_msi_read(u32 __iomem *base, unsigned int reg)
{
	return in_be32(base + (reg >> 2));
}

/*
 * We do not need this actually. The MSIR register has been read once
 * in the cascade interrupt. So, this MSI interrupt has been acked
*/
50
static void fsl_msi_end_irq(struct irq_data *d)
51 52 53 54
{
}

static struct irq_chip fsl_msi_chip = {
55 56
	.irq_mask	= mask_msi_irq,
	.irq_unmask	= unmask_msi_irq,
57
	.irq_ack	= fsl_msi_end_irq,
58
	.name		= "FSL-MSI",
59 60 61 62 63
};

static int fsl_msi_host_map(struct irq_host *h, unsigned int virq,
				irq_hw_number_t hw)
{
64
	struct fsl_msi *msi_data = h->host_data;
65 66
	struct irq_chip *chip = &fsl_msi_chip;

67
	irq_set_status_flags(virq, IRQ_TYPE_EDGE_FALLING);
68

69 70
	irq_set_chip_data(virq, msi_data);
	irq_set_chip_and_handler(virq, chip, handle_edge_irq);
71 72 73 74 75 76 77 78 79 80

	return 0;
}

static struct irq_host_ops fsl_msi_host_ops = {
	.map = fsl_msi_host_map,
};

static int fsl_msi_init_allocator(struct fsl_msi *msi_data)
{
81
	int rc;
82

83 84 85 86
	rc = msi_bitmap_alloc(&msi_data->bitmap, NR_MSI_IRQS,
			      msi_data->irqhost->of_node);
	if (rc)
		return rc;
87

88 89 90 91
	rc = msi_bitmap_reserve_dt_hwirqs(&msi_data->bitmap);
	if (rc < 0) {
		msi_bitmap_free(&msi_data->bitmap);
		return rc;
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
	}

	return 0;
}

static int fsl_msi_check_device(struct pci_dev *pdev, int nvec, int type)
{
	if (type == PCI_CAP_ID_MSIX)
		pr_debug("fslmsi: MSI-X untested, trying anyway.\n");

	return 0;
}

static void fsl_teardown_msi_irqs(struct pci_dev *pdev)
{
	struct msi_desc *entry;
108
	struct fsl_msi *msi_data;
109 110 111 112

	list_for_each_entry(entry, &pdev->msi_list, list) {
		if (entry->irq == NO_IRQ)
			continue;
113
		msi_data = irq_get_chip_data(entry->irq);
114
		irq_set_msi_desc(entry->irq, NULL);
115 116
		msi_bitmap_free_hwirqs(&msi_data->bitmap,
				       virq_to_hw(entry->irq), 1);
117 118 119 120 121 122 123
		irq_dispose_mapping(entry->irq);
	}

	return;
}

static void fsl_compose_msi_msg(struct pci_dev *pdev, int hwirq,
124 125
				struct msi_msg *msg,
				struct fsl_msi *fsl_msi_data)
126
{
127
	struct fsl_msi *msi_data = fsl_msi_data;
128
	struct pci_controller *hose = pci_bus_to_host(pdev->bus);
129 130 131 132 133 134 135 136 137 138
	u64 address; /* Physical address of the MSIIR */
	int len;
	const u64 *reg;

	/* If the msi-address-64 property exists, then use it */
	reg = of_get_property(hose->dn, "msi-address-64", &len);
	if (reg && (len == sizeof(u64)))
		address = be64_to_cpup(reg);
	else
		address = fsl_pci_immrbar_base(hose) + msi_data->msiir_offset;
139

140 141
	msg->address_lo = lower_32_bits(address);
	msg->address_hi = upper_32_bits(address);
142

143 144 145 146 147 148 149 150
	msg->data = hwirq;

	pr_debug("%s: allocated srs: %d, ibs: %d\n",
		__func__, hwirq / IRQS_PER_MSI_REG, hwirq % IRQS_PER_MSI_REG);
}

static int fsl_setup_msi_irqs(struct pci_dev *pdev, int nvec, int type)
{
151
	int rc, hwirq = -ENOMEM;
152 153 154
	unsigned int virq;
	struct msi_desc *entry;
	struct msi_msg msg;
155
	struct fsl_msi *msi_data;
156 157

	list_for_each_entry(entry, &pdev->msi_list, list) {
158 159 160 161 162
		list_for_each_entry(msi_data, &msi_head, list) {
			hwirq = msi_bitmap_alloc_hwirqs(&msi_data->bitmap, 1);
			if (hwirq >= 0)
				break;
		}
163

164 165 166 167 168 169 170 171 172 173
		if (hwirq < 0) {
			rc = hwirq;
			pr_debug("%s: fail allocating msi interrupt\n",
					__func__);
			goto out_free;
		}

		virq = irq_create_mapping(msi_data->irqhost, hwirq);

		if (virq == NO_IRQ) {
174
			pr_debug("%s: fail mapping hwirq 0x%x\n",
175
					__func__, hwirq);
176
			msi_bitmap_free_hwirqs(&msi_data->bitmap, hwirq, 1);
177 178 179
			rc = -ENOSPC;
			goto out_free;
		}
180
		/* chip_data is msi_data via host->hostdata in host->map() */
181
		irq_set_msi_desc(virq, entry);
182

183
		fsl_compose_msi_msg(pdev, hwirq, &msg, msi_data);
184 185 186 187 188
		write_msi_msg(virq, &msg);
	}
	return 0;

out_free:
189
	/* free by the caller of this function */
190 191 192
	return rc;
}

193
static void fsl_msi_cascade(unsigned int irq, struct irq_desc *desc)
194
{
T
Thomas Gleixner 已提交
195 196
	struct irq_chip *chip = irq_desc_get_chip(desc);
	struct irq_data *idata = irq_desc_get_irq_data(desc);
197
	unsigned int cascade_irq;
198
	struct fsl_msi *msi_data;
199 200 201 202
	int msir_index = -1;
	u32 msir_value = 0;
	u32 intr_index;
	u32 have_shift = 0;
203 204
	struct fsl_msi_cascade_data *cascade_data;

205
	cascade_data = irq_get_handler_data(irq);
206
	msi_data = cascade_data->msi_data;
207

208
	raw_spin_lock(&desc->lock);
209
	if ((msi_data->feature &  FSL_PIC_IP_MASK) == FSL_PIC_IP_IPIC) {
210
		if (chip->irq_mask_ack)
T
Thomas Gleixner 已提交
211
			chip->irq_mask_ack(idata);
212
		else {
T
Thomas Gleixner 已提交
213 214
			chip->irq_mask(idata);
			chip->irq_ack(idata);
215 216 217
		}
	}

T
Thomas Gleixner 已提交
218
	if (unlikely(irqd_irq_inprogress(idata)))
219 220
		goto unlock;

221
	msir_index = cascade_data->index;
222 223 224 225

	if (msir_index >= NR_MSI_REG)
		cascade_irq = NO_IRQ;

T
Thomas Gleixner 已提交
226
	irqd_set_chained_irq_inprogress(idata);
227
	switch (msi_data->feature & FSL_PIC_IP_MASK) {
228 229 230 231 232 233 234 235 236 237 238 239 240
	case FSL_PIC_IP_MPIC:
		msir_value = fsl_msi_read(msi_data->msi_regs,
			msir_index * 0x10);
		break;
	case FSL_PIC_IP_IPIC:
		msir_value = fsl_msi_read(msi_data->msi_regs, msir_index * 0x4);
		break;
	}

	while (msir_value) {
		intr_index = ffs(msir_value) - 1;

		cascade_irq = irq_linear_revmap(msi_data->irqhost,
241 242
				msir_index * IRQS_PER_MSI_REG +
					intr_index + have_shift);
243 244
		if (cascade_irq != NO_IRQ)
			generic_handle_irq(cascade_irq);
245 246
		have_shift += intr_index + 1;
		msir_value = msir_value >> (intr_index + 1);
247
	}
T
Thomas Gleixner 已提交
248
	irqd_clr_chained_irq_inprogress(idata);
249 250 251

	switch (msi_data->feature & FSL_PIC_IP_MASK) {
	case FSL_PIC_IP_MPIC:
T
Thomas Gleixner 已提交
252
		chip->irq_eoi(idata);
253 254
		break;
	case FSL_PIC_IP_IPIC:
T
Thomas Gleixner 已提交
255 256
		if (!irqd_irq_disabled(idata) && chip->irq_unmask)
			chip->irq_unmask(idata);
257 258 259
		break;
	}
unlock:
260
	raw_spin_unlock(&desc->lock);
261 262
}

263
static int fsl_of_msi_remove(struct platform_device *ofdev)
264
{
265
	struct fsl_msi *msi = platform_get_drvdata(ofdev);
266 267 268 269 270 271 272 273
	int virq, i;
	struct fsl_msi_cascade_data *cascade_data;

	if (msi->list.prev != NULL)
		list_del(&msi->list);
	for (i = 0; i < NR_MSI_REG; i++) {
		virq = msi->msi_virqs[i];
		if (virq != NO_IRQ) {
274
			cascade_data = irq_get_handler_data(virq);
275 276 277 278 279 280 281 282 283 284 285 286
			kfree(cascade_data);
			irq_dispose_mapping(virq);
		}
	}
	if (msi->bitmap.bitmap)
		msi_bitmap_free(&msi->bitmap);
	iounmap(msi->msi_regs);
	kfree(msi);

	return 0;
}

287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307
static int __devinit fsl_msi_setup_hwirq(struct fsl_msi *msi,
					 struct platform_device *dev,
					 int offset, int irq_index)
{
	struct fsl_msi_cascade_data *cascade_data = NULL;
	int virt_msir;

	virt_msir = irq_of_parse_and_map(dev->dev.of_node, irq_index);
	if (virt_msir == NO_IRQ) {
		dev_err(&dev->dev, "%s: Cannot translate IRQ index %d\n",
			__func__, irq_index);
		return 0;
	}

	cascade_data = kzalloc(sizeof(struct fsl_msi_cascade_data), GFP_KERNEL);
	if (!cascade_data) {
		dev_err(&dev->dev, "No memory for MSI cascade data\n");
		return -ENOMEM;
	}

	msi->msi_virqs[irq_index] = virt_msir;
308
	cascade_data->index = offset;
309
	cascade_data->msi_data = msi;
310 311
	irq_set_handler_data(virt_msir, cascade_data);
	irq_set_chained_handler(virt_msir, fsl_msi_cascade);
312 313 314 315

	return 0;
}

316
static const struct of_device_id fsl_of_msi_ids[];
317
static int __devinit fsl_of_msi_probe(struct platform_device *dev)
318
{
319
	const struct of_device_id *match;
320 321
	struct fsl_msi *msi;
	struct resource res;
322
	int err, i, j, irq_index, count;
323 324
	int rc;
	const u32 *p;
325
	struct fsl_msi_feature *features;
326 327
	int len;
	u32 offset;
328
	static const u32 all_avail[] = { 0, NR_MSI_IRQS };
329

330 331
	match = of_match_device(fsl_of_msi_ids, &dev->dev);
	if (!match)
332
		return -EINVAL;
333
	features = match->data;
334

335 336 337 338 339
	printk(KERN_DEBUG "Setting up Freescale MSI support\n");

	msi = kzalloc(sizeof(struct fsl_msi), GFP_KERNEL);
	if (!msi) {
		dev_err(&dev->dev, "No memory for MSI structure\n");
340
		return -ENOMEM;
341
	}
342
	platform_set_drvdata(dev, msi);
343

344
	msi->irqhost = irq_alloc_host(dev->dev.of_node, IRQ_HOST_MAP_LINEAR,
345
				      NR_MSI_IRQS, &fsl_msi_host_ops, 0);
346 347 348 349 350 351 352 353

	if (msi->irqhost == NULL) {
		dev_err(&dev->dev, "No memory for MSI irqhost\n");
		err = -ENOMEM;
		goto error_out;
	}

	/* Get the MSI reg base */
354
	err = of_address_to_resource(dev->dev.of_node, 0, &res);
355 356
	if (err) {
		dev_err(&dev->dev, "%s resource error!\n",
357
				dev->dev.of_node->full_name);
358 359 360
		goto error_out;
	}

361
	msi->msi_regs = ioremap(res.start, resource_size(&res));
362 363 364 365 366
	if (!msi->msi_regs) {
		dev_err(&dev->dev, "ioremap problem failed\n");
		goto error_out;
	}

367
	msi->feature = features->fsl_pic_ip;
368 369 370

	msi->irqhost->host_data = msi;

371
	msi->msiir_offset = features->msiir_offset + (res.start & 0xfffff);
372 373 374 375 376 377 378

	rc = fsl_msi_init_allocator(msi);
	if (rc) {
		dev_err(&dev->dev, "Error allocating MSI bitmap\n");
		goto error_out;
	}

379 380 381 382
	p = of_get_property(dev->dev.of_node, "msi-available-ranges", &len);
	if (p && len % (2 * sizeof(u32)) != 0) {
		dev_err(&dev->dev, "%s: Malformed msi-available-ranges property\n",
			__func__);
383 384 385
		err = -EINVAL;
		goto error_out;
	}
386

387
	if (!p) {
388
		p = all_avail;
389 390
		len = sizeof(all_avail);
	}
391 392 393 394 395 396 397 398 399 400 401 402 403 404 405

	for (irq_index = 0, i = 0; i < len / (2 * sizeof(u32)); i++) {
		if (p[i * 2] % IRQS_PER_MSI_REG ||
		    p[i * 2 + 1] % IRQS_PER_MSI_REG) {
			printk(KERN_WARNING "%s: %s: msi available range of %u at %u is not IRQ-aligned\n",
			       __func__, dev->dev.of_node->full_name,
			       p[i * 2 + 1], p[i * 2]);
			err = -EINVAL;
			goto error_out;
		}

		offset = p[i * 2] / IRQS_PER_MSI_REG;
		count = p[i * 2 + 1] / IRQS_PER_MSI_REG;

		for (j = 0; j < count; j++, irq_index++) {
406
			err = fsl_msi_setup_hwirq(msi, dev, offset + j, irq_index);
407
			if (err)
408
				goto error_out;
409 410 411
		}
	}

412
	list_add_tail(&msi->list, &msi_head);
413

414 415 416 417 418 419 420 421 422 423
	/* The multiple setting ppc_md.setup_msi_irqs will not harm things */
	if (!ppc_md.setup_msi_irqs) {
		ppc_md.setup_msi_irqs = fsl_setup_msi_irqs;
		ppc_md.teardown_msi_irqs = fsl_teardown_msi_irqs;
		ppc_md.msi_check_device = fsl_msi_check_device;
	} else if (ppc_md.setup_msi_irqs != fsl_setup_msi_irqs) {
		dev_err(&dev->dev, "Different MSI driver already installed!\n");
		err = -ENODEV;
		goto error_out;
	}
424 425
	return 0;
error_out:
426
	fsl_of_msi_remove(dev);
427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451
	return err;
}

static const struct fsl_msi_feature mpic_msi_feature = {
	.fsl_pic_ip = FSL_PIC_IP_MPIC,
	.msiir_offset = 0x140,
};

static const struct fsl_msi_feature ipic_msi_feature = {
	.fsl_pic_ip = FSL_PIC_IP_IPIC,
	.msiir_offset = 0x38,
};

static const struct of_device_id fsl_of_msi_ids[] = {
	{
		.compatible = "fsl,mpic-msi",
		.data = (void *)&mpic_msi_feature,
	},
	{
		.compatible = "fsl,ipic-msi",
		.data = (void *)&ipic_msi_feature,
	},
	{}
};

452
static struct platform_driver fsl_of_msi_driver = {
453 454 455 456 457
	.driver = {
		.name = "fsl-msi",
		.owner = THIS_MODULE,
		.of_match_table = fsl_of_msi_ids,
	},
458
	.probe = fsl_of_msi_probe,
459
	.remove = fsl_of_msi_remove,
460 461 462 463
};

static __init int fsl_of_msi_init(void)
{
464
	return platform_driver_register(&fsl_of_msi_driver);
465 466 467
}

subsys_initcall(fsl_of_msi_init);