| 
									
										
										
										
											2012-03-14 10:29:21 +01:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  *  Atheros AR71XX/AR724X specific PCI setup code | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  Copyright (C) 2011 René Bolldorf <xsecute@googlemail.com> | 
					
						
							| 
									
										
										
										
											2012-03-14 10:36:14 +01:00
										 |  |  |  *  Copyright (C) 2008-2011 Gabor Juhos <juhosg@openwrt.org> | 
					
						
							|  |  |  |  *  Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  Parts of this file are based on Atheros' 2.6.15 BSP | 
					
						
							| 
									
										
										
										
											2012-03-14 10:29:21 +01:00
										 |  |  |  * | 
					
						
							|  |  |  |  *  This program is free software; you can redistribute it and/or modify it | 
					
						
							|  |  |  |  *  under the terms of the GNU General Public License version 2 as published | 
					
						
							|  |  |  |  *  by the Free Software Foundation. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-14 10:36:11 +01:00
										 |  |  | #include <linux/init.h>
 | 
					
						
							| 
									
										
										
										
											2012-03-14 10:29:21 +01:00
										 |  |  | #include <linux/pci.h>
 | 
					
						
							| 
									
										
										
										
											2013-02-02 11:44:24 +00:00
										 |  |  | #include <linux/resource.h>
 | 
					
						
							|  |  |  | #include <linux/platform_device.h>
 | 
					
						
							| 
									
										
										
										
											2012-03-14 10:45:30 +01:00
										 |  |  | #include <asm/mach-ath79/ar71xx_regs.h>
 | 
					
						
							| 
									
										
										
										
											2012-03-14 10:29:24 +01:00
										 |  |  | #include <asm/mach-ath79/ath79.h>
 | 
					
						
							| 
									
										
										
										
											2012-03-14 10:36:07 +01:00
										 |  |  | #include <asm/mach-ath79/irq.h>
 | 
					
						
							| 
									
										
										
										
											2012-03-14 10:29:22 +01:00
										 |  |  | #include "pci.h"
 | 
					
						
							| 
									
										
										
										
											2012-03-14 10:29:21 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-14 10:36:09 +01:00
										 |  |  | static int (*ath79_pci_plat_dev_init)(struct pci_dev *dev); | 
					
						
							| 
									
										
										
										
											2012-03-14 10:36:11 +01:00
										 |  |  | static const struct ath79_pci_irq *ath79_pci_irq_map __initdata; | 
					
						
							|  |  |  | static unsigned ath79_pci_nr_irqs __initdata; | 
					
						
							| 
									
										
										
										
											2012-03-14 10:29:21 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-14 10:36:11 +01:00
										 |  |  | static const struct ath79_pci_irq ar71xx_pci_irq_map[] __initconst = { | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.slot	= 17, | 
					
						
							|  |  |  | 		.pin	= 1, | 
					
						
							|  |  |  | 		.irq	= ATH79_PCI_IRQ(0), | 
					
						
							|  |  |  | 	}, { | 
					
						
							|  |  |  | 		.slot	= 18, | 
					
						
							|  |  |  | 		.pin	= 1, | 
					
						
							|  |  |  | 		.irq	= ATH79_PCI_IRQ(1), | 
					
						
							|  |  |  | 	}, { | 
					
						
							|  |  |  | 		.slot	= 19, | 
					
						
							|  |  |  | 		.pin	= 1, | 
					
						
							|  |  |  | 		.irq	= ATH79_PCI_IRQ(2), | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const struct ath79_pci_irq ar724x_pci_irq_map[] __initconst = { | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.slot	= 0, | 
					
						
							|  |  |  | 		.pin	= 1, | 
					
						
							|  |  |  | 		.irq	= ATH79_PCI_IRQ(0), | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-15 13:38:23 +00:00
										 |  |  | static const struct ath79_pci_irq qca955x_pci_irq_map[] __initconst = { | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.bus	= 0, | 
					
						
							|  |  |  | 		.slot	= 0, | 
					
						
							|  |  |  | 		.pin	= 1, | 
					
						
							|  |  |  | 		.irq	= ATH79_PCI_IRQ(0), | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.bus	= 1, | 
					
						
							|  |  |  | 		.slot	= 0, | 
					
						
							|  |  |  | 		.pin	= 1, | 
					
						
							|  |  |  | 		.irq	= ATH79_PCI_IRQ(1), | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-14 10:29:21 +01:00
										 |  |  | int __init pcibios_map_irq(const struct pci_dev *dev, uint8_t slot, uint8_t pin) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int irq = -1; | 
					
						
							| 
									
										
										
										
											2012-03-14 10:36:11 +01:00
										 |  |  | 	int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (ath79_pci_nr_irqs == 0 || | 
					
						
							|  |  |  | 	    ath79_pci_irq_map == NULL) { | 
					
						
							|  |  |  | 		if (soc_is_ar71xx()) { | 
					
						
							|  |  |  | 			ath79_pci_irq_map = ar71xx_pci_irq_map; | 
					
						
							|  |  |  | 			ath79_pci_nr_irqs = ARRAY_SIZE(ar71xx_pci_irq_map); | 
					
						
							| 
									
										
										
										
											2012-03-14 10:45:30 +01:00
										 |  |  | 		} else if (soc_is_ar724x() || | 
					
						
							|  |  |  | 			   soc_is_ar9342() || | 
					
						
							|  |  |  | 			   soc_is_ar9344()) { | 
					
						
							| 
									
										
										
										
											2012-03-14 10:36:11 +01:00
										 |  |  | 			ath79_pci_irq_map = ar724x_pci_irq_map; | 
					
						
							|  |  |  | 			ath79_pci_nr_irqs = ARRAY_SIZE(ar724x_pci_irq_map); | 
					
						
							| 
									
										
										
										
											2013-02-15 13:38:23 +00:00
										 |  |  | 		} else if (soc_is_qca955x()) { | 
					
						
							|  |  |  | 			ath79_pci_irq_map = qca955x_pci_irq_map; | 
					
						
							|  |  |  | 			ath79_pci_nr_irqs = ARRAY_SIZE(qca955x_pci_irq_map); | 
					
						
							| 
									
										
										
										
											2012-03-14 10:36:11 +01:00
										 |  |  | 		} else { | 
					
						
							|  |  |  | 			pr_crit("pci %s: invalid irq map\n", | 
					
						
							|  |  |  | 				pci_name((struct pci_dev *) dev)); | 
					
						
							|  |  |  | 			return irq; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (i = 0; i < ath79_pci_nr_irqs; i++) { | 
					
						
							|  |  |  | 		const struct ath79_pci_irq *entry; | 
					
						
							| 
									
										
										
										
											2012-03-14 10:29:21 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-14 10:36:11 +01:00
										 |  |  | 		entry = &ath79_pci_irq_map[i]; | 
					
						
							| 
									
										
										
										
											2013-02-03 09:58:37 +00:00
										 |  |  | 		if (entry->bus == dev->bus->number && | 
					
						
							|  |  |  | 		    entry->slot == slot && | 
					
						
							|  |  |  | 		    entry->pin == pin) { | 
					
						
							| 
									
										
										
										
											2012-03-14 10:36:11 +01:00
										 |  |  | 			irq = entry->irq; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-03-14 10:29:21 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-14 10:36:11 +01:00
										 |  |  | 	if (irq < 0) | 
					
						
							|  |  |  | 		pr_crit("pci %s: no irq found for pin %u\n", | 
					
						
							|  |  |  | 			pci_name((struct pci_dev *) dev), pin); | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		pr_info("pci %s: using irq %d for pin %u\n", | 
					
						
							|  |  |  | 			pci_name((struct pci_dev *) dev), irq, pin); | 
					
						
							| 
									
										
										
										
											2012-03-14 10:29:21 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return irq; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int pcibios_plat_dev_init(struct pci_dev *dev) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2012-03-14 10:36:09 +01:00
										 |  |  | 	if (ath79_pci_plat_dev_init) | 
					
						
							|  |  |  | 		return ath79_pci_plat_dev_init(dev); | 
					
						
							| 
									
										
										
										
											2012-03-14 10:29:21 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-14 10:36:09 +01:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2012-03-14 10:29:21 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-14 10:36:11 +01:00
										 |  |  | void __init ath79_pci_set_irq_map(unsigned nr_irqs, | 
					
						
							|  |  |  | 				  const struct ath79_pci_irq *map) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	ath79_pci_nr_irqs = nr_irqs; | 
					
						
							|  |  |  | 	ath79_pci_irq_map = map; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-14 10:36:09 +01:00
										 |  |  | void __init ath79_pci_set_plat_dev_init(int (*func)(struct pci_dev *dev)) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	ath79_pci_plat_dev_init = func; | 
					
						
							| 
									
										
										
										
											2012-03-14 10:29:21 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2012-03-14 10:29:24 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-02 11:44:24 +00:00
										 |  |  | static struct platform_device * | 
					
						
							|  |  |  | ath79_register_pci_ar71xx(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct platform_device *pdev; | 
					
						
							| 
									
										
										
										
											2013-02-07 19:28:15 +00:00
										 |  |  | 	struct resource res[4]; | 
					
						
							| 
									
										
										
										
											2013-02-02 11:44:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	memset(res, 0, sizeof(res)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	res[0].name = "cfg_base"; | 
					
						
							|  |  |  | 	res[0].flags = IORESOURCE_MEM; | 
					
						
							|  |  |  | 	res[0].start = AR71XX_PCI_CFG_BASE; | 
					
						
							|  |  |  | 	res[0].end = AR71XX_PCI_CFG_BASE + AR71XX_PCI_CFG_SIZE - 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	res[1].flags = IORESOURCE_IRQ; | 
					
						
							| 
									
										
										
										
											2013-02-07 19:32:23 +00:00
										 |  |  | 	res[1].start = ATH79_CPU_IRQ(2); | 
					
						
							|  |  |  | 	res[1].end = ATH79_CPU_IRQ(2); | 
					
						
							| 
									
										
										
										
											2013-02-02 11:44:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-07 19:28:15 +00:00
										 |  |  | 	res[2].name = "io_base"; | 
					
						
							|  |  |  | 	res[2].flags = IORESOURCE_IO; | 
					
						
							|  |  |  | 	res[2].start = 0; | 
					
						
							|  |  |  | 	res[2].end = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	res[3].name = "mem_base"; | 
					
						
							|  |  |  | 	res[3].flags = IORESOURCE_MEM; | 
					
						
							|  |  |  | 	res[3].start = AR71XX_PCI_MEM_BASE; | 
					
						
							|  |  |  | 	res[3].end = AR71XX_PCI_MEM_BASE + AR71XX_PCI_MEM_SIZE - 1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-02 11:44:24 +00:00
										 |  |  | 	pdev = platform_device_register_simple("ar71xx-pci", -1, | 
					
						
							|  |  |  | 					       res, ARRAY_SIZE(res)); | 
					
						
							|  |  |  | 	return pdev; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct platform_device * | 
					
						
							|  |  |  | ath79_register_pci_ar724x(int id, | 
					
						
							|  |  |  | 			  unsigned long cfg_base, | 
					
						
							|  |  |  | 			  unsigned long ctrl_base, | 
					
						
							| 
									
										
										
										
											2013-02-03 14:52:47 +00:00
										 |  |  | 			  unsigned long crp_base, | 
					
						
							| 
									
										
										
										
											2013-02-03 09:59:45 +00:00
										 |  |  | 			  unsigned long mem_base, | 
					
						
							|  |  |  | 			  unsigned long mem_size, | 
					
						
							|  |  |  | 			  unsigned long io_base, | 
					
						
							| 
									
										
										
										
											2013-02-02 11:44:24 +00:00
										 |  |  | 			  int irq) | 
					
						
							| 
									
										
										
										
											2012-03-14 10:29:24 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-02-02 11:44:24 +00:00
										 |  |  | 	struct platform_device *pdev; | 
					
						
							| 
									
										
										
										
											2013-02-03 14:52:47 +00:00
										 |  |  | 	struct resource res[6]; | 
					
						
							| 
									
										
										
										
											2012-03-14 10:36:11 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-02 11:44:24 +00:00
										 |  |  | 	memset(res, 0, sizeof(res)); | 
					
						
							| 
									
										
										
										
											2012-03-14 10:29:24 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-02 11:44:24 +00:00
										 |  |  | 	res[0].name = "cfg_base"; | 
					
						
							|  |  |  | 	res[0].flags = IORESOURCE_MEM; | 
					
						
							|  |  |  | 	res[0].start = cfg_base; | 
					
						
							|  |  |  | 	res[0].end = cfg_base + AR724X_PCI_CFG_SIZE - 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	res[1].name = "ctrl_base"; | 
					
						
							|  |  |  | 	res[1].flags = IORESOURCE_MEM; | 
					
						
							|  |  |  | 	res[1].start = ctrl_base; | 
					
						
							|  |  |  | 	res[1].end = ctrl_base + AR724X_PCI_CTRL_SIZE - 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	res[2].flags = IORESOURCE_IRQ; | 
					
						
							|  |  |  | 	res[2].start = irq; | 
					
						
							|  |  |  | 	res[2].end = irq; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-03 09:59:45 +00:00
										 |  |  | 	res[3].name = "mem_base"; | 
					
						
							|  |  |  | 	res[3].flags = IORESOURCE_MEM; | 
					
						
							|  |  |  | 	res[3].start = mem_base; | 
					
						
							|  |  |  | 	res[3].end = mem_base + mem_size - 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	res[4].name = "io_base"; | 
					
						
							|  |  |  | 	res[4].flags = IORESOURCE_IO; | 
					
						
							|  |  |  | 	res[4].start = io_base; | 
					
						
							|  |  |  | 	res[4].end = io_base; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-03 14:52:47 +00:00
										 |  |  | 	res[5].name = "crp_base"; | 
					
						
							|  |  |  | 	res[5].flags = IORESOURCE_MEM; | 
					
						
							|  |  |  | 	res[5].start = crp_base; | 
					
						
							|  |  |  | 	res[5].end = crp_base + AR724X_PCI_CRP_SIZE - 1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-02 11:44:24 +00:00
										 |  |  | 	pdev = platform_device_register_simple("ar724x-pci", id, | 
					
						
							|  |  |  | 					       res, ARRAY_SIZE(res)); | 
					
						
							|  |  |  | 	return pdev; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int __init ath79_register_pci(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct platform_device *pdev = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (soc_is_ar71xx()) { | 
					
						
							|  |  |  | 		pdev = ath79_register_pci_ar71xx(); | 
					
						
							|  |  |  | 	} else if (soc_is_ar724x()) { | 
					
						
							|  |  |  | 		pdev = ath79_register_pci_ar724x(-1, | 
					
						
							|  |  |  | 						 AR724X_PCI_CFG_BASE, | 
					
						
							|  |  |  | 						 AR724X_PCI_CTRL_BASE, | 
					
						
							| 
									
										
										
										
											2013-02-03 14:52:47 +00:00
										 |  |  | 						 AR724X_PCI_CRP_BASE, | 
					
						
							| 
									
										
										
										
											2013-02-03 09:59:45 +00:00
										 |  |  | 						 AR724X_PCI_MEM_BASE, | 
					
						
							|  |  |  | 						 AR724X_PCI_MEM_SIZE, | 
					
						
							|  |  |  | 						 0, | 
					
						
							| 
									
										
										
										
											2013-02-07 19:32:23 +00:00
										 |  |  | 						 ATH79_CPU_IRQ(2)); | 
					
						
							| 
									
										
										
										
											2013-02-02 11:44:24 +00:00
										 |  |  | 	} else if (soc_is_ar9342() || | 
					
						
							|  |  |  | 		   soc_is_ar9344()) { | 
					
						
							| 
									
										
										
										
											2012-03-14 10:45:30 +01:00
										 |  |  | 		u32 bootstrap; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		bootstrap = ath79_reset_rr(AR934X_RESET_REG_BOOTSTRAP); | 
					
						
							| 
									
										
										
										
											2013-02-02 11:44:24 +00:00
										 |  |  | 		if ((bootstrap & AR934X_BOOTSTRAP_PCIE_RC) == 0) | 
					
						
							|  |  |  | 			return -ENODEV; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		pdev = ath79_register_pci_ar724x(-1, | 
					
						
							|  |  |  | 						 AR724X_PCI_CFG_BASE, | 
					
						
							|  |  |  | 						 AR724X_PCI_CTRL_BASE, | 
					
						
							| 
									
										
										
										
											2013-02-03 14:52:47 +00:00
										 |  |  | 						 AR724X_PCI_CRP_BASE, | 
					
						
							| 
									
										
										
										
											2013-02-03 09:59:45 +00:00
										 |  |  | 						 AR724X_PCI_MEM_BASE, | 
					
						
							|  |  |  | 						 AR724X_PCI_MEM_SIZE, | 
					
						
							|  |  |  | 						 0, | 
					
						
							| 
									
										
										
										
											2013-02-02 11:44:24 +00:00
										 |  |  | 						 ATH79_IP2_IRQ(0)); | 
					
						
							| 
									
										
										
										
											2013-02-15 13:38:23 +00:00
										 |  |  | 	} else if (soc_is_qca9558()) { | 
					
						
							|  |  |  | 		pdev = ath79_register_pci_ar724x(0, | 
					
						
							|  |  |  | 						 QCA955X_PCI_CFG_BASE0, | 
					
						
							|  |  |  | 						 QCA955X_PCI_CTRL_BASE0, | 
					
						
							|  |  |  | 						 QCA955X_PCI_CRP_BASE0, | 
					
						
							|  |  |  | 						 QCA955X_PCI_MEM_BASE0, | 
					
						
							|  |  |  | 						 QCA955X_PCI_MEM_SIZE, | 
					
						
							|  |  |  | 						 0, | 
					
						
							|  |  |  | 						 ATH79_IP2_IRQ(0)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		pdev = ath79_register_pci_ar724x(1, | 
					
						
							|  |  |  | 						 QCA955X_PCI_CFG_BASE1, | 
					
						
							|  |  |  | 						 QCA955X_PCI_CTRL_BASE1, | 
					
						
							|  |  |  | 						 QCA955X_PCI_CRP_BASE1, | 
					
						
							|  |  |  | 						 QCA955X_PCI_MEM_BASE1, | 
					
						
							|  |  |  | 						 QCA955X_PCI_MEM_SIZE, | 
					
						
							|  |  |  | 						 1, | 
					
						
							|  |  |  | 						 ATH79_IP3_IRQ(2)); | 
					
						
							| 
									
										
										
										
											2013-02-02 11:44:24 +00:00
										 |  |  | 	} else { | 
					
						
							|  |  |  | 		/* No PCI support */ | 
					
						
							|  |  |  | 		return -ENODEV; | 
					
						
							| 
									
										
										
										
											2012-03-14 10:45:30 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-02 11:44:24 +00:00
										 |  |  | 	if (!pdev) | 
					
						
							|  |  |  | 		pr_err("unable to register PCI controller device\n"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return pdev ? 0 : -ENODEV; | 
					
						
							| 
									
										
										
										
											2012-03-14 10:29:24 +01:00
										 |  |  | } |