iommu.c 38.1 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3
/*
 * Copyright (C) 2001 Mike Corrigan & Dave Engebretsen, IBM Corporation
 *
4
 * Rewrite, cleanup:
L
Linus Torvalds 已提交
5
 *
6
 * Copyright (C) 2004 Olof Johansson <olof@lixom.net>, IBM Corporation
7
 * Copyright (C) 2006 Olof Johansson <olof@lixom.net>
L
Linus Torvalds 已提交
8 9 10
 *
 * Dynamic DMA mapping support, pSeries-specific parts, both SMP and LPAR.
 *
11
 *
L
Linus Torvalds 已提交
12 13 14 15
 * 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.
16
 *
L
Linus Torvalds 已提交
17 18 19 20
 * 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.
21
 *
L
Linus Torvalds 已提交
22 23 24 25 26 27 28 29 30
 * 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>
31
#include <linux/memblock.h>
L
Linus Torvalds 已提交
32
#include <linux/spinlock.h>
33
#include <linux/sched.h>	/* for show_stack */
L
Linus Torvalds 已提交
34 35 36
#include <linux/string.h>
#include <linux/pci.h>
#include <linux/dma-mapping.h>
M
Milton Miller 已提交
37
#include <linux/crash_dump.h>
38
#include <linux/memory.h>
39
#include <linux/of.h>
L
Linus Torvalds 已提交
40 41 42 43 44 45
#include <asm/io.h>
#include <asm/prom.h>
#include <asm/rtas.h>
#include <asm/iommu.h>
#include <asm/pci-bridge.h>
#include <asm/machdep.h>
46
#include <asm/firmware.h>
47
#include <asm/tce.h>
48
#include <asm/ppc-pci.h>
P
Paul Mackerras 已提交
49
#include <asm/udbg.h>
50
#include <asm/mmzone.h>
L
Linus Torvalds 已提交
51

52 53
#include "plpar_wrappers.h"

L
Linus Torvalds 已提交
54

55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
static void tce_invalidate_pSeries_sw(struct iommu_table *tbl,
				      u64 *startp, u64 *endp)
{
	u64 __iomem *invalidate = (u64 __iomem *)tbl->it_index;
	unsigned long start, end, inc;

	start = __pa(startp);
	end = __pa(endp);
	inc = L1_CACHE_BYTES; /* invalidate a cacheline of TCEs at a time */

	/* If this is non-zero, change the format.  We shift the
	 * address and or in the magic from the device tree. */
	if (tbl->it_busno) {
		start <<= 12;
		end <<= 12;
		inc <<= 12;
		start |= tbl->it_busno;
		end |= tbl->it_busno;
	}

	end |= inc - 1; /* round up end to be different than start */

	mb(); /* Make sure TCEs in memory are written */
	while (start <= end) {
		out_be64(invalidate, start);
		start += inc;
	}
}

84
static int tce_build_pSeries(struct iommu_table *tbl, long index,
85
			      long npages, unsigned long uaddr,
86 87
			      enum dma_data_direction direction,
			      struct dma_attrs *attrs)
L
Linus Torvalds 已提交
88
{
89
	u64 proto_tce;
90
	u64 *tcep, *tces;
91
	u64 rpn;
L
Linus Torvalds 已提交
92

93
	proto_tce = TCE_PCI_READ; // Read allowed
L
Linus Torvalds 已提交
94 95

	if (direction != DMA_TO_DEVICE)
96
		proto_tce |= TCE_PCI_WRITE;
L
Linus Torvalds 已提交
97

98
	tces = tcep = ((u64 *)tbl->it_base) + index;
L
Linus Torvalds 已提交
99 100

	while (npages--) {
Y
Yinghai Lu 已提交
101
		/* can't move this out since we might cross MEMBLOCK boundary */
102
		rpn = __pa(uaddr) >> TCE_SHIFT;
103
		*tcep = proto_tce | (rpn & TCE_RPN_MASK) << TCE_RPN_SHIFT;
L
Linus Torvalds 已提交
104

105
		uaddr += TCE_PAGE_SIZE;
106
		tcep++;
L
Linus Torvalds 已提交
107
	}
108

109
	if (tbl->it_type & TCE_PCI_SWINV_CREATE)
110
		tce_invalidate_pSeries_sw(tbl, tces, tcep - 1);
111
	return 0;
L
Linus Torvalds 已提交
112 113 114 115 116
}


static void tce_free_pSeries(struct iommu_table *tbl, long index, long npages)
{
117
	u64 *tcep, *tces;
L
Linus Torvalds 已提交
118

119
	tces = tcep = ((u64 *)tbl->it_base) + index;
120 121 122

	while (npages--)
		*(tcep++) = 0;
123

124
	if (tbl->it_type & TCE_PCI_SWINV_FREE)
125
		tce_invalidate_pSeries_sw(tbl, tces, tcep - 1);
L
Linus Torvalds 已提交
126 127
}

128 129 130 131 132 133 134 135
static unsigned long tce_get_pseries(struct iommu_table *tbl, long index)
{
	u64 *tcep;

	tcep = ((u64 *)tbl->it_base) + index;

	return *tcep;
}
L
Linus Torvalds 已提交
136

137 138 139 140
static void tce_free_pSeriesLP(struct iommu_table*, long, long);
static void tce_freemulti_pSeriesLP(struct iommu_table*, long, long);

static int tce_build_pSeriesLP(struct iommu_table *tbl, long tcenum,
L
Linus Torvalds 已提交
141
				long npages, unsigned long uaddr,
142 143
				enum dma_data_direction direction,
				struct dma_attrs *attrs)
L
Linus Torvalds 已提交
144
{
145
	u64 rc = 0;
146 147
	u64 proto_tce, tce;
	u64 rpn;
148 149
	int ret = 0;
	long tcenum_start = tcenum, npages_start = npages;
L
Linus Torvalds 已提交
150

151
	rpn = __pa(uaddr) >> TCE_SHIFT;
152
	proto_tce = TCE_PCI_READ;
L
Linus Torvalds 已提交
153
	if (direction != DMA_TO_DEVICE)
154
		proto_tce |= TCE_PCI_WRITE;
L
Linus Torvalds 已提交
155 156

	while (npages--) {
157 158 159
		tce = proto_tce | (rpn & TCE_RPN_MASK) << TCE_RPN_SHIFT;
		rc = plpar_tce_put((u64)tbl->it_index, (u64)tcenum << 12, tce);

160 161 162 163 164 165 166
		if (unlikely(rc == H_NOT_ENOUGH_RESOURCES)) {
			ret = (int)rc;
			tce_free_pSeriesLP(tbl, tcenum_start,
			                   (npages_start - (npages + 1)));
			break;
		}

L
Linus Torvalds 已提交
167
		if (rc && printk_ratelimit()) {
168 169 170 171
			printk("tce_build_pSeriesLP: plpar_tce_put failed. rc=%lld\n", rc);
			printk("\tindex   = 0x%llx\n", (u64)tbl->it_index);
			printk("\ttcenum  = 0x%llx\n", (u64)tcenum);
			printk("\ttce val = 0x%llx\n", tce );
L
Linus Torvalds 已提交
172 173
			show_stack(current, (unsigned long *)__get_SP());
		}
174

L
Linus Torvalds 已提交
175
		tcenum++;
176
		rpn++;
L
Linus Torvalds 已提交
177
	}
178
	return ret;
L
Linus Torvalds 已提交
179 180
}

