blob: 97a77bcd255554abe9003c0ba3125d17a8573bfd [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 "
David S. Miller6a32fd42006-02-19 22:21:32 -080076 "[%08lx:%08lx:%lx:%lx:%lx] failed with "
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. 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
David S. Millerad7ad572007-07-27 22:39:14 -0700233static dma_addr_t dma_4v_map_single(struct device *dev, void *ptr, size_t sz,
234 enum dma_data_direction direction)
David S. Miller8f6a93a2006-02-09 21:32:07 -0800235{
David S. Miller16ce82d2007-04-26 21:08:21 -0700236 struct iommu *iommu;
David S. Miller18397942006-02-10 00:08:26 -0800237 unsigned long flags, npages, oaddr;
David S. Miller7c8f4862006-02-13 21:50:27 -0800238 unsigned long i, base_paddr;
David S. Miller6a32fd42006-02-19 22:21:32 -0800239 u32 bus_addr, ret;
David S. Miller18397942006-02-10 00:08:26 -0800240 unsigned long prot;
241 long entry;
David S. Miller18397942006-02-10 00:08:26 -0800242
David S. Millerad7ad572007-07-27 22:39:14 -0700243 iommu = dev->archdata.iommu;
David S. Miller18397942006-02-10 00:08:26 -0800244
David S. Millerad7ad572007-07-27 22:39:14 -0700245 if (unlikely(direction == DMA_NONE))
David S. Miller18397942006-02-10 00:08:26 -0800246 goto bad;
247
248 oaddr = (unsigned long)ptr;
249 npages = IO_PAGE_ALIGN(oaddr + sz) - (oaddr & IO_PAGE_MASK);
250 npages >>= IO_PAGE_SHIFT;
David S. Miller18397942006-02-10 00:08:26 -0800251
252 spin_lock_irqsave(&iommu->lock, flags);
David S. Millerd2841422008-02-08 18:05:46 -0800253 entry = iommu_range_alloc(dev, iommu, npages, NULL);
David S. Miller18397942006-02-10 00:08:26 -0800254 spin_unlock_irqrestore(&iommu->lock, flags);
255
David S. Millerd2841422008-02-08 18:05:46 -0800256 if (unlikely(entry == DMA_ERROR_CODE))
David S. Miller18397942006-02-10 00:08:26 -0800257 goto bad;
258
259 bus_addr = (iommu->page_table_map_base +
260 (entry << IO_PAGE_SHIFT));
261 ret = bus_addr | (oaddr & ~IO_PAGE_MASK);
262 base_paddr = __pa(oaddr & IO_PAGE_MASK);
263 prot = HV_PCI_MAP_ATTR_READ;
David S. Millerad7ad572007-07-27 22:39:14 -0700264 if (direction != DMA_TO_DEVICE)
David S. Miller18397942006-02-10 00:08:26 -0800265 prot |= HV_PCI_MAP_ATTR_WRITE;
266
David S. Miller6a32fd42006-02-19 22:21:32 -0800267 local_irq_save(flags);
David S. Miller18397942006-02-10 00:08:26 -0800268
David S. Millerad7ad572007-07-27 22:39:14 -0700269 iommu_batch_start(dev, prot, entry);
David S. Miller18397942006-02-10 00:08:26 -0800270
David S. Miller6a32fd42006-02-19 22:21:32 -0800271 for (i = 0; i < npages; i++, base_paddr += IO_PAGE_SIZE) {
David S. Millerad7ad572007-07-27 22:39:14 -0700272 long err = iommu_batch_add(base_paddr);
David S. Miller6a32fd42006-02-19 22:21:32 -0800273 if (unlikely(err < 0L))
274 goto iommu_map_fail;
275 }
David S. Millerad7ad572007-07-27 22:39:14 -0700276 if (unlikely(iommu_batch_end() < 0L))
David S. Miller6a32fd42006-02-19 22:21:32 -0800277 goto iommu_map_fail;
David S. Miller18397942006-02-10 00:08:26 -0800278
David S. Miller6a32fd42006-02-19 22:21:32 -0800279 local_irq_restore(flags);
David S. Miller18397942006-02-10 00:08:26 -0800280
281 return ret;
282
283bad:
284 if (printk_ratelimit())
285 WARN_ON(1);
David S. Millerad7ad572007-07-27 22:39:14 -0700286 return DMA_ERROR_CODE;
David S. Miller6a32fd42006-02-19 22:21:32 -0800287
288iommu_map_fail:
289 /* Interrupts are disabled. */
290 spin_lock(&iommu->lock);
David S. Millerd2841422008-02-08 18:05:46 -0800291 iommu_range_free(iommu, bus_addr, npages);
David S. Miller6a32fd42006-02-19 22:21:32 -0800292 spin_unlock_irqrestore(&iommu->lock, flags);
293
David S. Millerad7ad572007-07-27 22:39:14 -0700294 return DMA_ERROR_CODE;
David S. Miller8f6a93a2006-02-09 21:32:07 -0800295}
296
David S. Millerad7ad572007-07-27 22:39:14 -0700297static void dma_4v_unmap_single(struct device *dev, dma_addr_t bus_addr,
298 size_t sz, enum dma_data_direction direction)
David S. Miller8f6a93a2006-02-09 21:32:07 -0800299{
David S. Millera2fb23a2007-02-28 23:35:04 -0800300 struct pci_pbm_info *pbm;
David S. Miller16ce82d2007-04-26 21:08:21 -0700301 struct iommu *iommu;
David S. Miller7c8f4862006-02-13 21:50:27 -0800302 unsigned long flags, npages;
David S. Miller18397942006-02-10 00:08:26 -0800303 long entry;
David S. Miller7c8f4862006-02-13 21:50:27 -0800304 u32 devhandle;
David S. Miller18397942006-02-10 00:08:26 -0800305
David S. Millerad7ad572007-07-27 22:39:14 -0700306 if (unlikely(direction == DMA_NONE)) {
David S. Miller18397942006-02-10 00:08:26 -0800307 if (printk_ratelimit())
308 WARN_ON(1);
309 return;
310 }
311
David S. Millerad7ad572007-07-27 22:39:14 -0700312 iommu = dev->archdata.iommu;
313 pbm = dev->archdata.host_controller;
David S. Millera2fb23a2007-02-28 23:35:04 -0800314 devhandle = pbm->devhandle;
David S. Miller18397942006-02-10 00:08:26 -0800315
316 npages = IO_PAGE_ALIGN(bus_addr + sz) - (bus_addr & IO_PAGE_MASK);
317 npages >>= IO_PAGE_SHIFT;
318 bus_addr &= IO_PAGE_MASK;
319
320 spin_lock_irqsave(&iommu->lock, flags);
321
David S. Millerd2841422008-02-08 18:05:46 -0800322 iommu_range_free(iommu, bus_addr, npages);
David S. Miller18397942006-02-10 00:08:26 -0800323
David S. Millerd2841422008-02-08 18:05:46 -0800324 entry = (bus_addr - iommu->page_table_map_base) >> IO_PAGE_SHIFT;
David S. Miller18397942006-02-10 00:08:26 -0800325 do {
326 unsigned long num;
327
328 num = pci_sun4v_iommu_demap(devhandle, HV_PCI_TSBID(0, entry),
329 npages);
330 entry += num;
331 npages -= num;
332 } while (npages != 0);
333
334 spin_unlock_irqrestore(&iommu->lock, flags);
335}
336
David S. Millerad7ad572007-07-27 22:39:14 -0700337static int dma_4v_map_sg(struct device *dev, struct scatterlist *sglist,
338 int nelems, enum dma_data_direction direction)
David S. Miller8f6a93a2006-02-09 21:32:07 -0800339{
David S. Miller13fa14e2008-02-09 03:11:01 -0800340 struct scatterlist *s, *outs, *segstart;
341 unsigned long flags, handle, prot;
342 dma_addr_t dma_next = 0, dma_addr;
343 unsigned int max_seg_size;
FUJITA Tomonorif0880252008-03-28 15:55:41 -0700344 unsigned long seg_boundary_size;
David S. Miller13fa14e2008-02-09 03:11:01 -0800345 int outcount, incount, i;
David S. Miller16ce82d2007-04-26 21:08:21 -0700346 struct iommu *iommu;
FUJITA Tomonorif0880252008-03-28 15:55:41 -0700347 unsigned long base_shift;
David S. Miller13fa14e2008-02-09 03:11:01 -0800348 long err;
David S. Miller18397942006-02-10 00:08:26 -0800349
David S. Miller13fa14e2008-02-09 03:11:01 -0800350 BUG_ON(direction == DMA_NONE);
David S. Miller18397942006-02-10 00:08:26 -0800351
David S. Millerad7ad572007-07-27 22:39:14 -0700352 iommu = dev->archdata.iommu;
David S. Miller13fa14e2008-02-09 03:11:01 -0800353 if (nelems == 0 || !iommu)
354 return 0;
David S. Miller18397942006-02-10 00:08:26 -0800355
David S. Miller18397942006-02-10 00:08:26 -0800356 prot = HV_PCI_MAP_ATTR_READ;
David S. Millerad7ad572007-07-27 22:39:14 -0700357 if (direction != DMA_TO_DEVICE)
David S. Miller18397942006-02-10 00:08:26 -0800358 prot |= HV_PCI_MAP_ATTR_WRITE;
359
David S. Miller13fa14e2008-02-09 03:11:01 -0800360 outs = s = segstart = &sglist[0];
361 outcount = 1;
362 incount = nelems;
363 handle = 0;
David S. Miller38192d52008-02-06 03:50:26 -0800364
David S. Miller13fa14e2008-02-09 03:11:01 -0800365 /* Init first segment length for backout at failure */
366 outs->dma_length = 0;
David S. Miller38192d52008-02-06 03:50:26 -0800367
David S. Miller13fa14e2008-02-09 03:11:01 -0800368 spin_lock_irqsave(&iommu->lock, flags);
David S. Miller38192d52008-02-06 03:50:26 -0800369
David S. Miller13fa14e2008-02-09 03:11:01 -0800370 iommu_batch_start(dev, prot, ~0UL);
David S. Miller38192d52008-02-06 03:50:26 -0800371
David S. Miller13fa14e2008-02-09 03:11:01 -0800372 max_seg_size = dma_get_max_seg_size(dev);
FUJITA Tomonorif0880252008-03-28 15:55:41 -0700373 seg_boundary_size = ALIGN(dma_get_seg_boundary(dev) + 1,
374 IO_PAGE_SIZE) >> IO_PAGE_SHIFT;
375 base_shift = iommu->page_table_map_base >> IO_PAGE_SHIFT;
David S. Miller13fa14e2008-02-09 03:11:01 -0800376 for_each_sg(sglist, s, nelems, i) {
FUJITA Tomonorif0880252008-03-28 15:55:41 -0700377 unsigned long paddr, npages, entry, out_entry = 0, slen;
David S. Miller38192d52008-02-06 03:50:26 -0800378
David S. Miller13fa14e2008-02-09 03:11:01 -0800379 slen = s->length;
380 /* Sanity check */
381 if (slen == 0) {
382 dma_next = 0;
383 continue;
David S. Miller38192d52008-02-06 03:50:26 -0800384 }
David S. Miller13fa14e2008-02-09 03:11:01 -0800385 /* Allocate iommu entries for that segment */
386 paddr = (unsigned long) SG_ENT_PHYS_ADDRESS(s);
387 npages = iommu_num_pages(paddr, slen);
388 entry = iommu_range_alloc(dev, iommu, npages, &handle);
389
390 /* Handle failure */
391 if (unlikely(entry == DMA_ERROR_CODE)) {
392 if (printk_ratelimit())
393 printk(KERN_INFO "iommu_alloc failed, iommu %p paddr %lx"
394 " npages %lx\n", iommu, paddr, npages);
395 goto iommu_map_failed;
396 }
397
398 iommu_batch_new_entry(entry);
399
400 /* Convert entry to a dma_addr_t */
401 dma_addr = iommu->page_table_map_base +
402 (entry << IO_PAGE_SHIFT);
403 dma_addr |= (s->offset & ~IO_PAGE_MASK);
404
405 /* Insert into HW table */
406 paddr &= IO_PAGE_MASK;
407 while (npages--) {
408 err = iommu_batch_add(paddr);
409 if (unlikely(err < 0L))
410 goto iommu_map_failed;
411 paddr += IO_PAGE_SIZE;
412 }
413
414 /* If we are in an open segment, try merging */
415 if (segstart != s) {
416 /* We cannot merge if:
417 * - allocated dma_addr isn't contiguous to previous allocation
418 */
419 if ((dma_addr != dma_next) ||
FUJITA Tomonorif0880252008-03-28 15:55:41 -0700420 (outs->dma_length + s->length > max_seg_size) ||
421 (is_span_boundary(out_entry, base_shift,
422 seg_boundary_size, outs, s))) {
David S. Miller13fa14e2008-02-09 03:11:01 -0800423 /* Can't merge: create a new segment */
424 segstart = s;
425 outcount++;
426 outs = sg_next(outs);
427 } else {
428 outs->dma_length += s->length;
429 }
430 }
431
432 if (segstart == s) {
433 /* This is a new segment, fill entries */
434 outs->dma_address = dma_addr;
435 outs->dma_length = slen;
FUJITA Tomonorif0880252008-03-28 15:55:41 -0700436 out_entry = entry;
David S. Miller13fa14e2008-02-09 03:11:01 -0800437 }
438
439 /* Calculate next page pointer for contiguous check */
440 dma_next = dma_addr + slen;
David S. Miller38192d52008-02-06 03:50:26 -0800441 }
442
443 err = iommu_batch_end();
444
David S. Miller6a32fd42006-02-19 22:21:32 -0800445 if (unlikely(err < 0L))
446 goto iommu_map_failed;
David S. Miller18397942006-02-10 00:08:26 -0800447
David S. Miller13fa14e2008-02-09 03:11:01 -0800448 spin_unlock_irqrestore(&iommu->lock, flags);
David S. Miller18397942006-02-10 00:08:26 -0800449
David S. Miller13fa14e2008-02-09 03:11:01 -0800450 if (outcount < incount) {
451 outs = sg_next(outs);
452 outs->dma_address = DMA_ERROR_CODE;
453 outs->dma_length = 0;
454 }
455
456 return outcount;
David S. Miller6a32fd42006-02-19 22:21:32 -0800457
458iommu_map_failed:
David S. Miller13fa14e2008-02-09 03:11:01 -0800459 for_each_sg(sglist, s, nelems, i) {
460 if (s->dma_length != 0) {
461 unsigned long vaddr, npages;
462
463 vaddr = s->dma_address & IO_PAGE_MASK;
464 npages = iommu_num_pages(s->dma_address, s->dma_length);
465 iommu_range_free(iommu, vaddr, npages);
466 /* XXX demap? XXX */
467 s->dma_address = DMA_ERROR_CODE;
468 s->dma_length = 0;
469 }
470 if (s == outs)
471 break;
472 }
David S. Miller6a32fd42006-02-19 22:21:32 -0800473 spin_unlock_irqrestore(&iommu->lock, flags);
474
475 return 0;
David S. Miller8f6a93a2006-02-09 21:32:07 -0800476}
477
David S. Millerad7ad572007-07-27 22:39:14 -0700478static void dma_4v_unmap_sg(struct device *dev, struct scatterlist *sglist,
479 int nelems, enum dma_data_direction direction)
David S. Miller8f6a93a2006-02-09 21:32:07 -0800480{
David S. Millera2fb23a2007-02-28 23:35:04 -0800481 struct pci_pbm_info *pbm;
David S. Miller13fa14e2008-02-09 03:11:01 -0800482 struct scatterlist *sg;
David S. Miller38192d52008-02-06 03:50:26 -0800483 struct iommu *iommu;
David S. Miller13fa14e2008-02-09 03:11:01 -0800484 unsigned long flags;
485 u32 devhandle;
David S. Miller18397942006-02-10 00:08:26 -0800486
David S. Miller13fa14e2008-02-09 03:11:01 -0800487 BUG_ON(direction == DMA_NONE);
David S. Miller18397942006-02-10 00:08:26 -0800488
David S. Millerad7ad572007-07-27 22:39:14 -0700489 iommu = dev->archdata.iommu;
490 pbm = dev->archdata.host_controller;
David S. Millera2fb23a2007-02-28 23:35:04 -0800491 devhandle = pbm->devhandle;
David S. Miller18397942006-02-10 00:08:26 -0800492
David S. Miller18397942006-02-10 00:08:26 -0800493 spin_lock_irqsave(&iommu->lock, flags);
494
David S. Miller13fa14e2008-02-09 03:11:01 -0800495 sg = sglist;
496 while (nelems--) {
497 dma_addr_t dma_handle = sg->dma_address;
498 unsigned int len = sg->dma_length;
499 unsigned long npages, entry;
David S. Miller18397942006-02-10 00:08:26 -0800500
David S. Miller13fa14e2008-02-09 03:11:01 -0800501 if (!len)
502 break;
503 npages = iommu_num_pages(dma_handle, len);
504 iommu_range_free(iommu, dma_handle, npages);
David S. Miller18397942006-02-10 00:08:26 -0800505
David S. Miller13fa14e2008-02-09 03:11:01 -0800506 entry = ((dma_handle - iommu->page_table_map_base) >> IO_PAGE_SHIFT);
507 while (npages) {
508 unsigned long num;
509
510 num = pci_sun4v_iommu_demap(devhandle, HV_PCI_TSBID(0, entry),
511 npages);
512 entry += num;
513 npages -= num;
514 }
515
516 sg = sg_next(sg);
517 }
David S. Miller18397942006-02-10 00:08:26 -0800518
519 spin_unlock_irqrestore(&iommu->lock, flags);
David S. Miller8f6a93a2006-02-09 21:32:07 -0800520}
521
David S. Millerad7ad572007-07-27 22:39:14 -0700522static void dma_4v_sync_single_for_cpu(struct device *dev,
523 dma_addr_t bus_addr, size_t sz,
524 enum dma_data_direction direction)
David S. Miller8f6a93a2006-02-09 21:32:07 -0800525{
David S. Miller18397942006-02-10 00:08:26 -0800526 /* Nothing to do... */
David S. Miller8f6a93a2006-02-09 21:32:07 -0800527}
528
David S. Millerad7ad572007-07-27 22:39:14 -0700529static void dma_4v_sync_sg_for_cpu(struct device *dev,
530 struct scatterlist *sglist, int nelems,
531 enum dma_data_direction direction)
David S. Miller8f6a93a2006-02-09 21:32:07 -0800532{
David S. Miller18397942006-02-10 00:08:26 -0800533 /* Nothing to do... */
David S. Miller8f6a93a2006-02-09 21:32:07 -0800534}
535
Adrian Bunk908f5162008-06-05 11:42:40 -0700536static const struct dma_ops sun4v_dma_ops = {
David S. Millerad7ad572007-07-27 22:39:14 -0700537 .alloc_coherent = dma_4v_alloc_coherent,
538 .free_coherent = dma_4v_free_coherent,
539 .map_single = dma_4v_map_single,
540 .unmap_single = dma_4v_unmap_single,
541 .map_sg = dma_4v_map_sg,
542 .unmap_sg = dma_4v_unmap_sg,
543 .sync_single_for_cpu = dma_4v_sync_single_for_cpu,
544 .sync_sg_for_cpu = dma_4v_sync_sg_for_cpu,
David S. Miller8f6a93a2006-02-09 21:32:07 -0800545};
546
David S. Millere822358a2008-09-01 18:32:22 -0700547static void __init pci_sun4v_scan_bus(struct pci_pbm_info *pbm,
548 struct device *parent)
David S. Millerbade5622006-02-09 22:05:54 -0800549{
David S. Millere87dc352006-06-21 18:18:47 -0700550 struct property *prop;
551 struct device_node *dp;
552
David S. Miller22fecba2008-09-10 00:19:28 -0700553 dp = pbm->op->node;
David S. Miller34768bc2007-05-07 23:06:27 -0700554 prop = of_find_property(dp, "66mhz-capable", NULL);
555 pbm->is_66mhz_capable = (prop != NULL);
David S. Millere822358a2008-09-01 18:32:22 -0700556 pbm->pci_bus = pci_scan_one_pbm(pbm, parent);
David S. Millerc2609262006-02-12 22:18:52 -0800557
558 /* XXX register error interrupt handlers XXX */
David S. Millerbade5622006-02-09 22:05:54 -0800559}
560
Adrian Bunk4c622252008-02-05 03:01:43 -0800561static unsigned long __init probe_existing_entries(struct pci_pbm_info *pbm,
562 struct iommu *iommu)
David S. Miller18397942006-02-10 00:08:26 -0800563{
David S. Miller9b3627f2007-04-24 23:51:18 -0700564 struct iommu_arena *arena = &iommu->arena;
David S. Millere7a04532006-02-15 22:25:27 -0800565 unsigned long i, cnt = 0;
David S. Miller7c8f4862006-02-13 21:50:27 -0800566 u32 devhandle;
David S. Miller18397942006-02-10 00:08:26 -0800567
568 devhandle = pbm->devhandle;
569 for (i = 0; i < arena->limit; i++) {
570 unsigned long ret, io_attrs, ra;
571
572 ret = pci_sun4v_iommu_getmap(devhandle,
573 HV_PCI_TSBID(0, i),
574 &io_attrs, &ra);
David S. Millere7a04532006-02-15 22:25:27 -0800575 if (ret == HV_EOK) {
David S. Millerc2a5a462006-06-22 00:01:56 -0700576 if (page_in_phys_avail(ra)) {
577 pci_sun4v_iommu_demap(devhandle,
578 HV_PCI_TSBID(0, i), 1);
579 } else {
580 cnt++;
581 __set_bit(i, arena->map);
582 }
David S. Millere7a04532006-02-15 22:25:27 -0800583 }
David S. Miller18397942006-02-10 00:08:26 -0800584 }
David S. Millere7a04532006-02-15 22:25:27 -0800585
586 return cnt;
David S. Miller18397942006-02-10 00:08:26 -0800587}
588
David S. Miller3822b502008-08-30 02:50:29 -0700589static int __init pci_sun4v_iommu_init(struct pci_pbm_info *pbm)
David S. Millerbade5622006-02-09 22:05:54 -0800590{
David S. Miller8aef7272008-09-01 20:23:18 -0700591 static const u32 vdma_default[] = { 0x80000000, 0x80000000 };
David S. Miller16ce82d2007-04-26 21:08:21 -0700592 struct iommu *iommu = pbm->iommu;
David S. Miller59db8102007-05-23 18:00:46 -0700593 unsigned long num_tsb_entries, sz, tsbsize;
David S. Miller8aef7272008-09-01 20:23:18 -0700594 u32 dma_mask, dma_offset;
595 const u32 *vdma;
David S. Miller18397942006-02-10 00:08:26 -0800596
David S. Miller22fecba2008-09-10 00:19:28 -0700597 vdma = of_get_property(pbm->op->node, "virtual-dma", NULL);
David S. Miller8aef7272008-09-01 20:23:18 -0700598 if (!vdma)
599 vdma = vdma_default;
David S. Miller18397942006-02-10 00:08:26 -0800600
David S. Miller59db8102007-05-23 18:00:46 -0700601 if ((vdma[0] | vdma[1]) & ~IO_PAGE_MASK) {
David S. Miller3822b502008-08-30 02:50:29 -0700602 printk(KERN_ERR PFX "Strange virtual-dma[%08x:%08x].\n",
603 vdma[0], vdma[1]);
604 return -EINVAL;
David S. Miller18397942006-02-10 00:08:26 -0800605 };
606
David S. Miller59db8102007-05-23 18:00:46 -0700607 dma_mask = (roundup_pow_of_two(vdma[1]) - 1UL);
608 num_tsb_entries = vdma[1] / IO_PAGE_SIZE;
609 tsbsize = num_tsb_entries * sizeof(iopte_t);
David S. Miller18397942006-02-10 00:08:26 -0800610
611 dma_offset = vdma[0];
612
613 /* Setup initial software IOMMU state. */
614 spin_lock_init(&iommu->lock);
615 iommu->ctx_lowest_free = 1;
616 iommu->page_table_map_base = dma_offset;
617 iommu->dma_addr_mask = dma_mask;
618
619 /* Allocate and initialize the free area map. */
David S. Miller59db8102007-05-23 18:00:46 -0700620 sz = (num_tsb_entries + 7) / 8;
David S. Miller18397942006-02-10 00:08:26 -0800621 sz = (sz + 7UL) & ~7UL;
Yan Burman982c2062006-11-30 17:13:09 -0800622 iommu->arena.map = kzalloc(sz, GFP_KERNEL);
David S. Miller18397942006-02-10 00:08:26 -0800623 if (!iommu->arena.map) {
David S. Miller3822b502008-08-30 02:50:29 -0700624 printk(KERN_ERR PFX "Error, kmalloc(arena.map) failed.\n");
625 return -ENOMEM;
David S. Miller18397942006-02-10 00:08:26 -0800626 }
David S. Miller18397942006-02-10 00:08:26 -0800627 iommu->arena.limit = num_tsb_entries;
628
David S. Millere7a04532006-02-15 22:25:27 -0800629 sz = probe_existing_entries(pbm, iommu);
David S. Millerc2a5a462006-06-22 00:01:56 -0700630 if (sz)
631 printk("%s: Imported %lu TSB entries from OBP\n",
632 pbm->name, sz);
David S. Miller3822b502008-08-30 02:50:29 -0700633
634 return 0;
David S. Millerbade5622006-02-09 22:05:54 -0800635}
636
David S. Miller35a17eb2007-02-10 17:41:02 -0800637#ifdef CONFIG_PCI_MSI
638struct pci_sun4v_msiq_entry {
639 u64 version_type;
640#define MSIQ_VERSION_MASK 0xffffffff00000000UL
641#define MSIQ_VERSION_SHIFT 32
642#define MSIQ_TYPE_MASK 0x00000000000000ffUL
643#define MSIQ_TYPE_SHIFT 0
644#define MSIQ_TYPE_NONE 0x00
645#define MSIQ_TYPE_MSG 0x01
646#define MSIQ_TYPE_MSI32 0x02
647#define MSIQ_TYPE_MSI64 0x03
648#define MSIQ_TYPE_INTX 0x08
649#define MSIQ_TYPE_NONE2 0xff
650
651 u64 intx_sysino;
652 u64 reserved1;
653 u64 stick;
654 u64 req_id; /* bus/device/func */
655#define MSIQ_REQID_BUS_MASK 0xff00UL
656#define MSIQ_REQID_BUS_SHIFT 8
657#define MSIQ_REQID_DEVICE_MASK 0x00f8UL
658#define MSIQ_REQID_DEVICE_SHIFT 3
659#define MSIQ_REQID_FUNC_MASK 0x0007UL
660#define MSIQ_REQID_FUNC_SHIFT 0
661
662 u64 msi_address;
663
Simon Arlotte5dd42e2007-05-11 13:52:08 -0700664 /* The format of this value is message type dependent.
David S. Miller35a17eb2007-02-10 17:41:02 -0800665 * For MSI bits 15:0 are the data from the MSI packet.
666 * For MSI-X bits 31:0 are the data from the MSI packet.
667 * For MSG, the message code and message routing code where:
668 * bits 39:32 is the bus/device/fn of the msg target-id
669 * bits 18:16 is the message routing code
670 * bits 7:0 is the message code
671 * For INTx the low order 2-bits are:
672 * 00 - INTA
673 * 01 - INTB
674 * 10 - INTC
675 * 11 - INTD
676 */
677 u64 msi_data;
678
679 u64 reserved2;
680};
681
David S. Miller759f89e2007-10-11 03:16:13 -0700682static int pci_sun4v_get_head(struct pci_pbm_info *pbm, unsigned long msiqid,
683 unsigned long *head)
David S. Miller35a17eb2007-02-10 17:41:02 -0800684{
David S. Miller759f89e2007-10-11 03:16:13 -0700685 unsigned long err, limit;
David S. Miller35a17eb2007-02-10 17:41:02 -0800686
David S. Miller759f89e2007-10-11 03:16:13 -0700687 err = pci_sun4v_msiq_gethead(pbm->devhandle, msiqid, head);
David S. Miller35a17eb2007-02-10 17:41:02 -0800688 if (unlikely(err))
David S. Miller759f89e2007-10-11 03:16:13 -0700689 return -ENXIO;
David S. Miller35a17eb2007-02-10 17:41:02 -0800690
David S. Miller759f89e2007-10-11 03:16:13 -0700691 limit = pbm->msiq_ent_count * sizeof(struct pci_sun4v_msiq_entry);
692 if (unlikely(*head >= limit))
693 return -EFBIG;
David S. Miller35a17eb2007-02-10 17:41:02 -0800694
695 return 0;
696}
697
David S. Miller759f89e2007-10-11 03:16:13 -0700698static int pci_sun4v_dequeue_msi(struct pci_pbm_info *pbm,
699 unsigned long msiqid, unsigned long *head,
700 unsigned long *msi)
David S. Miller35a17eb2007-02-10 17:41:02 -0800701{
David S. Miller759f89e2007-10-11 03:16:13 -0700702 struct pci_sun4v_msiq_entry *ep;
703 unsigned long err, type;
704
705 /* Note: void pointer arithmetic, 'head' is a byte offset */
706 ep = (pbm->msi_queues + ((msiqid - pbm->msiq_first) *
707 (pbm->msiq_ent_count *
708 sizeof(struct pci_sun4v_msiq_entry))) +
709 *head);
710
711 if ((ep->version_type & MSIQ_TYPE_MASK) == 0)
712 return 0;
713
714 type = (ep->version_type & MSIQ_TYPE_MASK) >> MSIQ_TYPE_SHIFT;
715 if (unlikely(type != MSIQ_TYPE_MSI32 &&
716 type != MSIQ_TYPE_MSI64))
717 return -EINVAL;
718
719 *msi = ep->msi_data;
720
721 err = pci_sun4v_msi_setstate(pbm->devhandle,
722 ep->msi_data /* msi_num */,
723 HV_MSISTATE_IDLE);
724 if (unlikely(err))
725 return -ENXIO;
726
727 /* Clear the entry. */
728 ep->version_type &= ~MSIQ_TYPE_MASK;
729
730 (*head) += sizeof(struct pci_sun4v_msiq_entry);
731 if (*head >=
732 (pbm->msiq_ent_count * sizeof(struct pci_sun4v_msiq_entry)))
733 *head = 0;
734
735 return 1;
David S. Miller35a17eb2007-02-10 17:41:02 -0800736}
737
David S. Miller759f89e2007-10-11 03:16:13 -0700738static int pci_sun4v_set_head(struct pci_pbm_info *pbm, unsigned long msiqid,
739 unsigned long head)
740{
741 unsigned long err;
742
743 err = pci_sun4v_msiq_sethead(pbm->devhandle, msiqid, head);
744 if (unlikely(err))
745 return -EINVAL;
746
747 return 0;
748}
749
750static int pci_sun4v_msi_setup(struct pci_pbm_info *pbm, unsigned long msiqid,
751 unsigned long msi, int is_msi64)
752{
753 if (pci_sun4v_msi_setmsiq(pbm->devhandle, msi, msiqid,
754 (is_msi64 ?
755 HV_MSITYPE_MSI64 : HV_MSITYPE_MSI32)))
756 return -ENXIO;
757 if (pci_sun4v_msi_setstate(pbm->devhandle, msi, HV_MSISTATE_IDLE))
758 return -ENXIO;
759 if (pci_sun4v_msi_setvalid(pbm->devhandle, msi, HV_MSIVALID_VALID))
760 return -ENXIO;
761 return 0;
762}
763
764static int pci_sun4v_msi_teardown(struct pci_pbm_info *pbm, unsigned long msi)
765{
766 unsigned long err, msiqid;
767
768 err = pci_sun4v_msi_getmsiq(pbm->devhandle, msi, &msiqid);
769 if (err)
770 return -ENXIO;
771
772 pci_sun4v_msi_setvalid(pbm->devhandle, msi, HV_MSIVALID_INVALID);
773
774 return 0;
775}
776
777static int pci_sun4v_msiq_alloc(struct pci_pbm_info *pbm)
David S. Miller35a17eb2007-02-10 17:41:02 -0800778{
779 unsigned long q_size, alloc_size, pages, order;
780 int i;
781
782 q_size = pbm->msiq_ent_count * sizeof(struct pci_sun4v_msiq_entry);
783 alloc_size = (pbm->msiq_num * q_size);
784 order = get_order(alloc_size);
785 pages = __get_free_pages(GFP_KERNEL | __GFP_COMP, order);
786 if (pages == 0UL) {
787 printk(KERN_ERR "MSI: Cannot allocate MSI queues (o=%lu).\n",
788 order);
789 return -ENOMEM;
790 }
791 memset((char *)pages, 0, PAGE_SIZE << order);
792 pbm->msi_queues = (void *) pages;
793
794 for (i = 0; i < pbm->msiq_num; i++) {
795 unsigned long err, base = __pa(pages + (i * q_size));
796 unsigned long ret1, ret2;
797
798 err = pci_sun4v_msiq_conf(pbm->devhandle,
799 pbm->msiq_first + i,
800 base, pbm->msiq_ent_count);
801 if (err) {
802 printk(KERN_ERR "MSI: msiq register fails (err=%lu)\n",
803 err);
804 goto h_error;
805 }
806
807 err = pci_sun4v_msiq_info(pbm->devhandle,
808 pbm->msiq_first + i,
809 &ret1, &ret2);
810 if (err) {
811 printk(KERN_ERR "MSI: Cannot read msiq (err=%lu)\n",
812 err);
813 goto h_error;
814 }
815 if (ret1 != base || ret2 != pbm->msiq_ent_count) {
816 printk(KERN_ERR "MSI: Bogus qconf "
817 "expected[%lx:%x] got[%lx:%lx]\n",
818 base, pbm->msiq_ent_count,
819 ret1, ret2);
820 goto h_error;
821 }
822 }
823
824 return 0;
825
826h_error:
827 free_pages(pages, order);
828 return -EINVAL;
829}
830
David S. Miller759f89e2007-10-11 03:16:13 -0700831static void pci_sun4v_msiq_free(struct pci_pbm_info *pbm)
David S. Miller35a17eb2007-02-10 17:41:02 -0800832{
David S. Miller759f89e2007-10-11 03:16:13 -0700833 unsigned long q_size, alloc_size, pages, order;
David S. Miller35a17eb2007-02-10 17:41:02 -0800834 int i;
835
David S. Miller759f89e2007-10-11 03:16:13 -0700836 for (i = 0; i < pbm->msiq_num; i++) {
837 unsigned long msiqid = pbm->msiq_first + i;
838
839 (void) pci_sun4v_msiq_conf(pbm->devhandle, msiqid, 0UL, 0);
David S. Miller35a17eb2007-02-10 17:41:02 -0800840 }
841
David S. Miller759f89e2007-10-11 03:16:13 -0700842 q_size = pbm->msiq_ent_count * sizeof(struct pci_sun4v_msiq_entry);
843 alloc_size = (pbm->msiq_num * q_size);
844 order = get_order(alloc_size);
845
846 pages = (unsigned long) pbm->msi_queues;
847
848 free_pages(pages, order);
849
850 pbm->msi_queues = NULL;
David S. Miller35a17eb2007-02-10 17:41:02 -0800851}
852
David S. Miller759f89e2007-10-11 03:16:13 -0700853static int pci_sun4v_msiq_build_irq(struct pci_pbm_info *pbm,
854 unsigned long msiqid,
855 unsigned long devino)
David S. Miller35a17eb2007-02-10 17:41:02 -0800856{
David S. Miller759f89e2007-10-11 03:16:13 -0700857 unsigned int virt_irq = sun4v_build_irq(pbm->devhandle, devino);
David S. Miller35a17eb2007-02-10 17:41:02 -0800858
David S. Miller759f89e2007-10-11 03:16:13 -0700859 if (!virt_irq)
860 return -ENOMEM;
David S. Miller35a17eb2007-02-10 17:41:02 -0800861
David S. Miller35a17eb2007-02-10 17:41:02 -0800862 if (pci_sun4v_msiq_setstate(pbm->devhandle, msiqid, HV_MSIQSTATE_IDLE))
David S. Miller759f89e2007-10-11 03:16:13 -0700863 return -EINVAL;
David S. Miller35a17eb2007-02-10 17:41:02 -0800864 if (pci_sun4v_msiq_setvalid(pbm->devhandle, msiqid, HV_MSIQ_VALID))
David S. Miller759f89e2007-10-11 03:16:13 -0700865 return -EINVAL;
David S. Miller35a17eb2007-02-10 17:41:02 -0800866
David S. Miller759f89e2007-10-11 03:16:13 -0700867 return virt_irq;
David S. Miller35a17eb2007-02-10 17:41:02 -0800868}
869
David S. Miller759f89e2007-10-11 03:16:13 -0700870static const struct sparc64_msiq_ops pci_sun4v_msiq_ops = {
871 .get_head = pci_sun4v_get_head,
872 .dequeue_msi = pci_sun4v_dequeue_msi,
873 .set_head = pci_sun4v_set_head,
874 .msi_setup = pci_sun4v_msi_setup,
875 .msi_teardown = pci_sun4v_msi_teardown,
876 .msiq_alloc = pci_sun4v_msiq_alloc,
877 .msiq_free = pci_sun4v_msiq_free,
878 .msiq_build_irq = pci_sun4v_msiq_build_irq,
879};
David S. Millere9870c42007-05-07 23:28:50 -0700880
881static void pci_sun4v_msi_init(struct pci_pbm_info *pbm)
882{
David S. Miller759f89e2007-10-11 03:16:13 -0700883 sparc64_pbm_msi_init(pbm, &pci_sun4v_msiq_ops);
David S. Millere9870c42007-05-07 23:28:50 -0700884}
David S. Miller35a17eb2007-02-10 17:41:02 -0800885#else /* CONFIG_PCI_MSI */
886static void pci_sun4v_msi_init(struct pci_pbm_info *pbm)
887{
888}
889#endif /* !(CONFIG_PCI_MSI) */
890
David S. Millerd3ae4b52008-09-09 23:54:02 -0700891static int __init pci_sun4v_pbm_init(struct pci_pbm_info *pbm,
David S. Millere822358a2008-09-01 18:32:22 -0700892 struct of_device *op, u32 devhandle)
David S. Millerbade5622006-02-09 22:05:54 -0800893{
David S. Millere822358a2008-09-01 18:32:22 -0700894 struct device_node *dp = op->node;
David S. Miller3822b502008-08-30 02:50:29 -0700895 int err;
David S. Millerbade5622006-02-09 22:05:54 -0800896
David S. Millerc1b1a5f12008-03-19 04:52:48 -0700897 pbm->numa_node = of_node_to_nid(dp);
898
David S. Millerca3dd882007-05-09 02:35:27 -0700899 pbm->pci_ops = &sun4v_pci_ops;
900 pbm->config_space_reg_bits = 12;
David S. Miller34768bc2007-05-07 23:06:27 -0700901
David S. Miller6c108f12007-05-07 23:49:01 -0700902 pbm->index = pci_num_pbms++;
903
David S. Miller22fecba2008-09-10 00:19:28 -0700904 pbm->op = op;
David S. Millerbade5622006-02-09 22:05:54 -0800905
David S. Miller38337892006-02-12 22:06:53 -0800906 pbm->devhandle = devhandle;
David S. Millerbade5622006-02-09 22:05:54 -0800907
David S. Millere87dc352006-06-21 18:18:47 -0700908 pbm->name = dp->full_name;
David S. Millerbade5622006-02-09 22:05:54 -0800909
David S. Millere87dc352006-06-21 18:18:47 -0700910 printk("%s: SUN4V PCI Bus Module\n", pbm->name);
David S. Millerc1b1a5f12008-03-19 04:52:48 -0700911 printk("%s: On NUMA node %d\n", pbm->name, pbm->numa_node);
David S. Millerbade5622006-02-09 22:05:54 -0800912
David S. Miller9fd8b642007-03-08 21:55:49 -0800913 pci_determine_mem_io_space(pbm);
David S. Millerbade5622006-02-09 22:05:54 -0800914
David S. Millercfa06522007-05-07 21:51:41 -0700915 pci_get_pbm_props(pbm);
David S. Miller3822b502008-08-30 02:50:29 -0700916
917 err = pci_sun4v_iommu_init(pbm);
918 if (err)
919 return err;
920
David S. Miller35a17eb2007-02-10 17:41:02 -0800921 pci_sun4v_msi_init(pbm);
David S. Miller3822b502008-08-30 02:50:29 -0700922
David S. Millere822358a2008-09-01 18:32:22 -0700923 pci_sun4v_scan_bus(pbm, &op->dev);
David S. Miller3822b502008-08-30 02:50:29 -0700924
David S. Millerd3ae4b52008-09-09 23:54:02 -0700925 pbm->next = pci_pbm_root;
926 pci_pbm_root = pbm;
927
David S. Miller3822b502008-08-30 02:50:29 -0700928 return 0;
David S. Millerbade5622006-02-09 22:05:54 -0800929}
930
David S. Miller3822b502008-08-30 02:50:29 -0700931static int __devinit pci_sun4v_probe(struct of_device *op,
932 const struct of_device_id *match)
David S. Miller8f6a93a2006-02-09 21:32:07 -0800933{
David S. Miller3822b502008-08-30 02:50:29 -0700934 const struct linux_prom64_registers *regs;
David S. Millere01c0d62007-05-25 01:04:15 -0700935 static int hvapi_negotiated = 0;
David S. Miller34768bc2007-05-07 23:06:27 -0700936 struct pci_pbm_info *pbm;
David S. Miller3822b502008-08-30 02:50:29 -0700937 struct device_node *dp;
David S. Miller16ce82d2007-04-26 21:08:21 -0700938 struct iommu *iommu;
David S. Miller7c8f4862006-02-13 21:50:27 -0800939 u32 devhandle;
David S. Millerd7472c32008-08-31 01:33:52 -0700940 int i, err;
David S. Miller38337892006-02-12 22:06:53 -0800941
David S. Miller3822b502008-08-30 02:50:29 -0700942 dp = op->node;
943
David S. Millere01c0d62007-05-25 01:04:15 -0700944 if (!hvapi_negotiated++) {
945 int err = sun4v_hvapi_register(HV_GRP_PCI,
946 vpci_major,
947 &vpci_minor);
948
949 if (err) {
David S. Miller3822b502008-08-30 02:50:29 -0700950 printk(KERN_ERR PFX "Could not register hvapi, "
951 "err=%d\n", err);
952 return err;
David S. Millere01c0d62007-05-25 01:04:15 -0700953 }
David S. Miller3822b502008-08-30 02:50:29 -0700954 printk(KERN_INFO PFX "Registered hvapi major[%lu] minor[%lu]\n",
David S. Millere01c0d62007-05-25 01:04:15 -0700955 vpci_major, vpci_minor);
David S. Millerad7ad572007-07-27 22:39:14 -0700956
957 dma_ops = &sun4v_dma_ops;
David S. Millere01c0d62007-05-25 01:04:15 -0700958 }
959
David S. Miller3822b502008-08-30 02:50:29 -0700960 regs = of_get_property(dp, "reg", NULL);
David S. Millerd7472c32008-08-31 01:33:52 -0700961 err = -ENODEV;
David S. Miller3822b502008-08-30 02:50:29 -0700962 if (!regs) {
963 printk(KERN_ERR PFX "Could not find config registers\n");
David S. Millerd7472c32008-08-31 01:33:52 -0700964 goto out_err;
Cyrill Gorcunov75c6d142007-11-20 17:32:19 -0800965 }
David S. Millere87dc352006-06-21 18:18:47 -0700966 devhandle = (regs->phys_addr >> 32UL) & 0x0fffffff;
David S. Miller38337892006-02-12 22:06:53 -0800967
David S. Millerd7472c32008-08-31 01:33:52 -0700968 err = -ENOMEM;
David S. Millerd3ae4b52008-09-09 23:54:02 -0700969 if (!iommu_batch_initialized) {
970 for_each_possible_cpu(i) {
971 unsigned long page = get_zeroed_page(GFP_KERNEL);
David S. Miller7c8f4862006-02-13 21:50:27 -0800972
David S. Millerd3ae4b52008-09-09 23:54:02 -0700973 if (!page)
974 goto out_err;
David S. Miller7c8f4862006-02-13 21:50:27 -0800975
David S. Millerd3ae4b52008-09-09 23:54:02 -0700976 per_cpu(iommu_batch, i).pglist = (u64 *) page;
977 }
978 iommu_batch_initialized = 1;
David S. Millerbade5622006-02-09 22:05:54 -0800979 }
David S. Miller7c8f4862006-02-13 21:50:27 -0800980
David S. Millerd3ae4b52008-09-09 23:54:02 -0700981 pbm = kzalloc(sizeof(*pbm), GFP_KERNEL);
982 if (!pbm) {
983 printk(KERN_ERR PFX "Could not allocate pci_pbm_info\n");
David S. Millerd7472c32008-08-31 01:33:52 -0700984 goto out_err;
David S. Miller3822b502008-08-30 02:50:29 -0700985 }
David S. Miller7c8f4862006-02-13 21:50:27 -0800986
David S. Millerd3ae4b52008-09-09 23:54:02 -0700987 iommu = kzalloc(sizeof(struct iommu), GFP_KERNEL);
David S. Miller3822b502008-08-30 02:50:29 -0700988 if (!iommu) {
David S. Millerd3ae4b52008-09-09 23:54:02 -0700989 printk(KERN_ERR PFX "Could not allocate pbm iommu\n");
David S. Millerd7472c32008-08-31 01:33:52 -0700990 goto out_free_controller;
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 pbm->iommu = iommu;
David S. Millerbade5622006-02-09 22:05:54 -0800994
David S. Millerd3ae4b52008-09-09 23:54:02 -0700995 err = pci_sun4v_pbm_init(pbm, op, devhandle);
996 if (err)
997 goto out_free_iommu;
David S. Miller7c8f4862006-02-13 21:50:27 -0800998
David S. Millerd3ae4b52008-09-09 23:54:02 -0700999 dev_set_drvdata(&op->dev, pbm);
David S. Millerbade5622006-02-09 22:05:54 -08001000
David S. Millerd3ae4b52008-09-09 23:54:02 -07001001 return 0;
David S. Miller7c8f4862006-02-13 21:50:27 -08001002
David S. Millerd3ae4b52008-09-09 23:54:02 -07001003out_free_iommu:
1004 kfree(pbm->iommu);
David S. Millerd7472c32008-08-31 01:33:52 -07001005
1006out_free_controller:
David S. Millerd3ae4b52008-09-09 23:54:02 -07001007 kfree(pbm);
David S. Millerd7472c32008-08-31 01:33:52 -07001008
1009out_err:
1010 return err;
David S. Miller8f6a93a2006-02-09 21:32:07 -08001011}
David S. Miller3822b502008-08-30 02:50:29 -07001012
David S. Millerfd098312008-08-31 01:23:17 -07001013static struct of_device_id __initdata pci_sun4v_match[] = {
David S. Miller3822b502008-08-30 02:50:29 -07001014 {
1015 .name = "pci",
1016 .compatible = "SUNW,sun4v-pci",
1017 },
1018 {},
1019};
1020
1021static struct of_platform_driver pci_sun4v_driver = {
1022 .name = DRIVER_NAME,
1023 .match_table = pci_sun4v_match,
1024 .probe = pci_sun4v_probe,
1025};
1026
1027static int __init pci_sun4v_init(void)
1028{
1029 return of_register_driver(&pci_sun4v_driver, &of_bus_type);
1030}
1031
1032subsys_initcall(pci_sun4v_init);