sun_esp.c 14.0 KB
Newer Older
1 2
/* sun_esp.c: ESP front-end for Sparc SBUS systems.
 *
D
David S. Miller 已提交
3
 * Copyright (C) 2007, 2008 David S. Miller (davem@davemloft.net)
4 5 6 7
 */

#include <linux/kernel.h>
#include <linux/types.h>
8
#include <linux/delay.h>
9
#include <linux/module.h>
10
#include <linux/mm.h>
11
#include <linux/init.h>
12
#include <linux/dma-mapping.h>
13 14
#include <linux/of.h>
#include <linux/of_device.h>
15
#include <linux/gfp.h>
16 17 18 19 20 21 22 23 24 25 26

#include <asm/irq.h>
#include <asm/io.h>
#include <asm/dma.h>

#include <scsi/scsi_host.h>

#include "esp_scsi.h"

#define DRV_MODULE_NAME		"sun_esp"
#define PFX DRV_MODULE_NAME	": "
27 28
#define DRV_VERSION		"1.100"
#define DRV_MODULE_RELDATE	"August 27, 2008"
29 30 31 32 33 34

#define dma_read32(REG) \
	sbus_readl(esp->dma_regs + (REG))
#define dma_write32(VAL, REG) \
	sbus_writel((VAL), esp->dma_regs + (REG))

D
David S. Miller 已提交
35 36 37 38 39 40 41 42 43 44
/* DVMA chip revisions */
enum dvma_rev {
	dvmarev0,
	dvmaesc1,
	dvmarev1,
	dvmarev2,
	dvmarev3,
	dvmarevplus,
	dvmahme
};
45

46
static int esp_sbus_setup_dma(struct esp *esp, struct platform_device *dma_of)
D
David S. Miller 已提交
47 48
{
	esp->dma = dma_of;
49

D
David S. Miller 已提交
50 51 52 53 54
	esp->dma_regs = of_ioremap(&dma_of->resource[0], 0,
				   resource_size(&dma_of->resource[0]),
				   "espdma");
	if (!esp->dma_regs)
		return -ENOMEM;
55

D
David S. Miller 已提交
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
	switch (dma_read32(DMA_CSR) & DMA_DEVICE_ID) {
	case DMA_VERS0:
		esp->dmarev = dvmarev0;
		break;
	case DMA_ESCV1:
		esp->dmarev = dvmaesc1;
		break;
	case DMA_VERS1:
		esp->dmarev = dvmarev1;
		break;
	case DMA_VERS2:
		esp->dmarev = dvmarev2;
		break;
	case DMA_VERHME:
		esp->dmarev = dvmahme;
		break;
	case DMA_VERSPLUS:
		esp->dmarev = dvmarevplus;
		break;
75 76 77 78 79 80
	}

	return 0;

}

81
static int esp_sbus_map_regs(struct esp *esp, int hme)
82
{
83
	struct platform_device *op = esp->dev;
84 85 86 87 88 89
	struct resource *res;

	/* On HME, two reg sets exist, first is DVMA,
	 * second is ESP registers.
	 */
	if (hme)
90
		res = &op->resource[1];
91
	else
92
		res = &op->resource[0];
93

94
	esp->regs = of_ioremap(res, 0, SBUS_ESP_REG_SIZE, "ESP");
95 96 97 98 99 100
	if (!esp->regs)
		return -ENOMEM;

	return 0;
}

101
static int esp_sbus_map_command_block(struct esp *esp)
102
{
103
	struct platform_device *op = esp->dev;
104

105
	esp->command_block = dma_alloc_coherent(&op->dev, 16,
106 107
						&esp->command_block_dma,
						GFP_ATOMIC);
108 109 110 111 112
	if (!esp->command_block)
		return -ENOMEM;
	return 0;
}

113
static int esp_sbus_register_irq(struct esp *esp)
114 115
{
	struct Scsi_Host *host = esp->host;
116
	struct platform_device *op = esp->dev;
117

118
	host->irq = op->archdata.irqs[0];
119 120 121
	return request_irq(host->irq, scsi_esp_intr, IRQF_SHARED, "ESP", esp);
}

