dart_iommu.c 9.9 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
2
 * arch/powerpc/sysdev/dart_iommu.c
L
Linus Torvalds 已提交
3
 *
4
 * Copyright (C) 2004 Olof Johansson <olof@lixom.net>, IBM Corporation
5 6
 * Copyright (C) 2005 Benjamin Herrenschmidt <benh@kernel.crashing.org>,
 *                    IBM Corporation
L
Linus Torvalds 已提交
7 8 9
 *
 * Based on pSeries_iommu.c:
 * Copyright (C) 2001 Mike Corrigan & Dave Engebretsen, IBM Corporation
10
 * Copyright (C) 2004 Olof Johansson <olof@lixom.net>, IBM Corporation
L
Linus Torvalds 已提交
11
 *
12 13
 * Dynamic DMA mapping support, Apple U3, U4 & IBM CPC925 "DART" iommu.
 *
L
Linus Torvalds 已提交
14 15 16 17 18
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
19
 *
L
Linus Torvalds 已提交
20 21 22 23
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
24
 *
L
Linus Torvalds 已提交
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 */

#include <linux/init.h>
#include <linux/types.h>
#include <linux/slab.h>
#include <linux/mm.h>
#include <linux/spinlock.h>
#include <linux/string.h>
#include <linux/pci.h>
#include <linux/dma-mapping.h>
#include <linux/vmalloc.h>
#include <asm/io.h>
#include <asm/prom.h>
#include <asm/iommu.h>
#include <asm/pci-bridge.h>
#include <asm/machdep.h>
#include <asm/abs_addr.h>
#include <asm/cacheflush.h>
#include <asm/lmb.h>
47
#include <asm/ppc-pci.h>
L
Linus Torvalds 已提交
48

D
David Gibson 已提交
49 50
#include "dart.h"

51
extern int iommu_is_off;
L
Linus Torvalds 已提交
52 53 54 55 56 57 58 59 60 61
extern int iommu_force_on;

/* Physical base address and size of the DART table */
unsigned long dart_tablebase; /* exported to htab_initialize */
static unsigned long dart_tablesize;

/* Virtual base address of the DART table */
static u32 *dart_vbase;

/* Mapped base address for the dart */
62
static unsigned int __iomem *dart;
L
Linus Torvalds 已提交
63 64 65 66

/* Dummy val that entries are set to when unused */
static unsigned int dart_emptyval;

67 68
static struct iommu_table iommu_table_dart;
static int iommu_table_dart_inited;
L
Linus Torvalds 已提交
69
static int dart_dirty;
70
static int dart_is_u4;
L
Linus Torvalds 已提交
71 72 73 74 75 76

#define DBG(...)

static inline void dart_tlb_invalidate_all(void)
{
	unsigned long l = 0;
77
	unsigned int reg, inv_bit;
L
Linus Torvalds 已提交
78 79 80 81 82 83 84 85 86
	unsigned long limit;

	DBG("dart: flush\n");

	/* To invalidate the DART, set the DARTCNTL_FLUSHTLB bit in the
	 * control register and wait for it to clear.
	 *
	 * Gotcha: Sometimes, the DART won't detect that the bit gets
	 * set. If so, clear it and set it again.
87
	 */
L
Linus Torvalds 已提交
88 89 90

	limit = 0;

91
	inv_bit = dart_is_u4 ? DART_CNTL_U4_FLUSHTLB : DART_CNTL_U3_FLUSHTLB;
L
Linus Torvalds 已提交
92 93
retry:
	l = 0;
94 95 96 97 98
	reg = DART_IN(DART_CNTL);
	reg |= inv_bit;
	DART_OUT(DART_CNTL, reg);

	while ((DART_IN(DART_CNTL) & inv_bit) && l < (1L << limit))
L
Linus Torvalds 已提交
99
		l++;
100
	if (l == (1L << limit)) {
L
Linus Torvalds 已提交
101 102
		if (limit < 4) {
			limit++;
O
Olof Johansson 已提交
103 104
			reg = DART_IN(DART_CNTL);
			reg &= ~inv_bit;
105
			DART_OUT(DART_CNTL, reg);
L
Linus Torvalds 已提交
106 107
			goto retry;
		} else
108
			panic("DART: TLB did not flush after waiting a long "
L
Linus Torvalds 已提交
109 110 111 112
			      "time. Buggy U3 ?");
	}
}

