palm_bk3710.c 10.6 KB
Newer Older
A
Anton Salnikov 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
/*
 * Palmchip bk3710 IDE controller
 *
 * Copyright (C) 2006 Texas Instruments.
 * Copyright (C) 2007 MontaVista Software, Inc., <source@mvista.com>
 *
 * ----------------------------------------------------------------------------
 *
 * 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.
 *
 * 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.
 *
 *  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., 675 Mass Ave, Cambridge, MA 02139, USA.
 * ----------------------------------------------------------------------------
 *
 */

#include <linux/types.h>
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/ioport.h>
#include <linux/ide.h>
#include <linux/delay.h>
#include <linux/init.h>
#include <linux/clk.h>
#include <linux/platform_device.h>

/* Offset of the primary interface registers */
#define IDE_PALM_ATA_PRI_REG_OFFSET 0x1F0

/* Primary Control Offset */
#define IDE_PALM_ATA_PRI_CTL_OFFSET 0x3F6

#define BK3710_BMICP		0x00
#define BK3710_BMISP		0x02
#define BK3710_BMIDTP		0x04
#define BK3710_IDETIMP		0x40
#define BK3710_IDESTATUS	0x47
#define BK3710_UDMACTL		0x48
#define BK3710_MISCCTL		0x50
#define BK3710_REGSTB		0x54
#define BK3710_REGRCVR		0x58
#define BK3710_DATSTB		0x5C
#define BK3710_DATRCVR		0x60
#define BK3710_DMASTB		0x64
#define BK3710_DMARCVR		0x68
#define BK3710_UDMASTB		0x6C
#define BK3710_UDMATRP		0x70
#define BK3710_UDMAENV		0x74
#define BK3710_IORDYTMP		0x78

60
static unsigned ideclk_period; /* in nanoseconds */
A
Anton Salnikov 已提交
61

62 63 64 65 66 67
struct palm_bk3710_udmatiming {
	unsigned int rptime;	/* tRP -- Ready to pause time (nsec) */
	unsigned int cycletime;	/* tCYCTYP2/2 -- avg Cycle Time (nsec) */
				/* tENV is always a minimum of 20 nsec */
};

A
Anton Salnikov 已提交
68
static const struct palm_bk3710_udmatiming palm_bk3710_udmatimings[6] = {
69 70 71 72 73 74
	{ 160, 240 / 2 },	/* UDMA Mode 0 */
	{ 125, 160 / 2 },	/* UDMA Mode 1 */
	{ 100, 120 / 2 },	/* UDMA Mode 2 */
	{ 100,  90 / 2 },	/* UDMA Mode 3 */
	{ 100,  60 / 2 },	/* UDMA Mode 4 */
	{  85,  40 / 2 },	/* UDMA Mode 5 */
A
Anton Salnikov 已提交
75 76 77 78 79 80 81 82 83 84
};

static void palm_bk3710_setudmamode(void __iomem *base, unsigned int dev,
				    unsigned int mode)
{
	u8 tenv, trp, t0;
	u32 val32;
	u16 val16;

	/* DMA Data Setup */
J
Julia Lawall 已提交
85
	t0 = DIV_ROUND_UP(palm_bk3710_udmatimings[mode].cycletime,
86 87
			  ideclk_period) - 1;
	tenv = DIV_ROUND_UP(20, ideclk_period) - 1;
J
Julia Lawall 已提交
88
	trp = DIV_ROUND_UP(palm_bk3710_udmatimings[mode].rptime,
89
			   ideclk_period) - 1;
A
Anton Salnikov 已提交
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124

	/* udmastb Ultra DMA Access Strobe Width */
	val32 = readl(base + BK3710_UDMASTB) & (0xFF << (dev ? 0 : 8));
	val32 |= (t0 << (dev ? 8 : 0));
	writel(val32, base + BK3710_UDMASTB);

	/* udmatrp Ultra DMA Ready to Pause Time */
	val32 = readl(base + BK3710_UDMATRP) & (0xFF << (dev ? 0 : 8));
	val32 |= (trp << (dev ? 8 : 0));
	writel(val32, base + BK3710_UDMATRP);

	/* udmaenv Ultra DMA envelop Time */
	val32 = readl(base + BK3710_UDMAENV) & (0xFF << (dev ? 0 : 8));
	val32 |= (tenv << (dev ? 8 : 0));
	writel(val32, base + BK3710_UDMAENV);

	/* Enable UDMA for Device */
	val16 = readw(base + BK3710_UDMACTL) | (1 << dev);
	writew(val16, base + BK3710_UDMACTL);
}

