| David S. Miller | 8f6a93a | 2006-02-09 21:32:07 -0800 | [diff] [blame] | 1 | /* pci_sun4v.c: SUN4V specific PCI controller support. | 
|  | 2 | * | 
| David S. Miller | d284142 | 2008-02-08 18:05:46 -0800 | [diff] [blame] | 3 | * Copyright (C) 2006, 2007, 2008 David S. Miller (davem@davemloft.net) | 
| David S. Miller | 8f6a93a | 2006-02-09 21:32:07 -0800 | [diff] [blame] | 4 | */ | 
|  | 5 |  | 
|  | 6 | #include <linux/kernel.h> | 
|  | 7 | #include <linux/types.h> | 
|  | 8 | #include <linux/pci.h> | 
|  | 9 | #include <linux/init.h> | 
|  | 10 | #include <linux/slab.h> | 
|  | 11 | #include <linux/interrupt.h> | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 12 | #include <linux/percpu.h> | 
| David S. Miller | 35a17eb | 2007-02-10 17:41:02 -0800 | [diff] [blame] | 13 | #include <linux/irq.h> | 
|  | 14 | #include <linux/msi.h> | 
| David S. Miller | 59db810 | 2007-05-23 18:00:46 -0700 | [diff] [blame] | 15 | #include <linux/log2.h> | 
| David S. Miller | 3822b50 | 2008-08-30 02:50:29 -0700 | [diff] [blame] | 16 | #include <linux/of_device.h> | 
| David S. Miller | 8f6a93a | 2006-02-09 21:32:07 -0800 | [diff] [blame] | 17 |  | 
| David S. Miller | 8f6a93a | 2006-02-09 21:32:07 -0800 | [diff] [blame] | 18 | #include <asm/iommu.h> | 
|  | 19 | #include <asm/irq.h> | 
| David S. Miller | 8f6a93a | 2006-02-09 21:32:07 -0800 | [diff] [blame] | 20 | #include <asm/hypervisor.h> | 
| David S. Miller | e87dc35 | 2006-06-21 18:18:47 -0700 | [diff] [blame] | 21 | #include <asm/prom.h> | 
| David S. Miller | 8f6a93a | 2006-02-09 21:32:07 -0800 | [diff] [blame] | 22 |  | 
|  | 23 | #include "pci_impl.h" | 
|  | 24 | #include "iommu_common.h" | 
|  | 25 |  | 
| David S. Miller | bade562 | 2006-02-09 22:05:54 -0800 | [diff] [blame] | 26 | #include "pci_sun4v.h" | 
|  | 27 |  | 
| David S. Miller | 3822b50 | 2008-08-30 02:50:29 -0700 | [diff] [blame] | 28 | #define DRIVER_NAME	"pci_sun4v" | 
|  | 29 | #define PFX		DRIVER_NAME ": " | 
|  | 30 |  | 
| David S. Miller | e01c0d6 | 2007-05-25 01:04:15 -0700 | [diff] [blame] | 31 | static unsigned long vpci_major = 1; | 
|  | 32 | static unsigned long vpci_minor = 1; | 
|  | 33 |  | 
| David S. Miller | 7c8f486 | 2006-02-13 21:50:27 -0800 | [diff] [blame] | 34 | #define PGLIST_NENTS	(PAGE_SIZE / sizeof(u64)) | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 35 |  | 
| David S. Miller | 16ce82d | 2007-04-26 21:08:21 -0700 | [diff] [blame] | 36 | struct iommu_batch { | 
| David S. Miller | ad7ad57 | 2007-07-27 22:39:14 -0700 | [diff] [blame] | 37 | struct device	*dev;		/* Device mapping is for.	*/ | 
| David S. Miller | 6a32fd4 | 2006-02-19 22:21:32 -0800 | [diff] [blame] | 38 | unsigned long	prot;		/* IOMMU page protections	*/ | 
|  | 39 | unsigned long	entry;		/* Index into IOTSB.		*/ | 
|  | 40 | u64		*pglist;	/* List of physical pages	*/ | 
|  | 41 | unsigned long	npages;		/* Number of pages in list.	*/ | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 42 | }; | 
|  | 43 |  | 
| David S. Miller | ad7ad57 | 2007-07-27 22:39:14 -0700 | [diff] [blame] | 44 | static DEFINE_PER_CPU(struct iommu_batch, iommu_batch); | 
| David S. Miller | d3ae4b5 | 2008-09-09 23:54:02 -0700 | [diff] [blame] | 45 | static int iommu_batch_initialized; | 
| David S. Miller | 6a32fd4 | 2006-02-19 22:21:32 -0800 | [diff] [blame] | 46 |  | 
|  | 47 | /* Interrupts must be disabled.  */ | 
| David S. Miller | ad7ad57 | 2007-07-27 22:39:14 -0700 | [diff] [blame] | 48 | static inline void iommu_batch_start(struct device *dev, unsigned long prot, unsigned long entry) | 
| David S. Miller | 6a32fd4 | 2006-02-19 22:21:32 -0800 | [diff] [blame] | 49 | { | 
| David S. Miller | ad7ad57 | 2007-07-27 22:39:14 -0700 | [diff] [blame] | 50 | struct iommu_batch *p = &__get_cpu_var(iommu_batch); | 
| David S. Miller | 6a32fd4 | 2006-02-19 22:21:32 -0800 | [diff] [blame] | 51 |  | 
| David S. Miller | ad7ad57 | 2007-07-27 22:39:14 -0700 | [diff] [blame] | 52 | p->dev		= dev; | 
| David S. Miller | 6a32fd4 | 2006-02-19 22:21:32 -0800 | [diff] [blame] | 53 | p->prot		= prot; | 
|  | 54 | p->entry	= entry; | 
|  | 55 | p->npages	= 0; | 
|  | 56 | } | 
|  | 57 |  | 
|  | 58 | /* Interrupts must be disabled.  */ | 
| David S. Miller | ad7ad57 | 2007-07-27 22:39:14 -0700 | [diff] [blame] | 59 | static long iommu_batch_flush(struct iommu_batch *p) | 
| David S. Miller | 6a32fd4 | 2006-02-19 22:21:32 -0800 | [diff] [blame] | 60 | { | 
| David S. Miller | ad7ad57 | 2007-07-27 22:39:14 -0700 | [diff] [blame] | 61 | struct pci_pbm_info *pbm = p->dev->archdata.host_controller; | 
| David S. Miller | a2fb23a | 2007-02-28 23:35:04 -0800 | [diff] [blame] | 62 | unsigned long devhandle = pbm->devhandle; | 
| David S. Miller | 6a32fd4 | 2006-02-19 22:21:32 -0800 | [diff] [blame] | 63 | unsigned long prot = p->prot; | 
|  | 64 | unsigned long entry = p->entry; | 
|  | 65 | u64 *pglist = p->pglist; | 
|  | 66 | unsigned long npages = p->npages; | 
|  | 67 |  | 
| David S. Miller | d82965c | 2006-02-20 01:42:51 -0800 | [diff] [blame] | 68 | while (npages != 0) { | 
| David S. Miller | 6a32fd4 | 2006-02-19 22:21:32 -0800 | [diff] [blame] | 69 | long num; | 
|  | 70 |  | 
|  | 71 | num = pci_sun4v_iommu_map(devhandle, HV_PCI_TSBID(0, entry), | 
|  | 72 | npages, prot, __pa(pglist)); | 
|  | 73 | if (unlikely(num < 0)) { | 
|  | 74 | if (printk_ratelimit()) | 
| David S. Miller | ad7ad57 | 2007-07-27 22:39:14 -0700 | [diff] [blame] | 75 | printk("iommu_batch_flush: IOMMU map of " | 
| Sam Ravnborg | 9018113 | 2009-01-06 13:19:28 -0800 | [diff] [blame] | 76 | "[%08lx:%08llx:%lx:%lx:%lx] failed with " | 
| David S. Miller | 6a32fd4 | 2006-02-19 22:21:32 -0800 | [diff] [blame] | 77 | "status %ld\n", | 
|  | 78 | devhandle, HV_PCI_TSBID(0, entry), | 
|  | 79 | npages, prot, __pa(pglist), num); | 
|  | 80 | return -1; | 
|  | 81 | } | 
|  | 82 |  | 
|  | 83 | entry += num; | 
|  | 84 | npages -= num; | 
|  | 85 | pglist += num; | 
| David S. Miller | d82965c | 2006-02-20 01:42:51 -0800 | [diff] [blame] | 86 | } | 
| David S. Miller | 6a32fd4 | 2006-02-19 22:21:32 -0800 | [diff] [blame] | 87 |  | 
|  | 88 | p->entry = entry; | 
|  | 89 | p->npages = 0; | 
|  | 90 |  | 
|  | 91 | return 0; | 
|  | 92 | } | 
|  | 93 |  | 
| David S. Miller | 13fa14e | 2008-02-09 03:11:01 -0800 | [diff] [blame] | 94 | static inline void iommu_batch_new_entry(unsigned long entry) | 
|  | 95 | { | 
|  | 96 | struct iommu_batch *p = &__get_cpu_var(iommu_batch); | 
|  | 97 |  | 
|  | 98 | if (p->entry + p->npages == entry) | 
|  | 99 | return; | 
|  | 100 | if (p->entry != ~0UL) | 
|  | 101 | iommu_batch_flush(p); | 
|  | 102 | p->entry = entry; | 
|  | 103 | } | 
|  | 104 |  | 
| David S. Miller | 6a32fd4 | 2006-02-19 22:21:32 -0800 | [diff] [blame] | 105 | /* Interrupts must be disabled.  */ | 
| David S. Miller | ad7ad57 | 2007-07-27 22:39:14 -0700 | [diff] [blame] | 106 | static inline long iommu_batch_add(u64 phys_page) | 
| David S. Miller | 6a32fd4 | 2006-02-19 22:21:32 -0800 | [diff] [blame] | 107 | { | 
| David S. Miller | ad7ad57 | 2007-07-27 22:39:14 -0700 | [diff] [blame] | 108 | struct iommu_batch *p = &__get_cpu_var(iommu_batch); | 
| David S. Miller | 6a32fd4 | 2006-02-19 22:21:32 -0800 | [diff] [blame] | 109 |  | 
|  | 110 | BUG_ON(p->npages >= PGLIST_NENTS); | 
|  | 111 |  | 
|  | 112 | p->pglist[p->npages++] = phys_page; | 
|  | 113 | if (p->npages == PGLIST_NENTS) | 
| David S. Miller | ad7ad57 | 2007-07-27 22:39:14 -0700 | [diff] [blame] | 114 | return iommu_batch_flush(p); | 
| David S. Miller | 6a32fd4 | 2006-02-19 22:21:32 -0800 | [diff] [blame] | 115 |  | 
|  | 116 | return 0; | 
|  | 117 | } | 
|  | 118 |  | 
|  | 119 | /* Interrupts must be disabled.  */ | 
| David S. Miller | ad7ad57 | 2007-07-27 22:39:14 -0700 | [diff] [blame] | 120 | static inline long iommu_batch_end(void) | 
| David S. Miller | 6a32fd4 | 2006-02-19 22:21:32 -0800 | [diff] [blame] | 121 | { | 
| David S. Miller | ad7ad57 | 2007-07-27 22:39:14 -0700 | [diff] [blame] | 122 | struct iommu_batch *p = &__get_cpu_var(iommu_batch); | 
| David S. Miller | 6a32fd4 | 2006-02-19 22:21:32 -0800 | [diff] [blame] | 123 |  | 
|  | 124 | BUG_ON(p->npages >= PGLIST_NENTS); | 
|  | 125 |  | 
| David S. Miller | ad7ad57 | 2007-07-27 22:39:14 -0700 | [diff] [blame] | 126 | return iommu_batch_flush(p); | 
| David S. Miller | 6a32fd4 | 2006-02-19 22:21:32 -0800 | [diff] [blame] | 127 | } | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 128 |  | 
| David S. Miller | ad7ad57 | 2007-07-27 22:39:14 -0700 | [diff] [blame] | 129 | static void *dma_4v_alloc_coherent(struct device *dev, size_t size, | 
|  | 130 | dma_addr_t *dma_addrp, gfp_t gfp) | 
| David S. Miller | 8f6a93a | 2006-02-09 21:32:07 -0800 | [diff] [blame] | 131 | { | 
| David S. Miller | 7c8f486 | 2006-02-13 21:50:27 -0800 | [diff] [blame] | 132 | unsigned long flags, order, first_page, npages, n; | 
| David S. Miller | c1b1a5f | 2008-03-19 04:52:48 -0700 | [diff] [blame] | 133 | struct iommu *iommu; | 
|  | 134 | struct page *page; | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 135 | void *ret; | 
|  | 136 | long entry; | 
| David S. Miller | c1b1a5f | 2008-03-19 04:52:48 -0700 | [diff] [blame] | 137 | int nid; | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 138 |  | 
|  | 139 | size = IO_PAGE_ALIGN(size); | 
|  | 140 | order = get_order(size); | 
| David S. Miller | 6a32fd4 | 2006-02-19 22:21:32 -0800 | [diff] [blame] | 141 | if (unlikely(order >= MAX_ORDER)) | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 142 | return NULL; | 
|  | 143 |  | 
|  | 144 | npages = size >> IO_PAGE_SHIFT; | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 145 |  | 
| David S. Miller | c1b1a5f | 2008-03-19 04:52:48 -0700 | [diff] [blame] | 146 | nid = dev->archdata.numa_node; | 
|  | 147 | page = alloc_pages_node(nid, gfp, order); | 
|  | 148 | if (unlikely(!page)) | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 149 | return NULL; | 
| David S. Miller | e7a0453 | 2006-02-15 22:25:27 -0800 | [diff] [blame] | 150 |  | 
| David S. Miller | c1b1a5f | 2008-03-19 04:52:48 -0700 | [diff] [blame] | 151 | first_page = (unsigned long) page_address(page); | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 152 | memset((char *)first_page, 0, PAGE_SIZE << order); | 
|  | 153 |  | 
| David S. Miller | ad7ad57 | 2007-07-27 22:39:14 -0700 | [diff] [blame] | 154 | iommu = dev->archdata.iommu; | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 155 |  | 
|  | 156 | spin_lock_irqsave(&iommu->lock, flags); | 
| David S. Miller | d284142 | 2008-02-08 18:05:46 -0800 | [diff] [blame] | 157 | entry = iommu_range_alloc(dev, iommu, npages, NULL); | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 158 | spin_unlock_irqrestore(&iommu->lock, flags); | 
|  | 159 |  | 
| David S. Miller | d284142 | 2008-02-08 18:05:46 -0800 | [diff] [blame] | 160 | if (unlikely(entry == DMA_ERROR_CODE)) | 
|  | 161 | goto range_alloc_fail; | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 162 |  | 
|  | 163 | *dma_addrp = (iommu->page_table_map_base + | 
|  | 164 | (entry << IO_PAGE_SHIFT)); | 
|  | 165 | ret = (void *) first_page; | 
|  | 166 | first_page = __pa(first_page); | 
|  | 167 |  | 
| David S. Miller | 6a32fd4 | 2006-02-19 22:21:32 -0800 | [diff] [blame] | 168 | local_irq_save(flags); | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 169 |  | 
| David S. Miller | ad7ad57 | 2007-07-27 22:39:14 -0700 | [diff] [blame] | 170 | iommu_batch_start(dev, | 
|  | 171 | (HV_PCI_MAP_ATTR_READ | | 
|  | 172 | HV_PCI_MAP_ATTR_WRITE), | 
|  | 173 | entry); | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 174 |  | 
| David S. Miller | 6a32fd4 | 2006-02-19 22:21:32 -0800 | [diff] [blame] | 175 | for (n = 0; n < npages; n++) { | 
| David S. Miller | ad7ad57 | 2007-07-27 22:39:14 -0700 | [diff] [blame] | 176 | long err = iommu_batch_add(first_page + (n * PAGE_SIZE)); | 
| David S. Miller | 6a32fd4 | 2006-02-19 22:21:32 -0800 | [diff] [blame] | 177 | if (unlikely(err < 0L)) | 
|  | 178 | goto iommu_map_fail; | 
|  | 179 | } | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 180 |  | 
| David S. Miller | ad7ad57 | 2007-07-27 22:39:14 -0700 | [diff] [blame] | 181 | if (unlikely(iommu_batch_end() < 0L)) | 
| David S. Miller | 6a32fd4 | 2006-02-19 22:21:32 -0800 | [diff] [blame] | 182 | goto iommu_map_fail; | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 183 |  | 
| David S. Miller | 6a32fd4 | 2006-02-19 22:21:32 -0800 | [diff] [blame] | 184 | local_irq_restore(flags); | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 185 |  | 
|  | 186 | return ret; | 
| David S. Miller | 6a32fd4 | 2006-02-19 22:21:32 -0800 | [diff] [blame] | 187 |  | 
|  | 188 | iommu_map_fail: | 
|  | 189 | /* Interrupts are disabled.  */ | 
|  | 190 | spin_lock(&iommu->lock); | 
| David S. Miller | d284142 | 2008-02-08 18:05:46 -0800 | [diff] [blame] | 191 | iommu_range_free(iommu, *dma_addrp, npages); | 
| David S. Miller | 6a32fd4 | 2006-02-19 22:21:32 -0800 | [diff] [blame] | 192 | spin_unlock_irqrestore(&iommu->lock, flags); | 
|  | 193 |  | 
| David S. Miller | d284142 | 2008-02-08 18:05:46 -0800 | [diff] [blame] | 194 | range_alloc_fail: | 
| David S. Miller | 6a32fd4 | 2006-02-19 22:21:32 -0800 | [diff] [blame] | 195 | free_pages(first_page, order); | 
|  | 196 | return NULL; | 
| David S. Miller | 8f6a93a | 2006-02-09 21:32:07 -0800 | [diff] [blame] | 197 | } | 
|  | 198 |  | 
| David S. Miller | ad7ad57 | 2007-07-27 22:39:14 -0700 | [diff] [blame] | 199 | static void dma_4v_free_coherent(struct device *dev, size_t size, void *cpu, | 
|  | 200 | dma_addr_t dvma) | 
| David S. Miller | 8f6a93a | 2006-02-09 21:32:07 -0800 | [diff] [blame] | 201 | { | 
| David S. Miller | a2fb23a | 2007-02-28 23:35:04 -0800 | [diff] [blame] | 202 | struct pci_pbm_info *pbm; | 
| David S. Miller | 16ce82d | 2007-04-26 21:08:21 -0700 | [diff] [blame] | 203 | struct iommu *iommu; | 
| David S. Miller | 7c8f486 | 2006-02-13 21:50:27 -0800 | [diff] [blame] | 204 | unsigned long flags, order, npages, entry; | 
|  | 205 | u32 devhandle; | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 206 |  | 
|  | 207 | npages = IO_PAGE_ALIGN(size) >> IO_PAGE_SHIFT; | 
| David S. Miller | ad7ad57 | 2007-07-27 22:39:14 -0700 | [diff] [blame] | 208 | iommu = dev->archdata.iommu; | 
|  | 209 | pbm = dev->archdata.host_controller; | 
| David S. Miller | a2fb23a | 2007-02-28 23:35:04 -0800 | [diff] [blame] | 210 | devhandle = pbm->devhandle; | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 211 | entry = ((dvma - iommu->page_table_map_base) >> IO_PAGE_SHIFT); | 
|  | 212 |  | 
|  | 213 | spin_lock_irqsave(&iommu->lock, flags); | 
|  | 214 |  | 
| David S. Miller | d284142 | 2008-02-08 18:05:46 -0800 | [diff] [blame] | 215 | iommu_range_free(iommu, dvma, npages); | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 216 |  | 
|  | 217 | do { | 
|  | 218 | unsigned long num; | 
|  | 219 |  | 
|  | 220 | num = pci_sun4v_iommu_demap(devhandle, HV_PCI_TSBID(0, entry), | 
|  | 221 | npages); | 
|  | 222 | entry += num; | 
|  | 223 | npages -= num; | 
|  | 224 | } while (npages != 0); | 
|  | 225 |  | 
|  | 226 | spin_unlock_irqrestore(&iommu->lock, flags); | 
|  | 227 |  | 
|  | 228 | order = get_order(size); | 
|  | 229 | if (order < 10) | 
|  | 230 | free_pages((unsigned long)cpu, order); | 
| David S. Miller | 8f6a93a | 2006-02-09 21:32:07 -0800 | [diff] [blame] | 231 | } | 
|  | 232 |  | 
| FUJITA Tomonori | 797a756 | 2009-05-14 16:23:10 +0000 | [diff] [blame] | 233 | static dma_addr_t dma_4v_map_page(struct device *dev, struct page *page, | 
|  | 234 | unsigned long offset, size_t sz, | 
| FUJITA Tomonori | bc0a14f | 2009-08-10 11:53:12 +0900 | [diff] [blame] | 235 | enum dma_data_direction direction, | 
|  | 236 | struct dma_attrs *attrs) | 
| David S. Miller | 8f6a93a | 2006-02-09 21:32:07 -0800 | [diff] [blame] | 237 | { | 
| David S. Miller | 16ce82d | 2007-04-26 21:08:21 -0700 | [diff] [blame] | 238 | struct iommu *iommu; | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 239 | unsigned long flags, npages, oaddr; | 
| David S. Miller | 7c8f486 | 2006-02-13 21:50:27 -0800 | [diff] [blame] | 240 | unsigned long i, base_paddr; | 
| David S. Miller | 6a32fd4 | 2006-02-19 22:21:32 -0800 | [diff] [blame] | 241 | u32 bus_addr, ret; | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 242 | unsigned long prot; | 
|  | 243 | long entry; | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 244 |  | 
| David S. Miller | ad7ad57 | 2007-07-27 22:39:14 -0700 | [diff] [blame] | 245 | iommu = dev->archdata.iommu; | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 246 |  | 
| David S. Miller | ad7ad57 | 2007-07-27 22:39:14 -0700 | [diff] [blame] | 247 | if (unlikely(direction == DMA_NONE)) | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 248 | goto bad; | 
|  | 249 |  | 
| FUJITA Tomonori | 797a756 | 2009-05-14 16:23:10 +0000 | [diff] [blame] | 250 | oaddr = (unsigned long)(page_address(page) + offset); | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 251 | npages = IO_PAGE_ALIGN(oaddr + sz) - (oaddr & IO_PAGE_MASK); | 
|  | 252 | npages >>= IO_PAGE_SHIFT; | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 253 |  | 
|  | 254 | spin_lock_irqsave(&iommu->lock, flags); | 
| David S. Miller | d284142 | 2008-02-08 18:05:46 -0800 | [diff] [blame] | 255 | entry = iommu_range_alloc(dev, iommu, npages, NULL); | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 256 | spin_unlock_irqrestore(&iommu->lock, flags); | 
|  | 257 |  | 
| David S. Miller | d284142 | 2008-02-08 18:05:46 -0800 | [diff] [blame] | 258 | if (unlikely(entry == DMA_ERROR_CODE)) | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 259 | goto bad; | 
|  | 260 |  | 
|  | 261 | bus_addr = (iommu->page_table_map_base + | 
|  | 262 | (entry << IO_PAGE_SHIFT)); | 
|  | 263 | ret = bus_addr | (oaddr & ~IO_PAGE_MASK); | 
|  | 264 | base_paddr = __pa(oaddr & IO_PAGE_MASK); | 
|  | 265 | prot = HV_PCI_MAP_ATTR_READ; | 
| David S. Miller | ad7ad57 | 2007-07-27 22:39:14 -0700 | [diff] [blame] | 266 | if (direction != DMA_TO_DEVICE) | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 267 | prot |= HV_PCI_MAP_ATTR_WRITE; | 
|  | 268 |  | 
| David S. Miller | 6a32fd4 | 2006-02-19 22:21:32 -0800 | [diff] [blame] | 269 | local_irq_save(flags); | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 270 |  | 
| David S. Miller | ad7ad57 | 2007-07-27 22:39:14 -0700 | [diff] [blame] | 271 | iommu_batch_start(dev, prot, entry); | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 272 |  | 
| David S. Miller | 6a32fd4 | 2006-02-19 22:21:32 -0800 | [diff] [blame] | 273 | for (i = 0; i < npages; i++, base_paddr += IO_PAGE_SIZE) { | 
| David S. Miller | ad7ad57 | 2007-07-27 22:39:14 -0700 | [diff] [blame] | 274 | long err = iommu_batch_add(base_paddr); | 
| David S. Miller | 6a32fd4 | 2006-02-19 22:21:32 -0800 | [diff] [blame] | 275 | if (unlikely(err < 0L)) | 
|  | 276 | goto iommu_map_fail; | 
|  | 277 | } | 
| David S. Miller | ad7ad57 | 2007-07-27 22:39:14 -0700 | [diff] [blame] | 278 | if (unlikely(iommu_batch_end() < 0L)) | 
| David S. Miller | 6a32fd4 | 2006-02-19 22:21:32 -0800 | [diff] [blame] | 279 | goto iommu_map_fail; | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 280 |  | 
| David S. Miller | 6a32fd4 | 2006-02-19 22:21:32 -0800 | [diff] [blame] | 281 | local_irq_restore(flags); | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 282 |  | 
|  | 283 | return ret; | 
|  | 284 |  | 
|  | 285 | bad: | 
|  | 286 | if (printk_ratelimit()) | 
|  | 287 | WARN_ON(1); | 
| David S. Miller | ad7ad57 | 2007-07-27 22:39:14 -0700 | [diff] [blame] | 288 | return DMA_ERROR_CODE; | 
| David S. Miller | 6a32fd4 | 2006-02-19 22:21:32 -0800 | [diff] [blame] | 289 |  | 
|  | 290 | iommu_map_fail: | 
|  | 291 | /* Interrupts are disabled.  */ | 
|  | 292 | spin_lock(&iommu->lock); | 
| David S. Miller | d284142 | 2008-02-08 18:05:46 -0800 | [diff] [blame] | 293 | iommu_range_free(iommu, bus_addr, npages); | 
| David S. Miller | 6a32fd4 | 2006-02-19 22:21:32 -0800 | [diff] [blame] | 294 | spin_unlock_irqrestore(&iommu->lock, flags); | 
|  | 295 |  | 
| David S. Miller | ad7ad57 | 2007-07-27 22:39:14 -0700 | [diff] [blame] | 296 | return DMA_ERROR_CODE; | 
| David S. Miller | 8f6a93a | 2006-02-09 21:32:07 -0800 | [diff] [blame] | 297 | } | 
|  | 298 |  | 
| FUJITA Tomonori | 797a756 | 2009-05-14 16:23:10 +0000 | [diff] [blame] | 299 | static void dma_4v_unmap_page(struct device *dev, dma_addr_t bus_addr, | 
| FUJITA Tomonori | bc0a14f | 2009-08-10 11:53:12 +0900 | [diff] [blame] | 300 | size_t sz, enum dma_data_direction direction, | 
|  | 301 | struct dma_attrs *attrs) | 
| David S. Miller | 8f6a93a | 2006-02-09 21:32:07 -0800 | [diff] [blame] | 302 | { | 
| David S. Miller | a2fb23a | 2007-02-28 23:35:04 -0800 | [diff] [blame] | 303 | struct pci_pbm_info *pbm; | 
| David S. Miller | 16ce82d | 2007-04-26 21:08:21 -0700 | [diff] [blame] | 304 | struct iommu *iommu; | 
| David S. Miller | 7c8f486 | 2006-02-13 21:50:27 -0800 | [diff] [blame] | 305 | unsigned long flags, npages; | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 306 | long entry; | 
| David S. Miller | 7c8f486 | 2006-02-13 21:50:27 -0800 | [diff] [blame] | 307 | u32 devhandle; | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 308 |  | 
| David S. Miller | ad7ad57 | 2007-07-27 22:39:14 -0700 | [diff] [blame] | 309 | if (unlikely(direction == DMA_NONE)) { | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 310 | if (printk_ratelimit()) | 
|  | 311 | WARN_ON(1); | 
|  | 312 | return; | 
|  | 313 | } | 
|  | 314 |  | 
| David S. Miller | ad7ad57 | 2007-07-27 22:39:14 -0700 | [diff] [blame] | 315 | iommu = dev->archdata.iommu; | 
|  | 316 | pbm = dev->archdata.host_controller; | 
| David S. Miller | a2fb23a | 2007-02-28 23:35:04 -0800 | [diff] [blame] | 317 | devhandle = pbm->devhandle; | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 318 |  | 
|  | 319 | npages = IO_PAGE_ALIGN(bus_addr + sz) - (bus_addr & IO_PAGE_MASK); | 
|  | 320 | npages >>= IO_PAGE_SHIFT; | 
|  | 321 | bus_addr &= IO_PAGE_MASK; | 
|  | 322 |  | 
|  | 323 | spin_lock_irqsave(&iommu->lock, flags); | 
|  | 324 |  | 
| David S. Miller | d284142 | 2008-02-08 18:05:46 -0800 | [diff] [blame] | 325 | iommu_range_free(iommu, bus_addr, npages); | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 326 |  | 
| David S. Miller | d284142 | 2008-02-08 18:05:46 -0800 | [diff] [blame] | 327 | entry = (bus_addr - iommu->page_table_map_base) >> IO_PAGE_SHIFT; | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 328 | do { | 
|  | 329 | unsigned long num; | 
|  | 330 |  | 
|  | 331 | num = pci_sun4v_iommu_demap(devhandle, HV_PCI_TSBID(0, entry), | 
|  | 332 | npages); | 
|  | 333 | entry += num; | 
|  | 334 | npages -= num; | 
|  | 335 | } while (npages != 0); | 
|  | 336 |  | 
|  | 337 | spin_unlock_irqrestore(&iommu->lock, flags); | 
|  | 338 | } | 
|  | 339 |  | 
| David S. Miller | ad7ad57 | 2007-07-27 22:39:14 -0700 | [diff] [blame] | 340 | static int dma_4v_map_sg(struct device *dev, struct scatterlist *sglist, | 
| FUJITA Tomonori | bc0a14f | 2009-08-10 11:53:12 +0900 | [diff] [blame] | 341 | int nelems, enum dma_data_direction direction, | 
|  | 342 | struct dma_attrs *attrs) | 
| David S. Miller | 8f6a93a | 2006-02-09 21:32:07 -0800 | [diff] [blame] | 343 | { | 
| David S. Miller | 13fa14e | 2008-02-09 03:11:01 -0800 | [diff] [blame] | 344 | struct scatterlist *s, *outs, *segstart; | 
|  | 345 | unsigned long flags, handle, prot; | 
|  | 346 | dma_addr_t dma_next = 0, dma_addr; | 
|  | 347 | unsigned int max_seg_size; | 
| FUJITA Tomonori | f088025 | 2008-03-28 15:55:41 -0700 | [diff] [blame] | 348 | unsigned long seg_boundary_size; | 
| David S. Miller | 13fa14e | 2008-02-09 03:11:01 -0800 | [diff] [blame] | 349 | int outcount, incount, i; | 
| David S. Miller | 16ce82d | 2007-04-26 21:08:21 -0700 | [diff] [blame] | 350 | struct iommu *iommu; | 
| FUJITA Tomonori | f088025 | 2008-03-28 15:55:41 -0700 | [diff] [blame] | 351 | unsigned long base_shift; | 
| David S. Miller | 13fa14e | 2008-02-09 03:11:01 -0800 | [diff] [blame] | 352 | long err; | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 353 |  | 
| David S. Miller | 13fa14e | 2008-02-09 03:11:01 -0800 | [diff] [blame] | 354 | BUG_ON(direction == DMA_NONE); | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 355 |  | 
| David S. Miller | ad7ad57 | 2007-07-27 22:39:14 -0700 | [diff] [blame] | 356 | iommu = dev->archdata.iommu; | 
| David S. Miller | 13fa14e | 2008-02-09 03:11:01 -0800 | [diff] [blame] | 357 | if (nelems == 0 || !iommu) | 
|  | 358 | return 0; | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 359 |  | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 360 | prot = HV_PCI_MAP_ATTR_READ; | 
| David S. Miller | ad7ad57 | 2007-07-27 22:39:14 -0700 | [diff] [blame] | 361 | if (direction != DMA_TO_DEVICE) | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 362 | prot |= HV_PCI_MAP_ATTR_WRITE; | 
|  | 363 |  | 
| David S. Miller | 13fa14e | 2008-02-09 03:11:01 -0800 | [diff] [blame] | 364 | outs = s = segstart = &sglist[0]; | 
|  | 365 | outcount = 1; | 
|  | 366 | incount = nelems; | 
|  | 367 | handle = 0; | 
| David S. Miller | 38192d5 | 2008-02-06 03:50:26 -0800 | [diff] [blame] | 368 |  | 
| David S. Miller | 13fa14e | 2008-02-09 03:11:01 -0800 | [diff] [blame] | 369 | /* Init first segment length for backout at failure */ | 
|  | 370 | outs->dma_length = 0; | 
| David S. Miller | 38192d5 | 2008-02-06 03:50:26 -0800 | [diff] [blame] | 371 |  | 
| David S. Miller | 13fa14e | 2008-02-09 03:11:01 -0800 | [diff] [blame] | 372 | spin_lock_irqsave(&iommu->lock, flags); | 
| David S. Miller | 38192d5 | 2008-02-06 03:50:26 -0800 | [diff] [blame] | 373 |  | 
| David S. Miller | 13fa14e | 2008-02-09 03:11:01 -0800 | [diff] [blame] | 374 | iommu_batch_start(dev, prot, ~0UL); | 
| David S. Miller | 38192d5 | 2008-02-06 03:50:26 -0800 | [diff] [blame] | 375 |  | 
| David S. Miller | 13fa14e | 2008-02-09 03:11:01 -0800 | [diff] [blame] | 376 | max_seg_size = dma_get_max_seg_size(dev); | 
| FUJITA Tomonori | f088025 | 2008-03-28 15:55:41 -0700 | [diff] [blame] | 377 | seg_boundary_size = ALIGN(dma_get_seg_boundary(dev) + 1, | 
|  | 378 | IO_PAGE_SIZE) >> IO_PAGE_SHIFT; | 
|  | 379 | base_shift = iommu->page_table_map_base >> IO_PAGE_SHIFT; | 
| David S. Miller | 13fa14e | 2008-02-09 03:11:01 -0800 | [diff] [blame] | 380 | for_each_sg(sglist, s, nelems, i) { | 
| FUJITA Tomonori | f088025 | 2008-03-28 15:55:41 -0700 | [diff] [blame] | 381 | unsigned long paddr, npages, entry, out_entry = 0, slen; | 
| David S. Miller | 38192d5 | 2008-02-06 03:50:26 -0800 | [diff] [blame] | 382 |  | 
| David S. Miller | 13fa14e | 2008-02-09 03:11:01 -0800 | [diff] [blame] | 383 | slen = s->length; | 
|  | 384 | /* Sanity check */ | 
|  | 385 | if (slen == 0) { | 
|  | 386 | dma_next = 0; | 
|  | 387 | continue; | 
| David S. Miller | 38192d5 | 2008-02-06 03:50:26 -0800 | [diff] [blame] | 388 | } | 
| David S. Miller | 13fa14e | 2008-02-09 03:11:01 -0800 | [diff] [blame] | 389 | /* Allocate iommu entries for that segment */ | 
|  | 390 | paddr = (unsigned long) SG_ENT_PHYS_ADDRESS(s); | 
| Joerg Roedel | 0fcff28 | 2008-10-15 22:02:14 -0700 | [diff] [blame] | 391 | npages = iommu_num_pages(paddr, slen, IO_PAGE_SIZE); | 
| David S. Miller | 13fa14e | 2008-02-09 03:11:01 -0800 | [diff] [blame] | 392 | entry = iommu_range_alloc(dev, iommu, npages, &handle); | 
|  | 393 |  | 
|  | 394 | /* Handle failure */ | 
|  | 395 | if (unlikely(entry == DMA_ERROR_CODE)) { | 
|  | 396 | if (printk_ratelimit()) | 
|  | 397 | printk(KERN_INFO "iommu_alloc failed, iommu %p paddr %lx" | 
|  | 398 | " npages %lx\n", iommu, paddr, npages); | 
|  | 399 | goto iommu_map_failed; | 
|  | 400 | } | 
|  | 401 |  | 
|  | 402 | iommu_batch_new_entry(entry); | 
|  | 403 |  | 
|  | 404 | /* Convert entry to a dma_addr_t */ | 
|  | 405 | dma_addr = iommu->page_table_map_base + | 
|  | 406 | (entry << IO_PAGE_SHIFT); | 
|  | 407 | dma_addr |= (s->offset & ~IO_PAGE_MASK); | 
|  | 408 |  | 
|  | 409 | /* Insert into HW table */ | 
|  | 410 | paddr &= IO_PAGE_MASK; | 
|  | 411 | while (npages--) { | 
|  | 412 | err = iommu_batch_add(paddr); | 
|  | 413 | if (unlikely(err < 0L)) | 
|  | 414 | goto iommu_map_failed; | 
|  | 415 | paddr += IO_PAGE_SIZE; | 
|  | 416 | } | 
|  | 417 |  | 
|  | 418 | /* If we are in an open segment, try merging */ | 
|  | 419 | if (segstart != s) { | 
|  | 420 | /* We cannot merge if: | 
|  | 421 | * - allocated dma_addr isn't contiguous to previous allocation | 
|  | 422 | */ | 
|  | 423 | if ((dma_addr != dma_next) || | 
| FUJITA Tomonori | f088025 | 2008-03-28 15:55:41 -0700 | [diff] [blame] | 424 | (outs->dma_length + s->length > max_seg_size) || | 
|  | 425 | (is_span_boundary(out_entry, base_shift, | 
|  | 426 | seg_boundary_size, outs, s))) { | 
| David S. Miller | 13fa14e | 2008-02-09 03:11:01 -0800 | [diff] [blame] | 427 | /* Can't merge: create a new segment */ | 
|  | 428 | segstart = s; | 
|  | 429 | outcount++; | 
|  | 430 | outs = sg_next(outs); | 
|  | 431 | } else { | 
|  | 432 | outs->dma_length += s->length; | 
|  | 433 | } | 
|  | 434 | } | 
|  | 435 |  | 
|  | 436 | if (segstart == s) { | 
|  | 437 | /* This is a new segment, fill entries */ | 
|  | 438 | outs->dma_address = dma_addr; | 
|  | 439 | outs->dma_length = slen; | 
| FUJITA Tomonori | f088025 | 2008-03-28 15:55:41 -0700 | [diff] [blame] | 440 | out_entry = entry; | 
| David S. Miller | 13fa14e | 2008-02-09 03:11:01 -0800 | [diff] [blame] | 441 | } | 
|  | 442 |  | 
|  | 443 | /* Calculate next page pointer for contiguous check */ | 
|  | 444 | dma_next = dma_addr + slen; | 
| David S. Miller | 38192d5 | 2008-02-06 03:50:26 -0800 | [diff] [blame] | 445 | } | 
|  | 446 |  | 
|  | 447 | err = iommu_batch_end(); | 
|  | 448 |  | 
| David S. Miller | 6a32fd4 | 2006-02-19 22:21:32 -0800 | [diff] [blame] | 449 | if (unlikely(err < 0L)) | 
|  | 450 | goto iommu_map_failed; | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 451 |  | 
| David S. Miller | 13fa14e | 2008-02-09 03:11:01 -0800 | [diff] [blame] | 452 | spin_unlock_irqrestore(&iommu->lock, flags); | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 453 |  | 
| David S. Miller | 13fa14e | 2008-02-09 03:11:01 -0800 | [diff] [blame] | 454 | if (outcount < incount) { | 
|  | 455 | outs = sg_next(outs); | 
|  | 456 | outs->dma_address = DMA_ERROR_CODE; | 
|  | 457 | outs->dma_length = 0; | 
|  | 458 | } | 
|  | 459 |  | 
|  | 460 | return outcount; | 
| David S. Miller | 6a32fd4 | 2006-02-19 22:21:32 -0800 | [diff] [blame] | 461 |  | 
|  | 462 | iommu_map_failed: | 
| David S. Miller | 13fa14e | 2008-02-09 03:11:01 -0800 | [diff] [blame] | 463 | for_each_sg(sglist, s, nelems, i) { | 
|  | 464 | if (s->dma_length != 0) { | 
|  | 465 | unsigned long vaddr, npages; | 
|  | 466 |  | 
|  | 467 | vaddr = s->dma_address & IO_PAGE_MASK; | 
| Joerg Roedel | 0fcff28 | 2008-10-15 22:02:14 -0700 | [diff] [blame] | 468 | npages = iommu_num_pages(s->dma_address, s->dma_length, | 
|  | 469 | IO_PAGE_SIZE); | 
| David S. Miller | 13fa14e | 2008-02-09 03:11:01 -0800 | [diff] [blame] | 470 | iommu_range_free(iommu, vaddr, npages); | 
|  | 471 | /* XXX demap? XXX */ | 
|  | 472 | s->dma_address = DMA_ERROR_CODE; | 
|  | 473 | s->dma_length = 0; | 
|  | 474 | } | 
|  | 475 | if (s == outs) | 
|  | 476 | break; | 
|  | 477 | } | 
| David S. Miller | 6a32fd4 | 2006-02-19 22:21:32 -0800 | [diff] [blame] | 478 | spin_unlock_irqrestore(&iommu->lock, flags); | 
|  | 479 |  | 
|  | 480 | return 0; | 
| David S. Miller | 8f6a93a | 2006-02-09 21:32:07 -0800 | [diff] [blame] | 481 | } | 
|  | 482 |  | 
| David S. Miller | ad7ad57 | 2007-07-27 22:39:14 -0700 | [diff] [blame] | 483 | static void dma_4v_unmap_sg(struct device *dev, struct scatterlist *sglist, | 
| FUJITA Tomonori | bc0a14f | 2009-08-10 11:53:12 +0900 | [diff] [blame] | 484 | int nelems, enum dma_data_direction direction, | 
|  | 485 | struct dma_attrs *attrs) | 
| David S. Miller | 8f6a93a | 2006-02-09 21:32:07 -0800 | [diff] [blame] | 486 | { | 
| David S. Miller | a2fb23a | 2007-02-28 23:35:04 -0800 | [diff] [blame] | 487 | struct pci_pbm_info *pbm; | 
| David S. Miller | 13fa14e | 2008-02-09 03:11:01 -0800 | [diff] [blame] | 488 | struct scatterlist *sg; | 
| David S. Miller | 38192d5 | 2008-02-06 03:50:26 -0800 | [diff] [blame] | 489 | struct iommu *iommu; | 
| David S. Miller | 13fa14e | 2008-02-09 03:11:01 -0800 | [diff] [blame] | 490 | unsigned long flags; | 
|  | 491 | u32 devhandle; | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 492 |  | 
| David S. Miller | 13fa14e | 2008-02-09 03:11:01 -0800 | [diff] [blame] | 493 | BUG_ON(direction == DMA_NONE); | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 494 |  | 
| David S. Miller | ad7ad57 | 2007-07-27 22:39:14 -0700 | [diff] [blame] | 495 | iommu = dev->archdata.iommu; | 
|  | 496 | pbm = dev->archdata.host_controller; | 
| David S. Miller | a2fb23a | 2007-02-28 23:35:04 -0800 | [diff] [blame] | 497 | devhandle = pbm->devhandle; | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 498 |  | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 499 | spin_lock_irqsave(&iommu->lock, flags); | 
|  | 500 |  | 
| David S. Miller | 13fa14e | 2008-02-09 03:11:01 -0800 | [diff] [blame] | 501 | sg = sglist; | 
|  | 502 | while (nelems--) { | 
|  | 503 | dma_addr_t dma_handle = sg->dma_address; | 
|  | 504 | unsigned int len = sg->dma_length; | 
|  | 505 | unsigned long npages, entry; | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 506 |  | 
| David S. Miller | 13fa14e | 2008-02-09 03:11:01 -0800 | [diff] [blame] | 507 | if (!len) | 
|  | 508 | break; | 
| Joerg Roedel | 0fcff28 | 2008-10-15 22:02:14 -0700 | [diff] [blame] | 509 | npages = iommu_num_pages(dma_handle, len, IO_PAGE_SIZE); | 
| David S. Miller | 13fa14e | 2008-02-09 03:11:01 -0800 | [diff] [blame] | 510 | iommu_range_free(iommu, dma_handle, npages); | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 511 |  | 
| David S. Miller | 13fa14e | 2008-02-09 03:11:01 -0800 | [diff] [blame] | 512 | entry = ((dma_handle - iommu->page_table_map_base) >> IO_PAGE_SHIFT); | 
|  | 513 | while (npages) { | 
|  | 514 | unsigned long num; | 
|  | 515 |  | 
|  | 516 | num = pci_sun4v_iommu_demap(devhandle, HV_PCI_TSBID(0, entry), | 
|  | 517 | npages); | 
|  | 518 | entry += num; | 
|  | 519 | npages -= num; | 
|  | 520 | } | 
|  | 521 |  | 
|  | 522 | sg = sg_next(sg); | 
|  | 523 | } | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 524 |  | 
|  | 525 | spin_unlock_irqrestore(&iommu->lock, flags); | 
| David S. Miller | 8f6a93a | 2006-02-09 21:32:07 -0800 | [diff] [blame] | 526 | } | 
|  | 527 |  | 
| FUJITA Tomonori | 02f7a18 | 2009-08-10 11:53:13 +0900 | [diff] [blame] | 528 | static struct dma_map_ops sun4v_dma_ops = { | 
| David S. Miller | ad7ad57 | 2007-07-27 22:39:14 -0700 | [diff] [blame] | 529 | .alloc_coherent			= dma_4v_alloc_coherent, | 
|  | 530 | .free_coherent			= dma_4v_free_coherent, | 
| FUJITA Tomonori | 797a756 | 2009-05-14 16:23:10 +0000 | [diff] [blame] | 531 | .map_page			= dma_4v_map_page, | 
|  | 532 | .unmap_page			= dma_4v_unmap_page, | 
| David S. Miller | ad7ad57 | 2007-07-27 22:39:14 -0700 | [diff] [blame] | 533 | .map_sg				= dma_4v_map_sg, | 
|  | 534 | .unmap_sg			= dma_4v_unmap_sg, | 
| David S. Miller | 8f6a93a | 2006-02-09 21:32:07 -0800 | [diff] [blame] | 535 | }; | 
|  | 536 |  | 
| David S. Miller | 9a2ed5c | 2009-04-07 01:03:58 -0700 | [diff] [blame] | 537 | static void __devinit pci_sun4v_scan_bus(struct pci_pbm_info *pbm, | 
|  | 538 | struct device *parent) | 
| David S. Miller | bade562 | 2006-02-09 22:05:54 -0800 | [diff] [blame] | 539 | { | 
| David S. Miller | e87dc35 | 2006-06-21 18:18:47 -0700 | [diff] [blame] | 540 | struct property *prop; | 
|  | 541 | struct device_node *dp; | 
|  | 542 |  | 
| Grant Likely | 61c7a08 | 2010-04-13 16:12:29 -0700 | [diff] [blame] | 543 | dp = pbm->op->dev.of_node; | 
| David S. Miller | 34768bc | 2007-05-07 23:06:27 -0700 | [diff] [blame] | 544 | prop = of_find_property(dp, "66mhz-capable", NULL); | 
|  | 545 | pbm->is_66mhz_capable = (prop != NULL); | 
| David S. Miller | e822358a | 2008-09-01 18:32:22 -0700 | [diff] [blame] | 546 | pbm->pci_bus = pci_scan_one_pbm(pbm, parent); | 
| David S. Miller | c260926 | 2006-02-12 22:18:52 -0800 | [diff] [blame] | 547 |  | 
|  | 548 | /* XXX register error interrupt handlers XXX */ | 
| David S. Miller | bade562 | 2006-02-09 22:05:54 -0800 | [diff] [blame] | 549 | } | 
|  | 550 |  | 
| David S. Miller | 9a2ed5c | 2009-04-07 01:03:58 -0700 | [diff] [blame] | 551 | static unsigned long __devinit probe_existing_entries(struct pci_pbm_info *pbm, | 
|  | 552 | struct iommu *iommu) | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 553 | { | 
| David S. Miller | 9b3627f | 2007-04-24 23:51:18 -0700 | [diff] [blame] | 554 | struct iommu_arena *arena = &iommu->arena; | 
| David S. Miller | e7a0453 | 2006-02-15 22:25:27 -0800 | [diff] [blame] | 555 | unsigned long i, cnt = 0; | 
| David S. Miller | 7c8f486 | 2006-02-13 21:50:27 -0800 | [diff] [blame] | 556 | u32 devhandle; | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 557 |  | 
|  | 558 | devhandle = pbm->devhandle; | 
|  | 559 | for (i = 0; i < arena->limit; i++) { | 
|  | 560 | unsigned long ret, io_attrs, ra; | 
|  | 561 |  | 
|  | 562 | ret = pci_sun4v_iommu_getmap(devhandle, | 
|  | 563 | HV_PCI_TSBID(0, i), | 
|  | 564 | &io_attrs, &ra); | 
| David S. Miller | e7a0453 | 2006-02-15 22:25:27 -0800 | [diff] [blame] | 565 | if (ret == HV_EOK) { | 
| David S. Miller | c2a5a46 | 2006-06-22 00:01:56 -0700 | [diff] [blame] | 566 | if (page_in_phys_avail(ra)) { | 
|  | 567 | pci_sun4v_iommu_demap(devhandle, | 
|  | 568 | HV_PCI_TSBID(0, i), 1); | 
|  | 569 | } else { | 
|  | 570 | cnt++; | 
|  | 571 | __set_bit(i, arena->map); | 
|  | 572 | } | 
| David S. Miller | e7a0453 | 2006-02-15 22:25:27 -0800 | [diff] [blame] | 573 | } | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 574 | } | 
| David S. Miller | e7a0453 | 2006-02-15 22:25:27 -0800 | [diff] [blame] | 575 |  | 
|  | 576 | return cnt; | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 577 | } | 
|  | 578 |  | 
| David S. Miller | 9a2ed5c | 2009-04-07 01:03:58 -0700 | [diff] [blame] | 579 | static int __devinit pci_sun4v_iommu_init(struct pci_pbm_info *pbm) | 
| David S. Miller | bade562 | 2006-02-09 22:05:54 -0800 | [diff] [blame] | 580 | { | 
| David S. Miller | 8aef727 | 2008-09-01 20:23:18 -0700 | [diff] [blame] | 581 | static const u32 vdma_default[] = { 0x80000000, 0x80000000 }; | 
| David S. Miller | 16ce82d | 2007-04-26 21:08:21 -0700 | [diff] [blame] | 582 | struct iommu *iommu = pbm->iommu; | 
| David S. Miller | c6fee08 | 2011-02-26 23:40:02 -0800 | [diff] [blame] | 583 | unsigned long num_tsb_entries, sz; | 
| David S. Miller | 8aef727 | 2008-09-01 20:23:18 -0700 | [diff] [blame] | 584 | u32 dma_mask, dma_offset; | 
|  | 585 | const u32 *vdma; | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 586 |  | 
| Grant Likely | 61c7a08 | 2010-04-13 16:12:29 -0700 | [diff] [blame] | 587 | vdma = of_get_property(pbm->op->dev.of_node, "virtual-dma", NULL); | 
| David S. Miller | 8aef727 | 2008-09-01 20:23:18 -0700 | [diff] [blame] | 588 | if (!vdma) | 
|  | 589 | vdma = vdma_default; | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 590 |  | 
| David S. Miller | 59db810 | 2007-05-23 18:00:46 -0700 | [diff] [blame] | 591 | if ((vdma[0] | vdma[1]) & ~IO_PAGE_MASK) { | 
| David S. Miller | 3822b50 | 2008-08-30 02:50:29 -0700 | [diff] [blame] | 592 | printk(KERN_ERR PFX "Strange virtual-dma[%08x:%08x].\n", | 
|  | 593 | vdma[0], vdma[1]); | 
|  | 594 | return -EINVAL; | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 595 | }; | 
|  | 596 |  | 
| David S. Miller | 59db810 | 2007-05-23 18:00:46 -0700 | [diff] [blame] | 597 | dma_mask = (roundup_pow_of_two(vdma[1]) - 1UL); | 
|  | 598 | num_tsb_entries = vdma[1] / IO_PAGE_SIZE; | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 599 |  | 
|  | 600 | dma_offset = vdma[0]; | 
|  | 601 |  | 
|  | 602 | /* Setup initial software IOMMU state. */ | 
|  | 603 | spin_lock_init(&iommu->lock); | 
|  | 604 | iommu->ctx_lowest_free = 1; | 
|  | 605 | iommu->page_table_map_base = dma_offset; | 
|  | 606 | iommu->dma_addr_mask = dma_mask; | 
|  | 607 |  | 
|  | 608 | /* Allocate and initialize the free area map.  */ | 
| David S. Miller | 59db810 | 2007-05-23 18:00:46 -0700 | [diff] [blame] | 609 | sz = (num_tsb_entries + 7) / 8; | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 610 | sz = (sz + 7UL) & ~7UL; | 
| Yan Burman | 982c206 | 2006-11-30 17:13:09 -0800 | [diff] [blame] | 611 | iommu->arena.map = kzalloc(sz, GFP_KERNEL); | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 612 | if (!iommu->arena.map) { | 
| David S. Miller | 3822b50 | 2008-08-30 02:50:29 -0700 | [diff] [blame] | 613 | printk(KERN_ERR PFX "Error, kmalloc(arena.map) failed.\n"); | 
|  | 614 | return -ENOMEM; | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 615 | } | 
| David S. Miller | 1839794 | 2006-02-10 00:08:26 -0800 | [diff] [blame] | 616 | iommu->arena.limit = num_tsb_entries; | 
|  | 617 |  | 
| David S. Miller | e7a0453 | 2006-02-15 22:25:27 -0800 | [diff] [blame] | 618 | sz = probe_existing_entries(pbm, iommu); | 
| David S. Miller | c2a5a46 | 2006-06-22 00:01:56 -0700 | [diff] [blame] | 619 | if (sz) | 
|  | 620 | printk("%s: Imported %lu TSB entries from OBP\n", | 
|  | 621 | pbm->name, sz); | 
| David S. Miller | 3822b50 | 2008-08-30 02:50:29 -0700 | [diff] [blame] | 622 |  | 
|  | 623 | return 0; | 
| David S. Miller | bade562 | 2006-02-09 22:05:54 -0800 | [diff] [blame] | 624 | } | 
|  | 625 |  | 
| David S. Miller | 35a17eb | 2007-02-10 17:41:02 -0800 | [diff] [blame] | 626 | #ifdef CONFIG_PCI_MSI | 
|  | 627 | struct pci_sun4v_msiq_entry { | 
|  | 628 | u64		version_type; | 
|  | 629 | #define MSIQ_VERSION_MASK		0xffffffff00000000UL | 
|  | 630 | #define MSIQ_VERSION_SHIFT		32 | 
|  | 631 | #define MSIQ_TYPE_MASK			0x00000000000000ffUL | 
|  | 632 | #define MSIQ_TYPE_SHIFT			0 | 
|  | 633 | #define MSIQ_TYPE_NONE			0x00 | 
|  | 634 | #define MSIQ_TYPE_MSG			0x01 | 
|  | 635 | #define MSIQ_TYPE_MSI32			0x02 | 
|  | 636 | #define MSIQ_TYPE_MSI64			0x03 | 
|  | 637 | #define MSIQ_TYPE_INTX			0x08 | 
|  | 638 | #define MSIQ_TYPE_NONE2			0xff | 
|  | 639 |  | 
|  | 640 | u64		intx_sysino; | 
|  | 641 | u64		reserved1; | 
|  | 642 | u64		stick; | 
|  | 643 | u64		req_id;  /* bus/device/func */ | 
|  | 644 | #define MSIQ_REQID_BUS_MASK		0xff00UL | 
|  | 645 | #define MSIQ_REQID_BUS_SHIFT		8 | 
|  | 646 | #define MSIQ_REQID_DEVICE_MASK		0x00f8UL | 
|  | 647 | #define MSIQ_REQID_DEVICE_SHIFT		3 | 
|  | 648 | #define MSIQ_REQID_FUNC_MASK		0x0007UL | 
|  | 649 | #define MSIQ_REQID_FUNC_SHIFT		0 | 
|  | 650 |  | 
|  | 651 | u64		msi_address; | 
|  | 652 |  | 
| Simon Arlott | e5dd42e | 2007-05-11 13:52:08 -0700 | [diff] [blame] | 653 | /* The format of this value is message type dependent. | 
| David S. Miller | 35a17eb | 2007-02-10 17:41:02 -0800 | [diff] [blame] | 654 | * For MSI bits 15:0 are the data from the MSI packet. | 
|  | 655 | * For MSI-X bits 31:0 are the data from the MSI packet. | 
|  | 656 | * For MSG, the message code and message routing code where: | 
|  | 657 | * 	bits 39:32 is the bus/device/fn of the msg target-id | 
|  | 658 | *	bits 18:16 is the message routing code | 
|  | 659 | *	bits 7:0 is the message code | 
|  | 660 | * For INTx the low order 2-bits are: | 
|  | 661 | *	00 - INTA | 
|  | 662 | *	01 - INTB | 
|  | 663 | *	10 - INTC | 
|  | 664 | *	11 - INTD | 
|  | 665 | */ | 
|  | 666 | u64		msi_data; | 
|  | 667 |  | 
|  | 668 | u64		reserved2; | 
|  | 669 | }; | 
|  | 670 |  | 
| David S. Miller | 759f89e | 2007-10-11 03:16:13 -0700 | [diff] [blame] | 671 | static int pci_sun4v_get_head(struct pci_pbm_info *pbm, unsigned long msiqid, | 
|  | 672 | unsigned long *head) | 
| David S. Miller | 35a17eb | 2007-02-10 17:41:02 -0800 | [diff] [blame] | 673 | { | 
| David S. Miller | 759f89e | 2007-10-11 03:16:13 -0700 | [diff] [blame] | 674 | unsigned long err, limit; | 
| David S. Miller | 35a17eb | 2007-02-10 17:41:02 -0800 | [diff] [blame] | 675 |  | 
| David S. Miller | 759f89e | 2007-10-11 03:16:13 -0700 | [diff] [blame] | 676 | err = pci_sun4v_msiq_gethead(pbm->devhandle, msiqid, head); | 
| David S. Miller | 35a17eb | 2007-02-10 17:41:02 -0800 | [diff] [blame] | 677 | if (unlikely(err)) | 
| David S. Miller | 759f89e | 2007-10-11 03:16:13 -0700 | [diff] [blame] | 678 | return -ENXIO; | 
| David S. Miller | 35a17eb | 2007-02-10 17:41:02 -0800 | [diff] [blame] | 679 |  | 
| David S. Miller | 759f89e | 2007-10-11 03:16:13 -0700 | [diff] [blame] | 680 | limit = pbm->msiq_ent_count * sizeof(struct pci_sun4v_msiq_entry); | 
|  | 681 | if (unlikely(*head >= limit)) | 
|  | 682 | return -EFBIG; | 
| David S. Miller | 35a17eb | 2007-02-10 17:41:02 -0800 | [diff] [blame] | 683 |  | 
|  | 684 | return 0; | 
|  | 685 | } | 
|  | 686 |  | 
| David S. Miller | 759f89e | 2007-10-11 03:16:13 -0700 | [diff] [blame] | 687 | static int pci_sun4v_dequeue_msi(struct pci_pbm_info *pbm, | 
|  | 688 | unsigned long msiqid, unsigned long *head, | 
|  | 689 | unsigned long *msi) | 
| David S. Miller | 35a17eb | 2007-02-10 17:41:02 -0800 | [diff] [blame] | 690 | { | 
| David S. Miller | 759f89e | 2007-10-11 03:16:13 -0700 | [diff] [blame] | 691 | struct pci_sun4v_msiq_entry *ep; | 
|  | 692 | unsigned long err, type; | 
|  | 693 |  | 
|  | 694 | /* Note: void pointer arithmetic, 'head' is a byte offset  */ | 
|  | 695 | ep = (pbm->msi_queues + ((msiqid - pbm->msiq_first) * | 
|  | 696 | (pbm->msiq_ent_count * | 
|  | 697 | sizeof(struct pci_sun4v_msiq_entry))) + | 
|  | 698 | *head); | 
|  | 699 |  | 
|  | 700 | if ((ep->version_type & MSIQ_TYPE_MASK) == 0) | 
|  | 701 | return 0; | 
|  | 702 |  | 
|  | 703 | type = (ep->version_type & MSIQ_TYPE_MASK) >> MSIQ_TYPE_SHIFT; | 
|  | 704 | if (unlikely(type != MSIQ_TYPE_MSI32 && | 
|  | 705 | type != MSIQ_TYPE_MSI64)) | 
|  | 706 | return -EINVAL; | 
|  | 707 |  | 
|  | 708 | *msi = ep->msi_data; | 
|  | 709 |  | 
|  | 710 | err = pci_sun4v_msi_setstate(pbm->devhandle, | 
|  | 711 | ep->msi_data /* msi_num */, | 
|  | 712 | HV_MSISTATE_IDLE); | 
|  | 713 | if (unlikely(err)) | 
|  | 714 | return -ENXIO; | 
|  | 715 |  | 
|  | 716 | /* Clear the entry.  */ | 
|  | 717 | ep->version_type &= ~MSIQ_TYPE_MASK; | 
|  | 718 |  | 
|  | 719 | (*head) += sizeof(struct pci_sun4v_msiq_entry); | 
|  | 720 | if (*head >= | 
|  | 721 | (pbm->msiq_ent_count * sizeof(struct pci_sun4v_msiq_entry))) | 
|  | 722 | *head = 0; | 
|  | 723 |  | 
|  | 724 | return 1; | 
| David S. Miller | 35a17eb | 2007-02-10 17:41:02 -0800 | [diff] [blame] | 725 | } | 
|  | 726 |  | 
| David S. Miller | 759f89e | 2007-10-11 03:16:13 -0700 | [diff] [blame] | 727 | static int pci_sun4v_set_head(struct pci_pbm_info *pbm, unsigned long msiqid, | 
|  | 728 | unsigned long head) | 
|  | 729 | { | 
|  | 730 | unsigned long err; | 
|  | 731 |  | 
|  | 732 | err = pci_sun4v_msiq_sethead(pbm->devhandle, msiqid, head); | 
|  | 733 | if (unlikely(err)) | 
|  | 734 | return -EINVAL; | 
|  | 735 |  | 
|  | 736 | return 0; | 
|  | 737 | } | 
|  | 738 |  | 
|  | 739 | static int pci_sun4v_msi_setup(struct pci_pbm_info *pbm, unsigned long msiqid, | 
|  | 740 | unsigned long msi, int is_msi64) | 
|  | 741 | { | 
|  | 742 | if (pci_sun4v_msi_setmsiq(pbm->devhandle, msi, msiqid, | 
|  | 743 | (is_msi64 ? | 
|  | 744 | HV_MSITYPE_MSI64 : HV_MSITYPE_MSI32))) | 
|  | 745 | return -ENXIO; | 
|  | 746 | if (pci_sun4v_msi_setstate(pbm->devhandle, msi, HV_MSISTATE_IDLE)) | 
|  | 747 | return -ENXIO; | 
|  | 748 | if (pci_sun4v_msi_setvalid(pbm->devhandle, msi, HV_MSIVALID_VALID)) | 
|  | 749 | return -ENXIO; | 
|  | 750 | return 0; | 
|  | 751 | } | 
|  | 752 |  | 
|  | 753 | static int pci_sun4v_msi_teardown(struct pci_pbm_info *pbm, unsigned long msi) | 
|  | 754 | { | 
|  | 755 | unsigned long err, msiqid; | 
|  | 756 |  | 
|  | 757 | err = pci_sun4v_msi_getmsiq(pbm->devhandle, msi, &msiqid); | 
|  | 758 | if (err) | 
|  | 759 | return -ENXIO; | 
|  | 760 |  | 
|  | 761 | pci_sun4v_msi_setvalid(pbm->devhandle, msi, HV_MSIVALID_INVALID); | 
|  | 762 |  | 
|  | 763 | return 0; | 
|  | 764 | } | 
|  | 765 |  | 
|  | 766 | static int pci_sun4v_msiq_alloc(struct pci_pbm_info *pbm) | 
| David S. Miller | 35a17eb | 2007-02-10 17:41:02 -0800 | [diff] [blame] | 767 | { | 
|  | 768 | unsigned long q_size, alloc_size, pages, order; | 
|  | 769 | int i; | 
|  | 770 |  | 
|  | 771 | q_size = pbm->msiq_ent_count * sizeof(struct pci_sun4v_msiq_entry); | 
|  | 772 | alloc_size = (pbm->msiq_num * q_size); | 
|  | 773 | order = get_order(alloc_size); | 
|  | 774 | pages = __get_free_pages(GFP_KERNEL | __GFP_COMP, order); | 
|  | 775 | if (pages == 0UL) { | 
|  | 776 | printk(KERN_ERR "MSI: Cannot allocate MSI queues (o=%lu).\n", | 
|  | 777 | order); | 
|  | 778 | return -ENOMEM; | 
|  | 779 | } | 
|  | 780 | memset((char *)pages, 0, PAGE_SIZE << order); | 
|  | 781 | pbm->msi_queues = (void *) pages; | 
|  | 782 |  | 
|  | 783 | for (i = 0; i < pbm->msiq_num; i++) { | 
|  | 784 | unsigned long err, base = __pa(pages + (i * q_size)); | 
|  | 785 | unsigned long ret1, ret2; | 
|  | 786 |  | 
|  | 787 | err = pci_sun4v_msiq_conf(pbm->devhandle, | 
|  | 788 | pbm->msiq_first + i, | 
|  | 789 | base, pbm->msiq_ent_count); | 
|  | 790 | if (err) { | 
|  | 791 | printk(KERN_ERR "MSI: msiq register fails (err=%lu)\n", | 
|  | 792 | err); | 
|  | 793 | goto h_error; | 
|  | 794 | } | 
|  | 795 |  | 
|  | 796 | err = pci_sun4v_msiq_info(pbm->devhandle, | 
|  | 797 | pbm->msiq_first + i, | 
|  | 798 | &ret1, &ret2); | 
|  | 799 | if (err) { | 
|  | 800 | printk(KERN_ERR "MSI: Cannot read msiq (err=%lu)\n", | 
|  | 801 | err); | 
|  | 802 | goto h_error; | 
|  | 803 | } | 
|  | 804 | if (ret1 != base || ret2 != pbm->msiq_ent_count) { | 
|  | 805 | printk(KERN_ERR "MSI: Bogus qconf " | 
|  | 806 | "expected[%lx:%x] got[%lx:%lx]\n", | 
|  | 807 | base, pbm->msiq_ent_count, | 
|  | 808 | ret1, ret2); | 
|  | 809 | goto h_error; | 
|  | 810 | } | 
|  | 811 | } | 
|  | 812 |  | 
|  | 813 | return 0; | 
|  | 814 |  | 
|  | 815 | h_error: | 
|  | 816 | free_pages(pages, order); | 
|  | 817 | return -EINVAL; | 
|  | 818 | } | 
|  | 819 |  | 
| David S. Miller | 759f89e | 2007-10-11 03:16:13 -0700 | [diff] [blame] | 820 | static void pci_sun4v_msiq_free(struct pci_pbm_info *pbm) | 
| David S. Miller | 35a17eb | 2007-02-10 17:41:02 -0800 | [diff] [blame] | 821 | { | 
| David S. Miller | 759f89e | 2007-10-11 03:16:13 -0700 | [diff] [blame] | 822 | unsigned long q_size, alloc_size, pages, order; | 
| David S. Miller | 35a17eb | 2007-02-10 17:41:02 -0800 | [diff] [blame] | 823 | int i; | 
|  | 824 |  | 
| David S. Miller | 759f89e | 2007-10-11 03:16:13 -0700 | [diff] [blame] | 825 | for (i = 0; i < pbm->msiq_num; i++) { | 
|  | 826 | unsigned long msiqid = pbm->msiq_first + i; | 
|  | 827 |  | 
|  | 828 | (void) pci_sun4v_msiq_conf(pbm->devhandle, msiqid, 0UL, 0); | 
| David S. Miller | 35a17eb | 2007-02-10 17:41:02 -0800 | [diff] [blame] | 829 | } | 
|  | 830 |  | 
| David S. Miller | 759f89e | 2007-10-11 03:16:13 -0700 | [diff] [blame] | 831 | q_size = pbm->msiq_ent_count * sizeof(struct pci_sun4v_msiq_entry); | 
|  | 832 | alloc_size = (pbm->msiq_num * q_size); | 
|  | 833 | order = get_order(alloc_size); | 
|  | 834 |  | 
|  | 835 | pages = (unsigned long) pbm->msi_queues; | 
|  | 836 |  | 
|  | 837 | free_pages(pages, order); | 
|  | 838 |  | 
|  | 839 | pbm->msi_queues = NULL; | 
| David S. Miller | 35a17eb | 2007-02-10 17:41:02 -0800 | [diff] [blame] | 840 | } | 
|  | 841 |  | 
| David S. Miller | 759f89e | 2007-10-11 03:16:13 -0700 | [diff] [blame] | 842 | static int pci_sun4v_msiq_build_irq(struct pci_pbm_info *pbm, | 
|  | 843 | unsigned long msiqid, | 
|  | 844 | unsigned long devino) | 
| David S. Miller | 35a17eb | 2007-02-10 17:41:02 -0800 | [diff] [blame] | 845 | { | 
| Sam Ravnborg | 44ed3c0 | 2011-01-22 11:32:20 +0000 | [diff] [blame] | 846 | unsigned int irq = sun4v_build_irq(pbm->devhandle, devino); | 
| David S. Miller | 35a17eb | 2007-02-10 17:41:02 -0800 | [diff] [blame] | 847 |  | 
| Sam Ravnborg | 44ed3c0 | 2011-01-22 11:32:20 +0000 | [diff] [blame] | 848 | if (!irq) | 
| David S. Miller | 759f89e | 2007-10-11 03:16:13 -0700 | [diff] [blame] | 849 | return -ENOMEM; | 
| David S. Miller | 35a17eb | 2007-02-10 17:41:02 -0800 | [diff] [blame] | 850 |  | 
| David S. Miller | 35a17eb | 2007-02-10 17:41:02 -0800 | [diff] [blame] | 851 | if (pci_sun4v_msiq_setstate(pbm->devhandle, msiqid, HV_MSIQSTATE_IDLE)) | 
| David S. Miller | 759f89e | 2007-10-11 03:16:13 -0700 | [diff] [blame] | 852 | return -EINVAL; | 
| David S. Miller | 35a17eb | 2007-02-10 17:41:02 -0800 | [diff] [blame] | 853 | if (pci_sun4v_msiq_setvalid(pbm->devhandle, msiqid, HV_MSIQ_VALID)) | 
| David S. Miller | 759f89e | 2007-10-11 03:16:13 -0700 | [diff] [blame] | 854 | return -EINVAL; | 
| David S. Miller | 35a17eb | 2007-02-10 17:41:02 -0800 | [diff] [blame] | 855 |  | 
| Sam Ravnborg | 44ed3c0 | 2011-01-22 11:32:20 +0000 | [diff] [blame] | 856 | return irq; | 
| David S. Miller | 35a17eb | 2007-02-10 17:41:02 -0800 | [diff] [blame] | 857 | } | 
|  | 858 |  | 
| David S. Miller | 759f89e | 2007-10-11 03:16:13 -0700 | [diff] [blame] | 859 | static const struct sparc64_msiq_ops pci_sun4v_msiq_ops = { | 
|  | 860 | .get_head	=	pci_sun4v_get_head, | 
|  | 861 | .dequeue_msi	=	pci_sun4v_dequeue_msi, | 
|  | 862 | .set_head	=	pci_sun4v_set_head, | 
|  | 863 | .msi_setup	=	pci_sun4v_msi_setup, | 
|  | 864 | .msi_teardown	=	pci_sun4v_msi_teardown, | 
|  | 865 | .msiq_alloc	=	pci_sun4v_msiq_alloc, | 
|  | 866 | .msiq_free	=	pci_sun4v_msiq_free, | 
|  | 867 | .msiq_build_irq	=	pci_sun4v_msiq_build_irq, | 
|  | 868 | }; | 
| David S. Miller | e9870c4 | 2007-05-07 23:28:50 -0700 | [diff] [blame] | 869 |  | 
|  | 870 | static void pci_sun4v_msi_init(struct pci_pbm_info *pbm) | 
|  | 871 | { | 
| David S. Miller | 759f89e | 2007-10-11 03:16:13 -0700 | [diff] [blame] | 872 | sparc64_pbm_msi_init(pbm, &pci_sun4v_msiq_ops); | 
| David S. Miller | e9870c4 | 2007-05-07 23:28:50 -0700 | [diff] [blame] | 873 | } | 
| David S. Miller | 35a17eb | 2007-02-10 17:41:02 -0800 | [diff] [blame] | 874 | #else /* CONFIG_PCI_MSI */ | 
|  | 875 | static void pci_sun4v_msi_init(struct pci_pbm_info *pbm) | 
|  | 876 | { | 
|  | 877 | } | 
|  | 878 | #endif /* !(CONFIG_PCI_MSI) */ | 
|  | 879 |  | 
| David S. Miller | 9a2ed5c | 2009-04-07 01:03:58 -0700 | [diff] [blame] | 880 | static int __devinit pci_sun4v_pbm_init(struct pci_pbm_info *pbm, | 
| Grant Likely | cd4cd73 | 2010-07-22 16:04:30 -0600 | [diff] [blame] | 881 | struct platform_device *op, u32 devhandle) | 
| David S. Miller | bade562 | 2006-02-09 22:05:54 -0800 | [diff] [blame] | 882 | { | 
| Grant Likely | 61c7a08 | 2010-04-13 16:12:29 -0700 | [diff] [blame] | 883 | struct device_node *dp = op->dev.of_node; | 
| David S. Miller | 3822b50 | 2008-08-30 02:50:29 -0700 | [diff] [blame] | 884 | int err; | 
| David S. Miller | bade562 | 2006-02-09 22:05:54 -0800 | [diff] [blame] | 885 |  | 
| David S. Miller | c1b1a5f | 2008-03-19 04:52:48 -0700 | [diff] [blame] | 886 | pbm->numa_node = of_node_to_nid(dp); | 
|  | 887 |  | 
| David S. Miller | ca3dd88 | 2007-05-09 02:35:27 -0700 | [diff] [blame] | 888 | pbm->pci_ops = &sun4v_pci_ops; | 
|  | 889 | pbm->config_space_reg_bits = 12; | 
| David S. Miller | 34768bc | 2007-05-07 23:06:27 -0700 | [diff] [blame] | 890 |  | 
| David S. Miller | 6c108f1 | 2007-05-07 23:49:01 -0700 | [diff] [blame] | 891 | pbm->index = pci_num_pbms++; | 
|  | 892 |  | 
| David S. Miller | 22fecba | 2008-09-10 00:19:28 -0700 | [diff] [blame] | 893 | pbm->op = op; | 
| David S. Miller | bade562 | 2006-02-09 22:05:54 -0800 | [diff] [blame] | 894 |  | 
| David S. Miller | 3833789 | 2006-02-12 22:06:53 -0800 | [diff] [blame] | 895 | pbm->devhandle = devhandle; | 
| David S. Miller | bade562 | 2006-02-09 22:05:54 -0800 | [diff] [blame] | 896 |  | 
| David S. Miller | e87dc35 | 2006-06-21 18:18:47 -0700 | [diff] [blame] | 897 | pbm->name = dp->full_name; | 
| David S. Miller | bade562 | 2006-02-09 22:05:54 -0800 | [diff] [blame] | 898 |  | 
| David S. Miller | e87dc35 | 2006-06-21 18:18:47 -0700 | [diff] [blame] | 899 | printk("%s: SUN4V PCI Bus Module\n", pbm->name); | 
| David S. Miller | c1b1a5f | 2008-03-19 04:52:48 -0700 | [diff] [blame] | 900 | printk("%s: On NUMA node %d\n", pbm->name, pbm->numa_node); | 
| David S. Miller | bade562 | 2006-02-09 22:05:54 -0800 | [diff] [blame] | 901 |  | 
| David S. Miller | 9fd8b64 | 2007-03-08 21:55:49 -0800 | [diff] [blame] | 902 | pci_determine_mem_io_space(pbm); | 
| David S. Miller | bade562 | 2006-02-09 22:05:54 -0800 | [diff] [blame] | 903 |  | 
| David S. Miller | cfa0652 | 2007-05-07 21:51:41 -0700 | [diff] [blame] | 904 | pci_get_pbm_props(pbm); | 
| David S. Miller | 3822b50 | 2008-08-30 02:50:29 -0700 | [diff] [blame] | 905 |  | 
|  | 906 | err = pci_sun4v_iommu_init(pbm); | 
|  | 907 | if (err) | 
|  | 908 | return err; | 
|  | 909 |  | 
| David S. Miller | 35a17eb | 2007-02-10 17:41:02 -0800 | [diff] [blame] | 910 | pci_sun4v_msi_init(pbm); | 
| David S. Miller | 3822b50 | 2008-08-30 02:50:29 -0700 | [diff] [blame] | 911 |  | 
| David S. Miller | e822358a | 2008-09-01 18:32:22 -0700 | [diff] [blame] | 912 | pci_sun4v_scan_bus(pbm, &op->dev); | 
| David S. Miller | 3822b50 | 2008-08-30 02:50:29 -0700 | [diff] [blame] | 913 |  | 
| David S. Miller | d3ae4b5 | 2008-09-09 23:54:02 -0700 | [diff] [blame] | 914 | pbm->next = pci_pbm_root; | 
|  | 915 | pci_pbm_root = pbm; | 
|  | 916 |  | 
| David S. Miller | 3822b50 | 2008-08-30 02:50:29 -0700 | [diff] [blame] | 917 | return 0; | 
| David S. Miller | bade562 | 2006-02-09 22:05:54 -0800 | [diff] [blame] | 918 | } | 
|  | 919 |  | 
| Grant Likely | 4ebb24f | 2011-02-22 20:01:33 -0700 | [diff] [blame] | 920 | static int __devinit pci_sun4v_probe(struct platform_device *op) | 
| David S. Miller | 8f6a93a | 2006-02-09 21:32:07 -0800 | [diff] [blame] | 921 | { | 
| David S. Miller | 3822b50 | 2008-08-30 02:50:29 -0700 | [diff] [blame] | 922 | const struct linux_prom64_registers *regs; | 
| David S. Miller | e01c0d6 | 2007-05-25 01:04:15 -0700 | [diff] [blame] | 923 | static int hvapi_negotiated = 0; | 
| David S. Miller | 34768bc | 2007-05-07 23:06:27 -0700 | [diff] [blame] | 924 | struct pci_pbm_info *pbm; | 
| David S. Miller | 3822b50 | 2008-08-30 02:50:29 -0700 | [diff] [blame] | 925 | struct device_node *dp; | 
| David S. Miller | 16ce82d | 2007-04-26 21:08:21 -0700 | [diff] [blame] | 926 | struct iommu *iommu; | 
| David S. Miller | 7c8f486 | 2006-02-13 21:50:27 -0800 | [diff] [blame] | 927 | u32 devhandle; | 
| David S. Miller | d7472c3 | 2008-08-31 01:33:52 -0700 | [diff] [blame] | 928 | int i, err; | 
| David S. Miller | 3833789 | 2006-02-12 22:06:53 -0800 | [diff] [blame] | 929 |  | 
| Grant Likely | 61c7a08 | 2010-04-13 16:12:29 -0700 | [diff] [blame] | 930 | dp = op->dev.of_node; | 
| David S. Miller | 3822b50 | 2008-08-30 02:50:29 -0700 | [diff] [blame] | 931 |  | 
| David S. Miller | e01c0d6 | 2007-05-25 01:04:15 -0700 | [diff] [blame] | 932 | if (!hvapi_negotiated++) { | 
| David S. Miller | 8d2aec5 | 2008-09-12 00:01:03 -0700 | [diff] [blame] | 933 | err = sun4v_hvapi_register(HV_GRP_PCI, | 
|  | 934 | vpci_major, | 
|  | 935 | &vpci_minor); | 
| David S. Miller | e01c0d6 | 2007-05-25 01:04:15 -0700 | [diff] [blame] | 936 |  | 
|  | 937 | if (err) { | 
| David S. Miller | 3822b50 | 2008-08-30 02:50:29 -0700 | [diff] [blame] | 938 | printk(KERN_ERR PFX "Could not register hvapi, " | 
|  | 939 | "err=%d\n", err); | 
|  | 940 | return err; | 
| David S. Miller | e01c0d6 | 2007-05-25 01:04:15 -0700 | [diff] [blame] | 941 | } | 
| David S. Miller | 3822b50 | 2008-08-30 02:50:29 -0700 | [diff] [blame] | 942 | printk(KERN_INFO PFX "Registered hvapi major[%lu] minor[%lu]\n", | 
| David S. Miller | e01c0d6 | 2007-05-25 01:04:15 -0700 | [diff] [blame] | 943 | vpci_major, vpci_minor); | 
| David S. Miller | ad7ad57 | 2007-07-27 22:39:14 -0700 | [diff] [blame] | 944 |  | 
|  | 945 | dma_ops = &sun4v_dma_ops; | 
| David S. Miller | e01c0d6 | 2007-05-25 01:04:15 -0700 | [diff] [blame] | 946 | } | 
|  | 947 |  | 
| David S. Miller | 3822b50 | 2008-08-30 02:50:29 -0700 | [diff] [blame] | 948 | regs = of_get_property(dp, "reg", NULL); | 
| David S. Miller | d7472c3 | 2008-08-31 01:33:52 -0700 | [diff] [blame] | 949 | err = -ENODEV; | 
| David S. Miller | 3822b50 | 2008-08-30 02:50:29 -0700 | [diff] [blame] | 950 | if (!regs) { | 
|  | 951 | printk(KERN_ERR PFX "Could not find config registers\n"); | 
| David S. Miller | d7472c3 | 2008-08-31 01:33:52 -0700 | [diff] [blame] | 952 | goto out_err; | 
| Cyrill Gorcunov | 75c6d14 | 2007-11-20 17:32:19 -0800 | [diff] [blame] | 953 | } | 
| David S. Miller | e87dc35 | 2006-06-21 18:18:47 -0700 | [diff] [blame] | 954 | devhandle = (regs->phys_addr >> 32UL) & 0x0fffffff; | 
| David S. Miller | 3833789 | 2006-02-12 22:06:53 -0800 | [diff] [blame] | 955 |  | 
| David S. Miller | d7472c3 | 2008-08-31 01:33:52 -0700 | [diff] [blame] | 956 | err = -ENOMEM; | 
| David S. Miller | d3ae4b5 | 2008-09-09 23:54:02 -0700 | [diff] [blame] | 957 | if (!iommu_batch_initialized) { | 
|  | 958 | for_each_possible_cpu(i) { | 
|  | 959 | unsigned long page = get_zeroed_page(GFP_KERNEL); | 
| David S. Miller | 7c8f486 | 2006-02-13 21:50:27 -0800 | [diff] [blame] | 960 |  | 
| David S. Miller | d3ae4b5 | 2008-09-09 23:54:02 -0700 | [diff] [blame] | 961 | if (!page) | 
|  | 962 | goto out_err; | 
| David S. Miller | 7c8f486 | 2006-02-13 21:50:27 -0800 | [diff] [blame] | 963 |  | 
| David S. Miller | d3ae4b5 | 2008-09-09 23:54:02 -0700 | [diff] [blame] | 964 | per_cpu(iommu_batch, i).pglist = (u64 *) page; | 
|  | 965 | } | 
|  | 966 | iommu_batch_initialized = 1; | 
| David S. Miller | bade562 | 2006-02-09 22:05:54 -0800 | [diff] [blame] | 967 | } | 
| David S. Miller | 7c8f486 | 2006-02-13 21:50:27 -0800 | [diff] [blame] | 968 |  | 
| David S. Miller | d3ae4b5 | 2008-09-09 23:54:02 -0700 | [diff] [blame] | 969 | pbm = kzalloc(sizeof(*pbm), GFP_KERNEL); | 
|  | 970 | if (!pbm) { | 
|  | 971 | printk(KERN_ERR PFX "Could not allocate pci_pbm_info\n"); | 
| David S. Miller | d7472c3 | 2008-08-31 01:33:52 -0700 | [diff] [blame] | 972 | goto out_err; | 
| David S. Miller | 3822b50 | 2008-08-30 02:50:29 -0700 | [diff] [blame] | 973 | } | 
| David S. Miller | 7c8f486 | 2006-02-13 21:50:27 -0800 | [diff] [blame] | 974 |  | 
| David S. Miller | d3ae4b5 | 2008-09-09 23:54:02 -0700 | [diff] [blame] | 975 | iommu = kzalloc(sizeof(struct iommu), GFP_KERNEL); | 
| David S. Miller | 3822b50 | 2008-08-30 02:50:29 -0700 | [diff] [blame] | 976 | if (!iommu) { | 
| David S. Miller | d3ae4b5 | 2008-09-09 23:54:02 -0700 | [diff] [blame] | 977 | printk(KERN_ERR PFX "Could not allocate pbm iommu\n"); | 
| David S. Miller | d7472c3 | 2008-08-31 01:33:52 -0700 | [diff] [blame] | 978 | goto out_free_controller; | 
| David S. Miller | 3822b50 | 2008-08-30 02:50:29 -0700 | [diff] [blame] | 979 | } | 
| David S. Miller | 7c8f486 | 2006-02-13 21:50:27 -0800 | [diff] [blame] | 980 |  | 
| David S. Miller | d3ae4b5 | 2008-09-09 23:54:02 -0700 | [diff] [blame] | 981 | pbm->iommu = iommu; | 
| David S. Miller | bade562 | 2006-02-09 22:05:54 -0800 | [diff] [blame] | 982 |  | 
| David S. Miller | d3ae4b5 | 2008-09-09 23:54:02 -0700 | [diff] [blame] | 983 | err = pci_sun4v_pbm_init(pbm, op, devhandle); | 
|  | 984 | if (err) | 
|  | 985 | goto out_free_iommu; | 
| David S. Miller | 7c8f486 | 2006-02-13 21:50:27 -0800 | [diff] [blame] | 986 |  | 
| David S. Miller | d3ae4b5 | 2008-09-09 23:54:02 -0700 | [diff] [blame] | 987 | dev_set_drvdata(&op->dev, pbm); | 
| David S. Miller | bade562 | 2006-02-09 22:05:54 -0800 | [diff] [blame] | 988 |  | 
| David S. Miller | d3ae4b5 | 2008-09-09 23:54:02 -0700 | [diff] [blame] | 989 | return 0; | 
| David S. Miller | 7c8f486 | 2006-02-13 21:50:27 -0800 | [diff] [blame] | 990 |  | 
| David S. Miller | d3ae4b5 | 2008-09-09 23:54:02 -0700 | [diff] [blame] | 991 | out_free_iommu: | 
|  | 992 | kfree(pbm->iommu); | 
| David S. Miller | d7472c3 | 2008-08-31 01:33:52 -0700 | [diff] [blame] | 993 |  | 
|  | 994 | out_free_controller: | 
| David S. Miller | d3ae4b5 | 2008-09-09 23:54:02 -0700 | [diff] [blame] | 995 | kfree(pbm); | 
| David S. Miller | d7472c3 | 2008-08-31 01:33:52 -0700 | [diff] [blame] | 996 |  | 
|  | 997 | out_err: | 
|  | 998 | return err; | 
| David S. Miller | 8f6a93a | 2006-02-09 21:32:07 -0800 | [diff] [blame] | 999 | } | 
| David S. Miller | 3822b50 | 2008-08-30 02:50:29 -0700 | [diff] [blame] | 1000 |  | 
| David S. Miller | 3628aa0 | 2011-03-30 17:37:56 -0700 | [diff] [blame] | 1001 | static const struct of_device_id pci_sun4v_match[] = { | 
| David S. Miller | 3822b50 | 2008-08-30 02:50:29 -0700 | [diff] [blame] | 1002 | { | 
|  | 1003 | .name = "pci", | 
|  | 1004 | .compatible = "SUNW,sun4v-pci", | 
|  | 1005 | }, | 
|  | 1006 | {}, | 
|  | 1007 | }; | 
|  | 1008 |  | 
| Grant Likely | 4ebb24f | 2011-02-22 20:01:33 -0700 | [diff] [blame] | 1009 | static struct platform_driver pci_sun4v_driver = { | 
| Grant Likely | 4018294 | 2010-04-13 16:13:02 -0700 | [diff] [blame] | 1010 | .driver = { | 
|  | 1011 | .name = DRIVER_NAME, | 
|  | 1012 | .owner = THIS_MODULE, | 
|  | 1013 | .of_match_table = pci_sun4v_match, | 
|  | 1014 | }, | 
| David S. Miller | 3822b50 | 2008-08-30 02:50:29 -0700 | [diff] [blame] | 1015 | .probe		= pci_sun4v_probe, | 
|  | 1016 | }; | 
|  | 1017 |  | 
|  | 1018 | static int __init pci_sun4v_init(void) | 
|  | 1019 | { | 
| Grant Likely | 4ebb24f | 2011-02-22 20:01:33 -0700 | [diff] [blame] | 1020 | return platform_driver_register(&pci_sun4v_driver); | 
| David S. Miller | 3822b50 | 2008-08-30 02:50:29 -0700 | [diff] [blame] | 1021 | } | 
|  | 1022 |  | 
|  | 1023 | subsys_initcall(pci_sun4v_init); |