Merge branch 'misc' of master.kernel.org:/pub/scm/linux/kernel/git/galak/powerpc...
[pandora-kernel.git] / arch / powerpc / kernel / pci_iommu.c
1 /*
2  * Copyright (C) 2001 Mike Corrigan & Dave Engebretsen, IBM Corporation
3  *
4  * Rewrite, cleanup, new allocation schemes:
5  * Copyright (C) 2004 Olof Johansson, IBM Corporation
6  *
7  * Dynamic DMA mapping support, platform-independent parts.
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
22  */
23
24
25 #include <linux/init.h>
26 #include <linux/types.h>
27 #include <linux/slab.h>
28 #include <linux/mm.h>
29 #include <linux/spinlock.h>
30 #include <linux/string.h>
31 #include <linux/pci.h>
32 #include <linux/dma-mapping.h>
33 #include <asm/io.h>
34 #include <asm/prom.h>
35 #include <asm/iommu.h>
36 #include <asm/pci-bridge.h>
37 #include <asm/machdep.h>
38 #include <asm/ppc-pci.h>
39
40 /*
41  * We can use ->sysdata directly and avoid the extra work in
42  * pci_device_to_OF_node since ->sysdata will have been initialised
43  * in the iommu init code for all devices.
44  */
45 #define PCI_GET_DN(dev) ((struct device_node *)((dev)->sysdata))
46
47 static inline struct iommu_table *devnode_table(struct device *dev)
48 {
49         struct pci_dev *pdev;
50
51         if (!dev) {
52                 pdev = ppc64_isabridge_dev;
53                 if (!pdev)
54                         return NULL;
55         } else
56                 pdev = to_pci_dev(dev);
57
58         return PCI_DN(PCI_GET_DN(pdev))->iommu_table;
59 }
60
61
62 static inline unsigned long device_to_mask(struct device *hwdev)
63 {
64         struct pci_dev *pdev;
65
66         if (!hwdev) {
67                 pdev = ppc64_isabridge_dev;
68                 if (!pdev) /* This is the best guess we can do */
69                         return 0xfffffffful;
70         } else
71                 pdev = to_pci_dev(hwdev);
72
73         if (pdev->dma_mask)
74                 return pdev->dma_mask;
75
76         /* Assume devices without mask can take 32 bit addresses */
77         return 0xfffffffful;
78 }
79
80
81 /* Allocates a contiguous real buffer and creates mappings over it.
82  * Returns the virtual address of the buffer and sets dma_handle
83  * to the dma address (mapping) of the first page.
84  */
85 static void *pci_iommu_alloc_coherent(struct device *hwdev, size_t size,
86                            dma_addr_t *dma_handle, gfp_t flag)
87 {
88         return iommu_alloc_coherent(devnode_table(hwdev), size, dma_handle,
89                         device_to_mask(hwdev), flag);
90 }
91
92 static void pci_iommu_free_coherent(struct device *hwdev, size_t size,
93                          void *vaddr, dma_addr_t dma_handle)
94 {
95         iommu_free_coherent(devnode_table(hwdev), size, vaddr, dma_handle);
96 }
97
98 /* Creates TCEs for a user provided buffer.  The user buffer must be 
99  * contiguous real kernel storage (not vmalloc).  The address of the buffer
100  * passed here is the kernel (virtual) address of the buffer.  The buffer
101  * need not be page aligned, the dma_addr_t returned will point to the same
102  * byte within the page as vaddr.
103  */
104 static dma_addr_t pci_iommu_map_single(struct device *hwdev, void *vaddr,
105                 size_t size, enum dma_data_direction direction)
106 {
107         return iommu_map_single(devnode_table(hwdev), vaddr, size,
108                                 device_to_mask(hwdev), direction);
109 }
110
111
112 static void pci_iommu_unmap_single(struct device *hwdev, dma_addr_t dma_handle,
113                 size_t size, enum dma_data_direction direction)
114 {
115         iommu_unmap_single(devnode_table(hwdev), dma_handle, size, direction);
116 }
117
118
119 static int pci_iommu_map_sg(struct device *pdev, struct scatterlist *sglist,
120                 int nelems, enum dma_data_direction direction)
121 {
122         return iommu_map_sg(pdev, devnode_table(pdev), sglist,
123                         nelems, device_to_mask(pdev), direction);
124 }
125
126 static void pci_iommu_unmap_sg(struct device *pdev, struct scatterlist *sglist,
127                 int nelems, enum dma_data_direction direction)
128 {
129         iommu_unmap_sg(devnode_table(pdev), sglist, nelems, direction);
130 }
131
132 /* We support DMA to/from any memory page via the iommu */
133 static int pci_iommu_dma_supported(struct device *dev, u64 mask)
134 {
135         struct iommu_table *tbl = devnode_table(dev);
136
137         if (!tbl || tbl->it_offset > mask) {
138                 printk(KERN_INFO "Warning: IOMMU table offset too big for device mask\n");
139                 if (tbl)
140                         printk(KERN_INFO "mask: 0x%08lx, table offset: 0x%08lx\n",
141                                 mask, tbl->it_offset);
142                 else
143                         printk(KERN_INFO "mask: 0x%08lx, table unavailable\n",
144                                 mask);
145                 return 0;
146         } else
147                 return 1;
148 }
149
150 void pci_iommu_init(void)
151 {
152         pci_dma_ops.alloc_coherent = pci_iommu_alloc_coherent;
153         pci_dma_ops.free_coherent = pci_iommu_free_coherent;
154         pci_dma_ops.map_single = pci_iommu_map_single;
155         pci_dma_ops.unmap_single = pci_iommu_unmap_single;
156         pci_dma_ops.map_sg = pci_iommu_map_sg;
157         pci_dma_ops.unmap_sg = pci_iommu_unmap_sg;
158         pci_dma_ops.dma_supported = pci_iommu_dma_supported;
159 }