1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Palmchip bk3710 IDE controller
5 * Copyright (C) 2006 Texas Instruments.
6 * Copyright (C) 2007 MontaVista Software, Inc., <source@mvista.com>
8 * ----------------------------------------------------------------------------
10 * ----------------------------------------------------------------------------
13 #include <linux/types.h>
14 #include <linux/module.h>
15 #include <linux/kernel.h>
16 #include <linux/ioport.h>
17 #include <linux/ide.h>
18 #include <linux/delay.h>
19 #include <linux/init.h>
20 #include <linux/clk.h>
21 #include <linux/platform_device.h>
23 /* Offset of the primary interface registers */
24 #define IDE_PALM_ATA_PRI_REG_OFFSET 0x1F0
26 /* Primary Control Offset */
27 #define IDE_PALM_ATA_PRI_CTL_OFFSET 0x3F6
29 #define BK3710_BMICP 0x00
30 #define BK3710_BMISP 0x02
31 #define BK3710_BMIDTP 0x04
32 #define BK3710_IDETIMP 0x40
33 #define BK3710_IDESTATUS 0x47
34 #define BK3710_UDMACTL 0x48
35 #define BK3710_MISCCTL 0x50
36 #define BK3710_REGSTB 0x54
37 #define BK3710_REGRCVR 0x58
38 #define BK3710_DATSTB 0x5C
39 #define BK3710_DATRCVR 0x60
40 #define BK3710_DMASTB 0x64
41 #define BK3710_DMARCVR 0x68
42 #define BK3710_UDMASTB 0x6C
43 #define BK3710_UDMATRP 0x70
44 #define BK3710_UDMAENV 0x74
45 #define BK3710_IORDYTMP 0x78
47 static unsigned ideclk_period
; /* in nanoseconds */
49 struct palm_bk3710_udmatiming
{
50 unsigned int rptime
; /* tRP -- Ready to pause time (nsec) */
51 unsigned int cycletime
; /* tCYCTYP2/2 -- avg Cycle Time (nsec) */
52 /* tENV is always a minimum of 20 nsec */
55 static const struct palm_bk3710_udmatiming palm_bk3710_udmatimings
[6] = {
56 { 160, 240 / 2 }, /* UDMA Mode 0 */
57 { 125, 160 / 2 }, /* UDMA Mode 1 */
58 { 100, 120 / 2 }, /* UDMA Mode 2 */
59 { 100, 90 / 2 }, /* UDMA Mode 3 */
60 { 100, 60 / 2 }, /* UDMA Mode 4 */
61 { 85, 40 / 2 }, /* UDMA Mode 5 */
64 static void palm_bk3710_setudmamode(void __iomem
*base
, unsigned int dev
,
72 t0
= DIV_ROUND_UP(palm_bk3710_udmatimings
[mode
].cycletime
,
74 tenv
= DIV_ROUND_UP(20, ideclk_period
) - 1;
75 trp
= DIV_ROUND_UP(palm_bk3710_udmatimings
[mode
].rptime
,
78 /* udmastb Ultra DMA Access Strobe Width */
79 val32
= readl(base
+ BK3710_UDMASTB
) & (0xFF << (dev
? 0 : 8));
80 val32
|= (t0
<< (dev
? 8 : 0));
81 writel(val32
, base
+ BK3710_UDMASTB
);
83 /* udmatrp Ultra DMA Ready to Pause Time */
84 val32
= readl(base
+ BK3710_UDMATRP
) & (0xFF << (dev
? 0 : 8));
85 val32
|= (trp
<< (dev
? 8 : 0));
86 writel(val32
, base
+ BK3710_UDMATRP
);
88 /* udmaenv Ultra DMA envelop Time */
89 val32
= readl(base
+ BK3710_UDMAENV
) & (0xFF << (dev
? 0 : 8));
90 val32
|= (tenv
<< (dev
? 8 : 0));
91 writel(val32
, base
+ BK3710_UDMAENV
);
93 /* Enable UDMA for Device */
94 val16
= readw(base
+ BK3710_UDMACTL
) | (1 << dev
);
95 writew(val16
, base
+ BK3710_UDMACTL
);
98 static void palm_bk3710_setdmamode(void __iomem
*base
, unsigned int dev
,
99 unsigned short min_cycle
,
105 struct ide_timing
*t
;
108 t
= ide_timing_find_mode(mode
);
109 cycletime
= max_t(int, t
->cycle
, min_cycle
);
112 t0
= DIV_ROUND_UP(cycletime
, ideclk_period
);
113 td
= DIV_ROUND_UP(t
->active
, ideclk_period
);
117 val32
= readl(base
+ BK3710_DMASTB
) & (0xFF << (dev
? 0 : 8));
118 val32
|= (td
<< (dev
? 8 : 0));
119 writel(val32
, base
+ BK3710_DMASTB
);
121 val32
= readl(base
+ BK3710_DMARCVR
) & (0xFF << (dev
? 0 : 8));
122 val32
|= (tkw
<< (dev
? 8 : 0));
123 writel(val32
, base
+ BK3710_DMARCVR
);
125 /* Disable UDMA for Device */
126 val16
= readw(base
+ BK3710_UDMACTL
) & ~(1 << dev
);
127 writew(val16
, base
+ BK3710_UDMACTL
);
130 static void palm_bk3710_setpiomode(void __iomem
*base
, ide_drive_t
*mate
,
131 unsigned int dev
, unsigned int cycletime
,
136 struct ide_timing
*t
;
138 t
= ide_timing_find_mode(XFER_PIO_0
+ mode
);
141 t0
= DIV_ROUND_UP(cycletime
, ideclk_period
);
142 t2
= DIV_ROUND_UP(t
->active
, ideclk_period
);
147 val32
= readl(base
+ BK3710_DATSTB
) & (0xFF << (dev
? 0 : 8));
148 val32
|= (t2
<< (dev
? 8 : 0));
149 writel(val32
, base
+ BK3710_DATSTB
);
151 val32
= readl(base
+ BK3710_DATRCVR
) & (0xFF << (dev
? 0 : 8));
152 val32
|= (t2i
<< (dev
? 8 : 0));
153 writel(val32
, base
+ BK3710_DATRCVR
);
156 u8 mode2
= mate
->pio_mode
- XFER_PIO_0
;
163 t0
= DIV_ROUND_UP(t
->cyc8b
, ideclk_period
);
164 t2
= DIV_ROUND_UP(t
->act8b
, ideclk_period
);
169 val32
= readl(base
+ BK3710_REGSTB
) & (0xFF << (dev
? 0 : 8));
170 val32
|= (t2
<< (dev
? 8 : 0));
171 writel(val32
, base
+ BK3710_REGSTB
);
173 val32
= readl(base
+ BK3710_REGRCVR
) & (0xFF << (dev
? 0 : 8));
174 val32
|= (t2i
<< (dev
? 8 : 0));
175 writel(val32
, base
+ BK3710_REGRCVR
);
178 static void palm_bk3710_set_dma_mode(ide_hwif_t
*hwif
, ide_drive_t
*drive
)
180 int is_slave
= drive
->dn
& 1;
181 void __iomem
*base
= (void __iomem
*)hwif
->dma_base
;
182 const u8 xferspeed
= drive
->dma_mode
;
184 if (xferspeed
>= XFER_UDMA_0
) {
185 palm_bk3710_setudmamode(base
, is_slave
,
186 xferspeed
- XFER_UDMA_0
);
188 palm_bk3710_setdmamode(base
, is_slave
,
189 drive
->id
[ATA_ID_EIDE_DMA_MIN
],
194 static void palm_bk3710_set_pio_mode(ide_hwif_t
*hwif
, ide_drive_t
*drive
)
196 unsigned int cycle_time
;
197 int is_slave
= drive
->dn
& 1;
199 void __iomem
*base
= (void __iomem
*)hwif
->dma_base
;
200 const u8 pio
= drive
->pio_mode
- XFER_PIO_0
;
203 * Obtain the drive PIO data for tuning the Palm Chip registers
205 cycle_time
= ide_pio_cycle_time(drive
, pio
);
206 mate
= ide_get_pair_dev(drive
);
207 palm_bk3710_setpiomode(base
, mate
, is_slave
, cycle_time
, pio
);
210 static void palm_bk3710_chipinit(void __iomem
*base
)
213 * REVISIT: the ATA reset signal needs to be managed through a
214 * GPIO, which means it should come from platform_data. Until
215 * we get and use such information, we have to trust that things
216 * have been reset before we get here.
220 * Program the IDETIMP Register Value based on the following assumptions
222 * (ATA_IDETIMP_IDEEN , ENABLE ) |
223 * (ATA_IDETIMP_PREPOST1 , DISABLE) |
224 * (ATA_IDETIMP_PREPOST0 , DISABLE) |
226 * DM6446 silicon rev 2.1 and earlier have no observed net benefit
227 * from enabling prefetch/postwrite.
229 writew(BIT(15), base
+ BK3710_IDETIMP
);
232 * UDMACTL Ultra-ATA DMA Control
233 * (ATA_UDMACTL_UDMAP1 , 0 ) |
234 * (ATA_UDMACTL_UDMAP0 , 0 )
237 writew(0, base
+ BK3710_UDMACTL
);
240 * MISCCTL Miscellaneous Conrol Register
241 * (ATA_MISCCTL_HWNHLD1P , 1 cycle)
242 * (ATA_MISCCTL_HWNHLD0P , 1 cycle)
243 * (ATA_MISCCTL_TIMORIDE , 1)
245 writel(0x001, base
+ BK3710_MISCCTL
);
248 * IORDYTMP IORDY Timer for Primary Register
249 * (ATA_IORDYTMP_IORDYTMP , 0xffff )
251 writel(0xFFFF, base
+ BK3710_IORDYTMP
);
254 * Configure BMISP Register
255 * (ATA_BMISP_DMAEN1 , DISABLE ) |
256 * (ATA_BMISP_DMAEN0 , DISABLE ) |
257 * (ATA_BMISP_IORDYINT , CLEAR) |
258 * (ATA_BMISP_INTRSTAT , CLEAR) |
259 * (ATA_BMISP_DMAERROR , CLEAR)
261 writew(0, base
+ BK3710_BMISP
);
263 palm_bk3710_setpiomode(base
, NULL
, 0, 600, 0);
264 palm_bk3710_setpiomode(base
, NULL
, 1, 600, 0);
267 static u8
palm_bk3710_cable_detect(ide_hwif_t
*hwif
)
269 return ATA_CBL_PATA80
;
272 static int palm_bk3710_init_dma(ide_hwif_t
*hwif
, const struct ide_port_info
*d
)
274 printk(KERN_INFO
" %s: MMIO-DMA\n", hwif
->name
);
276 if (ide_allocate_dma_engine(hwif
))
279 hwif
->dma_base
= hwif
->io_ports
.data_addr
- IDE_PALM_ATA_PRI_REG_OFFSET
;
284 static const struct ide_port_ops palm_bk3710_ports_ops
= {
285 .set_pio_mode
= palm_bk3710_set_pio_mode
,
286 .set_dma_mode
= palm_bk3710_set_dma_mode
,
287 .cable_detect
= palm_bk3710_cable_detect
,
290 static struct ide_port_info palm_bk3710_port_info __initdata
= {
291 .init_dma
= palm_bk3710_init_dma
,
292 .port_ops
= &palm_bk3710_ports_ops
,
293 .dma_ops
= &sff_dma_ops
,
294 .host_flags
= IDE_HFLAG_MMIO
,
295 .pio_mask
= ATA_PIO4
,
296 .mwdma_mask
= ATA_MWDMA2
,
297 .chipset
= ide_palm3710
,
300 static int __init
palm_bk3710_probe(struct platform_device
*pdev
)
303 struct resource
*mem
, *irq
;
305 unsigned long rate
, mem_size
;
307 struct ide_hw hw
, *hws
[] = { &hw
};
309 clk
= clk_get(&pdev
->dev
, NULL
);
314 rate
= clk_get_rate(clk
);
318 /* NOTE: round *down* to meet minimum timings; we count in clocks */
319 ideclk_period
= 1000000000UL / rate
;
321 mem
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
323 printk(KERN_ERR
"failed to get memory region resource\n");
327 irq
= platform_get_resource(pdev
, IORESOURCE_IRQ
, 0);
329 printk(KERN_ERR
"failed to get IRQ resource\n");
333 mem_size
= resource_size(mem
);
334 if (request_mem_region(mem
->start
, mem_size
, "palm_bk3710") == NULL
) {
335 printk(KERN_ERR
"failed to request memory region\n");
339 base
= ioremap(mem
->start
, mem_size
);
341 printk(KERN_ERR
"failed to map IO memory\n");
342 release_mem_region(mem
->start
, mem_size
);
346 /* Configure the Palm Chip controller */
347 palm_bk3710_chipinit(base
);
349 memset(&hw
, 0, sizeof(hw
));
350 for (i
= 0; i
< IDE_NR_PORTS
- 2; i
++)
351 hw
.io_ports_array
[i
] = (unsigned long)
352 (base
+ IDE_PALM_ATA_PRI_REG_OFFSET
+ i
);
353 hw
.io_ports
.ctl_addr
= (unsigned long)
354 (base
+ IDE_PALM_ATA_PRI_CTL_OFFSET
);
358 palm_bk3710_port_info
.udma_mask
= rate
< 100000000 ? ATA_UDMA4
:
361 /* Register the IDE interface with Linux */
362 rc
= ide_host_add(&palm_bk3710_port_info
, hws
, 1, NULL
);
368 printk(KERN_WARNING
"Palm Chip BK3710 IDE Register Fail\n");
372 /* work with hotplug and coldplug */
373 MODULE_ALIAS("platform:palm_bk3710");
375 static struct platform_driver platform_bk_driver
= {
377 .name
= "palm_bk3710",
381 static int __init
palm_bk3710_init(void)
383 return platform_driver_probe(&platform_bk_driver
, palm_bk3710_probe
);
386 module_init(palm_bk3710_init
);
387 MODULE_LICENSE("GPL");