181
static DEFINE_PER_CPU(u64 *, tce_page);
L
Linus Torvalds 已提交
182

183
static int tce_buildmulti_pSeriesLP(struct iommu_table *tbl, long tcenum,
L
Linus Torvalds 已提交
184
				     long npages, unsigned long uaddr,
185 186
				     enum dma_data_direction direction,
				     struct dma_attrs *attrs)
L
Linus Torvalds 已提交
187
{
188
	u64 rc = 0;
189 190 191
	u64 proto_tce;
	u64 *tcep;
	u64 rpn;
L
Linus Torvalds 已提交
192
	long l, limit;
193 194
	long tcenum_start = tcenum, npages_start = npages;
	int ret = 0;
195
	unsigned long flags;
L
Linus Torvalds 已提交
196

197
	if (npages == 1) {
198 199
		return tce_build_pSeriesLP(tbl, tcenum, npages, uaddr,
		                           direction, attrs);
200
	}
L
Linus Torvalds 已提交
201

202 203
	local_irq_save(flags);	/* to protect tcep and the page behind it */

L
Linus Torvalds 已提交
204 205 206 207 208 209
	tcep = __get_cpu_var(tce_page);

	/* This is safe to do since interrupts are off when we're called
	 * from iommu_alloc{,_sg}()
	 */
	if (!tcep) {
210
		tcep = (u64 *)__get_free_page(GFP_ATOMIC);
L
Linus Torvalds 已提交
211
		/* If allocation fails, fall back to the loop implementation */
212
		if (!tcep) {
213
			local_irq_restore(flags);
214
			return tce_build_pSeriesLP(tbl, tcenum, npages, uaddr,
215
					    direction, attrs);
216
		}
L
Linus Torvalds 已提交
217 218 219
		__get_cpu_var(tce_page) = tcep;
	}

220
	rpn = __pa(uaddr) >> TCE_SHIFT;
221
	proto_tce = TCE_PCI_READ;
L
Linus Torvalds 已提交
222
	if (direction != DMA_TO_DEVICE)
223
		proto_tce |= TCE_PCI_WRITE;
L
Linus Torvalds 已提交
224 225 226 227 228 229 230

	/* We can map max one pageful of TCEs at a time */
	do {
		/*
		 * Set up the page with TCE data, looping through and setting
		 * the values.
		 */
231
		limit = min_t(long, npages, 4096/TCE_ENTRY_SIZE);
L
Linus Torvalds 已提交
232 233

		for (l = 0; l < limit; l++) {
234 235
			tcep[l] = proto_tce | (rpn & TCE_RPN_MASK) << TCE_RPN_SHIFT;
			rpn++;
L
Linus Torvalds 已提交
236 237 238 239
		}

		rc = plpar_tce_put_indirect((u64)tbl->it_index,
					    (u64)tcenum << 12,
240
					    (u64)__pa(tcep),
L
Linus Torvalds 已提交
241 242 243 244 245 246
					    limit);

		npages -= limit;
		tcenum += limit;
	} while (npages > 0 && !rc);

247 248
	local_irq_restore(flags);

249 250 251 252 253 254 255
	if (unlikely(rc == H_NOT_ENOUGH_RESOURCES)) {
		ret = (int)rc;
		tce_freemulti_pSeriesLP(tbl, tcenum_start,
		                        (npages_start - (npages + limit)));
		return ret;
	}

L
Linus Torvalds 已提交
256
	if (rc && printk_ratelimit()) {
257 258 259 260
		printk("tce_buildmulti_pSeriesLP: plpar_tce_put failed. rc=%lld\n", rc);
		printk("\tindex   = 0x%llx\n", (u64)tbl->it_index);
		printk("\tnpages  = 0x%llx\n", (u64)npages);
		printk("\ttce[0] val = 0x%llx\n", tcep[0]);
L
Linus Torvalds 已提交
261 262
		show_stack(current, (unsigned long *)__get_SP());
	}
263
	return ret;
L
Linus Torvalds 已提交
264 265 266 267 268 269 270
}

static void tce_free_pSeriesLP(struct iommu_table *tbl, long tcenum, long npages)
{
	u64 rc;

	while (npages--) {
271
		rc = plpar_tce_put((u64)tbl->it_index, (u64)tcenum << 12, 0);
L
Linus Torvalds 已提交
272 273

		if (rc && printk_ratelimit()) {
274 275 276
			printk("tce_free_pSeriesLP: plpar_tce_put failed. rc=%lld\n", rc);
			printk("\tindex   = 0x%llx\n", (u64)tbl->it_index);
			printk("\ttcenum  = 0x%llx\n", (u64)tcenum);
L
Linus Torvalds 已提交
277 278 279 280 281 282 283 284 285 286 287 288
			show_stack(current, (unsigned long *)__get_SP());
		}

		tcenum++;
	}
}


static void tce_freemulti_pSeriesLP(struct iommu_table *tbl, long tcenum, long npages)
{
	u64 rc;

289
	rc = plpar_tce_stuff((u64)tbl->it_index, (u64)tcenum << 12, 0, npages);
L
Linus Torvalds 已提交
290 291 292

	if (rc && printk_ratelimit()) {
		printk("tce_freemulti_pSeriesLP: plpar_tce_stuff failed\n");
293 294 295
		printk("\trc      = %lld\n", rc);
		printk("\tindex   = 0x%llx\n", (u64)tbl->it_index);
		printk("\tnpages  = 0x%llx\n", (u64)npages);
L
Linus Torvalds 已提交
296 297 298 299
		show_stack(current, (unsigned long *)__get_SP());
	}
}

300 301 302 303 304 305 306 307
static unsigned long tce_get_pSeriesLP(struct iommu_table *tbl, long tcenum)
{
	u64 rc;
	unsigned long tce_ret;

	rc = plpar_tce_get((u64)tbl->it_index, (u64)tcenum << 12, &tce_ret);

	if (rc && printk_ratelimit()) {
308 309 310
		printk("tce_get_pSeriesLP: plpar_tce_get failed. rc=%lld\n", rc);
		printk("\tindex   = 0x%llx\n", (u64)tbl->it_index);
		printk("\ttcenum  = 0x%llx\n", (u64)tcenum);
311 312 313 314 315 316
		show_stack(current, (unsigned long *)__get_SP());
	}

	return tce_ret;
}

L
Lucas De Marchi 已提交
317
/* this is compatible with cells for the device tree property */
318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384
struct dynamic_dma_window_prop {
	__be32	liobn;		/* tce table number */
	__be64	dma_base;	/* address hi,lo */
	__be32	tce_shift;	/* ilog2(tce_page_size) */
	__be32	window_shift;	/* ilog2(tce_window_size) */
};

struct direct_window {
	struct device_node *device;
	const struct dynamic_dma_window_prop *prop;
	struct list_head list;
};

/* Dynamic DMA Window support */
struct ddw_query_response {
	u32 windows_available;
	u32 largest_available_block;
	u32 page_size;
	u32 migration_capable;
};

struct ddw_create_response {
	u32 liobn;
	u32 addr_hi;
	u32 addr_lo;
};