122
static void esp_get_scsi_id(struct esp *esp, struct platform_device *espdma)
123
{
124
	struct platform_device *op = esp->dev;
125
	struct device_node *dp;
126

127
	dp = op->dev.of_node;
128 129 130 131 132 133 134 135
	esp->scsi_id = of_getintprop_default(dp, "initiator-id", 0xff);
	if (esp->scsi_id != 0xff)
		goto done;

	esp->scsi_id = of_getintprop_default(dp, "scsi-initiator-id", 0xff);
	if (esp->scsi_id != 0xff)
		goto done;

136
	esp->scsi_id = of_getintprop_default(espdma->dev.of_node,
137 138 139 140 141 142 143
					     "scsi-initiator-id", 7);

done:
	esp->host->this_id = esp->scsi_id;
	esp->scsi_id_mask = (1 << esp->scsi_id);
}

144
static void esp_get_differential(struct esp *esp)
145
{
146
	struct platform_device *op = esp->dev;
147
	struct device_node *dp;
148

149
	dp = op->dev.of_node;
150 151 152 153 154 155
	if (of_find_property(dp, "differential", NULL))
		esp->flags |= ESP_FLAG_DIFFERENTIAL;
	else
		esp->flags &= ~ESP_FLAG_DIFFERENTIAL;
}

156
static void esp_get_clock_params(struct esp *esp)
157
{
158
	struct platform_device *op = esp->dev;
159
	struct device_node *bus_dp, *dp;
160 161
	int fmhz;

162
	dp = op->dev.of_node;
163
	bus_dp = dp->parent;
164 165 166

	fmhz = of_getintprop_default(dp, "clock-frequency", 0);
	if (fmhz == 0)
167
		fmhz = of_getintprop_default(bus_dp, "clock-frequency", 0);
168 169 170 171

	esp->cfreq = fmhz;
}

172
static void esp_get_bursts(struct esp *esp, struct platform_device *dma_of)
173
{
174
	struct device_node *dma_dp = dma_of->dev.of_node;
175
	struct platform_device *op = esp->dev;
D
David S. Miller 已提交
176 177
	struct device_node *dp;
	u8 bursts, val;
178

179
	dp = op->dev.of_node;
180
	bursts = of_getintprop_default(dp, "burst-sizes", 0xff);
D
David S. Miller 已提交
181 182 183
	val = of_getintprop_default(dma_dp, "burst-sizes", 0xff);
	if (val != 0xff)
		bursts &= val;
184

185 186 187
	val = of_getintprop_default(dma_dp->parent, "burst-sizes", 0xff);
	if (val != 0xff)
		bursts &= val;
188 189 190 191 192 193 194 195 196

	if (bursts == 0xff ||
	    (bursts & DMA_BURST16) == 0 ||
	    (bursts & DMA_BURST32) == 0)
		bursts = (DMA_BURST32 - 1);

	esp->bursts = bursts;
}

197
static void esp_sbus_get_props(struct esp *esp, struct platform_device *espdma)
198
{
199
	esp_get_scsi_id(esp, espdma);
200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
	esp_get_differential(esp);
	esp_get_clock_params(esp);
	esp_get_bursts(esp, espdma);
}

static void sbus_esp_write8(struct esp *esp, u8 val, unsigned long reg)
{
	sbus_writeb(val, esp->regs + (reg * 4UL));
}

static u8 sbus_esp_read8(struct esp *esp, unsigned long reg)
{
	return sbus_readb(esp->regs + (reg * 4UL));
}

static dma_addr_t sbus_esp_map_single(struct esp *esp, void *buf,
				      size_t sz, int dir)
{
218
	struct platform_device *op = esp->dev;
219

220
	return dma_map_single(&op->dev, buf, sz, dir);
221 222 223 224 225
}

