blob: ee800f927929ba221c4b1528f9e533831b1b0400 [file] [log] [blame]
David S. Miller8f6a93a2006-02-09 21:32:07 -08001/* pci_sun4v.c: SUN4V specific PCI controller support.
2 *
David S. Millerd2841422008-02-08 18:05:46 -08003 * Copyright (C) 2006, 2007, 2008 David S. Miller (davem@davemloft.net)
David S. Miller8f6a93a2006-02-09 21:32:07 -08004 */
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. Miller18397942006-02-10 00:08:26 -080012#include <linux/percpu.h>
David S. Miller35a17eb2007-02-10 17:41:02 -080013#include <linux/irq.h>
14#include <linux/msi.h>
David S. Miller59db8102007-05-23 18:00:46 -070015#include <linux/log2.h>
David S. Miller3822b502008-08-30 02:50:29 -070016#include <linux/of_device.h>
David S. Miller8f6a93a2006-02-09 21:32:07 -080017
David S. Miller8f6a93a2006-02-09 21:32:07 -080018#include <asm/iommu.h>
19#include <asm/irq.h>
David S. Miller8f6a93a2006-02-09 21:32:07 -080020#include <asm/hypervisor.h>
David S. Millere87dc352006-06-21 18:18:47 -070021#include <asm/prom.h>
David S. Miller8f6a93a2006-02-09 21:32:07 -080022
23#include "pci_impl.h"
24#include "iommu_common.h"
25
David S. Millerbade5622006-02-09 22:05:54 -080026#include "pci_sun4v.h"
27
David S. Miller3822b502008-08-30 02:50:29 -070028#define DRIVER_NAME "pci_sun4v"
29#define PFX DRIVER_NAME ": "
30
David S. Millere01c0d62007-05-25 01:04:15 -070031static unsigned long vpci_major = 1;
32static unsigned long vpci_minor = 1;
33
David S. Miller7c8f4862006-02-13 21:50:27 -080034#define PGLIST_NENTS (PAGE_SIZE / sizeof(u64))
David S. Miller18397942006-02-10 00:08:26 -080035
David S. Miller16ce82d2007-04-26 21:08:21 -070036struct iommu_batch {
David S. Millerad7ad572007-07-27 22:39:14 -070037 struct device *dev; /* Device mapping is for. */
David S. Miller6a32fd42006-02-19 22:21:32 -080038 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. Miller18397942006-02-10 00:08:26 -080042};
43
David S. Millerad7ad572007-07-27 22:39:14 -070044static DEFINE_PER_CPU(struct iommu_batch, iommu_batch);
David S. Millerd3ae4b52008-09-09 23:54:02 -070045static int iommu_batch_initialized;
David S. Miller6a32fd42006-02-19 22:21:32 -080046
47/* Interrupts must be disabled. */
David S. Millerad7ad572007-07-27 22:39:14 -070048static inline void iommu_batch_start(struct device *dev, unsigned long prot, unsigned long entry)
David S. Miller6a32fd42006-02-19 22:21:32 -080049{
David S. Millerad7ad572007-07-27 22:39:14 -070050 struct iommu_batch *p = &__get_cpu_var(iommu_batch);
David S. Miller6a32fd42006-02-19 22:21:32 -080051
David S. Millerad7ad572007-07-27 22:39:14 -070052 p->dev = dev;
David S. Miller6a32fd42006-02-19 22:21:32 -080053 p->prot = prot;
54 p->entry = entry;
55 p->npages = 0;
56}
57
58/* Interrupts must be disabled. */
David S. Millerad7ad572007-07-27 22:39:14 -070059static long iommu_batch_flush(struct iommu_batch *p)
David S. Miller6a32fd42006-02-19 22:21:32 -080060{
David S. Millerad7ad572007-07-27 22:39:14 -070061 struct pci_pbm_info *pbm = p->dev->archdata.host_controller;
David S. Millera2fb23a2007-02-28 23:35:04 -080062 unsigned long devhandle = pbm->devhandle;
David S. Miller6a32fd42006-02-19 22:21:32 -080063 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. Millerd82965c2006-02-20 01:42:51 -080068 while (npages != 0) {
David S. Miller6a32fd42006-02-19 22:21:32 -080069 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. Millerad7ad572007-07-27 22:39:14 -070075 printk("iommu_batch_flush: IOMMU map of "
Sam Ravnborg90181132009-01-06 13:19:28 -080076 "[%08lx:%08llx:%lx:%lx:%lx] failed with "
David S. Miller6a32fd42006-02-19 22:21:32 -080077 "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. Millerd82965c2006-02-20 01:42:51 -080086 }
David S. Miller6a32fd42006-02-19 22:21:32 -080087
88 p->entry = entry;
89 p->npages = 0;
90
91 return 0;
92}
93
David S. Miller13fa14e2008-02-09 03:11:01 -080094static 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. Miller6a32fd42006-02-19 22:21:32 -0800105/* Interrupts must be disabled. */
David S. Millerad7ad572007-07-27 22:39:14 -0700106static inline long iommu_batch_add(u64 phys_page)
David S. Miller6a32fd42006-02-19 22:21:32 -0800107{
David S. Millerad7ad572007-07-27 22:39:14 -0700108 struct iommu_batch *p = &__get_cpu_var(iommu_batch);
David S. Miller6a32fd42006-02-19 22:21:32 -0800109
110 BUG_ON(p->npages >= PGLIST_NENTS);
111
112 p->pglist[p->npages++] = phys_page;
113 if (p->npages == PGLIST_NENTS)
David S. Millerad7ad572007-07-27 22:39:14 -0700114 return iommu_batch_flush(p);
David S. Miller6a32fd42006-02-19 22:21:32 -0800115
116 return 0;
117}
118
119/* Interrupts must be disabled. */
David S. Millerad7ad572007-07-27 22:39:14 -0700120static inline long iommu_batch_end(void)
David S. Miller6a32fd42006-02-19 22:21:32 -0800121{
David S. Millerad7ad572007-07-27 22:39:14 -0700122 struct iommu_batch *p = &__get_cpu_var(iommu_batch);
David S. Miller6a32fd42006-02-19 22:21:32 -0800123
124 BUG_ON(p->npages >= PGLIST_NENTS);
125
David S. Millerad7ad572007-07-27 22:39:14 -0700126 return iommu_batch_flush(p);
David S. Miller6a32fd42006-02-19 22:21:32 -0800127}
David S. Miller18397942006-02-10 00:08:26 -0800128
David S. Millerad7ad572007-07-27 22:39:14 -0700129static void *dma_4v_alloc_coherent(struct device *dev, size_t size,
130 dma_addr_t *dma_addrp, gfp_t gfp)
David S. Miller8f6a93a2006-02-09 21:32:07 -0800131{
David S. Miller7c8f4862006-02-13 21:50:27 -0800132 unsigned long flags, order, first_page, npages, n;
David S. Millerc1b1a5f12008-03-19 04:52:48 -0700133 struct iommu *iommu;
134 struct page *page;
David S. Miller18397942006-02-10 00:08:26 -0800135 void *ret;
136 long entry;
David S. Millerc1b1a5f12008-03-19 04:52:48 -0700137 int nid;
David S. Miller18397942006-02-10 00:08:26 -0800138
139 size = IO_PAGE_ALIGN(size);
140 order = get_order(size);
David S. Miller6a32fd42006-02-19 22:21:32 -0800141 if (unlikely(order >= MAX_ORDER))
David S. Miller18397942006-02-10 00:08:26 -0800142 return NULL;
143
144 npages = size >> IO_PAGE_SHIFT;
David S. Miller18397942006-02-10 00:08:26 -0800145
David S. Millerc1b1a5f12008-03-19 04:52:48 -0700146 nid = dev->archdata.numa_node;
147 page = alloc_pages_node(nid, gfp, order);
148 if (unlikely(!page))
David S. Miller18397942006-02-10 00:08:26 -0800149 return NULL;
David S. Millere7a04532006-02-15 22:25:27 -0800150
David S. Millerc1b1a5f12008-03-19 04:52:48 -0700151 first_page = (unsigned long) page_address(page);
David S. Miller18397942006-02-10 00:08:26 -0800152 memset((char *)first_page, 0, PAGE_SIZE << order);
153
David S. Millerad7ad572007-07-27 22:39:14 -0700154 iommu = dev->archdata.iommu;
David S. Miller18397942006-02-10 00:08:26 -0800155
156 spin_lock_irqsave(&iommu->lock, flags);
David S. Millerd2841422008-02-08 18:05:46 -0800157 entry = iommu_range_alloc(dev, iommu, npages, NULL);
David S. Miller18397942006-02-10 00:08:26 -0800158 spin_unlock_irqrestore(&iommu->lock, flags);
159
David S. Millerd2841422008-02-08 18:05:46 -0800160 if (unlikely(entry == DMA_ERROR_CODE))
161 goto range_alloc_fail;
David S. Miller18397942006-02-10 00:08:26 -0800162
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. Miller6a32fd42006-02-19 22:21:32 -0800168 local_irq_save(flags);
David S. Miller18397942006-02-10 00:08:26 -0800169
David S. Millerad7ad572007-07-27 22:39:14 -0700170 iommu_batch_start(dev,
171 (HV_PCI_MAP_ATTR_READ |
172 HV_PCI_MAP_ATTR_WRITE),
173 entry);
David S. Miller18397942006-02-10 00:08:26 -0800174
David S. Miller6a32fd42006-02-19 22:21:32 -0800175 for (n = 0; n < npages; n++) {
David S. Millerad7ad572007-07-27 22:39:14 -0700176 long err = iommu_batch_add(first_page + (n * PAGE_SIZE));
David S. Miller6a32fd42006-02-19 22:21:32 -0800177 if (unlikely(err < 0L))
178 goto iommu_map_fail;
179 }
David S. Miller18397942006-02-10 00:08:26 -0800180
David S. Millerad7ad572007-07-27 22:39:14 -0700181 if (unlikely(iommu_batch_end() < 0L))
David S. Miller6a32fd42006-02-19 22:21:32 -0800182 goto iommu_map_fail;
David S. Miller18397942006-02-10 00:08:26 -0800183
David S. Miller6a32fd42006-02-19 22:21:32 -0800184 local_irq_restore(flags);
David S. Miller18397942006-02-10 00:08:26 -0800185
186 return ret;
David S. Miller6a32fd42006-02-19 22:21:32 -0800187
188iommu_map_fail:
189 /* Interrupts are disabled. */
190 spin_lock(&iommu->lock);
David S. Millerd2841422008-02-08 18:05:46 -0800191 iommu_range_free(iommu, *dma_addrp, npages);
David S. Miller6a32fd42006-02-19 22:21:32 -0800192 spin_unlock_irqrestore(&iommu->lock, flags);
193
David S. Millerd2841422008-02-08 18:05:46 -0800194range_alloc_fail:
David S. Miller6a32fd42006-02-19 22:21:32 -0800195 free_pages(first_page, order);
196 return NULL;
David S. Miller8f6a93a2006-02-09 21:32:07 -0800197}
198
David S. Millerad7ad572007-07-27 22:39:14 -0700199static void dma_4v_free_coherent(struct device *dev, size_t size, void *cpu,
200 dma_addr_t dvma)
David S. Miller8f6a93a2006-02-09 21:32:07 -0800201{
David S. Millera2fb23a2007-02-28 23:35:04 -0800202 struct pci_pbm_info *pbm;
David S. Miller16ce82d2007-04-26 21:08:21 -0700203 struct iommu *iommu;
David S. Miller7c8f4862006-02-13 21:50:27 -0800204 unsigned long flags, order, npages, entry;
205 u32 devhandle;
David S. Miller18397942006-02-10 00:08:26 -0800206
207 npages = IO_PAGE_ALIGN(size) >> IO_PAGE_SHIFT;
David S. Millerad7ad572007-07-27 22:39:14 -0700208 iommu = dev->archdata.iommu;
209 pbm = dev->archdata.host_controller;
David S. Millera2fb23a2007-02-28 23:35:04 -0800210 devhandle = pbm->devhandle;
David S. Miller18397942006-02-10 00:08:26 -0800211 entry = ((dvma - iommu->page_table_map_base) >> IO_PAGE_SHIFT);
212
213 spin_lock_irqsave(&iommu->lock, flags);
214
David S. Millerd2841422008-02-08 18:05:46 -0800215 iommu_range_free(iommu, dvma, npages);
David S. Miller18397942006-02-10 00:08:26 -0800216
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. Miller8f6a93a2006-02-09 21:32:07 -0800231}
232
FUJITA Tomonori797a7562009-05-14 16:23:10 +0000233static dma_addr_t dma_4v_map_page(struct device *dev, struct page *page,
234 unsigned long offset, size_t sz,
FUJITA Tomonoribc0a14f2009-08-10 11:53:12 +0900235 enum dma_data_direction direction,
236 struct dma_attrs *attrs)
David S. Miller8f6a93a2006-02-09 21:32:07 -0800237{
David S. Miller16ce82d2007-04-26 21:08:21 -0700238 struct iommu *iommu;
David S. Miller18397942006-02-10 00:08:26 -0800239 unsigned long flags, npages, oaddr;
David S. Miller7c8f4862006-02-13 21:50:27 -0800240 unsigned long i, base_paddr;
David S. Miller6a32fd42006-02-19 22:21:32 -0800241 u32 bus_addr, ret;
David S. Miller18397942006-02-10 00:08:26 -0800242 unsigned long prot;
243 long entry;
David S. Miller18397942006-02-10 00:08:26 -0800244
David S. Millerad7ad572007-07-27 22:39:14 -0700245 iommu = dev->archdata.iommu;
David S. Miller18397942006-02-10 00:08:26 -0800246
David S. Millerad7ad572007-07-27 22:39:14 -0700247 if (unlikely(direction == DMA_NONE))
David S. Miller18397942006-02-10 00:08:26 -0800248 goto bad;
249
FUJITA Tomonori797a7562009-05-14 16:23:10 +0000250 oaddr = (unsigned long)(page_address(page) + offset);
David S. Miller18397942006-02-10 00:08:26 -0800251 npages = IO_PAGE_ALIGN(oaddr + sz) - (oaddr & IO_PAGE_MASK);
252 npages >>= IO_PAGE_SHIFT;
David S. Miller18397942006-02-10 00:08:26 -0800253
254 spin_lock_irqsave(&iommu->lock, flags);
David S. Millerd2841422008-02-08 18:05:46 -0800255 entry = iommu_range_alloc(dev, iommu, npages, NULL);
David S. Miller18397942006-02-10 00:08:26 -0800256 spin_unlock_irqrestore(&iommu->lock, flags);
257
David S. Millerd2841422008-02-08 18:05:46 -0800258 if (unlikely(entry == DMA_ERROR_CODE))
David S. Miller18397942006-02-10 00:08:26 -0800259 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. Millerad7ad572007-07-27 22:39:14 -0700266 if (direction != DMA_TO_DEVICE)
David S. Miller18397942006-02-10 00:08:26 -0800267 prot |= HV_PCI_MAP_ATTR_WRITE;
268
David S. Miller6a32fd42006-02-19 22:21:32 -0800269 local_irq_save(flags);
David S. Miller18397942006-02-10 00:08:26 -0800270
David S. Millerad7ad572007-07-27 22:39:14 -0700271 iommu_batch_start(dev, prot, entry);
David S. Miller18397942006-02-10 00:08:26 -0800272
David S. Miller6a32fd42006-02-19 22:21:32 -0800273 for (i = 0; i < npages; i++, base_paddr += IO_PAGE_SIZE) {
David S. Millerad7ad572007-07-27 22:39:14 -0700274 long err = iommu_batch_add(base_paddr);
David S. Miller6a32fd42006-02-19 22:21:32 -0800275 if (unlikely(err < 0L))
276 goto iommu_map_fail;
277 }
David S. Millerad7ad572007-07-27 22:39:14 -0700278 if (unlikely(iommu_batch_end() < 0L))
David S. Miller6a32fd42006-02-19 22:21:32 -0800279 goto iommu_map_fail;
David S. Miller18397942006-02-10 00:08:26 -0800280
David S. Miller6a32fd42006-02-19 22:21:32 -0800281 local_irq_restore(flags);
David S. Miller18397942006-02-10 00:08:26 -0800282
283 return ret;
284
285bad:
286 if (printk_ratelimit())
287 WARN_ON(1);
David S. Millerad7ad572007-07-27 22:39:14 -0700288 return DMA_ERROR_CODE;
David S. Miller6a32fd42006-02-19 22:21:32 -0800289
290iommu_map_fail:
291 /* Interrupts are disabled. */
292 spin_lock(&iommu->lock);
David S. Millerd2841422008-02-08 18:05:46 -0800293 iommu_range_free(iommu, bus_addr, npages);
David S. Miller6a32fd42006-02-19 22:21:32 -0800294 spin_unlock_irqrestore(&iommu->lock, flags);
295
David S. Millerad7ad572007-07-27 22:39:14 -0700296 return DMA_ERROR_CODE;
David S. Miller8f6a93a2006-02-09 21:32:07 -0800297}
298
FUJITA Tomonori797a7562009-05-14 16:23:10 +0000299static void dma_4v_unmap_page(struct device *dev, dma_addr_t bus_addr,
FUJITA Tomonoribc0a14f2009-08-10 11:53:12 +0900300 size_t sz, enum dma_data_direction direction,
301 struct dma_attrs *attrs)
David S. Miller8f6a93a2006-02-09 21:32:07 -0800302{
David S. Millera2fb23a2007-02-28 23:35:04 -0800303 struct pci_pbm_info *pbm;
David S. Miller16ce82d2007-04-26 21:08:21 -0700304 struct iommu *iommu;
David S. Miller7c8f4862006-02-13 21:50:27 -0800305 unsigned long flags, npages;
David S. Miller18397942006-02-10 00:08:26 -0800306 long entry;
David S. Miller7c8f4862006-02-13 21:50:27 -0800307 u32 devhandle;
David S. Miller18397942006-02-10 00:08:26 -0800308
David S. Millerad7ad572007-07-27 22:39:14 -0700309 if (unlikely(direction == DMA_NONE)) {
David S. Miller18397942006-02-10 00:08:26 -0800310 if (printk_ratelimit())
311 WARN_ON(1);
312 return;
313 }
314
David S. Millerad7ad572007-07-27 22:39:14 -0700315 iommu = dev->archdata.iommu;
316 pbm = dev->archdata.host_controller;
David S. Millera2fb23a2007-02-28 23:35:04 -0800317 devhandle = pbm->devhandle;
David S. Miller18397942006-02-10 00:08:26 -0800318
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. Millerd2841422008-02-08 18:05:46 -0800325 iommu_range_free(iommu, bus_addr, npages);
David S. Miller18397942006-02-10 00:08:26 -0800326
David S. Millerd2841422008-02-08 18:05:46 -0800327 entry = (bus_addr - iommu->page_table_map_base) >> IO_PAGE_SHIFT;
David S. Miller18397942006-02-10 00:08:26 -0800328 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. Millerad7ad572007-07-27 22:39:14 -0700340static int dma_4v_map_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonoribc0a14f2009-08-10 11:53:12 +0900341 int nelems, enum dma_data_direction direction,
342 struct dma_attrs *attrs)
David S. Miller8f6a93a2006-02-09 21:32:07 -0800343{
David S. Miller13fa14e2008-02-09 03:11:01 -0800344 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 Tomonorif0880252008-03-28 15:55:41 -0700348 unsigned long seg_boundary_size;
David S. Miller13fa14e2008-02-09 03:11:01 -0800349 int outcount, incount, i;
David S. Miller16ce82d2007-04-26 21:08:21 -0700350 struct iommu *iommu;
FUJITA Tomonorif0880252008-03-28 15:55:41 -0700351 unsigned long base_shift;
David S. Miller13fa14e2008-02-09 03:11:01 -0800352 long err;
David S. Miller18397942006-02-10 00:08:26 -0800353
David S. Miller13fa14e2008-02-09 03:11:01 -0800354 BUG_ON(direction == DMA_NONE);
David S. Miller18397942006-02-10 00:08:26 -0800355
David S. Millerad7ad572007-07-27 22:39:14 -0700356 iommu = dev->archdata.iommu;
David S. Miller13fa14e2008-02-09 03:11:01 -0800357 if (nelems == 0 || !iommu)
358 return 0;
David S. Miller18397942006-02-10 00:08:26 -0800359
David S. Miller18397942006-02-10 00:08:26 -0800360 prot = HV_PCI_MAP_ATTR_READ;
David S. Millerad7ad572007-07-27 22:39:14 -0700361 if (direction != DMA_TO_DEVICE)
David S. Miller18397942006-02-10 00:08:26 -0800362 prot |= HV_PCI_MAP_ATTR_WRITE;
363
David S. Miller13fa14e2008-02-09 03:11:01 -0800364 outs = s = segstart = &sglist[0];
365 outcount = 1;
366 incount = nelems;
367 handle = 0;
David S. Miller38192d52008-02-06 03:50:26 -0800368
David S. Miller13fa14e2008-02-09 03:11:01 -0800369 /* Init first segment length for backout at failure */
370 outs->dma_length = 0;
David S. Miller38192d52008-02-06 03:50:26 -0800371
David S. Miller13fa14e2008-02-09 03:11:01 -0800372 spin_lock_irqsave(&iommu->lock, flags);
David S. Miller38192d52008-02-06 03:50:26 -0800373
David S. Miller13fa14e2008-02-09 03:11:01 -0800374 iommu_batch_start(dev, prot, ~0UL);
David S. Miller38192d52008-02-06 03:50:26 -0800375
David S. Miller13fa14e2008-02-09 03:11:01 -0800376 max_seg_size = dma_get_max_seg_size(dev);
FUJITA Tomonorif0880252008-03-28 15:55:41 -0700377 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. Miller13fa14e2008-02-09 03:11:01 -0800380 for_each_sg(sglist, s, nelems, i) {
FUJITA Tomonorif0880252008-03-28 15:55:41 -0700381 unsigned long paddr, npages, entry, out_entry = 0, slen;
David S. Miller38192d52008-02-06 03:50:26 -0800382
David S. Miller13fa14e2008-02-09 03:11:01 -0800383 slen = s->length;
384 /* Sanity check */
385 if (slen == 0) {
386 dma_next = 0;
387 continue;
David S. Miller38192d52008-02-06 03:50:26 -0800388 }
David S. Miller13fa14e2008-02-09 03:11:01 -0800389 /* Allocate iommu entries for that segment */
390 paddr = (unsigned long) SG_ENT_PHYS_ADDRESS(s);
Joerg Roedel0fcff282008-10-15 22:02:14 -0700391 npages = iommu_num_pages(paddr, slen, IO_PAGE_SIZE);
David S. Miller13fa14e2008-02-09 03:11:01 -0800392 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 Tomonorif0880252008-03-28 15:55:41 -0700424 (outs->dma_length + s->length > max_seg_size) ||
425 (is_span_boundary(out_entry, base_shift,
426 seg_boundary_size, outs, s))) {
David S. Miller13fa14e2008-02-09 03:11:01 -0800427 /* 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 Tomonorif0880252008-03-28 15:55:41 -0700440 out_entry = entry;
David S. Miller13fa14e2008-02-09 03:11:01 -0800441 }
442
443 /* Calculate next page pointer for contiguous check */
444 dma_next = dma_addr + slen;
David S. Miller38192d52008-02-06 03:50:26 -0800445 }
446
447 err = iommu_batch_end();
448
David S. Miller6a32fd42006-02-19 22:21:32 -0800449 if (unlikely(err < 0L))
450 goto iommu_map_failed;
David S. Miller18397942006-02-10 00:08:26 -0800451
David S. Miller13fa14e2008-02-09 03:11:01 -0800452 spin_unlock_irqrestore(&iommu->lock, flags);
David S. Miller18397942006-02-10 00:08:26 -0800453
David S. Miller13fa14e2008-02-09 03:11:01 -0800454 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. Miller6a32fd42006-02-19 22:21:32 -0800461
462iommu_map_failed:
David S. Miller13fa14e2008-02-09 03:11:01 -0800463 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 Roedel0fcff282008-10-15 22:02:14 -0700468 npages = iommu_num_pages(s->dma_address, s->dma_length,
469 IO_PAGE_SIZE);
David S. Miller13fa14e2008-02-09 03:11:01 -0800470 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. Miller6a32fd42006-02-19 22:21:32 -0800478 spin_unlock_irqrestore(&iommu->lock, flags);
479
480 return 0;
David S. Miller8f6a93a2006-02-09 21:32:07 -0800481}
482
David S. Millerad7ad572007-07-27 22:39:14 -0700483static void dma_4v_unmap_sg(struct device *dev, struct scatterlist *sglist,
FUJITA Tomonoribc0a14f2009-08-10 11:53:12 +0900484 int nelems, enum dma_data_direction direction,
485 struct dma_attrs *attrs)
David S. Miller8f6a93a2006-02-09 21:32:07 -0800486{
David S. Millera2fb23a2007-02-28 23:35:04 -0800487 struct pci_pbm_info *pbm;
David S. Miller13fa14e2008-02-09 03:11:01 -0800488 struct scatterlist *sg;
David S. Miller38192d52008-02-06 03:50:26 -0800489 struct iommu *iommu;
David S. Miller13fa14e2008-02-09 03:11:01 -0800490 unsigned long flags;
491 u32 devhandle;
David S. Miller18397942006-02-10 00:08:26 -0800492
David S. Miller13fa14e2008-02-09 03:11:01 -0800493 BUG_ON(direction == DMA_NONE);
David S. Miller18397942006-02-10 00:08:26 -0800494
David S. Millerad7ad572007-07-27 22:39:14 -0700495 iommu = dev->archdata.iommu;
496 pbm = dev->archdata.host_controller;
David S. Millera2fb23a2007-02-28 23:35:04 -0800497 devhandle = pbm->devhandle;
David S. Miller18397942006-02-10 00:08:26 -0800498
David S. Miller18397942006-02-10 00:08:26 -0800499 spin_lock_irqsave(&iommu->lock, flags);
500
David S. Miller13fa14e2008-02-09 03:11:01 -0800501 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. Miller18397942006-02-10 00:08:26 -0800506
David S. Miller13fa14e2008-02-09 03:11:01 -0800507 if (!len)
508 break;
Joerg Roedel0fcff282008-10-15 22:02:14 -0700509 npages = iommu_num_pages(dma_handle, len, IO_PAGE_SIZE);
David S. Miller13fa14e2008-02-09 03:11:01 -0800510 iommu_range_free(iommu, dma_handle, npages);
David S. Miller18397942006-02-10 00:08:26 -0800511
David S. Miller13fa14e2008-02-09 03:11:01 -0800512 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. Miller18397942006-02-10 00:08:26 -0800524
525 spin_unlock_irqrestore(&iommu->lock, flags);
David S. Miller8f6a93a2006-02-09 21:32:07 -0800526}
527
David S. Millerad7ad572007-07-27 22:39:14 -0700528static void dma_4v_sync_single_for_cpu(struct device *dev,
529 dma_addr_t bus_addr, size_t sz,
530 enum dma_data_direction direction)
David S. Miller8f6a93a2006-02-09 21:32:07 -0800531{
David S. Miller18397942006-02-10 00:08:26 -0800532 /* Nothing to do... */
David S. Miller8f6a93a2006-02-09 21:32:07 -0800533}
534
David S. Millerad7ad572007-07-27 22:39:14 -0700535static void dma_4v_sync_sg_for_cpu(struct device *dev,
536 struct scatterlist *sglist, int nelems,
537 enum dma_data_direction direction)
David S. Miller8f6a93a2006-02-09 21:32:07 -0800538{
David S. Miller18397942006-02-10 00:08:26 -0800539 /* Nothing to do... */
David S. Miller8f6a93a2006-02-09 21:32:07 -0800540}
541
FUJITA Tomonori02f7a182009-08-10 11:53:13 +0900542static struct dma_map_ops sun4v_dma_ops = {
David S. Millerad7ad572007-07-27 22:39:14 -0700543 .alloc_coherent = dma_4v_alloc_coherent,
544 .free_coherent = dma_4v_free_coherent,
FUJITA Tomonori797a7562009-05-14 16:23:10 +0000545 .map_page = dma_4v_map_page,
546 .unmap_page = dma_4v_unmap_page,
David S. Millerad7ad572007-07-27 22:39:14 -0700547 .map_sg = dma_4v_map_sg,
548 .unmap_sg = dma_4v_unmap_sg,
549 .sync_single_for_cpu = dma_4v_sync_single_for_cpu,
550 .sync_sg_for_cpu = dma_4v_sync_sg_for_cpu,
David S. Miller8f6a93a2006-02-09 21:32:07 -0800551};
552
David S. Miller9a2ed5c2009-04-07 01:03:58 -0700553static void __devinit pci_sun4v_scan_bus(struct pci_pbm_info *pbm,
554 struct device *parent)
David S. Millerbade5622006-02-09 22:05:54 -0800555{
David S. Millere87dc352006-06-21 18:18:47 -0700556 struct property *prop;
557 struct device_node *dp;
558
David S. Miller22fecba2008-09-10 00:19:28 -0700559 dp = pbm->op->node;
David S. Miller34768bc2007-05-07 23:06:27 -0700560 prop = of_find_property(dp, "66mhz-capable", NULL);
561 pbm->is_66mhz_capable = (prop != NULL);
David S. Millere822358a2008-09-01 18:32:22 -0700562 pbm->pci_bus = pci_scan_one_pbm(pbm, parent);
David S. Millerc2609262006-02-12 22:18:52 -0800563
564 /* XXX register error interrupt handlers XXX */
David S. Millerbade5622006-02-09 22:05:54 -0800565}
566
David S. Miller9a2ed5c2009-04-07 01:03:58 -0700567static unsigned long __devinit probe_existing_entries(struct pci_pbm_info *pbm,
568 struct iommu *iommu)
David S. Miller18397942006-02-10 00:08:26 -0800569{
David S. Miller9b3627f2007-04-24 23:51:18 -0700570 struct iommu_arena *arena = &iommu->arena;
David S. Millere7a04532006-02-15 22:25:27 -0800571 unsigned long i, cnt = 0;
David S. Miller7c8f4862006-02-13 21:50:27 -0800572 u32 devhandle;
David S. Miller18397942006-02-10 00:08:26 -0800573
574 devhandle = pbm->devhandle;
575 for (i = 0; i < arena->limit; i++) {
576 unsigned long ret, io_attrs, ra;
577
578 ret = pci_sun4v_iommu_getmap(devhandle,
579 HV_PCI_TSBID(0, i),
580 &io_attrs, &ra);
David S. Millere7a04532006-02-15 22:25:27 -0800581 if (ret == HV_EOK) {
David S. Millerc2a5a462006-06-22 00:01:56 -0700582 if (page_in_phys_avail(ra)) {
583 pci_sun4v_iommu_demap(devhandle,
584 HV_PCI_TSBID(0, i), 1);
585 } else {
586 cnt++;
587 __set_bit(i, arena->map);
588 }
David S. Millere7a04532006-02-15 22:25:27 -0800589 }
David S. Miller18397942006-02-10 00:08:26 -0800590 }
David S. Millere7a04532006-02-15 22:25:27 -0800591
592 return cnt;
David S. Miller18397942006-02-10 00:08:26 -0800593}
594
David S. Miller9a2ed5c2009-04-07 01:03:58 -0700595static int __devinit pci_sun4v_iommu_init(struct pci_pbm_info *pbm)
David S. Millerbade5622006-02-09 22:05:54 -0800596{
David S. Miller8aef7272008-09-01 20:23:18 -0700597 static const u32 vdma_default[] = { 0x80000000, 0x80000000 };
David S. Miller16ce82d2007-04-26 21:08:21 -0700598 struct iommu *iommu = pbm->iommu;
David S. Miller59db8102007-05-23 18:00:46 -0700599 unsigned long num_tsb_entries, sz, tsbsize;
David S. Miller8aef7272008-09-01 20:23:18 -0700600 u32 dma_mask, dma_offset;
601 const u32 *vdma;
David S. Miller18397942006-02-10 00:08:26 -0800602
David S. Miller22fecba2008-09-10 00:19:28 -0700603 vdma = of_get_property(pbm->op->node, "virtual-dma", NULL);
David S. Miller8aef7272008-09-01 20:23:18 -0700604 if (!vdma)
605 vdma = vdma_default;
David S. Miller18397942006-02-10 00:08:26 -0800606
David S. Miller59db8102007-05-23 18:00:46 -0700607 if ((vdma[0] | vdma[1]) & ~IO_PAGE_MASK) {
David S. Miller3822b502008-08-30 02:50:29 -0700608 printk(KERN_ERR PFX "Strange virtual-dma[%08x:%08x].\n",
609 vdma[0], vdma[1]);
610 return -EINVAL;
David S. Miller18397942006-02-10 00:08:26 -0800611 };
612
David S. Miller59db8102007-05-23 18:00:46 -0700613 dma_mask = (roundup_pow_of_two(vdma[1]) - 1UL);
614 num_tsb_entries = vdma[1] / IO_PAGE_SIZE;
615 tsbsize = num_tsb_entries * sizeof(iopte_t);
David S. Miller18397942006-02-10 00:08:26 -0800616
617 dma_offset = vdma[0];
618
619 /* Setup initial software IOMMU state. */
620 spin_lock_init(&iommu->lock);
621 iommu->ctx_lowest_free = 1;
622 iommu->page_table_map_base = dma_offset;
623 iommu->dma_addr_mask = dma_mask;
624
625 /* Allocate and initialize the free area map. */
David S. Miller59db8102007-05-23 18:00:46 -0700626 sz = (num_tsb_entries + 7) / 8;
David S. Miller18397942006-02-10 00:08:26 -0800627 sz = (sz + 7UL) & ~7UL;
Yan Burman982c2062006-11-30 17:13:09 -0800628 iommu->arena.map = kzalloc(sz, GFP_KERNEL);
David S. Miller18397942006-02-10 00:08:26 -0800629 if (!iommu->arena.map) {
David S. Miller3822b502008-08-30 02:50:29 -0700630 printk(KERN_ERR PFX "Error, kmalloc(arena.map) failed.\n");
631 return -ENOMEM;
David S. Miller18397942006-02-10 00:08:26 -0800632 }
David S. Miller18397942006-02-10 00:08:26 -0800633 iommu->arena.limit = num_tsb_entries;
634
David S. Millere7a04532006-02-15 22:25:27 -0800635 sz = probe_existing_entries(pbm, iommu);
David S. Millerc2a5a462006-06-22 00:01:56 -0700636 if (sz)
637 printk("%s: Imported %lu TSB entries from OBP\n",
638 pbm->name, sz);
David S. Miller3822b502008-08-30 02:50:29 -0700639
640 return 0;
David S. Millerbade5622006-02-09 22:05:54 -0800641}
642
David S. Miller35a17eb2007-02-10 17:41:02 -0800643#ifdef CONFIG_PCI_MSI
644struct pci_sun4v_msiq_entry {
645 u64 version_type;
646#define MSIQ_VERSION_MASK 0xffffffff00000000UL
647#define MSIQ_VERSION_SHIFT 32
648#define MSIQ_TYPE_MASK 0x00000000000000ffUL
649#define MSIQ_TYPE_SHIFT 0
650#define MSIQ_TYPE_NONE 0x00
651#define MSIQ_TYPE_MSG 0x01
652#define MSIQ_TYPE_MSI32 0x02
653#define MSIQ_TYPE_MSI64 0x03
654#define MSIQ_TYPE_INTX 0x08
655#define MSIQ_TYPE_NONE2 0xff
656
657 u64 intx_sysino;
658 u64 reserved1;
659 u64 stick;
660 u64 req_id; /* bus/device/func */
661#define MSIQ_REQID_BUS_MASK 0xff00UL
662#define MSIQ_REQID_BUS_SHIFT 8
663#define MSIQ_REQID_DEVICE_MASK 0x00f8UL
664#define MSIQ_REQID_DEVICE_SHIFT 3
665#define MSIQ_REQID_FUNC_MASK 0x0007UL
666#define MSIQ_REQID_FUNC_SHIFT 0
667
668 u64 msi_address;
669
Simon Arlotte5dd42e2007-05-11 13:52:08 -0700670 /* The format of this value is message type dependent.
David S. Miller35a17eb2007-02-10 17:41:02 -0800671 * For MSI bits 15:0 are the data from the MSI packet.
672 * For MSI-X bits 31:0 are the data from the MSI packet.
673 * For MSG, the message code and message routing code where:
674 * bits 39:32 is the bus/device/fn of the msg target-id
675 * bits 18:16 is the message routing code
676 * bits 7:0 is the message code
677 * For INTx the low order 2-bits are:
678 * 00 - INTA
679 * 01 - INTB
680 * 10 - INTC
681 * 11 - INTD
682 */
683 u64 msi_data;
684
685 u64 reserved2;
686};
687
David S. Miller759f89e2007-10-11 03:16:13 -0700688static int pci_sun4v_get_head(struct pci_pbm_info *pbm, unsigned long msiqid,
689 unsigned long *head)
David S. Miller35a17eb2007-02-10 17:41:02 -0800690{
David S. Miller759f89e2007-10-11 03:16:13 -0700691 unsigned long err, limit;
David S. Miller35a17eb2007-02-10 17:41:02 -0800692
David S. Miller759f89e2007-10-11 03:16:13 -0700693 err = pci_sun4v_msiq_gethead(pbm->devhandle, msiqid, head);
David S. Miller35a17eb2007-02-10 17:41:02 -0800694 if (unlikely(err))
David S. Miller759f89e2007-10-11 03:16:13 -0700695 return -ENXIO;
David S. Miller35a17eb2007-02-10 17:41:02 -0800696
David S. Miller759f89e2007-10-11 03:16:13 -0700697 limit = pbm->msiq_ent_count * sizeof(struct pci_sun4v_msiq_entry);
698 if (unlikely(*head >= limit))
699 return -EFBIG;
David S. Miller35a17eb2007-02-10 17:41:02 -0800700
701 return 0;
702}
703
David S. Miller759f89e2007-10-11 03:16:13 -0700704static int pci_sun4v_dequeue_msi(struct pci_pbm_info *pbm,
705 unsigned long msiqid, unsigned long *head,
706 unsigned long *msi)
David S. Miller35a17eb2007-02-10 17:41:02 -0800707{
David S. Miller759f89e2007-10-11 03:16:13 -0700708 struct pci_sun4v_msiq_entry *ep;
709 unsigned long err, type;
710
711 /* Note: void pointer arithmetic, 'head' is a byte offset */
712 ep = (pbm->msi_queues + ((msiqid - pbm->msiq_first) *
713 (pbm->msiq_ent_count *
714 sizeof(struct pci_sun4v_msiq_entry))) +
715 *head);
716
717 if ((ep->version_type & MSIQ_TYPE_MASK) == 0)
718 return 0;
719
720 type = (ep->version_type & MSIQ_TYPE_MASK) >> MSIQ_TYPE_SHIFT;
721 if (unlikely(type != MSIQ_TYPE_MSI32 &&
722 type != MSIQ_TYPE_MSI64))
723 return -EINVAL;
724
725 *msi = ep->msi_data;
726
727 err = pci_sun4v_msi_setstate(pbm->devhandle,
728 ep->msi_data /* msi_num */,
729 HV_MSISTATE_IDLE);
730 if (unlikely(err))
731 return -ENXIO;
732
733 /* Clear the entry. */
734 ep->version_type &= ~MSIQ_TYPE_MASK;
735
736 (*head) += sizeof(struct pci_sun4v_msiq_entry);
737 if (*head >=
738 (pbm->msiq_ent_count * sizeof(struct pci_sun4v_msiq_entry)))
739 *head = 0;
740
741 return 1;
David S. Miller35a17eb2007-02-10 17:41:02 -0800742}
743
David S. Miller759f89e2007-10-11 03:16:13 -0700744static int pci_sun4v_set_head(struct pci_pbm_info *pbm, unsigned long msiqid,
745 unsigned long head)
746{
747 unsigned long err;
748
749 err = pci_sun4v_msiq_sethead(pbm->devhandle, msiqid, head);
750 if (unlikely(err))
751 return -EINVAL;
752
753 return 0;
754}
755
756static int pci_sun4v_msi_setup(struct pci_pbm_info *pbm, unsigned long msiqid,
757 unsigned long msi, int is_msi64)
758{
759 if (pci_sun4v_msi_setmsiq(pbm->devhandle, msi, msiqid,
760 (is_msi64 ?
761 HV_MSITYPE_MSI64 : HV_MSITYPE_MSI32)))
762 return -ENXIO;
763 if (pci_sun4v_msi_setstate(pbm->devhandle, msi, HV_MSISTATE_IDLE))
764 return -ENXIO;
765 if (pci_sun4v_msi_setvalid(pbm->devhandle, msi, HV_MSIVALID_VALID))
766 return -ENXIO;
767 return 0;
768}
769
770static int pci_sun4v_msi_teardown(struct pci_pbm_info *pbm, unsigned long msi)
771{
772 unsigned long err, msiqid;
773
774 err = pci_sun4v_msi_getmsiq(pbm->devhandle, msi, &msiqid);
775 if (err)
776 return -ENXIO;
777
778 pci_sun4v_msi_setvalid(pbm->devhandle, msi, HV_MSIVALID_INVALID);
779
780 return 0;
781}
782
783static int pci_sun4v_msiq_alloc(struct pci_pbm_info *pbm)
David S. Miller35a17eb2007-02-10 17:41:02 -0800784{
785 unsigned long q_size, alloc_size, pages, order;
786 int i;
787
788 q_size = pbm->msiq_ent_count * sizeof(struct pci_sun4v_msiq_entry);
789 alloc_size = (pbm->msiq_num * q_size);
790 order = get_order(alloc_size);
791 pages = __get_free_pages(GFP_KERNEL | __GFP_COMP, order);
792 if (pages == 0UL) {
793 printk(KERN_ERR "MSI: Cannot allocate MSI queues (o=%lu).\n",
794 order);
795 return -ENOMEM;
796 }
797 memset((char *)pages, 0, PAGE_SIZE << order);
798 pbm->msi_queues = (void *) pages;
799
800 for (i = 0; i < pbm->msiq_num; i++) {
801 unsigned long err, base = __pa(pages + (i * q_size));
802 unsigned long ret1, ret2;
803
804 err = pci_sun4v_msiq_conf(pbm->devhandle,
805 pbm->msiq_first + i,
806 base, pbm->msiq_ent_count);
807 if (err) {
808 printk(KERN_ERR "MSI: msiq register fails (err=%lu)\n",
809 err);
810 goto h_error;
811 }
812
813 err = pci_sun4v_msiq_info(pbm->devhandle,
814 pbm->msiq_first + i,
815 &ret1, &ret2);
816 if (err) {
817 printk(KERN_ERR "MSI: Cannot read msiq (err=%lu)\n",
818 err);
819 goto h_error;
820 }
821 if (ret1 != base || ret2 != pbm->msiq_ent_count) {
822 printk(KERN_ERR "MSI: Bogus qconf "
823 "expected[%lx:%x] got[%lx:%lx]\n",
824 base, pbm->msiq_ent_count,
825 ret1, ret2);
826 goto h_error;
827 }
828 }
829
830 return 0;
831
832h_error:
833 free_pages(pages, order);
834 return -EINVAL;
835}
836
David S. Miller759f89e2007-10-11 03:16:13 -0700837static void pci_sun4v_msiq_free(struct pci_pbm_info *pbm)
David S. Miller35a17eb2007-02-10 17:41:02 -0800838{
David S. Miller759f89e2007-10-11 03:16:13 -0700839 unsigned long q_size, alloc_size, pages, order;
David S. Miller35a17eb2007-02-10 17:41:02 -0800840 int i;
841
David S. Miller759f89e2007-10-11 03:16:13 -0700842 for (i = 0; i < pbm->msiq_num; i++) {
843 unsigned long msiqid = pbm->msiq_first + i;
844
845 (void) pci_sun4v_msiq_conf(pbm->devhandle, msiqid, 0UL, 0);
David S. Miller35a17eb2007-02-10 17:41:02 -0800846 }
847
David S. Miller759f89e2007-10-11 03:16:13 -0700848 q_size = pbm->msiq_ent_count * sizeof(struct pci_sun4v_msiq_entry);
849 alloc_size = (pbm->msiq_num * q_size);
850 order = get_order(alloc_size);
851
852 pages = (unsigned long) pbm->msi_queues;
853
854 free_pages(pages, order);
855
856 pbm->msi_queues = NULL;
David S. Miller35a17eb2007-02-10 17:41:02 -0800857}
858
David S. Miller759f89e2007-10-11 03:16:13 -0700859static int pci_sun4v_msiq_build_irq(struct pci_pbm_info *pbm,
860 unsigned long msiqid,
861 unsigned long devino)
David S. Miller35a17eb2007-02-10 17:41:02 -0800862{
David S. Miller759f89e2007-10-11 03:16:13 -0700863 unsigned int virt_irq = sun4v_build_irq(pbm->devhandle, devino);
David S. Miller35a17eb2007-02-10 17:41:02 -0800864
David S. Miller759f89e2007-10-11 03:16:13 -0700865 if (!virt_irq)
866 return -ENOMEM;
David S. Miller35a17eb2007-02-10 17:41:02 -0800867
David S. Miller35a17eb2007-02-10 17:41:02 -0800868 if (pci_sun4v_msiq_setstate(pbm->devhandle, msiqid, HV_MSIQSTATE_IDLE))
David S. Miller759f89e2007-10-11 03:16:13 -0700869 return -EINVAL;
David S. Miller35a17eb2007-02-10 17:41:02 -0800870 if (pci_sun4v_msiq_setvalid(pbm->devhandle, msiqid, HV_MSIQ_VALID))
David S. Miller759f89e2007-10-11 03:16:13 -0700871 return -EINVAL;
David S. Miller35a17eb2007-02-10 17:41:02 -0800872
David S. Miller759f89e2007-10-11 03:16:13 -0700873 return virt_irq;
David S. Miller35a17eb2007-02-10 17:41:02 -0800874}
875
David S. Miller759f89e2007-10-11 03:16:13 -0700876static const struct sparc64_msiq_ops pci_sun4v_msiq_ops = {
877 .get_head = pci_sun4v_get_head,
878 .dequeue_msi = pci_sun4v_dequeue_msi,
879 .set_head = pci_sun4v_set_head,
880 .msi_setup = pci_sun4v_msi_setup,
881 .msi_teardown = pci_sun4v_msi_teardown,
882 .msiq_alloc = pci_sun4v_msiq_alloc,
883 .msiq_free = pci_sun4v_msiq_free,
884 .msiq_build_irq = pci_sun4v_msiq_build_irq,
885};
David S. Millere9870c42007-05-07 23:28:50 -0700886
887static void pci_sun4v_msi_init(struct pci_pbm_info *pbm)
888{
David S. Miller759f89e2007-10-11 03:16:13 -0700889 sparc64_pbm_msi_init(pbm, &pci_sun4v_msiq_ops);
David S. Millere9870c42007-05-07 23:28:50 -0700890}
David S. Miller35a17eb2007-02-10 17:41:02 -0800891#else /* CONFIG_PCI_MSI */
892static void pci_sun4v_msi_init(struct pci_pbm_info *pbm)
893{
894}
895#endif /* !(CONFIG_PCI_MSI) */
896
David S. Miller9a2ed5c2009-04-07 01:03:58 -0700897static int __devinit pci_sun4v_pbm_init(struct pci_pbm_info *pbm,
898 struct of_device *op, u32 devhandle)
David S. Millerbade5622006-02-09 22:05:54 -0800899{
David S. Millere822358a2008-09-01 18:32:22 -0700900 struct device_node *dp = op->node;
David S. Miller3822b502008-08-30 02:50:29 -0700901 int err;
David S. Millerbade5622006-02-09 22:05:54 -0800902
David S. Millerc1b1a5f12008-03-19 04:52:48 -0700903 pbm->numa_node = of_node_to_nid(dp);
904
David S. Millerca3dd882007-05-09 02:35:27 -0700905 pbm->pci_ops = &sun4v_pci_ops;
906 pbm->config_space_reg_bits = 12;
David S. Miller34768bc2007-05-07 23:06:27 -0700907
David S. Miller6c108f12007-05-07 23:49:01 -0700908 pbm->index = pci_num_pbms++;
909
David S. Miller22fecba2008-09-10 00:19:28 -0700910 pbm->op = op;
David S. Millerbade5622006-02-09 22:05:54 -0800911
David S. Miller38337892006-02-12 22:06:53 -0800912 pbm->devhandle = devhandle;
David S. Millerbade5622006-02-09 22:05:54 -0800913
David S. Millere87dc352006-06-21 18:18:47 -0700914 pbm->name = dp->full_name;
David S. Millerbade5622006-02-09 22:05:54 -0800915
David S. Millere87dc352006-06-21 18:18:47 -0700916 printk("%s: SUN4V PCI Bus Module\n", pbm->name);
David S. Millerc1b1a5f12008-03-19 04:52:48 -0700917 printk("%s: On NUMA node %d\n", pbm->name, pbm->numa_node);
David S. Millerbade5622006-02-09 22:05:54 -0800918
David S. Miller9fd8b642007-03-08 21:55:49 -0800919 pci_determine_mem_io_space(pbm);
David S. Millerbade5622006-02-09 22:05:54 -0800920
David S. Millercfa06522007-05-07 21:51:41 -0700921 pci_get_pbm_props(pbm);
David S. Miller3822b502008-08-30 02:50:29 -0700922
923 err = pci_sun4v_iommu_init(pbm);
924 if (err)
925 return err;
926
David S. Miller35a17eb2007-02-10 17:41:02 -0800927 pci_sun4v_msi_init(pbm);
David S. Miller3822b502008-08-30 02:50:29 -0700928
David S. Millere822358a2008-09-01 18:32:22 -0700929 pci_sun4v_scan_bus(pbm, &op->dev);
David S. Miller3822b502008-08-30 02:50:29 -0700930
David S. Millerd3ae4b52008-09-09 23:54:02 -0700931 pbm->next = pci_pbm_root;
932 pci_pbm_root = pbm;
933
David S. Miller3822b502008-08-30 02:50:29 -0700934 return 0;
David S. Millerbade5622006-02-09 22:05:54 -0800935}
936
Linus Torvalds33b07db92008-12-01 07:55:14 -0800937static int __devinit pci_sun4v_probe(struct of_device *op,
David S. Miller3822b502008-08-30 02:50:29 -0700938 const struct of_device_id *match)
David S. Miller8f6a93a2006-02-09 21:32:07 -0800939{
David S. Miller3822b502008-08-30 02:50:29 -0700940 const struct linux_prom64_registers *regs;
David S. Millere01c0d62007-05-25 01:04:15 -0700941 static int hvapi_negotiated = 0;
David S. Miller34768bc2007-05-07 23:06:27 -0700942 struct pci_pbm_info *pbm;
David S. Miller3822b502008-08-30 02:50:29 -0700943 struct device_node *dp;
David S. Miller16ce82d2007-04-26 21:08:21 -0700944 struct iommu *iommu;
David S. Miller7c8f4862006-02-13 21:50:27 -0800945 u32 devhandle;
David S. Millerd7472c32008-08-31 01:33:52 -0700946 int i, err;
David S. Miller38337892006-02-12 22:06:53 -0800947
David S. Miller3822b502008-08-30 02:50:29 -0700948 dp = op->node;
949
David S. Millere01c0d62007-05-25 01:04:15 -0700950 if (!hvapi_negotiated++) {
David S. Miller8d2aec52008-09-12 00:01:03 -0700951 err = sun4v_hvapi_register(HV_GRP_PCI,
952 vpci_major,
953 &vpci_minor);
David S. Millere01c0d62007-05-25 01:04:15 -0700954
955 if (err) {
David S. Miller3822b502008-08-30 02:50:29 -0700956 printk(KERN_ERR PFX "Could not register hvapi, "
957 "err=%d\n", err);
958 return err;
David S. Millere01c0d62007-05-25 01:04:15 -0700959 }
David S. Miller3822b502008-08-30 02:50:29 -0700960 printk(KERN_INFO PFX "Registered hvapi major[%lu] minor[%lu]\n",
David S. Millere01c0d62007-05-25 01:04:15 -0700961 vpci_major, vpci_minor);
David S. Millerad7ad572007-07-27 22:39:14 -0700962
963 dma_ops = &sun4v_dma_ops;
David S. Millere01c0d62007-05-25 01:04:15 -0700964 }
965
David S. Miller3822b502008-08-30 02:50:29 -0700966 regs = of_get_property(dp, "reg", NULL);
David S. Millerd7472c32008-08-31 01:33:52 -0700967 err = -ENODEV;
David S. Miller3822b502008-08-30 02:50:29 -0700968 if (!regs) {
969 printk(KERN_ERR PFX "Could not find config registers\n");
David S. Millerd7472c32008-08-31 01:33:52 -0700970 goto out_err;
Cyrill Gorcunov75c6d142007-11-20 17:32:19 -0800971 }
David S. Millere87dc352006-06-21 18:18:47 -0700972 devhandle = (regs->phys_addr >> 32UL) & 0x0fffffff;
David S. Miller38337892006-02-12 22:06:53 -0800973
David S. Millerd7472c32008-08-31 01:33:52 -0700974 err = -ENOMEM;
David S. Millerd3ae4b52008-09-09 23:54:02 -0700975 if (!iommu_batch_initialized) {
976 for_each_possible_cpu(i) {
977 unsigned long page = get_zeroed_page(GFP_KERNEL);
David S. Miller7c8f4862006-02-13 21:50:27 -0800978
David S. Millerd3ae4b52008-09-09 23:54:02 -0700979 if (!page)
980 goto out_err;
David S. Miller7c8f4862006-02-13 21:50:27 -0800981
David S. Millerd3ae4b52008-09-09 23:54:02 -0700982 per_cpu(iommu_batch, i).pglist = (u64 *) page;
983 }
984 iommu_batch_initialized = 1;
David S. Millerbade5622006-02-09 22:05:54 -0800985 }
David S. Miller7c8f4862006-02-13 21:50:27 -0800986
David S. Millerd3ae4b52008-09-09 23:54:02 -0700987 pbm = kzalloc(sizeof(*pbm), GFP_KERNEL);
988 if (!pbm) {
989 printk(KERN_ERR PFX "Could not allocate pci_pbm_info\n");
David S. Millerd7472c32008-08-31 01:33:52 -0700990 goto out_err;
David S. Miller3822b502008-08-30 02:50:29 -0700991 }
David S. Miller7c8f4862006-02-13 21:50:27 -0800992
David S. Millerd3ae4b52008-09-09 23:54:02 -0700993 iommu = kzalloc(sizeof(struct iommu), GFP_KERNEL);
David S. Miller3822b502008-08-30 02:50:29 -0700994 if (!iommu) {
David S. Millerd3ae4b52008-09-09 23:54:02 -0700995 printk(KERN_ERR PFX "Could not allocate pbm iommu\n");
David S. Millerd7472c32008-08-31 01:33:52 -0700996 goto out_free_controller;
David S. Miller3822b502008-08-30 02:50:29 -0700997 }
David S. Miller7c8f4862006-02-13 21:50:27 -0800998
David S. Millerd3ae4b52008-09-09 23:54:02 -0700999 pbm->iommu = iommu;
David S. Millerbade5622006-02-09 22:05:54 -08001000
David S. Millerd3ae4b52008-09-09 23:54:02 -07001001 err = pci_sun4v_pbm_init(pbm, op, devhandle);
1002 if (err)
1003 goto out_free_iommu;
David S. Miller7c8f4862006-02-13 21:50:27 -08001004
David S. Millerd3ae4b52008-09-09 23:54:02 -07001005 dev_set_drvdata(&op->dev, pbm);
David S. Millerbade5622006-02-09 22:05:54 -08001006
David S. Millerd3ae4b52008-09-09 23:54:02 -07001007 return 0;
David S. Miller7c8f4862006-02-13 21:50:27 -08001008
David S. Millerd3ae4b52008-09-09 23:54:02 -07001009out_free_iommu:
1010 kfree(pbm->iommu);
David S. Millerd7472c32008-08-31 01:33:52 -07001011
1012out_free_controller:
David S. Millerd3ae4b52008-09-09 23:54:02 -07001013 kfree(pbm);
David S. Millerd7472c32008-08-31 01:33:52 -07001014
1015out_err:
1016 return err;
David S. Miller8f6a93a2006-02-09 21:32:07 -08001017}
David S. Miller3822b502008-08-30 02:50:29 -07001018
David S. Millerfd098312008-08-31 01:23:17 -07001019static struct of_device_id __initdata pci_sun4v_match[] = {
David S. Miller3822b502008-08-30 02:50:29 -07001020 {
1021 .name = "pci",
1022 .compatible = "SUNW,sun4v-pci",
1023 },
1024 {},
1025};
1026
1027static struct of_platform_driver pci_sun4v_driver = {
1028 .name = DRIVER_NAME,
1029 .match_table = pci_sun4v_match,
1030 .probe = pci_sun4v_probe,
1031};
1032
1033static int __init pci_sun4v_init(void)
1034{
1035 return of_register_driver(&pci_sun4v_driver, &of_bus_type);
1036}
1037
1038subsys_initcall(pci_sun4v_init);