O
Olof Johansson 已提交
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
static inline void dart_tlb_invalidate_one(unsigned long bus_rpn)
{
	unsigned int reg;
	unsigned int l, limit;

	reg = DART_CNTL_U4_ENABLE | DART_CNTL_U4_IONE |
		(bus_rpn & DART_CNTL_U4_IONE_MASK);
	DART_OUT(DART_CNTL, reg);

	limit = 0;
wait_more:
	l = 0;
	while ((DART_IN(DART_CNTL) & DART_CNTL_U4_IONE) && l < (1L << limit)) {
		rmb();
		l++;
	}

	if (l == (1L << limit)) {
		if (limit < 4) {
			limit++;
			goto wait_more;
		} else
			panic("DART: TLB did not flush after waiting a long "
			      "time. Buggy U4 ?");
	}
}

L
Linus Torvalds 已提交
140 141
static void dart_flush(struct iommu_table *tbl)
{
142
	mb();
O
Olof Johansson 已提交
143
	if (dart_dirty) {
L
Linus Torvalds 已提交
144
		dart_tlb_invalidate_all();
O
Olof Johansson 已提交
145 146
		dart_dirty = 0;
	}
L
Linus Torvalds 已提交
147 148
}

149
static void dart_build(struct iommu_table *tbl, long index,
L
Linus Torvalds 已提交
150 151 152 153 154
		       long npages, unsigned long uaddr,
		       enum dma_data_direction direction)
{
	unsigned int *dp;
	unsigned int rpn;
O
Olof Johansson 已提交
155
	long l;
L
Linus Torvalds 已提交
156 157 158

	DBG("dart: build at: %lx, %lx, addr: %x\n", index, npages, uaddr);

159 160 161
	index <<= DART_PAGE_FACTOR;
	npages <<= DART_PAGE_FACTOR;

L
Linus Torvalds 已提交
162
	dp = ((unsigned int*)tbl->it_base) + index;
163

L
Linus Torvalds 已提交
164 165 166
	/* On U3, all memory is contigous, so we can move this
	 * out of the loop.
	 */
O
Olof Johansson 已提交
167 168
	l = npages;
	while (l--) {
169
		rpn = virt_to_abs(uaddr) >> DART_PAGE_SHIFT;
L
Linus Torvalds 已提交
170 171 172

		*(dp++) = DARTMAP_VALID | (rpn & DARTMAP_RPNMASK);

173
		uaddr += DART_PAGE_SIZE;
L
Linus Torvalds 已提交
174 175
	}

176 177 178 179 180
	/* make sure all updates have reached memory */
	mb();
	in_be32((unsigned __iomem *)dp);
	mb();

O
Olof Johansson 已提交
181 182 183 184 185 186 187
	if (dart_is_u4) {
		rpn = index;
		while (npages--)
			dart_tlb_invalidate_one(rpn++);
	} else {
		dart_dirty = 1;
	}
L
Linus Torvalds 已提交
188 189 190 191 192 193
}


static void dart_free(struct iommu_table *tbl, long index, long npages)
{
	unsigned int *dp;
194

L
Linus Torvalds 已提交
195 196 197 198 199 200 201
	/* We don't worry about flushing the TLB cache. The only drawback of
	 * not doing it is that we won't catch buggy device drivers doing
	 * bad DMAs, but then no 32-bit architecture ever does either.
	 */

	DBG("dart: free at: %lx, %lx\n", index, npages);

202 203 204
	index <<= DART_PAGE_FACTOR;
	npages <<= DART_PAGE_FACTOR;

L
Linus Torvalds 已提交
205
	dp  = ((unsigned int *)tbl->it_base) + index;
206

L
Linus Torvalds 已提交
207 208 209 210 211 212 213 214
	while (npages--)
		*(dp++) = dart_emptyval;
}