static int sbus_esp_map_sg(struct esp *esp, struct scatterlist *sg,
				  int num_sg, int dir)
{
226
	struct platform_device *op = esp->dev;
227

228
	return dma_map_sg(&op->dev, sg, num_sg, dir);
229 230 231 232 233
}

static void sbus_esp_unmap_single(struct esp *esp, dma_addr_t addr,
				  size_t sz, int dir)
{
234
	struct platform_device *op = esp->dev;
235

236
	dma_unmap_single(&op->dev, addr, sz, dir);
237 238 239 240 241
}

static void sbus_esp_unmap_sg(struct esp *esp, struct scatterlist *sg,
			      int num_sg, int dir)
{
242
	struct platform_device *op = esp->dev;
243

244
	dma_unmap_sg(&op->dev, sg, num_sg, dir);
245 246 247 248 249 250 251 252 253 254 255 256 257
}

static int sbus_esp_irq_pending(struct esp *esp)
{
	if (dma_read32(DMA_CSR) & (DMA_HNDL_INTR | DMA_HNDL_ERROR))
		return 1;
	return 0;
}

static void sbus_esp_reset_dma(struct esp *esp)
{
	int can_do_burst16, can_do_burst32, can_do_burst64;
	int can_do_sbus64, lim;
258
	struct platform_device *op;
259 260 261 262 263 264
	u32 val;

	can_do_burst16 = (esp->bursts & DMA_BURST16) != 0;
	can_do_burst32 = (esp->bursts & DMA_BURST32) != 0;
	can_do_burst64 = 0;
	can_do_sbus64 = 0;
265
	op = esp->dev;
266
	if (sbus_can_dma_64bit())
267
		can_do_sbus64 = 1;
268
	if (sbus_can_burst64())
269 270 271
		can_do_burst64 = (esp->bursts & DMA_BURST64) != 0;

	/* Put the DVMA into a known state. */
D
David S. Miller 已提交
272
	if (esp->dmarev != dvmahme) {
273 274 275 276
		val = dma_read32(DMA_CSR);
		dma_write32(val | DMA_RST_SCSI, DMA_CSR);
		dma_write32(val & ~DMA_RST_SCSI, DMA_CSR);
	}
D
David S. Miller 已提交
277
	switch (esp->dmarev) {
278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294
	case dvmahme:
		dma_write32(DMA_RESET_FAS366, DMA_CSR);
		dma_write32(DMA_RST_SCSI, DMA_CSR);

		esp->prev_hme_dmacsr = (DMA_PARITY_OFF | DMA_2CLKS |
					DMA_SCSI_DISAB | DMA_INT_ENAB);

		esp->prev_hme_dmacsr &= ~(DMA_ENABLE | DMA_ST_WRITE |
					  DMA_BRST_SZ);

		if (can_do_burst64)
			esp->prev_hme_dmacsr |= DMA_BRST64;
		else if (can_do_burst32)
			esp->prev_hme_dmacsr |= DMA_BRST32;

		if (can_do_sbus64) {
			esp->prev_hme_dmacsr |= DMA_SCSI_SBUS64;
295
			sbus_set_sbus64(&op->dev, esp->bursts);
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 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
		}

		lim = 1000;
		while (dma_read32(DMA_CSR) & DMA_PEND_READ) {
			if (--lim == 0) {
				printk(KERN_ALERT PFX "esp%d: DMA_PEND_READ "
				       "will not clear!\n",
				       esp->host->unique_id);
				break;
			}
			udelay(1);
		}

		dma_write32(0, DMA_CSR);
		dma_write32(esp->prev_hme_dmacsr, DMA_CSR);

		dma_write32(0, DMA_ADDR);
		break;

	case dvmarev2:
		if (esp->rev != ESP100) {
			val = dma_read32(DMA_CSR);
			dma_write32(val | DMA_3CLKS, DMA_CSR);
		}
		break;

	case dvmarev3:
		val = dma_read32(DMA_CSR);
		val &= ~DMA_3CLKS;
		val |= DMA_2CLKS;
		if (can_do_burst32) {
			val &= ~DMA_BRST_SZ;
			val |= DMA_BRST32;
		}
		dma_write32(val, DMA_CSR);
		break;

	case dvmaesc1:
		val = dma_read32(DMA_CSR);
		val |= DMA_ADD_ENABLE;
		val &= ~DMA_BCNT_ENAB;
		if (!can_do_burst32 && can_do_burst16) {
			val |= DMA_ESC_BURST;
		} else {
			val &= ~(DMA_ESC_BURST);
		}
		dma_write32(val, DMA_CSR);
		break;

	default:
		break;
	}

	/* Enable interrupts.  */
	val = dma_read32(DMA_CSR);
	dma_write32(val | DMA_INT_ENAB, DMA_CSR);
}