static LIST_HEAD(direct_window_list);
/* prevents races between memory on/offline and window creation */
static DEFINE_SPINLOCK(direct_window_list_lock);
/* protects initializing window twice for same device */
static DEFINE_MUTEX(direct_window_init_mutex);
#define DIRECT64_PROPNAME "linux,direct64-ddr-window-info"

static int tce_clearrange_multi_pSeriesLP(unsigned long start_pfn,
					unsigned long num_pfn, const void *arg)
{
	const struct dynamic_dma_window_prop *maprange = arg;
	int rc;
	u64 tce_size, num_tce, dma_offset, next;
	u32 tce_shift;
	long limit;

	tce_shift = be32_to_cpu(maprange->tce_shift);
	tce_size = 1ULL << tce_shift;
	next = start_pfn << PAGE_SHIFT;
	num_tce = num_pfn << PAGE_SHIFT;

	/* round back to the beginning of the tce page size */
	num_tce += next & (tce_size - 1);
	next &= ~(tce_size - 1);

	/* covert to number of tces */
	num_tce |= tce_size - 1;
	num_tce >>= tce_shift;

	do {
		/*
		 * Set up the page with TCE data, looping through and setting
		 * the values.
		 */
		limit = min_t(long, num_tce, 512);
		dma_offset = next + be64_to_cpu(maprange->dma_base);

		rc = plpar_tce_stuff((u64)be32_to_cpu(maprange->liobn),
					     dma_offset,
					     0, limit);
385
		next += limit * tce_size;
386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444
		num_tce -= limit;
	} while (num_tce > 0 && !rc);

	return rc;
}

static int tce_setrange_multi_pSeriesLP(unsigned long start_pfn,
					unsigned long num_pfn, const void *arg)
{
	const struct dynamic_dma_window_prop *maprange = arg;
	u64 *tcep, tce_size, num_tce, dma_offset, next, proto_tce, liobn;
	u32 tce_shift;
	u64 rc = 0;
	long l, limit;

	local_irq_disable();	/* to protect tcep and the page behind it */
	tcep = __get_cpu_var(tce_page);

	if (!tcep) {
		tcep = (u64 *)__get_free_page(GFP_ATOMIC);
		if (!tcep) {
			local_irq_enable();
			return -ENOMEM;
		}
		__get_cpu_var(tce_page) = tcep;
	}

	proto_tce = TCE_PCI_READ | TCE_PCI_WRITE;

	liobn = (u64)be32_to_cpu(maprange->liobn);
	tce_shift = be32_to_cpu(maprange->tce_shift);
	tce_size = 1ULL << tce_shift;
	next = start_pfn << PAGE_SHIFT;
	num_tce = num_pfn << PAGE_SHIFT;

	/* round back to the beginning of the tce page size */
	num_tce += next & (tce_size - 1);
	next &= ~(tce_size - 1);

	/* covert to number of tces */
	num_tce |= tce_size - 1;
	num_tce >>= tce_shift;

	/* We can map max one pageful of TCEs at a time */
	do {
		/*
		 * Set up the page with TCE data, looping through and setting
		 * the values.
		 */
		limit = min_t(long, num_tce, 4096/TCE_ENTRY_SIZE);
		dma_offset = next + be64_to_cpu(maprange->dma_base);

		for (l = 0; l < limit; l++) {
			tcep[l] = proto_tce | next;
			next += tce_size;
		}

		rc = plpar_tce_put_indirect(liobn,
					    dma_offset,
445
					    (u64)__pa(tcep),
446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463
					    limit);

		num_tce -= limit;
	} while (num_tce > 0 && !rc);

	/* error cleanup: caller will clear whole range */

	local_irq_enable();
	return rc;
}

static int tce_setrange_multi_pSeriesLP_walk(unsigned long start_pfn,
		unsigned long num_pfn, void *arg)
{
	return tce_setrange_multi_pSeriesLP(start_pfn, num_pfn, arg);
}


464
#ifdef CONFIG_PCI
L
Linus Torvalds 已提交
465 466
static void iommu_table_setparms(struct pci_controller *phb,
				 struct device_node *dn,
467
				 struct iommu_table *tbl)
L
Linus Torvalds 已提交
468 469
{
	struct device_node *node;
470
	const unsigned long *basep, *sw_inval;
471
	const u32 *sizep;
L
Linus Torvalds 已提交
472

473
	node = phb->dn;
L
Linus Torvalds 已提交
474

475 476
	basep = of_get_property(node, "linux,tce-base", NULL);
	sizep = of_get_property(node, "linux,tce-size", NULL);
L
Linus Torvalds 已提交
477 478 479 480 481 482 483
	if (basep == NULL || sizep == NULL) {
		printk(KERN_ERR "PCI_DMA: iommu_table_setparms: %s has "
				"missing tce entries !\n", dn->full_name);
		return;
	}

	tbl->it_base = (unsigned long)__va(*basep);
484

M
Milton Miller 已提交
485
	if (!is_kdump_kernel())
486
		memset((void *)tbl->it_base, 0, *sizep);
L
Linus Torvalds 已提交
487 488

	tbl->it_busno = phb->bus->number;
489

L
Linus Torvalds 已提交
490
	/* Units of tce entries */
491
	tbl->it_offset = phb->dma_window_base_cur >> IOMMU_PAGE_SHIFT;
492

L
Linus Torvalds 已提交
493
	/* Test if we are going over 2GB of DMA space */
494 495
	if (phb->dma_window_base_cur + phb->dma_window_size > 0x80000000ul) {
		udbg_printf("PCI_DMA: Unexpected number of IOAs under this PHB.\n");
496
		panic("PCI_DMA: Unexpected number of IOAs under this PHB.\n");
497
	}
498

L
Linus Torvalds 已提交
499 500 501
	phb->dma_window_base_cur += phb->dma_window_size;

	/* Set the tce table size - measured in entries */
502
	tbl->it_size = phb->dma_window_size >> IOMMU_PAGE_SHIFT;
L
Linus Torvalds 已提交
503 504 505 506

	tbl->it_index = 0;
	tbl->it_blocksize = 16;
	tbl->it_type = TCE_PCI;
507 508 509 510 511 512 513 514 515 516 517 518 519 520

	sw_inval = of_get_property(node, "linux,tce-sw-invalidate-info", NULL);
	if (sw_inval) {
		/*
		 * This property contains information on how to
		 * invalidate the TCE entry.  The first property is
		 * the base MMIO address used to invalidate entries.
		 * The second property tells us the format of the TCE
		 * invalidate (whether it needs to be shifted) and
		 * some magic routing info to add to our invalidate
		 * command.
		 */
		tbl->it_index = (unsigned long) ioremap(sw_inval[0], 8);
		tbl->it_busno = sw_inval[1]; /* overload this with magic */
521
		tbl->it_type = TCE_PCI_SWINV_CREATE | TCE_PCI_SWINV_FREE;
522
	}
L
Linus Torvalds 已提交
523 524 525 526 527 528 529 530 531 532
}

/*
 * iommu_table_setparms_lpar
 *
 * Function: On pSeries LPAR systems, return TCE table info, given a pci bus.
 */
static void iommu_table_setparms_lpar(struct pci_controller *phb,
				      struct device_node *dn,
				      struct iommu_table *tbl,
533
				      const void *dma_window)
