blob: 92df2c2c5d0762fd1aba3788552257be9901315a [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Andrew Victor2c1f3b72006-02-21 12:56:52 +02002/*
3 * at91_cf.c -- AT91 CompactFlash controller driver
4 *
5 * Copyright (C) 2005 David Brownell
Andrew Victor2c1f3b72006-02-21 12:56:52 +02006 */
7
8#include <linux/module.h>
9#include <linux/kernel.h>
Andrew Victor2c1f3b72006-02-21 12:56:52 +020010#include <linux/platform_device.h>
11#include <linux/errno.h>
12#include <linux/init.h>
13#include <linux/interrupt.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/slab.h>
Joachim Eastwood80af9e62012-01-10 02:37:25 +010015#include <linux/gpio.h>
Joachim Eastwooda8431682013-06-06 10:24:17 +020016#include <linux/io.h>
17#include <linux/sizes.h>
Alexandre Bellonieaa9a212015-03-16 14:17:50 +010018#include <linux/mfd/syscon.h>
19#include <linux/mfd/syscon/atmel-mc.h>
Joachim Eastwooded9084e2013-06-06 10:24:18 +020020#include <linux/of.h>
21#include <linux/of_device.h>
22#include <linux/of_gpio.h>
Pali Rohár61984612021-11-24 16:41:15 +010023#include <linux/pci.h>
Alexandre Bellonieaa9a212015-03-16 14:17:50 +010024#include <linux/regmap.h>
Andrew Victor2c1f3b72006-02-21 12:56:52 +020025
26#include <pcmcia/ss.h>
27
Andrew Victor2c1f3b72006-02-21 12:56:52 +020028/*
29 * A0..A10 work in each range; A23 indicates I/O space; A25 is CFRNW;
30 * some other bit in {A24,A22..A11} is nREG to flag memory access
31 * (vs attributes). So more than 2KB/region would just be waste.
Andrew Victorebe5cfb2006-11-06 15:56:07 +020032 * Note: These are offsets from the physical base address.
Andrew Victor2c1f3b72006-02-21 12:56:52 +020033 */
Andrew Victorebe5cfb2006-11-06 15:56:07 +020034#define CF_ATTR_PHYS (0)
35#define CF_IO_PHYS (1 << 23)
36#define CF_MEM_PHYS (0x017ff800)
Andrew Victor2c1f3b72006-02-21 12:56:52 +020037
Alexandre Belloni24c8a742020-09-30 20:48:02 +020038struct at91_cf_data {
39 int irq_pin; /* I/O IRQ */
40 int det_pin; /* Card detect */
41 int vcc_pin; /* power switching */
42 int rst_pin; /* card reset */
43 u8 chipselect; /* EBI Chip Select number */
44 u8 flags;
45#define AT91_CF_TRUE_IDE 0x01
46#define AT91_IDE_SWAP_A0_A2 0x02
47};
48
Alexandre Bellonieaa9a212015-03-16 14:17:50 +010049struct regmap *mc;
50
Andrew Victor2c1f3b72006-02-21 12:56:52 +020051/*--------------------------------------------------------------------------*/
52
Andrew Victor2c1f3b72006-02-21 12:56:52 +020053struct at91_cf_socket {
54 struct pcmcia_socket socket;
55
56 unsigned present:1;
57
58 struct platform_device *pdev;
59 struct at91_cf_data *board;
Andrew Victorebe5cfb2006-11-06 15:56:07 +020060
61 unsigned long phys_baseaddr;
Andrew Victor2c1f3b72006-02-21 12:56:52 +020062};
63
Andrew Victor2c1f3b72006-02-21 12:56:52 +020064static inline int at91_cf_present(struct at91_cf_socket *cf)
65{
David Brownell4c1fc442008-02-04 22:27:42 -080066 return !gpio_get_value(cf->board->det_pin);
Andrew Victor2c1f3b72006-02-21 12:56:52 +020067}
68
69/*--------------------------------------------------------------------------*/
70
71static int at91_cf_ss_init(struct pcmcia_socket *s)
72{
73 return 0;
74}
75
David Howells7d12e782006-10-05 14:55:46 +010076static irqreturn_t at91_cf_irq(int irq, void *_cf)
Andrew Victor2c1f3b72006-02-21 12:56:52 +020077{
Jeff Garzikc7bec5a2006-10-06 15:00:58 -040078 struct at91_cf_socket *cf = _cf;
Andrew Victor2c1f3b72006-02-21 12:56:52 +020079
Joachim Eastwood80af9e62012-01-10 02:37:25 +010080 if (irq == gpio_to_irq(cf->board->det_pin)) {
Andrew Victor2c1f3b72006-02-21 12:56:52 +020081 unsigned present = at91_cf_present(cf);
82
83 /* kick pccard as needed */
84 if (present != cf->present) {
85 cf->present = present;
Joachim Eastwood40ca0202013-06-06 10:24:15 +020086 dev_dbg(&cf->pdev->dev, "card %s\n",
David Brownell2c536202006-04-14 18:05:38 -070087 present ? "present" : "gone");
Andrew Victor2c1f3b72006-02-21 12:56:52 +020088 pcmcia_parse_events(&cf->socket, SS_DETECT);
89 }
90 }
91
92 return IRQ_HANDLED;
93}
94
95static int at91_cf_get_status(struct pcmcia_socket *s, u_int *sp)
96{
97 struct at91_cf_socket *cf;
98
99 if (!sp)
100 return -EINVAL;
101
102 cf = container_of(s, struct at91_cf_socket, socket);
103
David Brownell2c536202006-04-14 18:05:38 -0700104 /* NOTE: CF is always 3VCARD */
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200105 if (at91_cf_present(cf)) {
Joachim Eastwood80af9e62012-01-10 02:37:25 +0100106 int rdy = gpio_is_valid(cf->board->irq_pin); /* RDY/nIRQ */
107 int vcc = gpio_is_valid(cf->board->vcc_pin);
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200108
109 *sp = SS_DETECT | SS_3VCARD;
Joachim Eastwoode39506b2013-06-06 10:24:14 +0200110 if (!rdy || gpio_get_value(cf->board->irq_pin))
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200111 *sp |= SS_READY;
Joachim Eastwoode39506b2013-06-06 10:24:14 +0200112 if (!vcc || gpio_get_value(cf->board->vcc_pin))
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200113 *sp |= SS_POWERON;
114 } else
115 *sp = 0;
116
117 return 0;
118}
119
David Brownell2c536202006-04-14 18:05:38 -0700120static int
121at91_cf_set_socket(struct pcmcia_socket *sock, struct socket_state_t *s)
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200122{
123 struct at91_cf_socket *cf;
124
125 cf = container_of(sock, struct at91_cf_socket, socket);
126
127 /* switch Vcc if needed and possible */
Joachim Eastwood80af9e62012-01-10 02:37:25 +0100128 if (gpio_is_valid(cf->board->vcc_pin)) {
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200129 switch (s->Vcc) {
Laurent Navetd652f702013-06-06 10:24:20 +0200130 case 0:
131 gpio_set_value(cf->board->vcc_pin, 0);
132 break;
133 case 33:
134 gpio_set_value(cf->board->vcc_pin, 1);
135 break;
136 default:
137 return -EINVAL;
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200138 }
139 }
140
141 /* toggle reset if needed */
David Brownell4c1fc442008-02-04 22:27:42 -0800142 gpio_set_value(cf->board->rst_pin, s->flags & SS_RESET);
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200143
Joachim Eastwood40ca0202013-06-06 10:24:15 +0200144 dev_dbg(&cf->pdev->dev, "Vcc %d, io_irq %d, flags %04x csc %04x\n",
145 s->Vcc, s->io_irq, s->flags, s->csc_mask);
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200146
147 return 0;
148}
149
150static int at91_cf_ss_suspend(struct pcmcia_socket *s)
151{
152 return at91_cf_set_socket(s, &dead_socket);
153}
154
155/* we already mapped the I/O region */
156static int at91_cf_set_io_map(struct pcmcia_socket *s, struct pccard_io_map *io)
157{
158 struct at91_cf_socket *cf;
159 u32 csr;
160
161 cf = container_of(s, struct at91_cf_socket, socket);
162 io->flags &= (MAP_ACTIVE | MAP_16BIT | MAP_AUTOSZ);
163
164 /*
165 * Use 16 bit accesses unless/until we need 8-bit i/o space.
Alexandre Bellonieaa9a212015-03-16 14:17:50 +0100166 *
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200167 * NOTE: this CF controller ignores IOIS16, so we can't really do
168 * MAP_AUTOSZ. The 16bit mode allows single byte access on either
169 * D0-D7 (even addr) or D8-D15 (odd), so it's close enough for many
170 * purposes (and handles ide-cs).
171 *
172 * The 8bit mode is needed for odd byte access on D0-D7. It seems
173 * some cards only like that way to get at the odd byte, despite
174 * CF 3.0 spec table 35 also giving the D8-D15 option.
175 */
Andrew Victorebe5cfb2006-11-06 15:56:07 +0200176 if (!(io->flags & (MAP_16BIT | MAP_AUTOSZ))) {
Alexandre Bellonieaa9a212015-03-16 14:17:50 +0100177 csr = AT91_MC_SMC_DBW_8;
Joachim Eastwood40ca0202013-06-06 10:24:15 +0200178 dev_dbg(&cf->pdev->dev, "8bit i/o bus\n");
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200179 } else {
Alexandre Bellonieaa9a212015-03-16 14:17:50 +0100180 csr = AT91_MC_SMC_DBW_16;
Joachim Eastwood40ca0202013-06-06 10:24:15 +0200181 dev_dbg(&cf->pdev->dev, "16bit i/o bus\n");
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200182 }
Alexandre Bellonieaa9a212015-03-16 14:17:50 +0100183 regmap_update_bits(mc, AT91_MC_SMC_CSR(cf->board->chipselect),
184 AT91_MC_SMC_DBW, csr);
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200185
186 io->start = cf->socket.io_offset;
187 io->stop = io->start + SZ_2K - 1;
188
189 return 0;
190}
191
192/* pcmcia layer maps/unmaps mem regions */
David Brownell2c536202006-04-14 18:05:38 -0700193static int
194at91_cf_set_mem_map(struct pcmcia_socket *s, struct pccard_mem_map *map)
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200195{
196 struct at91_cf_socket *cf;
197
198 if (map->card_start)
199 return -EINVAL;
200
201 cf = container_of(s, struct at91_cf_socket, socket);
202
Andrew Victorebe5cfb2006-11-06 15:56:07 +0200203 map->flags &= (MAP_ACTIVE | MAP_ATTRIB | MAP_16BIT);
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200204 if (map->flags & MAP_ATTRIB)
Andrew Victorebe5cfb2006-11-06 15:56:07 +0200205 map->static_start = cf->phys_baseaddr + CF_ATTR_PHYS;
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200206 else
Andrew Victorebe5cfb2006-11-06 15:56:07 +0200207 map->static_start = cf->phys_baseaddr + CF_MEM_PHYS;
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200208
209 return 0;
210}
211
212static struct pccard_operations at91_cf_ops = {
213 .init = at91_cf_ss_init,
214 .suspend = at91_cf_ss_suspend,
215 .get_status = at91_cf_get_status,
216 .set_socket = at91_cf_set_socket,
217 .set_io_map = at91_cf_set_io_map,
218 .set_mem_map = at91_cf_set_mem_map,
219};
220
221/*--------------------------------------------------------------------------*/
222
Joachim Eastwooded9084e2013-06-06 10:24:18 +0200223static const struct of_device_id at91_cf_dt_ids[] = {
224 { .compatible = "atmel,at91rm9200-cf" },
225 { /* sentinel */ }
226};
227MODULE_DEVICE_TABLE(of, at91_cf_dt_ids);
228
Alexandre Belloni264788c2020-09-30 20:48:03 +0200229static int at91_cf_probe(struct platform_device *pdev)
Joachim Eastwooded9084e2013-06-06 10:24:18 +0200230{
Alexandre Belloni264788c2020-09-30 20:48:03 +0200231 struct at91_cf_socket *cf;
232 struct at91_cf_data *board;
233 struct resource *io;
Pali Rohár61984612021-11-24 16:41:15 +0100234 struct resource realio;
Alexandre Belloni264788c2020-09-30 20:48:03 +0200235 int status;
Joachim Eastwooded9084e2013-06-06 10:24:18 +0200236
237 board = devm_kzalloc(&pdev->dev, sizeof(*board), GFP_KERNEL);
238 if (!board)
239 return -ENOMEM;
240
241 board->irq_pin = of_get_gpio(pdev->dev.of_node, 0);
242 board->det_pin = of_get_gpio(pdev->dev.of_node, 1);
243 board->vcc_pin = of_get_gpio(pdev->dev.of_node, 2);
244 board->rst_pin = of_get_gpio(pdev->dev.of_node, 3);
245
Alexandre Bellonieaa9a212015-03-16 14:17:50 +0100246 mc = syscon_regmap_lookup_by_compatible("atmel,at91rm9200-sdramc");
Alexandre Belloni264788c2020-09-30 20:48:03 +0200247 if (IS_ERR(mc))
248 return PTR_ERR(mc);
Joachim Eastwooded9084e2013-06-06 10:24:18 +0200249
250 if (!gpio_is_valid(board->det_pin) || !gpio_is_valid(board->rst_pin))
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200251 return -ENODEV;
252
David Brownell2c536202006-04-14 18:05:38 -0700253 io = platform_get_resource(pdev, IORESOURCE_MEM, 0);
254 if (!io)
255 return -ENODEV;
256
Joachim Eastwood54fe1592013-06-06 10:24:16 +0200257 cf = devm_kzalloc(&pdev->dev, sizeof(*cf), GFP_KERNEL);
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200258 if (!cf)
259 return -ENOMEM;
260
261 cf->board = board;
262 cf->pdev = pdev;
Andrew Victorebe5cfb2006-11-06 15:56:07 +0200263 cf->phys_baseaddr = io->start;
David Brownell0db60952006-04-19 06:37:48 -0700264 platform_set_drvdata(pdev, cf);
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200265
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200266 /* must be a GPIO; ergo must trigger on both edges */
Joachim Eastwood54fe1592013-06-06 10:24:16 +0200267 status = devm_gpio_request(&pdev->dev, board->det_pin, "cf_det");
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200268 if (status < 0)
Joachim Eastwood54fe1592013-06-06 10:24:16 +0200269 return status;
270
271 status = devm_request_irq(&pdev->dev, gpio_to_irq(board->det_pin),
272 at91_cf_irq, 0, "at91_cf detect", cf);
David Brownell4c1fc442008-02-04 22:27:42 -0800273 if (status < 0)
Joachim Eastwood54fe1592013-06-06 10:24:16 +0200274 return status;
275
David Brownell0db60952006-04-19 06:37:48 -0700276 device_init_wakeup(&pdev->dev, 1);
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200277
Joachim Eastwood54fe1592013-06-06 10:24:16 +0200278 status = devm_gpio_request(&pdev->dev, board->rst_pin, "cf_rst");
David Brownell4c1fc442008-02-04 22:27:42 -0800279 if (status < 0)
280 goto fail0a;
281
Joachim Eastwood80af9e62012-01-10 02:37:25 +0100282 if (gpio_is_valid(board->vcc_pin)) {
Joachim Eastwood54fe1592013-06-06 10:24:16 +0200283 status = devm_gpio_request(&pdev->dev, board->vcc_pin, "cf_vcc");
David Brownell4c1fc442008-02-04 22:27:42 -0800284 if (status < 0)
Joachim Eastwood54fe1592013-06-06 10:24:16 +0200285 goto fail0a;
David Brownell4c1fc442008-02-04 22:27:42 -0800286 }
287
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200288 /*
289 * The card driver will request this irq later as needed.
290 * but it causes lots of "irqNN: nobody cared" messages
291 * unless we report that we handle everything (sigh).
292 * (Note: DK board doesn't wire the IRQ pin...)
293 */
Joachim Eastwood80af9e62012-01-10 02:37:25 +0100294 if (gpio_is_valid(board->irq_pin)) {
Joachim Eastwood54fe1592013-06-06 10:24:16 +0200295 status = devm_gpio_request(&pdev->dev, board->irq_pin, "cf_irq");
David Brownell4c1fc442008-02-04 22:27:42 -0800296 if (status < 0)
Joachim Eastwood54fe1592013-06-06 10:24:16 +0200297 goto fail0a;
298
299 status = devm_request_irq(&pdev->dev, gpio_to_irq(board->irq_pin),
300 at91_cf_irq, IRQF_SHARED, "at91_cf", cf);
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200301 if (status < 0)
Joachim Eastwood54fe1592013-06-06 10:24:16 +0200302 goto fail0a;
Joachim Eastwood80af9e62012-01-10 02:37:25 +0100303 cf->socket.pci_irq = gpio_to_irq(board->irq_pin);
David Brownell2c536202006-04-14 18:05:38 -0700304 } else
Yinghai Lu9130add2008-08-19 20:49:52 -0700305 cf->socket.pci_irq = nr_irqs + 1;
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200306
Arnd Bergmann1be27c62015-03-12 15:54:23 +0100307 /*
308 * pcmcia layer only remaps "real" memory not iospace
309 * io_offset is set to 0x10000 to avoid the check in static_find_io().
310 * */
311 cf->socket.io_offset = 0x10000;
Pali Rohár61984612021-11-24 16:41:15 +0100312 realio.start = cf->socket.io_offset;
313 realio.end = realio.start + SZ_64K - 1;
314 status = pci_remap_iospace(&realio, cf->phys_baseaddr + CF_IO_PHYS);
Arnd Bergmann1be27c62015-03-12 15:54:23 +0100315 if (status)
Joachim Eastwood54fe1592013-06-06 10:24:16 +0200316 goto fail0a;
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200317
Andrew Victor40a00172006-12-04 12:26:36 +0200318 /* reserve chip-select regions */
Joachim Eastwood54fe1592013-06-06 10:24:16 +0200319 if (!devm_request_mem_region(&pdev->dev, io->start, resource_size(io), "at91_cf")) {
Andrew Victorebe5cfb2006-11-06 15:56:07 +0200320 status = -ENXIO;
Joachim Eastwood54fe1592013-06-06 10:24:16 +0200321 goto fail0a;
Andrew Victorebe5cfb2006-11-06 15:56:07 +0200322 }
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200323
Joachim Eastwood40ca0202013-06-06 10:24:15 +0200324 dev_info(&pdev->dev, "irqs det #%d, io #%d\n",
Joachim Eastwood80af9e62012-01-10 02:37:25 +0100325 gpio_to_irq(board->det_pin), gpio_to_irq(board->irq_pin));
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200326
327 cf->socket.owner = THIS_MODULE;
Alexey Dobriyane4a3c3f2007-02-13 22:39:27 -0800328 cf->socket.dev.parent = &pdev->dev;
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200329 cf->socket.ops = &at91_cf_ops;
330 cf->socket.resource_ops = &pccard_static_ops;
331 cf->socket.features = SS_CAP_PCCARD | SS_CAP_STATIC_MAP
332 | SS_CAP_MEM_ALIGN;
333 cf->socket.map_size = SZ_2K;
David Brownell2c536202006-04-14 18:05:38 -0700334 cf->socket.io[0].res = io;
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200335
336 status = pcmcia_register_socket(&cf->socket);
337 if (status < 0)
Joachim Eastwood54fe1592013-06-06 10:24:16 +0200338 goto fail0a;
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200339
340 return 0;
341
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200342fail0a:
David Brownell1fbece12006-07-01 13:39:55 -0700343 device_init_wakeup(&pdev->dev, 0);
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200344 return status;
345}
346
Johan Hovold16a7c7c2013-09-23 16:27:29 +0200347static int at91_cf_remove(struct platform_device *pdev)
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200348{
David Brownell0db60952006-04-19 06:37:48 -0700349 struct at91_cf_socket *cf = platform_get_drvdata(pdev);
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200350
351 pcmcia_unregister_socket(&cf->socket);
David Brownell0db60952006-04-19 06:37:48 -0700352 device_init_wakeup(&pdev->dev, 0);
Joachim Eastwood54fe1592013-06-06 10:24:16 +0200353
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200354 return 0;
355}
356
David Brownell0db60952006-04-19 06:37:48 -0700357#ifdef CONFIG_PM
358
359static int at91_cf_suspend(struct platform_device *pdev, pm_message_t mesg)
360{
361 struct at91_cf_socket *cf = platform_get_drvdata(pdev);
362 struct at91_cf_data *board = cf->board;
363
David Brownell1fbece12006-07-01 13:39:55 -0700364 if (device_may_wakeup(&pdev->dev)) {
Joachim Eastwood80af9e62012-01-10 02:37:25 +0100365 enable_irq_wake(gpio_to_irq(board->det_pin));
366 if (gpio_is_valid(board->irq_pin))
367 enable_irq_wake(gpio_to_irq(board->irq_pin));
David Brownell0db60952006-04-19 06:37:48 -0700368 }
David Brownell0db60952006-04-19 06:37:48 -0700369 return 0;
370}
371
372static int at91_cf_resume(struct platform_device *pdev)
373{
Marc Pignat9af20372007-05-31 00:40:44 -0700374 struct at91_cf_socket *cf = platform_get_drvdata(pdev);
375 struct at91_cf_data *board = cf->board;
376
377 if (device_may_wakeup(&pdev->dev)) {
Joachim Eastwood80af9e62012-01-10 02:37:25 +0100378 disable_irq_wake(gpio_to_irq(board->det_pin));
379 if (gpio_is_valid(board->irq_pin))
380 disable_irq_wake(gpio_to_irq(board->irq_pin));
Marc Pignat9af20372007-05-31 00:40:44 -0700381 }
382
David Brownell0db60952006-04-19 06:37:48 -0700383 return 0;
384}
385
386#else
387#define at91_cf_suspend NULL
388#define at91_cf_resume NULL
389#endif
390
391static struct platform_driver at91_cf_driver = {
392 .driver = {
Joachim Eastwood40ca0202013-06-06 10:24:15 +0200393 .name = "at91_cf",
Alexandre Belloni264788c2020-09-30 20:48:03 +0200394 .of_match_table = at91_cf_dt_ids,
David Brownell0db60952006-04-19 06:37:48 -0700395 },
Johan Hovold16a7c7c2013-09-23 16:27:29 +0200396 .probe = at91_cf_probe,
397 .remove = at91_cf_remove,
David Brownell0db60952006-04-19 06:37:48 -0700398 .suspend = at91_cf_suspend,
399 .resume = at91_cf_resume,
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200400};
401
Johan Hovold16a7c7c2013-09-23 16:27:29 +0200402module_platform_driver(at91_cf_driver);
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200403
404MODULE_DESCRIPTION("AT91 Compact Flash Driver");
405MODULE_AUTHOR("David Brownell");
406MODULE_LICENSE("GPL");
Kay Sievers12c2c012008-04-15 14:34:34 -0700407MODULE_ALIAS("platform:at91_cf");