static void sbus_esp_dma_drain(struct esp *esp)
{
	u32 csr;
	int lim;

D
David S. Miller 已提交
359
	if (esp->dmarev == dvmahme)
360 361 362 363 364 365
		return;

	csr = dma_read32(DMA_CSR);
	if (!(csr & DMA_FIFO_ISDRAIN))
		return;

D
David S. Miller 已提交
366
	if (esp->dmarev != dvmarev3 && esp->dmarev != dvmaesc1)
367 368 369 370 371 372 373 374 375 376 377 378 379 380 381
		dma_write32(csr | DMA_FIFO_STDRAIN, DMA_CSR);

	lim = 1000;
	while (dma_read32(DMA_CSR) & DMA_FIFO_ISDRAIN) {
		if (--lim == 0) {
			printk(KERN_ALERT PFX "esp%d: DMA will not drain!\n",
			       esp->host->unique_id);
			break;
		}
		udelay(1);
	}
}

static void sbus_esp_dma_invalidate(struct esp *esp)
{
D
David S. Miller 已提交
382
	if (esp->dmarev == dvmahme) {
383 384 385 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 445 446 447 448 449 450 451 452
		dma_write32(DMA_RST_SCSI, DMA_CSR);

		esp->prev_hme_dmacsr = ((esp->prev_hme_dmacsr |
					 (DMA_PARITY_OFF | DMA_2CLKS |
					  DMA_SCSI_DISAB | DMA_INT_ENAB)) &
					~(DMA_ST_WRITE | DMA_ENABLE));

		dma_write32(0, DMA_CSR);
		dma_write32(esp->prev_hme_dmacsr, DMA_CSR);

		/* This is necessary to avoid having the SCSI channel
		 * engine lock up on us.
		 */
		dma_write32(0, DMA_ADDR);
	} else {
		u32 val;
		int lim;

		lim = 1000;
		while ((val = dma_read32(DMA_CSR)) & DMA_PEND_READ) {
			if (--lim == 0) {
				printk(KERN_ALERT PFX "esp%d: DMA will not "
				       "invalidate!\n", esp->host->unique_id);
				break;
			}
			udelay(1);
		}

		val &= ~(DMA_ENABLE | DMA_ST_WRITE | DMA_BCNT_ENAB);
		val |= DMA_FIFO_INV;
		dma_write32(val, DMA_CSR);
		val &= ~DMA_FIFO_INV;
		dma_write32(val, DMA_CSR);
	}
}

