blob: 46427ea01753b4c84f9670939347f06cc65bbfbe [file] [log] [blame]
Anton Salnikov7c7e92a2008-02-06 02:57:48 +01001/*
2 * Palmchip bk3710 IDE controller
3 *
4 * Copyright (C) 2006 Texas Instruments.
5 * Copyright (C) 2007 MontaVista Software, Inc., <source@mvista.com>
6 *
7 * ----------------------------------------------------------------------------
8 *
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.
13 *
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.
18 *
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 * ----------------------------------------------------------------------------
23 *
24 */
25
26#include <linux/types.h>
27#include <linux/module.h>
28#include <linux/kernel.h>
29#include <linux/ioport.h>
Anton Salnikov7c7e92a2008-02-06 02:57:48 +010030#include <linux/ide.h>
31#include <linux/delay.h>
32#include <linux/init.h>
33#include <linux/clk.h>
34#include <linux/platform_device.h>
35
36/* Offset of the primary interface registers */
37#define IDE_PALM_ATA_PRI_REG_OFFSET 0x1F0
38
39/* Primary Control Offset */
40#define IDE_PALM_ATA_PRI_CTL_OFFSET 0x3F6
41
Anton Salnikov7c7e92a2008-02-06 02:57:48 +010042#define BK3710_BMICP 0x00
43#define BK3710_BMISP 0x02
44#define BK3710_BMIDTP 0x04
Anton Salnikov7c7e92a2008-02-06 02:57:48 +010045#define BK3710_IDETIMP 0x40
Anton Salnikov7c7e92a2008-02-06 02:57:48 +010046#define BK3710_IDESTATUS 0x47
47#define BK3710_UDMACTL 0x48
Anton Salnikov7c7e92a2008-02-06 02:57:48 +010048#define BK3710_MISCCTL 0x50
49#define BK3710_REGSTB 0x54
50#define BK3710_REGRCVR 0x58
51#define BK3710_DATSTB 0x5C
52#define BK3710_DATRCVR 0x60
53#define BK3710_DMASTB 0x64
54#define BK3710_DMARCVR 0x68
55#define BK3710_UDMASTB 0x6C
56#define BK3710_UDMATRP 0x70
57#define BK3710_UDMAENV 0x74
58#define BK3710_IORDYTMP 0x78
Anton Salnikov7c7e92a2008-02-06 02:57:48 +010059
Sergei Shtylyovffab6cf2008-07-08 19:27:22 +020060static unsigned ideclk_period; /* in nanoseconds */
Anton Salnikov7c7e92a2008-02-06 02:57:48 +010061
David Brownelldb2f38c2009-04-22 20:33:40 +020062struct palm_bk3710_udmatiming {
63 unsigned int rptime; /* tRP -- Ready to pause time (nsec) */
64 unsigned int cycletime; /* tCYCTYP2/2 -- avg Cycle Time (nsec) */
65 /* tENV is always a minimum of 20 nsec */
66};
67
Anton Salnikov7c7e92a2008-02-06 02:57:48 +010068static const struct palm_bk3710_udmatiming palm_bk3710_udmatimings[6] = {
Bartlomiej Zolnierkiewiczd7f514352009-04-23 22:53:45 +020069 { 160, 240 / 2 }, /* UDMA Mode 0 */
70 { 125, 160 / 2 }, /* UDMA Mode 1 */
71 { 100, 120 / 2 }, /* UDMA Mode 2 */
72 { 100, 90 / 2 }, /* UDMA Mode 3 */
73 { 100, 60 / 2 }, /* UDMA Mode 4 */
74 { 85, 40 / 2 }, /* UDMA Mode 5 */
Anton Salnikov7c7e92a2008-02-06 02:57:48 +010075};
76
Anton Salnikov7c7e92a2008-02-06 02:57:48 +010077static void palm_bk3710_setudmamode(void __iomem *base, unsigned int dev,
78 unsigned int mode)
79{
80 u8 tenv, trp, t0;
81 u32 val32;
82 u16 val16;
83
84 /* DMA Data Setup */
Julia Lawall00fe8b72008-04-26 17:36:35 +020085 t0 = DIV_ROUND_UP(palm_bk3710_udmatimings[mode].cycletime,
Sergei Shtylyovffab6cf2008-07-08 19:27:22 +020086 ideclk_period) - 1;
87 tenv = DIV_ROUND_UP(20, ideclk_period) - 1;
Julia Lawall00fe8b72008-04-26 17:36:35 +020088 trp = DIV_ROUND_UP(palm_bk3710_udmatimings[mode].rptime,
Sergei Shtylyovffab6cf2008-07-08 19:27:22 +020089 ideclk_period) - 1;
Anton Salnikov7c7e92a2008-02-06 02:57:48 +010090
Anton Salnikov7c7e92a2008-02-06 02:57:48 +010091 /* udmastb Ultra DMA Access Strobe Width */
92 val32 = readl(base + BK3710_UDMASTB) & (0xFF << (dev ? 0 : 8));
93 val32 |= (t0 << (dev ? 8 : 0));
94 writel(val32, base + BK3710_UDMASTB);
95
96 /* udmatrp Ultra DMA Ready to Pause Time */
97 val32 = readl(base + BK3710_UDMATRP) & (0xFF << (dev ? 0 : 8));
98 val32 |= (trp << (dev ? 8 : 0));
99 writel(val32, base + BK3710_UDMATRP);
100
101 /* udmaenv Ultra DMA envelop Time */
102 val32 = readl(base + BK3710_UDMAENV) & (0xFF << (dev ? 0 : 8));
103 val32 |= (tenv << (dev ? 8 : 0));
104 writel(val32, base + BK3710_UDMAENV);
105
106 /* Enable UDMA for Device */
107 val16 = readw(base + BK3710_UDMACTL) | (1 << dev);
108 writew(val16, base + BK3710_UDMACTL);
109}
110
111static void palm_bk3710_setdmamode(void __iomem *base, unsigned int dev,
112 unsigned short min_cycle,
113 unsigned int mode)
114{
115 u8 td, tkw, t0;
116 u32 val32;
117 u16 val16;
118 struct ide_timing *t;
119 int cycletime;
120
121 t = ide_timing_find_mode(mode);
122 cycletime = max_t(int, t->cycle, min_cycle);
123
124 /* DMA Data Setup */
Sergei Shtylyovffab6cf2008-07-08 19:27:22 +0200125 t0 = DIV_ROUND_UP(cycletime, ideclk_period);
126 td = DIV_ROUND_UP(t->active, ideclk_period);
Anton Salnikov7c7e92a2008-02-06 02:57:48 +0100127 tkw = t0 - td - 1;
128 td -= 1;
129
130 val32 = readl(base + BK3710_DMASTB) & (0xFF << (dev ? 0 : 8));
131 val32 |= (td << (dev ? 8 : 0));
132 writel(val32, base + BK3710_DMASTB);
133
134 val32 = readl(base + BK3710_DMARCVR) & (0xFF << (dev ? 0 : 8));
135 val32 |= (tkw << (dev ? 8 : 0));
136 writel(val32, base + BK3710_DMARCVR);
137
138 /* Disable UDMA for Device */
139 val16 = readw(base + BK3710_UDMACTL) & ~(1 << dev);
140 writew(val16, base + BK3710_UDMACTL);
141}
142
143static void palm_bk3710_setpiomode(void __iomem *base, ide_drive_t *mate,
144 unsigned int dev, unsigned int cycletime,
145 unsigned int mode)
146{
147 u8 t2, t2i, t0;
148 u32 val32;
149 struct ide_timing *t;
150
David Brownell33e86012009-04-23 22:53:43 +0200151 t = ide_timing_find_mode(XFER_PIO_0 + mode);
152
Anton Salnikov7c7e92a2008-02-06 02:57:48 +0100153 /* PIO Data Setup */
Sergei Shtylyovffab6cf2008-07-08 19:27:22 +0200154 t0 = DIV_ROUND_UP(cycletime, ideclk_period);
David Brownell33e86012009-04-23 22:53:43 +0200155 t2 = DIV_ROUND_UP(t->active, ideclk_period);
Anton Salnikov7c7e92a2008-02-06 02:57:48 +0100156
157 t2i = t0 - t2 - 1;
158 t2 -= 1;
159
160 val32 = readl(base + BK3710_DATSTB) & (0xFF << (dev ? 0 : 8));
161 val32 |= (t2 << (dev ? 8 : 0));
162 writel(val32, base + BK3710_DATSTB);
163
164 val32 = readl(base + BK3710_DATRCVR) & (0xFF << (dev ? 0 : 8));
165 val32 |= (t2i << (dev ? 8 : 0));
166 writel(val32, base + BK3710_DATRCVR);
167
Bartlomiej Zolnierkiewicz7e59ea22008-10-10 22:39:26 +0200168 if (mate) {
Bartlomiej Zolnierkiewicz07163022010-01-18 07:22:09 +0000169 u8 mode2 = mate->pio_mode - XFER_PIO_0;
Anton Salnikov7c7e92a2008-02-06 02:57:48 +0100170
171 if (mode2 < mode)
172 mode = mode2;
173 }
174
175 /* TASKFILE Setup */
Sergei Shtylyovffab6cf2008-07-08 19:27:22 +0200176 t0 = DIV_ROUND_UP(t->cyc8b, ideclk_period);
177 t2 = DIV_ROUND_UP(t->act8b, ideclk_period);
Anton Salnikov7c7e92a2008-02-06 02:57:48 +0100178
179 t2i = t0 - t2 - 1;
180 t2 -= 1;
181
182 val32 = readl(base + BK3710_REGSTB) & (0xFF << (dev ? 0 : 8));
183 val32 |= (t2 << (dev ? 8 : 0));
184 writel(val32, base + BK3710_REGSTB);
185
186 val32 = readl(base + BK3710_REGRCVR) & (0xFF << (dev ? 0 : 8));
187 val32 |= (t2i << (dev ? 8 : 0));
188 writel(val32, base + BK3710_REGRCVR);
189}
190
Bartlomiej Zolnierkiewicz87761682010-01-19 01:45:29 -0800191static void palm_bk3710_set_dma_mode(ide_hwif_t *hwif, ide_drive_t *drive)
Anton Salnikov7c7e92a2008-02-06 02:57:48 +0100192{
193 int is_slave = drive->dn & 1;
Jingoo Han70ddce8322013-08-07 14:17:11 +0900194 void __iomem *base = (void __iomem *)hwif->dma_base;
Bartlomiej Zolnierkiewicz87761682010-01-19 01:45:29 -0800195 const u8 xferspeed = drive->dma_mode;
Anton Salnikov7c7e92a2008-02-06 02:57:48 +0100196
197 if (xferspeed >= XFER_UDMA_0) {
198 palm_bk3710_setudmamode(base, is_slave,
199 xferspeed - XFER_UDMA_0);
200 } else {
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200201 palm_bk3710_setdmamode(base, is_slave,
202 drive->id[ATA_ID_EIDE_DMA_MIN],
Anton Salnikov7c7e92a2008-02-06 02:57:48 +0100203 xferspeed);
204 }
205}
206
Bartlomiej Zolnierkiewicze085b3c2010-01-19 01:44:41 -0800207static void palm_bk3710_set_pio_mode(ide_hwif_t *hwif, ide_drive_t *drive)
Anton Salnikov7c7e92a2008-02-06 02:57:48 +0100208{
209 unsigned int cycle_time;
210 int is_slave = drive->dn & 1;
211 ide_drive_t *mate;
Jingoo Han70ddce8322013-08-07 14:17:11 +0900212 void __iomem *base = (void __iomem *)hwif->dma_base;
Bartlomiej Zolnierkiewicze085b3c2010-01-19 01:44:41 -0800213 const u8 pio = drive->pio_mode - XFER_PIO_0;
Anton Salnikov7c7e92a2008-02-06 02:57:48 +0100214
215 /*
216 * Obtain the drive PIO data for tuning the Palm Chip registers
217 */
218 cycle_time = ide_pio_cycle_time(drive, pio);
Bartlomiej Zolnierkiewicz7e59ea22008-10-10 22:39:26 +0200219 mate = ide_get_pair_dev(drive);
Anton Salnikov7c7e92a2008-02-06 02:57:48 +0100220 palm_bk3710_setpiomode(base, mate, is_slave, cycle_time, pio);
221}
222
Greg Kroah-Hartmanfe31edc2012-12-21 13:21:03 -0800223static void palm_bk3710_chipinit(void __iomem *base)
Anton Salnikov7c7e92a2008-02-06 02:57:48 +0100224{
225 /*
David Brownell33e86012009-04-23 22:53:43 +0200226 * REVISIT: the ATA reset signal needs to be managed through a
227 * GPIO, which means it should come from platform_data. Until
228 * we get and use such information, we have to trust that things
229 * have been reset before we get here.
Anton Salnikov7c7e92a2008-02-06 02:57:48 +0100230 */
Anton Salnikov7c7e92a2008-02-06 02:57:48 +0100231
232 /*
233 * Program the IDETIMP Register Value based on the following assumptions
234 *
235 * (ATA_IDETIMP_IDEEN , ENABLE ) |
Anton Salnikov7c7e92a2008-02-06 02:57:48 +0100236 * (ATA_IDETIMP_PREPOST1 , DISABLE) |
Anton Salnikov7c7e92a2008-02-06 02:57:48 +0100237 * (ATA_IDETIMP_PREPOST0 , DISABLE) |
David Brownell33e86012009-04-23 22:53:43 +0200238 *
239 * DM6446 silicon rev 2.1 and earlier have no observed net benefit
240 * from enabling prefetch/postwrite.
Anton Salnikov7c7e92a2008-02-06 02:57:48 +0100241 */
David Brownell33e86012009-04-23 22:53:43 +0200242 writew(BIT(15), base + BK3710_IDETIMP);
Anton Salnikov7c7e92a2008-02-06 02:57:48 +0100243
244 /*
245 * UDMACTL Ultra-ATA DMA Control
246 * (ATA_UDMACTL_UDMAP1 , 0 ) |
247 * (ATA_UDMACTL_UDMAP0 , 0 )
248 *
249 */
250 writew(0, base + BK3710_UDMACTL);
251
252 /*
253 * MISCCTL Miscellaneous Conrol Register
David Brownell33e86012009-04-23 22:53:43 +0200254 * (ATA_MISCCTL_HWNHLD1P , 1 cycle)
255 * (ATA_MISCCTL_HWNHLD0P , 1 cycle)
Anton Salnikov7c7e92a2008-02-06 02:57:48 +0100256 * (ATA_MISCCTL_TIMORIDE , 1)
257 */
David Brownell33e86012009-04-23 22:53:43 +0200258 writel(0x001, base + BK3710_MISCCTL);
Anton Salnikov7c7e92a2008-02-06 02:57:48 +0100259
260 /*
261 * IORDYTMP IORDY Timer for Primary Register
262 * (ATA_IORDYTMP_IORDYTMP , 0xffff )
263 */
264 writel(0xFFFF, base + BK3710_IORDYTMP);
265
266 /*
267 * Configure BMISP Register
268 * (ATA_BMISP_DMAEN1 , DISABLE ) |
269 * (ATA_BMISP_DMAEN0 , DISABLE ) |
270 * (ATA_BMISP_IORDYINT , CLEAR) |
271 * (ATA_BMISP_INTRSTAT , CLEAR) |
272 * (ATA_BMISP_DMAERROR , CLEAR)
273 */
274 writew(0, base + BK3710_BMISP);
275
276 palm_bk3710_setpiomode(base, NULL, 0, 600, 0);
277 palm_bk3710_setpiomode(base, NULL, 1, 600, 0);
278}
Bartlomiej Zolnierkiewiczc79b60d2008-02-11 00:32:13 +0100279
Bartlomiej Zolnierkiewiczf454cbe2008-08-05 18:17:04 +0200280static u8 palm_bk3710_cable_detect(ide_hwif_t *hwif)
Bartlomiej Zolnierkiewiczc79b60d2008-02-11 00:32:13 +0100281{
282 return ATA_CBL_PATA80;
283}
284
Greg Kroah-Hartmanfe31edc2012-12-21 13:21:03 -0800285static int palm_bk3710_init_dma(ide_hwif_t *hwif, const struct ide_port_info *d)
Bartlomiej Zolnierkiewiczb552a2c2008-04-26 22:25:23 +0200286{
Bartlomiej Zolnierkiewiczb552a2c2008-04-26 22:25:23 +0200287 printk(KERN_INFO " %s: MMIO-DMA\n", hwif->name);
288
289 if (ide_allocate_dma_engine(hwif))
290 return -1;
291
Bartlomiej Zolnierkiewicz81e8d5a2008-07-23 19:55:51 +0200292 hwif->dma_base = hwif->io_ports.data_addr - IDE_PALM_ATA_PRI_REG_OFFSET;
293
Bartlomiej Zolnierkiewiczb552a2c2008-04-26 22:25:23 +0200294 return 0;
295}
296
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200297static const struct ide_port_ops palm_bk3710_ports_ops = {
298 .set_pio_mode = palm_bk3710_set_pio_mode,
299 .set_dma_mode = palm_bk3710_set_dma_mode,
300 .cable_detect = palm_bk3710_cable_detect,
301};
Bartlomiej Zolnierkiewiczc79b60d2008-02-11 00:32:13 +0100302
Greg Kroah-Hartmanfe31edc2012-12-21 13:21:03 -0800303static struct ide_port_info palm_bk3710_port_info = {
Bartlomiej Zolnierkiewiczb552a2c2008-04-26 22:25:23 +0200304 .init_dma = palm_bk3710_init_dma,
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200305 .port_ops = &palm_bk3710_ports_ops,
Sergei Shtylyov3f023b02009-01-06 17:21:01 +0100306 .dma_ops = &sff_dma_ops,
Bartlomiej Zolnierkiewiczc5dd43e2008-04-28 23:44:37 +0200307 .host_flags = IDE_HFLAG_MMIO,
Bartlomiej Zolnierkiewiczc79b60d2008-02-11 00:32:13 +0100308 .pio_mask = ATA_PIO4,
Bartlomiej Zolnierkiewiczc79b60d2008-02-11 00:32:13 +0100309 .mwdma_mask = ATA_MWDMA2,
Bartlomiej Zolnierkiewicz29e52cf2009-05-17 19:12:22 +0200310 .chipset = ide_palm3710,
Bartlomiej Zolnierkiewiczc79b60d2008-02-11 00:32:13 +0100311};
312
David Brownellbfc2f012008-09-02 20:18:47 +0200313static int __init palm_bk3710_probe(struct platform_device *pdev)
Anton Salnikov7c7e92a2008-02-06 02:57:48 +0100314{
Sergei Shtylyovffab6cf2008-07-08 19:27:22 +0200315 struct clk *clk;
Anton Salnikov7c7e92a2008-02-06 02:57:48 +0100316 struct resource *mem, *irq;
David Brownellef183f62009-01-19 13:46:57 +0100317 void __iomem *base;
Kevin Hilman13b88602009-01-30 11:59:27 -0800318 unsigned long rate, mem_size;
Bartlomiej Zolnierkiewicz6f904d02008-07-23 19:55:57 +0200319 int i, rc;
Bartlomiej Zolnierkiewicz9f36d312009-05-17 19:12:25 +0200320 struct ide_hw hw, *hws[] = { &hw };
Anton Salnikov7c7e92a2008-02-06 02:57:48 +0100321
Kevin Hilman468b5ef2009-07-06 12:26:16 +0000322 clk = clk_get(&pdev->dev, NULL);
Sergei Shtylyovffab6cf2008-07-08 19:27:22 +0200323 if (IS_ERR(clk))
Anton Salnikov7c7e92a2008-02-06 02:57:48 +0100324 return -ENODEV;
325
Sergei Shtylyovffab6cf2008-07-08 19:27:22 +0200326 clk_enable(clk);
327 rate = clk_get_rate(clk);
Wolfram Sang0d7ef452016-03-02 23:33:32 +0100328 if (!rate)
329 return -EINVAL;
Sergei Shtylyovffab6cf2008-07-08 19:27:22 +0200330
David Brownell33e86012009-04-23 22:53:43 +0200331 /* NOTE: round *down* to meet minimum timings; we count in clocks */
332 ideclk_period = 1000000000UL / rate;
Anton Salnikov7c7e92a2008-02-06 02:57:48 +0100333
334 mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
335 if (mem == NULL) {
336 printk(KERN_ERR "failed to get memory region resource\n");
337 return -ENODEV;
338 }
Sergei Shtylyovce42a542008-06-20 20:53:32 +0200339
Anton Salnikov7c7e92a2008-02-06 02:57:48 +0100340 irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
341 if (irq == NULL) {
342 printk(KERN_ERR "failed to get IRQ resource\n");
343 return -ENODEV;
344 }
345
Joe Perches28f65c112011-06-09 09:13:32 -0700346 mem_size = resource_size(mem);
Kevin Hilman13b88602009-01-30 11:59:27 -0800347 if (request_mem_region(mem->start, mem_size, "palm_bk3710") == NULL) {
Sergei Shtylyovce42a542008-06-20 20:53:32 +0200348 printk(KERN_ERR "failed to request memory region\n");
349 return -EBUSY;
350 }
351
Kevin Hilman13b88602009-01-30 11:59:27 -0800352 base = ioremap(mem->start, mem_size);
353 if (!base) {
354 printk(KERN_ERR "failed to map IO memory\n");
355 release_mem_region(mem->start, mem_size);
356 return -ENOMEM;
357 }
Anton Salnikov7c7e92a2008-02-06 02:57:48 +0100358
359 /* Configure the Palm Chip controller */
David Brownellef183f62009-01-19 13:46:57 +0100360 palm_bk3710_chipinit(base);
Anton Salnikov7c7e92a2008-02-06 02:57:48 +0100361
David Brownell33e86012009-04-23 22:53:43 +0200362 memset(&hw, 0, sizeof(hw));
Bartlomiej Zolnierkiewicz7824bc62008-02-11 00:32:12 +0100363 for (i = 0; i < IDE_NR_PORTS - 2; i++)
David Brownellef183f62009-01-19 13:46:57 +0100364 hw.io_ports_array[i] = (unsigned long)
365 (base + IDE_PALM_ATA_PRI_REG_OFFSET + i);
366 hw.io_ports.ctl_addr = (unsigned long)
367 (base + IDE_PALM_ATA_PRI_CTL_OFFSET);
Bartlomiej Zolnierkiewicz7824bc62008-02-11 00:32:12 +0100368 hw.irq = irq->start;
David Brownellbfc2f012008-09-02 20:18:47 +0200369 hw.dev = &pdev->dev;
Anton Salnikov7c7e92a2008-02-06 02:57:48 +0100370
Sergei Shtylyova0f403b2008-07-24 22:53:34 +0200371 palm_bk3710_port_info.udma_mask = rate < 100000000 ? ATA_UDMA4 :
372 ATA_UDMA5;
373
David Brownell33e86012009-04-23 22:53:43 +0200374 /* Register the IDE interface with Linux */
Bartlomiej Zolnierkiewiczdca39832009-05-17 19:12:24 +0200375 rc = ide_host_add(&palm_bk3710_port_info, hws, 1, NULL);
Bartlomiej Zolnierkiewicz6f904d02008-07-23 19:55:57 +0200376 if (rc)
Bartlomiej Zolnierkiewicz7824bc62008-02-11 00:32:12 +0100377 goto out;
378
Anton Salnikov7c7e92a2008-02-06 02:57:48 +0100379 return 0;
Bartlomiej Zolnierkiewicz7824bc62008-02-11 00:32:12 +0100380out:
381 printk(KERN_WARNING "Palm Chip BK3710 IDE Register Fail\n");
Bartlomiej Zolnierkiewicz6f904d02008-07-23 19:55:57 +0200382 return rc;
Anton Salnikov7c7e92a2008-02-06 02:57:48 +0100383}
384
Kay Sievers458622f2008-04-18 13:41:57 -0700385/* work with hotplug and coldplug */
386MODULE_ALIAS("platform:palm_bk3710");
387
Anton Salnikov7c7e92a2008-02-06 02:57:48 +0100388static struct platform_driver platform_bk_driver = {
389 .driver = {
390 .name = "palm_bk3710",
Anton Salnikov7c7e92a2008-02-06 02:57:48 +0100391 },
Anton Salnikov7c7e92a2008-02-06 02:57:48 +0100392};
393
394static int __init palm_bk3710_init(void)
395{
David Brownellbfc2f012008-09-02 20:18:47 +0200396 return platform_driver_probe(&platform_bk_driver, palm_bk3710_probe);
Anton Salnikov7c7e92a2008-02-06 02:57:48 +0100397}
398
399module_init(palm_bk3710_init);
400MODULE_LICENSE("GPL");