L
Linus Torvalds 已提交
534
{
535 536 537
	unsigned long offset, size;

	of_parse_dma_window(dn, dma_window, &tbl->it_index, &offset, &size);
L
Linus Torvalds 已提交
538

539
	tbl->it_busno = phb->bus->number;
L
Linus Torvalds 已提交
540 541 542
	tbl->it_base   = 0;
	tbl->it_blocksize  = 16;
	tbl->it_type = TCE_PCI;
543 544
	tbl->it_offset = offset >> IOMMU_PAGE_SHIFT;
	tbl->it_size = size >> IOMMU_PAGE_SHIFT;
L
Linus Torvalds 已提交
545 546
}

547
static void pci_dma_bus_setup_pSeries(struct pci_bus *bus)
L
Linus Torvalds 已提交
548
{
549
	struct device_node *dn;
L
Linus Torvalds 已提交
550
	struct iommu_table *tbl;
551 552 553 554
	struct device_node *isa_dn, *isa_dn_orig;
	struct device_node *tmp;
	struct pci_dn *pci;
	int children;
L
Linus Torvalds 已提交
555

556
	dn = pci_bus_to_OF_node(bus);
557

558
	pr_debug("pci_dma_bus_setup_pSeries: setting up bus %s\n", dn->full_name);
559 560 561 562 563 564 565

	if (bus->self) {
		/* This is not a root bus, any setup will be done for the
		 * device-side of the bridge in iommu_dev_setup_pSeries().
		 */
		return;
	}
566
	pci = PCI_DN(dn);
567 568 569

	/* Check if the ISA bus on the system is under
	 * this PHB.
L
Linus Torvalds 已提交
570
	 */
571
	isa_dn = isa_dn_orig = of_find_node_by_type(NULL, "isa");
L
Linus Torvalds 已提交
572

573 574 575 576 577
	while (isa_dn && isa_dn != dn)
		isa_dn = isa_dn->parent;

	if (isa_dn_orig)
		of_node_put(isa_dn_orig);
L
Linus Torvalds 已提交
578

579
	/* Count number of direct PCI children of the PHB. */
580
	for (children = 0, tmp = dn->child; tmp; tmp = tmp->sibling)
581
		children++;
L
Linus Torvalds 已提交
582

583
	pr_debug("Children: %d\n", children);
L
Linus Torvalds 已提交
584

585 586 587 588 589
	/* Calculate amount of DMA window per slot. Each window must be
	 * a power of two (due to pci_alloc_consistent requirements).
	 *
	 * Keep 256MB aside for PHBs with ISA.
	 */
L
Linus Torvalds 已提交
590

591 592 593 594 595 596
	if (!isa_dn) {
		/* No ISA/IDE - just set window size and return */
		pci->phb->dma_window_size = 0x80000000ul; /* To be divided */

		while (pci->phb->dma_window_size * children > 0x80000000ul)
			pci->phb->dma_window_size >>= 1;
597
		pr_debug("No ISA/IDE, window size is 0x%llx\n",
598
			 pci->phb->dma_window_size);
599 600 601
		pci->phb->dma_window_base_cur = 0;

		return;
L
Linus Torvalds 已提交
602
	}
603 604 605 606 607 608 609 610 611

	/* If we have ISA, then we probably have an IDE
	 * controller too. Allocate a 128MB table but
	 * skip the first 128MB to avoid stepping on ISA
	 * space.
	 */
	pci->phb->dma_window_size = 0x8000000ul;
	pci->phb->dma_window_base_cur = 0x8000000ul;

612
	tbl = kzalloc_node(sizeof(struct iommu_table), GFP_KERNEL,
613
			   pci->phb->node);
614 615

	iommu_table_setparms(pci->phb, dn, tbl);
616
	pci->iommu_table = iommu_init_table(tbl, pci->phb->node);
617
	iommu_register_group(tbl, pci_domain_nr(bus), 0);
618 619 620 621 622 623

	/* Divide the rest (1.75GB) among the children */
	pci->phb->dma_window_size = 0x80000000ul;
	while (pci->phb->dma_window_size * children > 0x70000000ul)
		pci->phb->dma_window_size >>= 1;

624
	pr_debug("ISA/IDE, window size is 0x%llx\n", pci->phb->dma_window_size);
L
Linus Torvalds 已提交
625 626 627
}


628
static void pci_dma_bus_setup_pSeriesLP(struct pci_bus *bus)
L
Linus Torvalds 已提交
629 630 631
{
	struct iommu_table *tbl;
	struct device_node *dn, *pdn;
632
	struct pci_dn *ppci;
633
	const void *dma_window = NULL;
L
Linus Torvalds 已提交
634 635 636

	dn = pci_bus_to_OF_node(bus);

637 638
	pr_debug("pci_dma_bus_setup_pSeriesLP: setting up bus %s\n",
		 dn->full_name);
639

L
Linus Torvalds 已提交
640 641
	/* Find nearest ibm,dma-window, walking up the device tree */
	for (pdn = dn; pdn != NULL; pdn = pdn->parent) {
642
		dma_window = of_get_property(pdn, "ibm,dma-window", NULL);
L
Linus Torvalds 已提交
643 644 645 646 647
		if (dma_window != NULL)
			break;
	}

	if (dma_window == NULL) {
648
		pr_debug("  no ibm,dma-window property !\n");
L
Linus Torvalds 已提交
649 650 651
		return;
	}

652
	ppci = PCI_DN(pdn);
653

654 655
	pr_debug("  parent is %s, iommu_table: 0x%p\n",
		 pdn->full_name, ppci->iommu_table);
656

657
	if (!ppci->iommu_table) {
658
		tbl = kzalloc_node(sizeof(struct iommu_table), GFP_KERNEL,
659
				   ppci->phb->node);
660
		iommu_table_setparms_lpar(ppci->phb, pdn, tbl, dma_window);
661
		ppci->iommu_table = iommu_init_table(tbl, ppci->phb->node);
662
		iommu_register_group(tbl, pci_domain_nr(bus), 0);
663
		pr_debug("  created table: %p\n", ppci->iommu_table);
L
Linus Torvalds 已提交
664 665 666 667
	}
}


668
static void pci_dma_dev_setup_pSeries(struct pci_dev *dev)
L
Linus Torvalds 已提交
669
{
670
	struct device_node *dn;
671
	struct iommu_table *tbl;
L
Linus Torvalds 已提交
672

673
	pr_debug("pci_dma_dev_setup_pSeries: %s\n", pci_name(dev));
L
Linus Torvalds 已提交
674

675
	dn = dev->dev.of_node;
L
Linus Torvalds 已提交
676

677 678 679 680 681
	/* If we're the direct child of a root bus, then we need to allocate
	 * an iommu table ourselves. The bus setup code should have setup
	 * the window sizes already.
	 */
	if (!dev->bus->self) {
682 683
		struct pci_controller *phb = PCI_DN(dn)->phb;

684
		pr_debug(" --> first child, no bridge. Allocating iommu table.\n");
685
		tbl = kzalloc_node(sizeof(struct iommu_table), GFP_KERNEL,
686 687
				   phb->node);
		iommu_table_setparms(phb, dn, tbl);
688
		PCI_DN(dn)->iommu_table = iommu_init_table(tbl, phb->node);
689
		iommu_register_group(tbl, pci_domain_nr(phb->bus), 0);
690
		set_iommu_table_base(&dev->dev, PCI_DN(dn)->iommu_table);
691 692 693 694 695 696 697
		return;
	}

	/* If this device is further down the bus tree, search upwards until
	 * an already allocated iommu table is found and use that.
	 */

698
	while (dn && PCI_DN(dn) && PCI_DN(dn)->iommu_table == NULL)
L
Linus Torvalds 已提交
699 700
		dn = dn->parent;

701
	if (dn && PCI_DN(dn))
702
		set_iommu_table_base(&dev->dev, PCI_DN(dn)->iommu_table);
703 704 705
	else
		printk(KERN_WARNING "iommu: Device %s has no iommu table\n",
		       pci_name(dev));
L
Linus Torvalds 已提交
706 707
}