static void sbus_esp_send_dma_cmd(struct esp *esp, u32 addr, u32 esp_count,
				  u32 dma_count, int write, u8 cmd)
{
	u32 csr;

	BUG_ON(!(cmd & ESP_CMD_DMA));

	sbus_esp_write8(esp, (esp_count >> 0) & 0xff, ESP_TCLOW);
	sbus_esp_write8(esp, (esp_count >> 8) & 0xff, ESP_TCMED);
	if (esp->rev == FASHME) {
		sbus_esp_write8(esp, (esp_count >> 16) & 0xff, FAS_RLO);
		sbus_esp_write8(esp, 0, FAS_RHI);

		scsi_esp_cmd(esp, cmd);

		csr = esp->prev_hme_dmacsr;
		csr |= DMA_SCSI_DISAB | DMA_ENABLE;
		if (write)
			csr |= DMA_ST_WRITE;
		else
			csr &= ~DMA_ST_WRITE;
		esp->prev_hme_dmacsr = csr;

		dma_write32(dma_count, DMA_COUNT);
		dma_write32(addr, DMA_ADDR);
		dma_write32(csr, DMA_CSR);
	} else {
		csr = dma_read32(DMA_CSR);
		csr |= DMA_ENABLE;
		if (write)
			csr |= DMA_ST_WRITE;
		else
			csr &= ~DMA_ST_WRITE;
		dma_write32(csr, DMA_CSR);
D
David S. Miller 已提交
453
		if (esp->dmarev == dvmaesc1) {
454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488
			u32 end = PAGE_ALIGN(addr + dma_count + 16U);
			dma_write32(end - addr, DMA_COUNT);
		}
		dma_write32(addr, DMA_ADDR);

		scsi_esp_cmd(esp, cmd);
	}

}

static int sbus_esp_dma_error(struct esp *esp)
{
	u32 csr = dma_read32(DMA_CSR);

	if (csr & DMA_HNDL_ERROR)
		return 1;

	return 0;
}

static const struct esp_driver_ops sbus_esp_ops = {
	.esp_write8	=	sbus_esp_write8,
	.esp_read8	=	sbus_esp_read8,
	.map_single	=	sbus_esp_map_single,
	.map_sg		=	sbus_esp_map_sg,
	.unmap_single	=	sbus_esp_unmap_single,
	.unmap_sg	=	sbus_esp_unmap_sg,
	.irq_pending	=	sbus_esp_irq_pending,
	.reset_dma	=	sbus_esp_reset_dma,
	.dma_drain	=	sbus_esp_dma_drain,
	.dma_invalidate	=	sbus_esp_dma_invalidate,
	.send_dma_cmd	=	sbus_esp_send_dma_cmd,
	.dma_error	=	sbus_esp_dma_error,
};

489 490
static int esp_sbus_probe_one(struct platform_device *op,
			      struct platform_device *espdma, int hme)
491 492 493 494 495 496 497 498 499 500 501 502 503
{
	struct scsi_host_template *tpnt = &scsi_esp_template;
	struct Scsi_Host *host;
	struct esp *esp;
	int err;

	host = scsi_host_alloc(tpnt, sizeof(struct esp));

	err = -ENOMEM;
	if (!host)
		goto fail;

	host->max_id = (hme ? 16 : 8);
C
Christoph Hellwig 已提交
504
	esp = shost_priv(host);
505 506

	esp->host = host;
507
	esp->dev = op;
508 509 510 511 512
	esp->ops = &sbus_esp_ops;

	if (hme)
		esp->flags |= ESP_FLAG_WIDE_CAPABLE;

D
David S. Miller 已提交
513
	err = esp_sbus_setup_dma(esp, espdma);
514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534
	if (err < 0)
		goto fail_unlink;

	err = esp_sbus_map_regs(esp, hme);
	if (err < 0)
		goto fail_unlink;

	err = esp_sbus_map_command_block(esp);
	if (err < 0)
		goto fail_unmap_regs;

	err = esp_sbus_register_irq(esp);
	if (err < 0)
		goto fail_unmap_command_block;

	esp_sbus_get_props(esp, espdma);

	/* Before we try to touch the ESP chip, ESC1 dma can
	 * come up with the reset bit set, so make sure that
	 * is clear first.
	 */
D
David S. Miller 已提交
535
	if (esp->dmarev == dvmaesc1) {
536 537 538 539 540
		u32 val = dma_read32(DMA_CSR);

		dma_write32(val & ~DMA_RST_SCSI, DMA_CSR);
	}

541
	dev_set_drvdata(&op->dev, esp);
542

543
	err = scsi_esp_register(esp, &op->dev);
544 545 546 547 548 549 550 551
	if (err)
		goto fail_free_irq;

	return 0;

fail_free_irq:
	free_irq(host->irq, esp);
fail_unmap_command_block:
552
	dma_free_coherent(&op->dev, 16,
553 554
			  esp->command_block,
			  esp->command_block_dma);
555
fail_unmap_regs:
556
	of_iounmap(&op->resource[(hme ? 1 : 0)], esp->regs, SBUS_ESP_REG_SIZE);
557 558 559 560 561 562
fail_unlink:
	scsi_host_put(host);
fail:
	return err;
}

