2 * Palmchip bk3710 IDE controller
4 * Copyright (C) 2006 Texas Instruments.
5 * Copyright (C) 2007 MontaVista Software, Inc., <source@mvista.com>
7 * ----------------------------------------------------------------------------
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.
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.
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., 675 Mass Ave, Cambridge, MA 02139, USA.
22 * ----------------------------------------------------------------------------
26 #include <linux/types.h>
27 #include <linux/module.h>
28 #include <linux/kernel.h>
29 #include <linux/ioport.h>
30 #include <linux/hdreg.h>
31 #include <linux/ide.h>
32 #include <linux/delay.h>
33 #include <linux/init.h>
34 #include <linux/clk.h>
35 #include <linux/platform_device.h>
37 /* Offset of the primary interface registers */
38 #define IDE_PALM_ATA_PRI_REG_OFFSET 0x1F0
40 /* Primary Control Offset */
41 #define IDE_PALM_ATA_PRI_CTL_OFFSET 0x3F6
44 * PalmChip 3710 IDE Controller UDMA timing structure Definition
46 struct palm_bk3710_udmatiming {
47 unsigned int rptime; /* Ready to pause time */
48 unsigned int cycletime; /* Cycle Time */
51 #define BK3710_BMICP 0x00
52 #define BK3710_BMISP 0x02
53 #define BK3710_BMIDTP 0x04
54 #define BK3710_BMICS 0x08
55 #define BK3710_BMISS 0x0A
56 #define BK3710_BMIDTS 0x0C
57 #define BK3710_IDETIMP 0x40
58 #define BK3710_IDETIMS 0x42
59 #define BK3710_SIDETIM 0x44
60 #define BK3710_SLEWCTL 0x45
61 #define BK3710_IDESTATUS 0x47
62 #define BK3710_UDMACTL 0x48
63 #define BK3710_UDMATIM 0x4A
64 #define BK3710_MISCCTL 0x50
65 #define BK3710_REGSTB 0x54
66 #define BK3710_REGRCVR 0x58
67 #define BK3710_DATSTB 0x5C
68 #define BK3710_DATRCVR 0x60
69 #define BK3710_DMASTB 0x64
70 #define BK3710_DMARCVR 0x68
71 #define BK3710_UDMASTB 0x6C
72 #define BK3710_UDMATRP 0x70
73 #define BK3710_UDMAENV 0x74
74 #define BK3710_IORDYTMP 0x78
75 #define BK3710_IORDYTMS 0x7C
77 static unsigned ideclk_period; /* in nanoseconds */
79 static const struct palm_bk3710_udmatiming palm_bk3710_udmatimings[6] = {
80 {160, 240}, /* UDMA Mode 0 */
81 {125, 160}, /* UDMA Mode 1 */
82 {100, 120}, /* UDMA Mode 2 */
83 {100, 90}, /* UDMA Mode 3 */
84 {100, 60}, /* UDMA Mode 4 */
87 static void palm_bk3710_setudmamode(void __iomem *base, unsigned int dev,
95 t0 = DIV_ROUND_UP(palm_bk3710_udmatimings[mode].cycletime,
97 tenv = DIV_ROUND_UP(20, ideclk_period) - 1;
98 trp = DIV_ROUND_UP(palm_bk3710_udmatimings[mode].rptime,
101 /* udmatim Register */
102 val16 = readw(base + BK3710_UDMATIM) & (dev ? 0xFF0F : 0xFFF0);
103 val16 |= (mode << (dev ? 4 : 0));
104 writew(val16, base + BK3710_UDMATIM);
106 /* udmastb Ultra DMA Access Strobe Width */
107 val32 = readl(base + BK3710_UDMASTB) & (0xFF << (dev ? 0 : 8));
108 val32 |= (t0 << (dev ? 8 : 0));
109 writel(val32, base + BK3710_UDMASTB);
111 /* udmatrp Ultra DMA Ready to Pause Time */
112 val32 = readl(base + BK3710_UDMATRP) & (0xFF << (dev ? 0 : 8));
113 val32 |= (trp << (dev ? 8 : 0));
114 writel(val32, base + BK3710_UDMATRP);
116 /* udmaenv Ultra DMA envelop Time */
117 val32 = readl(base + BK3710_UDMAENV) & (0xFF << (dev ? 0 : 8));
118 val32 |= (tenv << (dev ? 8 : 0));
119 writel(val32, base + BK3710_UDMAENV);
121 /* Enable UDMA for Device */
122 val16 = readw(base + BK3710_UDMACTL) | (1 << dev);
123 writew(val16, base + BK3710_UDMACTL);
126 static void palm_bk3710_setdmamode(void __iomem *base, unsigned int dev,
127 unsigned short min_cycle,
133 struct ide_timing *t;
136 t = ide_timing_find_mode(mode);
137 cycletime = max_t(int, t->cycle, min_cycle);
140 t0 = DIV_ROUND_UP(cycletime, ideclk_period);
141 td = DIV_ROUND_UP(t->active, ideclk_period);
145 val32 = readl(base + BK3710_DMASTB) & (0xFF << (dev ? 0 : 8));
146 val32 |= (td << (dev ? 8 : 0));
147 writel(val32, base + BK3710_DMASTB);
149 val32 = readl(base + BK3710_DMARCVR) & (0xFF << (dev ? 0 : 8));
150 val32 |= (tkw << (dev ? 8 : 0));
151 writel(val32, base + BK3710_DMARCVR);
153 /* Disable UDMA for Device */
154 val16 = readw(base + BK3710_UDMACTL) & ~(1 << dev);
155 writew(val16, base + BK3710_UDMACTL);
158 static void palm_bk3710_setpiomode(void __iomem *base, ide_drive_t *mate,
159 unsigned int dev, unsigned int cycletime,
164 struct ide_timing *t;
167 t0 = DIV_ROUND_UP(cycletime, ideclk_period);
168 t2 = DIV_ROUND_UP(ide_timing_find_mode(XFER_PIO_0 + mode)->active,
174 val32 = readl(base + BK3710_DATSTB) & (0xFF << (dev ? 0 : 8));
175 val32 |= (t2 << (dev ? 8 : 0));
176 writel(val32, base + BK3710_DATSTB);
178 val32 = readl(base + BK3710_DATRCVR) & (0xFF << (dev ? 0 : 8));
179 val32 |= (t2i << (dev ? 8 : 0));
180 writel(val32, base + BK3710_DATRCVR);
182 if (mate && mate->present) {
183 u8 mode2 = ide_get_best_pio_mode(mate, 255, 4);
190 t = ide_timing_find_mode(XFER_PIO_0 + mode);
191 t0 = DIV_ROUND_UP(t->cyc8b, ideclk_period);
192 t2 = DIV_ROUND_UP(t->act8b, ideclk_period);
197 val32 = readl(base + BK3710_REGSTB) & (0xFF << (dev ? 0 : 8));
198 val32 |= (t2 << (dev ? 8 : 0));
199 writel(val32, base + BK3710_REGSTB);
201 val32 = readl(base + BK3710_REGRCVR) & (0xFF << (dev ? 0 : 8));
202 val32 |= (t2i << (dev ? 8 : 0));
203 writel(val32, base + BK3710_REGRCVR);
206 static void palm_bk3710_set_dma_mode(ide_drive_t *drive, u8 xferspeed)
208 int is_slave = drive->dn & 1;
209 void __iomem *base = (void *)drive->hwif->dma_base;
211 if (xferspeed >= XFER_UDMA_0) {
212 palm_bk3710_setudmamode(base, is_slave,
213 xferspeed - XFER_UDMA_0);
215 palm_bk3710_setdmamode(base, is_slave, drive->id->eide_dma_min,
220 static void palm_bk3710_set_pio_mode(ide_drive_t *drive, u8 pio)
222 unsigned int cycle_time;
223 int is_slave = drive->dn & 1;
225 void __iomem *base = (void *)drive->hwif->dma_base;
228 * Obtain the drive PIO data for tuning the Palm Chip registers
230 cycle_time = ide_pio_cycle_time(drive, pio);
231 mate = ide_get_paired_drive(drive);
232 palm_bk3710_setpiomode(base, mate, is_slave, cycle_time, pio);
235 static void __devinit palm_bk3710_chipinit(void __iomem *base)
238 * enable the reset_en of ATA controller so that when ata signals
239 * are brought out, by writing into device config. at that
240 * time por_n signal should not be 'Z' and have a stable value.
242 writel(0x0300, base + BK3710_MISCCTL);
244 /* wait for some time and deassert the reset of ATA Device. */
247 /* Deassert the Reset */
248 writel(0x0200, base + BK3710_MISCCTL);
251 * Program the IDETIMP Register Value based on the following assumptions
253 * (ATA_IDETIMP_IDEEN , ENABLE ) |
254 * (ATA_IDETIMP_SLVTIMEN , DISABLE) |
255 * (ATA_IDETIMP_RDYSMPL , 70NS) |
256 * (ATA_IDETIMP_RDYRCVRY , 50NS) |
257 * (ATA_IDETIMP_DMAFTIM1 , PIOCOMP) |
258 * (ATA_IDETIMP_PREPOST1 , DISABLE) |
259 * (ATA_IDETIMP_RDYSEN1 , DISABLE) |
260 * (ATA_IDETIMP_PIOFTIM1 , DISABLE) |
261 * (ATA_IDETIMP_DMAFTIM0 , PIOCOMP) |
262 * (ATA_IDETIMP_PREPOST0 , DISABLE) |
263 * (ATA_IDETIMP_RDYSEN0 , DISABLE) |
264 * (ATA_IDETIMP_PIOFTIM0 , DISABLE)
266 writew(0xB388, base + BK3710_IDETIMP);
269 * Configure SIDETIM Register
270 * (ATA_SIDETIM_RDYSMPS1 ,120NS ) |
271 * (ATA_SIDETIM_RDYRCYS1 ,120NS )
273 writeb(0, base + BK3710_SIDETIM);
276 * UDMACTL Ultra-ATA DMA Control
277 * (ATA_UDMACTL_UDMAP1 , 0 ) |
278 * (ATA_UDMACTL_UDMAP0 , 0 )
281 writew(0, base + BK3710_UDMACTL);
284 * MISCCTL Miscellaneous Conrol Register
285 * (ATA_MISCCTL_RSTMODEP , 1) |
286 * (ATA_MISCCTL_RESETP , 0) |
287 * (ATA_MISCCTL_TIMORIDE , 1)
289 writel(0x201, base + BK3710_MISCCTL);
292 * IORDYTMP IORDY Timer for Primary Register
293 * (ATA_IORDYTMP_IORDYTMP , 0xffff )
295 writel(0xFFFF, base + BK3710_IORDYTMP);
298 * Configure BMISP Register
299 * (ATA_BMISP_DMAEN1 , DISABLE ) |
300 * (ATA_BMISP_DMAEN0 , DISABLE ) |
301 * (ATA_BMISP_IORDYINT , CLEAR) |
302 * (ATA_BMISP_INTRSTAT , CLEAR) |
303 * (ATA_BMISP_DMAERROR , CLEAR)
305 writew(0, base + BK3710_BMISP);
307 palm_bk3710_setpiomode(base, NULL, 0, 600, 0);
308 palm_bk3710_setpiomode(base, NULL, 1, 600, 0);
311 static u8 __devinit palm_bk3710_cable_detect(ide_hwif_t *hwif)
313 return ATA_CBL_PATA80;
316 static int __devinit palm_bk3710_init_dma(ide_hwif_t *hwif,
317 const struct ide_port_info *d)
320 hwif->io_ports.data_addr - IDE_PALM_ATA_PRI_REG_OFFSET;
322 printk(KERN_INFO " %s: MMIO-DMA\n", hwif->name);
324 if (ide_allocate_dma_engine(hwif))
327 ide_setup_dma(hwif, base);
332 static const struct ide_port_ops palm_bk3710_ports_ops = {
333 .set_pio_mode = palm_bk3710_set_pio_mode,
334 .set_dma_mode = palm_bk3710_set_dma_mode,
335 .cable_detect = palm_bk3710_cable_detect,
338 static const struct ide_port_info __devinitdata palm_bk3710_port_info = {
339 .init_dma = palm_bk3710_init_dma,
340 .port_ops = &palm_bk3710_ports_ops,
341 .host_flags = IDE_HFLAG_MMIO,
342 .pio_mask = ATA_PIO4,
343 .udma_mask = ATA_UDMA4, /* (input clk 99MHz) */
344 .mwdma_mask = ATA_MWDMA2,
347 static int __devinit palm_bk3710_probe(struct platform_device *pdev)
350 struct resource *mem, *irq;
352 unsigned long base, rate;
355 u8 idx[4] = { 0xff, 0xff, 0xff, 0xff };
357 clk = clk_get(NULL, "IDECLK");
362 rate = clk_get_rate(clk);
363 ideclk_period = 1000000000UL / rate;
365 /* Register the IDE interface with Linux ATA Interface */
366 memset(&hw, 0, sizeof(hw));
368 mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
370 printk(KERN_ERR "failed to get memory region resource\n");
374 irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
376 printk(KERN_ERR "failed to get IRQ resource\n");
380 if (request_mem_region(mem->start, mem->end - mem->start + 1,
381 "palm_bk3710") == NULL) {
382 printk(KERN_ERR "failed to request memory region\n");
386 base = IO_ADDRESS(mem->start);
388 /* Configure the Palm Chip controller */
389 palm_bk3710_chipinit((void __iomem *)base);
391 for (i = 0; i < IDE_NR_PORTS - 2; i++)
392 hw.io_ports_array[i] = base + IDE_PALM_ATA_PRI_REG_OFFSET + i;
393 hw.io_ports.ctl_addr = base + IDE_PALM_ATA_PRI_CTL_OFFSET;
395 hw.chipset = ide_palm3710;
397 hwif = ide_find_port();
403 ide_init_port_hw(hwif, &hw);
405 default_hwif_mmiops(hwif);
409 ide_device_add(idx, &palm_bk3710_port_info);
413 printk(KERN_WARNING "Palm Chip BK3710 IDE Register Fail\n");
417 /* work with hotplug and coldplug */
418 MODULE_ALIAS("platform:palm_bk3710");
420 static struct platform_driver platform_bk_driver = {
422 .name = "palm_bk3710",
423 .owner = THIS_MODULE,
425 .probe = palm_bk3710_probe,
429 static int __init palm_bk3710_init(void)
431 return platform_driver_register(&platform_bk_driver);
434 module_init(palm_bk3710_init);
435 MODULE_LICENSE("GPL");