708 709 710 711 712 713 714 715 716 717 718 719
static int __read_mostly disable_ddw;

static int __init disable_ddw_setup(char *str)
{
	disable_ddw = 1;
	printk(KERN_INFO "ppc iommu: disabling ddw.\n");

	return 0;
}

early_param("disable_ddw", disable_ddw_setup);

720 721 722 723 724 725 726 727 728 729 730 731 732 733 734
static inline void __remove_ddw(struct device_node *np, const u32 *ddw_avail, u64 liobn)
{
	int ret;

	ret = rtas_call(ddw_avail[2], 1, 1, NULL, liobn);
	if (ret)
		pr_warning("%s: failed to remove DMA window: rtas returned "
			"%d to ibm,remove-pe-dma-window(%x) %llx\n",
			np->full_name, ret, ddw_avail[2], liobn);
	else
		pr_debug("%s: successfully removed DMA window: rtas returned "
			"%d to ibm,remove-pe-dma-window(%x) %llx\n",
			np->full_name, ret, ddw_avail[2], liobn);
}

735 736 737 738
static void remove_ddw(struct device_node *np)
{
	struct dynamic_dma_window_prop *dwp;
	struct property *win64;
739
	const u32 *ddw_avail;
740 741 742
	u64 liobn;
	int len, ret;

743
	ddw_avail = of_get_property(np, "ibm,ddw-applicable", &len);
744
	win64 = of_find_property(np, DIRECT64_PROPNAME, NULL);
745
	if (!win64)
746 747
		return;

748
	if (!ddw_avail || len < 3 * sizeof(u32) || win64->length < sizeof(*dwp))
749 750
		goto delprop;

751 752 753 754 755 756 757 758 759 760 761 762 763
	dwp = win64->value;
	liobn = (u64)be32_to_cpu(dwp->liobn);

	/* clear the whole window, note the arg is in kernel pages */
	ret = tce_clearrange_multi_pSeriesLP(0,
		1ULL << (be32_to_cpu(dwp->window_shift) - PAGE_SHIFT), dwp);
	if (ret)
		pr_warning("%s failed to clear tces in window.\n",
			 np->full_name);
	else
		pr_debug("%s successfully cleared tces in window.\n",
			 np->full_name);

764
	__remove_ddw(np, ddw_avail, liobn);
765

766
delprop:
767
	ret = of_remove_property(np, win64);
768
	if (ret)
769
		pr_warning("%s: failed to remove direct window property: %d\n",
770 771
			np->full_name, ret);
}
772

773
static u64 find_existing_ddw(struct device_node *pdn)
774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792
{
	struct direct_window *window;
	const struct dynamic_dma_window_prop *direct64;
	u64 dma_addr = 0;

	spin_lock(&direct_window_list_lock);
	/* check if we already created a window and dupe that config if so */
	list_for_each_entry(window, &direct_window_list, list) {
		if (window->device == pdn) {
			direct64 = window->prop;
			dma_addr = direct64->dma_base;
			break;
		}
	}
	spin_unlock(&direct_window_list_lock);

	return dma_addr;
}

793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818
static void __restore_default_window(struct eeh_dev *edev,
						u32 ddw_restore_token)
{
	u32 cfg_addr;
	u64 buid;
	int ret;

	/*
	 * Get the config address and phb buid of the PE window.
	 * Rely on eeh to retrieve this for us.
	 * Retrieve them from the pci device, not the node with the
	 * dma-window property
	 */
	cfg_addr = edev->config_addr;
	if (edev->pe_config_addr)
		cfg_addr = edev->pe_config_addr;
	buid = edev->phb->buid;

	do {
		ret = rtas_call(ddw_restore_token, 3, 1, NULL, cfg_addr,
					BUID_HI(buid), BUID_LO(buid));
	} while (rtas_busy_delay(ret));
	pr_info("ibm,reset-pe-dma-windows(%x) %x %x %x returned %d\n",
		 ddw_restore_token, cfg_addr, BUID_HI(buid), BUID_LO(buid), ret);
}

819
static int find_existing_ddw_windows(void)
820
{
821
	struct device_node *pdn;
822
	const struct dynamic_dma_window_prop *direct64;
823
	const u32 *ddw_extensions;
824

825 826 827 828
	if (!firmware_has_feature(FW_FEATURE_LPAR))
		return 0;

	for_each_node_with_property(pdn, DIRECT64_PROPNAME) {
829
		direct64 = of_get_property(pdn, DIRECT64_PROPNAME, NULL);
830 831 832
		if (!direct64)
			continue;

833 834 835 836 837 838 839
		/*
		 * We need to ensure the IOMMU table is active when we
		 * return from the IOMMU setup so that the common code
		 * can clear the table or find the holes. To that end,
		 * first, remove any existing DDW configuration.
		 */
		remove_ddw(pdn);
840

841 842 843 844 845 846 847 848 849 850 851 852 853 854
		/*
		 * Second, if we are running on a new enough level of
		 * firmware where the restore API is present, use it to
		 * restore the 32-bit window, which was removed in
		 * create_ddw.
		 * If the API is not present, then create_ddw couldn't
		 * have removed the 32-bit window in the first place, so
		 * removing the DDW configuration should be sufficient.
		 */
		ddw_extensions = of_get_property(pdn, "ibm,ddw-extensions",
									NULL);
		if (ddw_extensions && ddw_extensions[0] > 0)
			__restore_default_window(of_node_to_eeh_dev(pdn),
							ddw_extensions[1]);
855 856
	}

857
	return 0;
858
}
859
machine_arch_initcall(pseries, find_existing_ddw_windows);
860

861
static int query_ddw(struct pci_dev *dev, const u32 *ddw_avail,
862 863
			struct ddw_query_response *query)
{
864
	struct eeh_dev *edev;
865 866 867 868 869 870 871 872 873 874
	u32 cfg_addr;
	u64 buid;
	int ret;

	/*
	 * Get the config address and phb buid of the PE window.
	 * Rely on eeh to retrieve this for us.
	 * Retrieve them from the pci device, not the node with the
	 * dma-window property
	 */
875 876 877 878 879 880
	edev = pci_dev_to_eeh_dev(dev);
	cfg_addr = edev->config_addr;
	if (edev->pe_config_addr)
		cfg_addr = edev->pe_config_addr;
	buid = edev->phb->buid;

881
	ret = rtas_call(ddw_avail[0], 3, 5, (u32 *)query,
882 883
		  cfg_addr, BUID_HI(buid), BUID_LO(buid));
	dev_info(&dev->dev, "ibm,query-pe-dma-windows(%x) %x %x %x"
884
		" returned %d\n", ddw_avail[0], cfg_addr, BUID_HI(buid),
885 886 887 888
		BUID_LO(buid), ret);
	return ret;
}