563
static int esp_sbus_probe(struct platform_device *op)
564
{
D
David S. Miller 已提交
565
	struct device_node *dma_node = NULL;
566
	struct device_node *dp = op->dev.of_node;
567
	struct platform_device *dma_of = NULL;
568 569 570 571 572
	int hme = 0;

	if (dp->parent &&
	    (!strcmp(dp->parent->name, "espdma") ||
	     !strcmp(dp->parent->name, "dma")))
D
David S. Miller 已提交
573
		dma_node = dp->parent;
574
	else if (!strcmp(dp->name, "SUNW,fas")) {
575
		dma_node = op->dev.of_node;
576 577
		hme = 1;
	}
D
David S. Miller 已提交
578 579 580 581
	if (dma_node)
		dma_of = of_find_device_by_node(dma_node);
	if (!dma_of)
		return -ENODEV;
582

583
	return esp_sbus_probe_one(op, dma_of, hme);
584 585
}

586
static int esp_sbus_remove(struct platform_device *op)
587
{
588
	struct esp *esp = dev_get_drvdata(&op->dev);
589
	struct platform_device *dma_of = esp->dma;
590
	unsigned int irq = esp->host->irq;
591
	bool is_hme;
592 593 594 595 596 597 598 599 600
	u32 val;

	scsi_esp_unregister(esp);

	/* Disable interrupts.  */
	val = dma_read32(DMA_CSR);
	dma_write32(val & ~DMA_INT_ENAB, DMA_CSR);

	free_irq(irq, esp);
601 602 603 604

	is_hme = (esp->dmarev == dvmahme);

	dma_free_coherent(&op->dev, 16,
605 606
			  esp->command_block,
			  esp->command_block_dma);
607 608
	of_iounmap(&op->resource[(is_hme ? 1 : 0)], esp->regs,
		   SBUS_ESP_REG_SIZE);
D
David S. Miller 已提交
609 610
	of_iounmap(&dma_of->resource[0], esp->dma_regs,
		   resource_size(&dma_of->resource[0]));
611 612 613

	scsi_host_put(esp->host);

614 615
	dev_set_drvdata(&op->dev, NULL);

616 617 618
	return 0;
}

619
static const struct of_device_id esp_match[] = {
620 621 622 623 624 625 626 627 628 629 630 631 632
	{
		.name = "SUNW,esp",
	},
	{
		.name = "SUNW,fas",
	},
	{
		.name = "esp",
	},
	{},
};
MODULE_DEVICE_TABLE(of, esp_match);

633
static struct platform_driver esp_sbus_driver = {
634 635 636 637
	.driver = {
		.name = "esp",
		.of_match_table = esp_match,
	},
638
	.probe		= esp_sbus_probe,
639
	.remove		= esp_sbus_remove,
640 641 642 643
};

static int __init sunesp_init(void)
{
644
	return platform_driver_register(&esp_sbus_driver);
645 646 647 648
}

static void __exit sunesp_exit(void)
{
649
	platform_driver_unregister(&esp_sbus_driver);
650 651 652 653 654 655 656 657 658
}

MODULE_DESCRIPTION("Sun ESP SCSI driver");
MODULE_AUTHOR("David S. Miller (davem@davemloft.net)");
MODULE_LICENSE("GPL");
MODULE_VERSION(DRV_VERSION);

module_init(sunesp_init);
module_exit(sunesp_exit);