static int dart_init(struct device_node *dart_node)
{
	unsigned int i;
215 216
	unsigned long tmp, base, size;
	struct resource r;
L
Linus Torvalds 已提交
217 218

	if (dart_tablebase == 0 || dart_tablesize == 0) {
219 220
		printk(KERN_INFO "DART: table not allocated, using "
		       "direct DMA\n");
L
Linus Torvalds 已提交
221 222 223
		return -ENODEV;
	}

224 225 226
	if (of_address_to_resource(dart_node, 0, &r))
		panic("DART: can't get register base ! ");

L
Linus Torvalds 已提交
227 228 229 230
	/* Make sure nothing from the DART range remains in the CPU cache
	 * from a previous mapping that existed before the kernel took
	 * over
	 */
231 232
	flush_dcache_phys_range(dart_tablebase,
				dart_tablebase + dart_tablesize);
L
Linus Torvalds 已提交
233 234 235 236 237

	/* Allocate a spare page to map all invalid DART pages. We need to do
	 * that to work around what looks like a problem with the HT bridge
	 * prefetching into invalid pages and corrupting data
	 */
238
	tmp = lmb_alloc(DART_PAGE_SIZE, DART_PAGE_SIZE);
239 240
	dart_emptyval = DARTMAP_VALID | ((tmp >> DART_PAGE_SHIFT) &
					 DARTMAP_RPNMASK);
L
Linus Torvalds 已提交
241

242 243
	/* Map in DART registers */
	dart = ioremap(r.start, r.end - r.start + 1);
L
Linus Torvalds 已提交
244
	if (dart == NULL)
245
		panic("DART: Cannot map registers!");
L
Linus Torvalds 已提交
246

247
	/* Map in DART table */
L
Linus Torvalds 已提交
248 249 250 251 252 253 254
	dart_vbase = ioremap(virt_to_abs(dart_tablebase), dart_tablesize);

	/* Fill initial table */
	for (i = 0; i < dart_tablesize/4; i++)
		dart_vbase[i] = dart_emptyval;

	/* Initialize DART with table base and enable it. */
255 256 257
	base = dart_tablebase >> DART_PAGE_SHIFT;
	size = dart_tablesize >> DART_PAGE_SHIFT;
	if (dart_is_u4) {
258
		size &= DART_SIZE_U4_SIZE_MASK;
259 260 261 262
		DART_OUT(DART_BASE_U4, base);
		DART_OUT(DART_SIZE_U4, size);
		DART_OUT(DART_CNTL, DART_CNTL_U4_ENABLE);
	} else {
263
		size &= DART_CNTL_U3_SIZE_MASK;
264 265 266 267 268
		DART_OUT(DART_CNTL,
			 DART_CNTL_U3_ENABLE |
			 (base << DART_CNTL_U3_BASE_SHIFT) |
			 (size << DART_CNTL_U3_SIZE_SHIFT));
	}
L
Linus Torvalds 已提交
269 270 271 272

	/* Invalidate DART to get rid of possible stale TLBs */
	dart_tlb_invalidate_all();

273 274
	printk(KERN_INFO "DART IOMMU initialized for %s type chipset\n",
	       dart_is_u4 ? "U4" : "U3");
L
Linus Torvalds 已提交
275 276 277 278

	return 0;
}

279
static void iommu_table_dart_setup(void)
L
Linus Torvalds 已提交
280
{
281 282
	iommu_table_dart.it_busno = 0;
	iommu_table_dart.it_offset = 0;
L
Linus Torvalds 已提交
283
	/* it_size is in number of entries */
284
	iommu_table_dart.it_size = (dart_tablesize / sizeof(u32)) >> DART_PAGE_FACTOR;
L
Linus Torvalds 已提交
285 286

	/* Initialize the common IOMMU code */
287 288 289
	iommu_table_dart.it_base = (unsigned long)dart_vbase;
	iommu_table_dart.it_index = 0;
	iommu_table_dart.it_blocksize = 1;
290
	iommu_init_table(&iommu_table_dart, -1);
L
Linus Torvalds 已提交
291 292 293 294

	/* Reserve the last page of the DART to avoid possible prefetch
	 * past the DART mapped area
	 */
295
	set_bit(iommu_table_dart.it_size - 1, iommu_table_dart.it_map);
L
Linus Torvalds 已提交
296 297
}