889
static int create_ddw(struct pci_dev *dev, const u32 *ddw_avail,
890 891 892
			struct ddw_create_response *create, int page_shift,
			int window_shift)
{
893
	struct eeh_dev *edev;
894 895 896 897 898 899 900 901 902 903
	u32 cfg_addr;
	u64 buid;
	int ret;

	/*
	 * Get the config address and phb buid of the PE window.
	 * Rely on eeh to retrieve this for us.
	 * Retrieve them from the pci device, not the node with the
	 * dma-window property
	 */
904 905 906 907 908
	edev = pci_dev_to_eeh_dev(dev);
	cfg_addr = edev->config_addr;
	if (edev->pe_config_addr)
		cfg_addr = edev->pe_config_addr;
	buid = edev->phb->buid;
909 910 911

	do {
		/* extra outputs are LIOBN and dma-addr (hi, lo) */
912
		ret = rtas_call(ddw_avail[1], 5, 4, (u32 *)create, cfg_addr,
913 914 915 916
				BUID_HI(buid), BUID_LO(buid), page_shift, window_shift);
	} while (rtas_busy_delay(ret));
	dev_info(&dev->dev,
		"ibm,create-pe-dma-window(%x) %x %x %x %x %x returned %d "
917
		"(liobn = 0x%x starting addr = %x %x)\n", ddw_avail[1],
918 919 920 921 922 923
		 cfg_addr, BUID_HI(buid), BUID_LO(buid), page_shift,
		 window_shift, ret, create->liobn, create->addr_hi, create->addr_lo);

	return ret;
}

924
static void restore_default_window(struct pci_dev *dev,
925
					u32 ddw_restore_token)
926
{
927
	__restore_default_window(pci_dev_to_eeh_dev(dev), ddw_restore_token);
928 929
}

930 931 932 933 934 935 936
struct failed_ddw_pdn {
	struct device_node *pdn;
	struct list_head list;
};

static LIST_HEAD(failed_ddw_pdn_list);

937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955
/*
 * If the PE supports dynamic dma windows, and there is space for a table
 * that can map all pages in a linear offset, then setup such a table,
 * and record the dma-offset in the struct device.
 *
 * dev: the pci device we are checking
 * pdn: the parent pe node with the ibm,dma_window property
 * Future: also check if we can remap the base window for our base page size
 *
 * returns the dma offset for use by dma_set_mask
 */
static u64 enable_ddw(struct pci_dev *dev, struct device_node *pdn)
{
	int len, ret;
	struct ddw_query_response query;
	struct ddw_create_response create;
	int page_shift;
	u64 dma_addr, max_addr;
	struct device_node *dn;
956
	const u32 *uninitialized_var(ddw_avail);
957 958
	const u32 *uninitialized_var(ddw_extensions);
	u32 ddw_restore_token = 0;
959
	struct direct_window *window;
960
	struct property *win64;
961
	struct dynamic_dma_window_prop *ddwprop;
962 963
	const void *dma_window = NULL;
	unsigned long liobn, offset, size;
964
	struct failed_ddw_pdn *fpdn;
965 966 967

	mutex_lock(&direct_window_init_mutex);

968
	dma_addr = find_existing_ddw(pdn);
969 970 971
	if (dma_addr != 0)
		goto out_unlock;

972 973 974 975 976 977 978 979 980 981 982 983
	/*
	 * If we already went through this for a previous function of
	 * the same device and failed, we don't want to muck with the
	 * DMA window again, as it will race with in-flight operations
	 * and can lead to EEHs. The above mutex protects access to the
	 * list.
	 */
	list_for_each_entry(fpdn, &failed_ddw_pdn_list, list) {
		if (!strcmp(fpdn->pdn->full_name, pdn->full_name))
			goto out_unlock;
	}

984 985 986 987 988 989 990 991
	/*
	 * the ibm,ddw-applicable property holds the tokens for:
	 * ibm,query-pe-dma-window
	 * ibm,create-pe-dma-window
	 * ibm,remove-pe-dma-window
	 * for the given node in that order.
	 * the property is actually in the parent, not the PE
	 */
992 993
	ddw_avail = of_get_property(pdn, "ibm,ddw-applicable", &len);
	if (!ddw_avail || len < 3 * sizeof(u32))
994 995
		goto out_unlock;

996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029
	/*
	 * the extensions property is only required to exist in certain
	 * levels of firmware and later
	 * the ibm,ddw-extensions property is a list with the first
	 * element containing the number of extensions and each
	 * subsequent entry is a value corresponding to that extension
	 */
	ddw_extensions = of_get_property(pdn, "ibm,ddw-extensions", &len);
	if (ddw_extensions) {
		/*
		 * each new defined extension length should be added to
		 * the top of the switch so the "earlier" entries also
		 * get picked up
		 */
		switch (ddw_extensions[0]) {
			/* ibm,reset-pe-dma-windows */
			case 1:
				ddw_restore_token = ddw_extensions[1];
				break;
		}
	}

	/*
	 * Only remove the existing DMA window if we can restore back to
	 * the default state. Removing the existing window maximizes the
	 * resources available to firmware for dynamic window creation.
	 */
	if (ddw_restore_token) {
		dma_window = of_get_property(pdn, "ibm,dma-window", NULL);
		of_parse_dma_window(pdn, dma_window, &liobn, &offset, &size);
		__remove_ddw(pdn, ddw_avail, liobn);
	}

	/*
1030 1031 1032 1033 1034 1035
	 * Query if there is a second window of size to map the
	 * whole partition.  Query returns number of windows, largest
	 * block assigned to PE (partition endpoint), and two bitmasks
	 * of page sizes: supported and supported for migrate-dma.
	 */
	dn = pci_device_to_OF_node(dev);
1036
	ret = query_ddw(dev, ddw_avail, &query);
1037
	if (ret != 0)
1038
		goto out_restore_window;
1039 1040 1041 1042 1043 1044 1045 1046

	if (query.windows_available == 0) {
		/*
		 * no additional windows are available for this device.
		 * We might be able to reallocate the existing window,
		 * trading in for a larger page size.
		 */
		dev_dbg(&dev->dev, "no free dynamic windows");
1047
		goto out_restore_window;
1048 1049 1050 1051 1052 1053 1054 1055 1056 1057
	}
	if (query.page_size & 4) {
		page_shift = 24; /* 16MB */
	} else if (query.page_size & 2) {
		page_shift = 16; /* 64kB */
	} else if (query.page_size & 1) {
		page_shift = 12; /* 4kB */
	} else {
		dev_dbg(&dev->dev, "no supported direct page size in mask %x",
			  query.page_size);
1058
		goto out_restore_window;
1059 1060 1061 1062 1063 1064 1065 1066
	}
	/* verify the window * number of ptes will map the partition */
	/* check largest block * page size > max memory hotplug addr */
	max_addr = memory_hotplug_max();
	if (query.largest_available_block < (max_addr >> page_shift)) {
		dev_dbg(&dev->dev, "can't map partiton max 0x%llx with %u "
			  "%llu-sized pages\n", max_addr,  query.largest_available_block,
			  1ULL << page_shift);
1067
		goto out_restore_window;
1068 1069 1070 1071 1072 1073
	}
	len = order_base_2(max_addr);
	win64 = kzalloc(sizeof(struct property), GFP_KERNEL);
	if (!win64) {
		dev_info(&dev->dev,
			"couldn't allocate property for 64bit dma window\n");
1074
		goto out_restore_window;
1075 1076 1077
	}
	win64->name = kstrdup(DIRECT64_PROPNAME, GFP_KERNEL);
	win64->value = ddwprop = kmalloc(sizeof(*ddwprop), GFP_KERNEL);
1078
	win64->length = sizeof(*ddwprop);
1079 1080 1081 1082 1083 1084
	if (!win64->name || !win64->value) {
		dev_info(&dev->dev,
			"couldn't allocate property name and value\n");
		goto out_free_prop;
	}

1085
	ret = create_ddw(dev, ddw_avail, &create, page_shift, len);
1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105
	if (ret != 0)
		goto out_free_prop;

	ddwprop->liobn = cpu_to_be32(create.liobn);
	ddwprop->dma_base = cpu_to_be64(of_read_number(&create.addr_hi, 2));
	ddwprop->tce_shift = cpu_to_be32(page_shift);
	ddwprop->window_shift = cpu_to_be32(len);

	dev_dbg(&dev->dev, "created tce table LIOBN 0x%x for %s\n",
		  create.liobn, dn->full_name);

	window = kzalloc(sizeof(*window), GFP_KERNEL);
	if (!window)
		goto out_clear_window;

	ret = walk_system_ram_range(0, memblock_end_of_DRAM() >> PAGE_SHIFT,
			win64->value, tce_setrange_multi_pSeriesLP_walk);
	if (ret) {
		dev_info(&dev->dev, "failed to map direct window for %s: %d\n",
			 dn->full_name, ret);
J
Julia Lawall 已提交
1106
		goto out_free_window;
1107 1108
	}

1109
	ret = of_add_property(pdn, win64);
1110 1111 1112
	if (ret) {
		dev_err(&dev->dev, "unable to add dma window property for %s: %d",
			 pdn->full_name, ret);
J
Julia Lawall 已提交
1113
		goto out_free_window;
1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124
	}

	window->device = pdn;
	window->prop = ddwprop;
	spin_lock(&direct_window_list_lock);
	list_add(&window->list, &direct_window_list);
	spin_unlock(&direct_window_list_lock);

	dma_addr = of_read_number(&create.addr_hi, 2);
	goto out_unlock;

J
Julia Lawall 已提交
1125 1126 1127
out_free_window:
	kfree(window);

1128 1129 1130 1131 1132 1133 1134 1135
out_clear_window:
	remove_ddw(pdn);

out_free_prop:
	kfree(win64->name);
	kfree(win64->value);
	kfree(win64);

1136 1137
out_restore_window:
	if (ddw_restore_token)
1138
		restore_default_window(dev, ddw_restore_token);
1139

1140 1141 1142 1143 1144 1145
	fpdn = kzalloc(sizeof(*fpdn), GFP_KERNEL);
	if (!fpdn)
		goto out_unlock;
	fpdn->pdn = pdn;
	list_add(&fpdn->list, &failed_ddw_pdn_list);

1146 1147 1148 1149 1150
out_unlock:
	mutex_unlock(&direct_window_init_mutex);
	return dma_addr;
}