static void palm_bk3710_setdmamode(void __iomem *base, unsigned int dev,
				   unsigned short min_cycle,
				   unsigned int mode)
{
	u8 td, tkw, t0;
	u32 val32;
	u16 val16;
	struct ide_timing *t;
	int cycletime;

	t = ide_timing_find_mode(mode);
	cycletime = max_t(int, t->cycle, min_cycle);

	/* DMA Data Setup */
125 126
	t0 = DIV_ROUND_UP(cycletime, ideclk_period);
	td = DIV_ROUND_UP(t->active, ideclk_period);
A
Anton Salnikov 已提交
127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
	tkw = t0 - td - 1;
	td -= 1;

	val32 = readl(base + BK3710_DMASTB) & (0xFF << (dev ? 0 : 8));
	val32 |= (td << (dev ? 8 : 0));
	writel(val32, base + BK3710_DMASTB);

	val32 = readl(base + BK3710_DMARCVR) & (0xFF << (dev ? 0 : 8));
	val32 |= (tkw << (dev ? 8 : 0));
	writel(val32, base + BK3710_DMARCVR);

	/* Disable UDMA for Device */
	val16 = readw(base + BK3710_UDMACTL) & ~(1 << dev);
	writew(val16, base + BK3710_UDMACTL);
}

static void palm_bk3710_setpiomode(void __iomem *base, ide_drive_t *mate,
				   unsigned int dev, unsigned int cycletime,
				   unsigned int mode)
{
	u8 t2, t2i, t0;
	u32 val32;
	struct ide_timing *t;

151 152
	t = ide_timing_find_mode(XFER_PIO_0 + mode);

A
Anton Salnikov 已提交
153
	/* PIO Data Setup */
154
	t0 = DIV_ROUND_UP(cycletime, ideclk_period);
155
	t2 = DIV_ROUND_UP(t->active, ideclk_period);
A
Anton Salnikov 已提交
156 157 158 159 160 161 162 163 164 165 166 167

	t2i = t0 - t2 - 1;
	t2 -= 1;

	val32 = readl(base + BK3710_DATSTB) & (0xFF << (dev ? 0 : 8));
	val32 |= (t2 << (dev ? 8 : 0));
	writel(val32, base + BK3710_DATSTB);

	val32 = readl(base + BK3710_DATRCVR) & (0xFF << (dev ? 0 : 8));
	val32 |= (t2i << (dev ? 8 : 0));
	writel(val32, base + BK3710_DATRCVR);

168
	if (mate) {
169
		u8 mode2 = mate->pio_mode - XFER_PIO_0;
A
Anton Salnikov 已提交
170 171 172 173 174 175

		if (mode2 < mode)
			mode = mode2;
	}

	/* TASKFILE Setup */
176 177
	t0 = DIV_ROUND_UP(t->cyc8b, ideclk_period);
	t2 = DIV_ROUND_UP(t->act8b, ideclk_period);
A
Anton Salnikov 已提交
178 179 180 181 182 183 184 185 186 187 188 189 190

	t2i = t0 - t2 - 1;
	t2 -= 1;

	val32 = readl(base + BK3710_REGSTB) & (0xFF << (dev ? 0 : 8));
	val32 |= (t2 << (dev ? 8 : 0));
	writel(val32, base + BK3710_REGSTB);

	val32 = readl(base + BK3710_REGRCVR) & (0xFF << (dev ? 0 : 8));
	val32 |= (t2i << (dev ? 8 : 0));
	writel(val32, base + BK3710_REGRCVR);
}

191
static void palm_bk3710_set_dma_mode(ide_hwif_t *hwif, ide_drive_t *drive)
A
Anton Salnikov 已提交
192 193
{
	int is_slave = drive->dn & 1;
194
	void __iomem *base = (void __iomem *)hwif->dma_base;
195
	const u8 xferspeed = drive->dma_mode;
A
Anton Salnikov 已提交
196 197 198 199 200

	if (xferspeed >= XFER_UDMA_0) {
		palm_bk3710_setudmamode(base, is_slave,
					xferspeed - XFER_UDMA_0);
	} else {
201 202
		palm_bk3710_setdmamode(base, is_slave,
				       drive->id[ATA_ID_EIDE_DMA_MIN],
A
Anton Salnikov 已提交
203 204 205 206
				       xferspeed);
	}
}