298
static void iommu_dev_setup_dart(struct pci_dev *dev)
L
Linus Torvalds 已提交
299 300 301 302 303 304 305 306 307 308 309 310 311
{
	struct device_node *dn;

	/* We only have one iommu table on the mac for now, which makes
	 * things simple. Setup all PCI devices to point to this table
	 *
	 * We must use pci_device_to_OF_node() to make sure that
	 * we get the real "final" pointer to the device in the
	 * pci_dev sysdata and not the temporary PHB one
	 */
	dn = pci_device_to_OF_node(dev);

	if (dn)
312
		PCI_DN(dn)->iommu_table = &iommu_table_dart;
L
Linus Torvalds 已提交
313 314
}

315
static void iommu_bus_setup_dart(struct pci_bus *bus)
L
Linus Torvalds 已提交
316 317 318
{
	struct device_node *dn;

319 320 321
	if (!iommu_table_dart_inited) {
		iommu_table_dart_inited = 1;
		iommu_table_dart_setup();
L
Linus Torvalds 已提交
322 323 324 325 326
	}

	dn = pci_bus_to_OF_node(bus);

	if (dn)
327
		PCI_DN(dn)->iommu_table = &iommu_table_dart;
L
Linus Torvalds 已提交
328 329 330 331 332
}

static void iommu_dev_setup_null(struct pci_dev *dev) { }
static void iommu_bus_setup_null(struct pci_bus *bus) { }

333
void iommu_init_early_dart(void)
L
Linus Torvalds 已提交
334 335 336 337 338
{
	struct device_node *dn;

	/* Find the DART in the device-tree */
	dn = of_find_compatible_node(NULL, "dart", "u3-dart");
339 340 341 342 343 344
	if (dn == NULL) {
		dn = of_find_compatible_node(NULL, "dart", "u4-dart");
		if (dn == NULL)
			goto bail;
		dart_is_u4 = 1;
	}
L
Linus Torvalds 已提交
345 346 347 348 349 350 351

	/* Setup low level TCE operations for the core IOMMU code */
	ppc_md.tce_build = dart_build;
	ppc_md.tce_free  = dart_free;
	ppc_md.tce_flush = dart_flush;

	/* Initialize the DART HW */
352 353 354
	if (dart_init(dn) == 0) {
		ppc_md.iommu_dev_setup = iommu_dev_setup_dart;
		ppc_md.iommu_bus_setup = iommu_bus_setup_dart;
L
Linus Torvalds 已提交
355 356 357

		/* Setup pci_dma ops */
		pci_iommu_init();
358 359

		return;
L
Linus Torvalds 已提交
360
	}
361 362 363 364 365 366 367 368

 bail:
	/* If init failed, use direct iommu and null setup functions */
	ppc_md.iommu_dev_setup = iommu_dev_setup_null;
	ppc_md.iommu_bus_setup = iommu_bus_setup_null;

	/* Setup pci_dma ops */
	pci_direct_iommu_init();
L
Linus Torvalds 已提交
369 370 371
}


372
void __init alloc_dart_table(void)
L
Linus Torvalds 已提交
373
{
374
	/* Only reserve DART space if machine has more than 1GB of RAM
L
Linus Torvalds 已提交
375
	 * or if requested with iommu=on on cmdline.
376 377 378
	 *
	 * 1GB of RAM is picked as limit because some default devices
	 * (i.e. Airport Extreme) have 30 bit address range limits.
L
Linus Torvalds 已提交
379
	 */
380 381 382 383 384

	if (iommu_is_off)
		return;

	if (!iommu_force_on && lmb_end_of_DRAM() <= 0x40000000ull)
L
Linus Torvalds 已提交
385 386 387 388 389 390 391 392 393 394
		return;

	/* 512 pages (2MB) is max DART tablesize. */
	dart_tablesize = 1UL << 21;
	/* 16MB (1 << 24) alignment. We allocate a full 16Mb chuck since we
	 * will blow up an entire large page anyway in the kernel mapping
	 */
	dart_tablebase = (unsigned long)
		abs_to_virt(lmb_alloc_base(1UL<<24, 1UL<<24, 0x80000000L));

395
	printk(KERN_INFO "DART table allocated at: %lx\n", dart_tablebase);
L
Linus Torvalds 已提交
396
}