1151
static void pci_dma_dev_setup_pSeriesLP(struct pci_dev *dev)
L
Linus Torvalds 已提交
1152 1153 1154
{
	struct device_node *pdn, *dn;
	struct iommu_table *tbl;
1155
	const void *dma_window = NULL;
1156
	struct pci_dn *pci;
L
Linus Torvalds 已提交
1157

1158
	pr_debug("pci_dma_dev_setup_pSeriesLP: %s\n", pci_name(dev));
1159

L
Linus Torvalds 已提交
1160
	/* dev setup for LPAR is a little tricky, since the device tree might
L
Lucas De Marchi 已提交
1161
	 * contain the dma-window properties per-device and not necessarily
L
Linus Torvalds 已提交
1162 1163 1164 1165 1166
	 * for the bus. So we need to search upwards in the tree until we
	 * either hit a dma-window property, OR find a parent with a table
	 * already allocated.
	 */
	dn = pci_device_to_OF_node(dev);
1167
	pr_debug("  node is %s\n", dn->full_name);
1168

1169
	for (pdn = dn; pdn && PCI_DN(pdn) && !PCI_DN(pdn)->iommu_table;
1170
	     pdn = pdn->parent) {
1171
		dma_window = of_get_property(pdn, "ibm,dma-window", NULL);
L
Linus Torvalds 已提交
1172 1173 1174 1175
		if (dma_window)
			break;
	}

1176 1177 1178
	if (!pdn || !PCI_DN(pdn)) {
		printk(KERN_WARNING "pci_dma_dev_setup_pSeriesLP: "
		       "no DMA window found for pci dev=%s dn=%s\n",
1179
				 pci_name(dev), of_node_full_name(dn));
1180 1181
		return;
	}
1182
	pr_debug("  parent is %s\n", pdn->full_name);
1183

1184
	pci = PCI_DN(pdn);
1185
	if (!pci->iommu_table) {
1186
		tbl = kzalloc_node(sizeof(struct iommu_table), GFP_KERNEL,
1187
				   pci->phb->node);
1188
		iommu_table_setparms_lpar(pci->phb, pdn, tbl, dma_window);
1189
		pci->iommu_table = iommu_init_table(tbl, pci->phb->node);
1190
		iommu_register_group(tbl, pci_domain_nr(pci->phb->bus), 0);
1191
		pr_debug("  created table: %p\n", pci->iommu_table);
1192
	} else {
1193
		pr_debug("  found DMA window, table: %p\n", pci->iommu_table);
L
Linus Torvalds 已提交
1194 1195
	}

1196
	set_iommu_table_base(&dev->dev, pci->iommu_table);
L
Linus Torvalds 已提交
1197
}
1198 1199 1200 1201 1202 1203 1204 1205 1206

static int dma_set_mask_pSeriesLP(struct device *dev, u64 dma_mask)
{
	bool ddw_enabled = false;
	struct device_node *pdn, *dn;
	struct pci_dev *pdev;
	const void *dma_window = NULL;
	u64 dma_offset;

1207
	if (!dev->dma_mask)
1208 1209
		return -EIO;

1210 1211 1212
	if (!dev_is_pci(dev))
		goto check_mask;

1213 1214
	pdev = to_pci_dev(dev);

1215 1216 1217 1218 1219 1220 1221
	/* only attempt to use a new window if 64-bit DMA is requested */
	if (!disable_ddw && dma_mask == DMA_BIT_MASK(64)) {
		dn = pci_device_to_OF_node(pdev);
		dev_dbg(dev, "node is %s\n", dn->full_name);

		/*
		 * the device tree might contain the dma-window properties
L
Lucas De Marchi 已提交
1222
		 * per-device and not necessarily for the bus. So we need to
1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242
		 * search upwards in the tree until we either hit a dma-window
		 * property, OR find a parent with a table already allocated.
		 */
		for (pdn = dn; pdn && PCI_DN(pdn) && !PCI_DN(pdn)->iommu_table;
				pdn = pdn->parent) {
			dma_window = of_get_property(pdn, "ibm,dma-window", NULL);
			if (dma_window)
				break;
		}
		if (pdn && PCI_DN(pdn)) {
			dma_offset = enable_ddw(pdev, pdn);
			if (dma_offset != 0) {
				dev_info(dev, "Using 64-bit direct DMA at offset %llx\n", dma_offset);
				set_dma_offset(dev, dma_offset);
				set_dma_ops(dev, &dma_direct_ops);
				ddw_enabled = true;
			}
		}
	}

1243 1244 1245
	/* fall back on iommu ops, restore table pointer with ops */
	if (!ddw_enabled && get_dma_ops(dev) != &dma_iommu_ops) {
		dev_info(dev, "Restoring 32-bit DMA via iommu\n");
1246
		set_dma_ops(dev, &dma_iommu_ops);
1247
		pci_dma_dev_setup_pSeriesLP(pdev);
1248 1249
	}

1250 1251 1252 1253
check_mask:
	if (!dma_supported(dev, dma_mask))
		return -EIO;

1254 1255 1256 1257
	*dev->dma_mask = dma_mask;
	return 0;
}