207
static void palm_bk3710_set_pio_mode(ide_hwif_t *hwif, ide_drive_t *drive)
A
Anton Salnikov 已提交
208 209 210 211
{
	unsigned int cycle_time;
	int is_slave = drive->dn & 1;
	ide_drive_t *mate;
212
	void __iomem *base = (void __iomem *)hwif->dma_base;
213
	const u8 pio = drive->pio_mode - XFER_PIO_0;
A
Anton Salnikov 已提交
214 215 216 217 218

	/*
	 * Obtain the drive PIO data for tuning the Palm Chip registers
	 */
	cycle_time = ide_pio_cycle_time(drive, pio);
219
	mate = ide_get_pair_dev(drive);
A
Anton Salnikov 已提交
220 221 222
	palm_bk3710_setpiomode(base, mate, is_slave, cycle_time, pio);
}

223
static void palm_bk3710_chipinit(void __iomem *base)
A
Anton Salnikov 已提交
224 225
{
	/*
226 227 228 229
	 * REVISIT:  the ATA reset signal needs to be managed through a
	 * GPIO, which means it should come from platform_data.  Until
	 * we get and use such information, we have to trust that things
	 * have been reset before we get here.
A
Anton Salnikov 已提交
230 231 232 233 234 235 236 237
	 */

	/*
	 * Program the IDETIMP Register Value based on the following assumptions
	 *
	 * (ATA_IDETIMP_IDEEN		, ENABLE ) |
	 * (ATA_IDETIMP_PREPOST1	, DISABLE) |
	 * (ATA_IDETIMP_PREPOST0	, DISABLE) |
238 239 240
	 *
	 * DM6446 silicon rev 2.1 and earlier have no observed net benefit
	 * from enabling prefetch/postwrite.
A
Anton Salnikov 已提交
241
	 */
242
	writew(BIT(15), base + BK3710_IDETIMP);
A
Anton Salnikov 已提交
243 244 245 246 247 248 249 250 251 252 253

	/*
	 * UDMACTL Ultra-ATA DMA Control
	 * (ATA_UDMACTL_UDMAP1	, 0 ) |
	 * (ATA_UDMACTL_UDMAP0	, 0 )
	 *
	 */
	writew(0, base + BK3710_UDMACTL);

	/*
	 * MISCCTL Miscellaneous Conrol Register
254 255
	 * (ATA_MISCCTL_HWNHLD1P	, 1 cycle)
	 * (ATA_MISCCTL_HWNHLD0P	, 1 cycle)
A
Anton Salnikov 已提交
256 257
	 * (ATA_MISCCTL_TIMORIDE	, 1)
	 */
258
	writel(0x001, base + BK3710_MISCCTL);
A
Anton Salnikov 已提交
259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278

	/*
	 * IORDYTMP IORDY Timer for Primary Register
	 * (ATA_IORDYTMP_IORDYTMP     , 0xffff  )
	 */
	writel(0xFFFF, base + BK3710_IORDYTMP);

	/*
	 * Configure BMISP Register
	 * (ATA_BMISP_DMAEN1	, DISABLE )	|
	 * (ATA_BMISP_DMAEN0	, DISABLE )	|
	 * (ATA_BMISP_IORDYINT	, CLEAR)	|
	 * (ATA_BMISP_INTRSTAT	, CLEAR)	|
	 * (ATA_BMISP_DMAERROR	, CLEAR)
	 */
	writew(0, base + BK3710_BMISP);

	palm_bk3710_setpiomode(base, NULL, 0, 600, 0);
	palm_bk3710_setpiomode(base, NULL, 1, 600, 0);
}
279

280
static u8 palm_bk3710_cable_detect(ide_hwif_t *hwif)
281 282 283 284
{
	return ATA_CBL_PATA80;
}

285
static int palm_bk3710_init_dma(ide_hwif_t *hwif, const struct ide_port_info *d)
286 287 288 289 290 291
{
	printk(KERN_INFO "    %s: MMIO-DMA\n", hwif->name);

	if (ide_allocate_dma_engine(hwif))
		return -1;

292 293
	hwif->dma_base = hwif->io_ports.data_addr - IDE_PALM_ATA_PRI_REG_OFFSET;

294 295 296
	return 0;
}

297 298 299 300 301
static const struct ide_port_ops palm_bk3710_ports_ops = {
	.set_pio_mode		= palm_bk3710_set_pio_mode,
	.set_dma_mode		= palm_bk3710_set_dma_mode,
	.cable_detect		= palm_bk3710_cable_detect,
};
302

303
static struct ide_port_info palm_bk3710_port_info = {
304
	.init_dma		= palm_bk3710_init_dma,
305
	.port_ops		= &palm_bk3710_ports_ops,
306
	.dma_ops		= &sff_dma_ops,
307
	.host_flags		= IDE_HFLAG_MMIO,
308 309
	.pio_mask		= ATA_PIO4,
	.mwdma_mask		= ATA_MWDMA2,
310
	.chipset		= ide_palm3710,
311 312
};

313
static int __init palm_bk3710_probe(struct platform_device *pdev)
A
Anton Salnikov 已提交
314
{
315
	struct clk *clk;
A
Anton Salnikov 已提交
316
	struct resource *mem, *irq;
317
	void __iomem *base;
318
	unsigned long rate, mem_size;
319
	int i, rc;
320
	struct ide_hw hw, *hws[] = { &hw };
A
Anton Salnikov 已提交
321

322
	clk = clk_get(&pdev->dev, NULL);
323
	if (IS_ERR(clk))
A
Anton Salnikov 已提交
324 325
		return -ENODEV;

326 327
	clk_enable(clk);
	rate = clk_get_rate(clk);
328 329
	if (!rate)
		return -EINVAL;
330

331 332
	/* NOTE:  round *down* to meet minimum timings; we count in clocks */
	ideclk_period = 1000000000UL / rate;
A
Anton Salnikov 已提交
333 334 335 336 337 338

	mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	if (mem == NULL) {
		printk(KERN_ERR "failed to get memory region resource\n");
		return -ENODEV;
	}
339

A
Anton Salnikov 已提交
340 341 342 343 344 345
	irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
	if (irq == NULL) {
		printk(KERN_ERR "failed to get IRQ resource\n");
		return -ENODEV;
	}

346
	mem_size = resource_size(mem);
347
	if (request_mem_region(mem->start, mem_size, "palm_bk3710") == NULL) {
348 349 350 351
		printk(KERN_ERR "failed to request memory region\n");
		return -EBUSY;
	}

352 353 354 355 356 357
	base = ioremap(mem->start, mem_size);
	if (!base) {
		printk(KERN_ERR "failed to map IO memory\n");
		release_mem_region(mem->start, mem_size);
		return -ENOMEM;
	}
A
Anton Salnikov 已提交
358 359

	/* Configure the Palm Chip controller */
360
	palm_bk3710_chipinit(base);
A
Anton Salnikov 已提交
361

362
	memset(&hw, 0, sizeof(hw));
363
	for (i = 0; i < IDE_NR_PORTS - 2; i++)
364 365 366 367
		hw.io_ports_array[i] = (unsigned long)
				(base + IDE_PALM_ATA_PRI_REG_OFFSET + i);
	hw.io_ports.ctl_addr = (unsigned long)
			(base + IDE_PALM_ATA_PRI_CTL_OFFSET);
368
	hw.irq = irq->start;
369
	hw.dev = &pdev->dev;
A
Anton Salnikov 已提交
370

371 372 373
	palm_bk3710_port_info.udma_mask = rate < 100000000 ? ATA_UDMA4 :
							     ATA_UDMA5;

374
	/* Register the IDE interface with Linux */
375
	rc = ide_host_add(&palm_bk3710_port_info, hws, 1, NULL);
376
	if (rc)
377 378
		goto out;

A
Anton Salnikov 已提交
379
	return 0;
380 381
out:
	printk(KERN_WARNING "Palm Chip BK3710 IDE Register Fail\n");
382
	return rc;
A
Anton Salnikov 已提交
383 384
}

385 386 387
/* work with hotplug and coldplug */
MODULE_ALIAS("platform:palm_bk3710");

A
Anton Salnikov 已提交
388 389 390 391 392 393 394 395
static struct platform_driver platform_bk_driver = {
	.driver = {
		.name = "palm_bk3710",
	},
};

static int __init palm_bk3710_init(void)
{
396
	return platform_driver_probe(&platform_bk_driver, palm_bk3710_probe);
A
Anton Salnikov 已提交
397 398 399 400
}

module_init(palm_bk3710_init);
MODULE_LICENSE("GPL");