1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279
static u64 dma_get_required_mask_pSeriesLP(struct device *dev)
{
	if (!dev->dma_mask)
		return 0;

	if (!disable_ddw && dev_is_pci(dev)) {
		struct pci_dev *pdev = to_pci_dev(dev);
		struct device_node *dn;

		dn = pci_device_to_OF_node(pdev);

		/* search upwards for ibm,dma-window */
		for (; dn && PCI_DN(dn) && !PCI_DN(dn)->iommu_table;
				dn = dn->parent)
			if (of_get_property(dn, "ibm,dma-window", NULL))
				break;
		/* if there is a ibm,ddw-applicable property require 64 bits */
		if (dn && PCI_DN(dn) &&
				of_get_property(dn, "ibm,ddw-applicable", NULL))
			return DMA_BIT_MASK(64);
	}

1280
	return dma_iommu_ops.get_required_mask(dev);
1281 1282
}

1283 1284 1285 1286 1287
#else  /* CONFIG_PCI */
#define pci_dma_bus_setup_pSeries	NULL
#define pci_dma_dev_setup_pSeries	NULL
#define pci_dma_bus_setup_pSeriesLP	NULL
#define pci_dma_dev_setup_pSeriesLP	NULL
1288
#define dma_set_mask_pSeriesLP		NULL
1289
#define dma_get_required_mask_pSeriesLP	NULL
1290 1291
#endif /* !CONFIG_PCI */

1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331
static int iommu_mem_notifier(struct notifier_block *nb, unsigned long action,
		void *data)
{
	struct direct_window *window;
	struct memory_notify *arg = data;
	int ret = 0;

	switch (action) {
	case MEM_GOING_ONLINE:
		spin_lock(&direct_window_list_lock);
		list_for_each_entry(window, &direct_window_list, list) {
			ret |= tce_setrange_multi_pSeriesLP(arg->start_pfn,
					arg->nr_pages, window->prop);
			/* XXX log error */
		}
		spin_unlock(&direct_window_list_lock);
		break;
	case MEM_CANCEL_ONLINE:
	case MEM_OFFLINE:
		spin_lock(&direct_window_list_lock);
		list_for_each_entry(window, &direct_window_list, list) {
			ret |= tce_clearrange_multi_pSeriesLP(arg->start_pfn,
					arg->nr_pages, window->prop);
			/* XXX log error */
		}
		spin_unlock(&direct_window_list_lock);
		break;
	default:
		break;
	}
	if (ret && action != MEM_CANCEL_ONLINE)
		return NOTIFY_BAD;

	return NOTIFY_OK;
}

static struct notifier_block iommu_mem_nb = {
	.notifier_call = iommu_mem_notifier,
};

1332 1333 1334 1335 1336
static int iommu_reconfig_notifier(struct notifier_block *nb, unsigned long action, void *node)
{
	int err = NOTIFY_OK;
	struct device_node *np = node;
	struct pci_dn *pci = PCI_DN(np);
1337
	struct direct_window *window;
1338 1339

	switch (action) {
1340
	case OF_RECONFIG_DETACH_NODE:
1341
		remove_ddw(np);
1342
		if (pci && pci->iommu_table)
1343
			iommu_free_table(pci->iommu_table, np->full_name);
1344 1345 1346 1347 1348 1349 1350 1351 1352 1353

		spin_lock(&direct_window_list_lock);
		list_for_each_entry(window, &direct_window_list, list) {
			if (window->device == np) {
				list_del(&window->list);
				kfree(window);
				break;
			}
		}
		spin_unlock(&direct_window_list_lock);
1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364
		break;
	default:
		err = NOTIFY_DONE;
		break;
	}
	return err;
}

static struct notifier_block iommu_reconfig_nb = {
	.notifier_call = iommu_reconfig_notifier,
};
L
Linus Torvalds 已提交
1365 1366 1367 1368

/* These are called very early. */
void iommu_init_early_pSeries(void)
{
1369
	if (of_chosen && of_get_property(of_chosen, "linux,iommu-off", NULL))
L
Linus Torvalds 已提交
1370 1371
		return;

1372
	if (firmware_has_feature(FW_FEATURE_LPAR)) {
1373
		if (firmware_has_feature(FW_FEATURE_MULTITCE)) {
L
Linus Torvalds 已提交
1374 1375 1376 1377 1378 1379
			ppc_md.tce_build = tce_buildmulti_pSeriesLP;
			ppc_md.tce_free	 = tce_freemulti_pSeriesLP;
		} else {
			ppc_md.tce_build = tce_build_pSeriesLP;
			ppc_md.tce_free	 = tce_free_pSeriesLP;
		}
1380
		ppc_md.tce_get   = tce_get_pSeriesLP;
1381 1382
		ppc_md.pci_dma_bus_setup = pci_dma_bus_setup_pSeriesLP;
		ppc_md.pci_dma_dev_setup = pci_dma_dev_setup_pSeriesLP;
1383
		ppc_md.dma_set_mask = dma_set_mask_pSeriesLP;
1384
		ppc_md.dma_get_required_mask = dma_get_required_mask_pSeriesLP;
L
Linus Torvalds 已提交
1385 1386 1387
	} else {
		ppc_md.tce_build = tce_build_pSeries;
		ppc_md.tce_free  = tce_free_pSeries;
1388
		ppc_md.tce_get   = tce_get_pseries;
1389 1390
		ppc_md.pci_dma_bus_setup = pci_dma_bus_setup_pSeries;
		ppc_md.pci_dma_dev_setup = pci_dma_dev_setup_pSeries;
L
Linus Torvalds 已提交
1391 1392 1393
	}


1394
	of_reconfig_notifier_register(&iommu_reconfig_nb);
1395
	register_memory_notifier(&iommu_mem_nb);
L
Linus Torvalds 已提交
1396

1397
	set_pci_dma_ops(&dma_iommu_ops);
L
Linus Torvalds 已提交
1398 1399
}

1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413
static int __init disable_multitce(char *str)
{
	if (strcmp(str, "off") == 0 &&
	    firmware_has_feature(FW_FEATURE_LPAR) &&
	    firmware_has_feature(FW_FEATURE_MULTITCE)) {
		printk(KERN_INFO "Disabling MULTITCE firmware feature\n");
		ppc_md.tce_build = tce_build_pSeriesLP;
		ppc_md.tce_free	 = tce_free_pSeriesLP;
		powerpc_firmware_features &= ~FW_FEATURE_MULTITCE;
	}
	return 1;
}

__setup("multitce=", disable_multitce);