blob: 87147bcd16553f74b2a54a7cb054c6847aecbdf7 [file] [log] [blame]
Andrew Victor2c1f3b72006-02-21 12:56:52 +02001/*
2 * at91_cf.c -- AT91 CompactFlash controller driver
3 *
4 * Copyright (C) 2005 David Brownell
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 */
11
12#include <linux/module.h>
13#include <linux/kernel.h>
Andrew Victor2c1f3b72006-02-21 12:56:52 +020014#include <linux/platform_device.h>
15#include <linux/errno.h>
16#include <linux/init.h>
17#include <linux/interrupt.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090018#include <linux/slab.h>
Joachim Eastwood80af9e62012-01-10 02:37:25 +010019#include <linux/gpio.h>
Jean-Christophe PLAGNIOL-VILLARDbcd23602012-10-30 05:12:23 +080020#include <linux/platform_data/atmel.h>
Joachim Eastwooda8431682013-06-06 10:24:17 +020021#include <linux/io.h>
22#include <linux/sizes.h>
Alexandre Bellonieaa9a212015-03-16 14:17:50 +010023#include <linux/mfd/syscon.h>
24#include <linux/mfd/syscon/atmel-mc.h>
Joachim Eastwooded9084e2013-06-06 10:24:18 +020025#include <linux/of.h>
26#include <linux/of_device.h>
27#include <linux/of_gpio.h>
Alexandre Bellonieaa9a212015-03-16 14:17:50 +010028#include <linux/regmap.h>
Andrew Victor2c1f3b72006-02-21 12:56:52 +020029
30#include <pcmcia/ss.h>
31
Andrew Victor2c1f3b72006-02-21 12:56:52 +020032/*
33 * A0..A10 work in each range; A23 indicates I/O space; A25 is CFRNW;
34 * some other bit in {A24,A22..A11} is nREG to flag memory access
35 * (vs attributes). So more than 2KB/region would just be waste.
Andrew Victorebe5cfb2006-11-06 15:56:07 +020036 * Note: These are offsets from the physical base address.
Andrew Victor2c1f3b72006-02-21 12:56:52 +020037 */
Andrew Victorebe5cfb2006-11-06 15:56:07 +020038#define CF_ATTR_PHYS (0)
39#define CF_IO_PHYS (1 << 23)
40#define CF_MEM_PHYS (0x017ff800)
Andrew Victor2c1f3b72006-02-21 12:56:52 +020041
Alexandre Bellonieaa9a212015-03-16 14:17:50 +010042struct regmap *mc;
43
Andrew Victor2c1f3b72006-02-21 12:56:52 +020044/*--------------------------------------------------------------------------*/
45
Andrew Victor2c1f3b72006-02-21 12:56:52 +020046struct at91_cf_socket {
47 struct pcmcia_socket socket;
48
49 unsigned present:1;
50
51 struct platform_device *pdev;
52 struct at91_cf_data *board;
Andrew Victorebe5cfb2006-11-06 15:56:07 +020053
54 unsigned long phys_baseaddr;
Andrew Victor2c1f3b72006-02-21 12:56:52 +020055};
56
Andrew Victor2c1f3b72006-02-21 12:56:52 +020057static inline int at91_cf_present(struct at91_cf_socket *cf)
58{
David Brownell4c1fc442008-02-04 22:27:42 -080059 return !gpio_get_value(cf->board->det_pin);
Andrew Victor2c1f3b72006-02-21 12:56:52 +020060}
61
62/*--------------------------------------------------------------------------*/
63
64static int at91_cf_ss_init(struct pcmcia_socket *s)
65{
66 return 0;
67}
68
David Howells7d12e782006-10-05 14:55:46 +010069static irqreturn_t at91_cf_irq(int irq, void *_cf)
Andrew Victor2c1f3b72006-02-21 12:56:52 +020070{
Jeff Garzikc7bec5a2006-10-06 15:00:58 -040071 struct at91_cf_socket *cf = _cf;
Andrew Victor2c1f3b72006-02-21 12:56:52 +020072
Joachim Eastwood80af9e62012-01-10 02:37:25 +010073 if (irq == gpio_to_irq(cf->board->det_pin)) {
Andrew Victor2c1f3b72006-02-21 12:56:52 +020074 unsigned present = at91_cf_present(cf);
75
76 /* kick pccard as needed */
77 if (present != cf->present) {
78 cf->present = present;
Joachim Eastwood40ca0202013-06-06 10:24:15 +020079 dev_dbg(&cf->pdev->dev, "card %s\n",
David Brownell2c536202006-04-14 18:05:38 -070080 present ? "present" : "gone");
Andrew Victor2c1f3b72006-02-21 12:56:52 +020081 pcmcia_parse_events(&cf->socket, SS_DETECT);
82 }
83 }
84
85 return IRQ_HANDLED;
86}
87
88static int at91_cf_get_status(struct pcmcia_socket *s, u_int *sp)
89{
90 struct at91_cf_socket *cf;
91
92 if (!sp)
93 return -EINVAL;
94
95 cf = container_of(s, struct at91_cf_socket, socket);
96
David Brownell2c536202006-04-14 18:05:38 -070097 /* NOTE: CF is always 3VCARD */
Andrew Victor2c1f3b72006-02-21 12:56:52 +020098 if (at91_cf_present(cf)) {
Joachim Eastwood80af9e62012-01-10 02:37:25 +010099 int rdy = gpio_is_valid(cf->board->irq_pin); /* RDY/nIRQ */
100 int vcc = gpio_is_valid(cf->board->vcc_pin);
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200101
102 *sp = SS_DETECT | SS_3VCARD;
Joachim Eastwoode39506b2013-06-06 10:24:14 +0200103 if (!rdy || gpio_get_value(cf->board->irq_pin))
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200104 *sp |= SS_READY;
Joachim Eastwoode39506b2013-06-06 10:24:14 +0200105 if (!vcc || gpio_get_value(cf->board->vcc_pin))
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200106 *sp |= SS_POWERON;
107 } else
108 *sp = 0;
109
110 return 0;
111}
112
David Brownell2c536202006-04-14 18:05:38 -0700113static int
114at91_cf_set_socket(struct pcmcia_socket *sock, struct socket_state_t *s)
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200115{
116 struct at91_cf_socket *cf;
117
118 cf = container_of(sock, struct at91_cf_socket, socket);
119
120 /* switch Vcc if needed and possible */
Joachim Eastwood80af9e62012-01-10 02:37:25 +0100121 if (gpio_is_valid(cf->board->vcc_pin)) {
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200122 switch (s->Vcc) {
Laurent Navetd652f702013-06-06 10:24:20 +0200123 case 0:
124 gpio_set_value(cf->board->vcc_pin, 0);
125 break;
126 case 33:
127 gpio_set_value(cf->board->vcc_pin, 1);
128 break;
129 default:
130 return -EINVAL;
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200131 }
132 }
133
134 /* toggle reset if needed */
David Brownell4c1fc442008-02-04 22:27:42 -0800135 gpio_set_value(cf->board->rst_pin, s->flags & SS_RESET);
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200136
Joachim Eastwood40ca0202013-06-06 10:24:15 +0200137 dev_dbg(&cf->pdev->dev, "Vcc %d, io_irq %d, flags %04x csc %04x\n",
138 s->Vcc, s->io_irq, s->flags, s->csc_mask);
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200139
140 return 0;
141}
142
143static int at91_cf_ss_suspend(struct pcmcia_socket *s)
144{
145 return at91_cf_set_socket(s, &dead_socket);
146}
147
148/* we already mapped the I/O region */
149static int at91_cf_set_io_map(struct pcmcia_socket *s, struct pccard_io_map *io)
150{
151 struct at91_cf_socket *cf;
152 u32 csr;
153
154 cf = container_of(s, struct at91_cf_socket, socket);
155 io->flags &= (MAP_ACTIVE | MAP_16BIT | MAP_AUTOSZ);
156
157 /*
158 * Use 16 bit accesses unless/until we need 8-bit i/o space.
Alexandre Bellonieaa9a212015-03-16 14:17:50 +0100159 *
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200160 * NOTE: this CF controller ignores IOIS16, so we can't really do
161 * MAP_AUTOSZ. The 16bit mode allows single byte access on either
162 * D0-D7 (even addr) or D8-D15 (odd), so it's close enough for many
163 * purposes (and handles ide-cs).
164 *
165 * The 8bit mode is needed for odd byte access on D0-D7. It seems
166 * some cards only like that way to get at the odd byte, despite
167 * CF 3.0 spec table 35 also giving the D8-D15 option.
168 */
Andrew Victorebe5cfb2006-11-06 15:56:07 +0200169 if (!(io->flags & (MAP_16BIT | MAP_AUTOSZ))) {
Alexandre Bellonieaa9a212015-03-16 14:17:50 +0100170 csr = AT91_MC_SMC_DBW_8;
Joachim Eastwood40ca0202013-06-06 10:24:15 +0200171 dev_dbg(&cf->pdev->dev, "8bit i/o bus\n");
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200172 } else {
Alexandre Bellonieaa9a212015-03-16 14:17:50 +0100173 csr = AT91_MC_SMC_DBW_16;
Joachim Eastwood40ca0202013-06-06 10:24:15 +0200174 dev_dbg(&cf->pdev->dev, "16bit i/o bus\n");
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200175 }
Alexandre Bellonieaa9a212015-03-16 14:17:50 +0100176 regmap_update_bits(mc, AT91_MC_SMC_CSR(cf->board->chipselect),
177 AT91_MC_SMC_DBW, csr);
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200178
179 io->start = cf->socket.io_offset;
180 io->stop = io->start + SZ_2K - 1;
181
182 return 0;
183}
184
185/* pcmcia layer maps/unmaps mem regions */
David Brownell2c536202006-04-14 18:05:38 -0700186static int
187at91_cf_set_mem_map(struct pcmcia_socket *s, struct pccard_mem_map *map)
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200188{
189 struct at91_cf_socket *cf;
190
191 if (map->card_start)
192 return -EINVAL;
193
194 cf = container_of(s, struct at91_cf_socket, socket);
195
Andrew Victorebe5cfb2006-11-06 15:56:07 +0200196 map->flags &= (MAP_ACTIVE | MAP_ATTRIB | MAP_16BIT);
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200197 if (map->flags & MAP_ATTRIB)
Andrew Victorebe5cfb2006-11-06 15:56:07 +0200198 map->static_start = cf->phys_baseaddr + CF_ATTR_PHYS;
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200199 else
Andrew Victorebe5cfb2006-11-06 15:56:07 +0200200 map->static_start = cf->phys_baseaddr + CF_MEM_PHYS;
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200201
202 return 0;
203}
204
205static struct pccard_operations at91_cf_ops = {
206 .init = at91_cf_ss_init,
207 .suspend = at91_cf_ss_suspend,
208 .get_status = at91_cf_get_status,
209 .set_socket = at91_cf_set_socket,
210 .set_io_map = at91_cf_set_io_map,
211 .set_mem_map = at91_cf_set_mem_map,
212};
213
214/*--------------------------------------------------------------------------*/
215
Joachim Eastwooded9084e2013-06-06 10:24:18 +0200216#if defined(CONFIG_OF)
217static const struct of_device_id at91_cf_dt_ids[] = {
218 { .compatible = "atmel,at91rm9200-cf" },
219 { /* sentinel */ }
220};
221MODULE_DEVICE_TABLE(of, at91_cf_dt_ids);
222
223static int at91_cf_dt_init(struct platform_device *pdev)
224{
225 struct at91_cf_data *board;
226
227 board = devm_kzalloc(&pdev->dev, sizeof(*board), GFP_KERNEL);
228 if (!board)
229 return -ENOMEM;
230
231 board->irq_pin = of_get_gpio(pdev->dev.of_node, 0);
232 board->det_pin = of_get_gpio(pdev->dev.of_node, 1);
233 board->vcc_pin = of_get_gpio(pdev->dev.of_node, 2);
234 board->rst_pin = of_get_gpio(pdev->dev.of_node, 3);
235
236 pdev->dev.platform_data = board;
237
Alexandre Bellonieaa9a212015-03-16 14:17:50 +0100238 mc = syscon_regmap_lookup_by_compatible("atmel,at91rm9200-sdramc");
239 if (IS_ERR(mc))
240 return PTR_ERR(mc);
241
Joachim Eastwooded9084e2013-06-06 10:24:18 +0200242 return 0;
243}
244#else
245static int at91_cf_dt_init(struct platform_device *pdev)
246{
247 return -ENODEV;
248}
249#endif
250
Johan Hovold16a7c7c2013-09-23 16:27:29 +0200251static int at91_cf_probe(struct platform_device *pdev)
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200252{
253 struct at91_cf_socket *cf;
David Brownell0db60952006-04-19 06:37:48 -0700254 struct at91_cf_data *board = pdev->dev.platform_data;
David Brownell2c536202006-04-14 18:05:38 -0700255 struct resource *io;
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200256 int status;
257
Joachim Eastwooded9084e2013-06-06 10:24:18 +0200258 if (!board) {
259 status = at91_cf_dt_init(pdev);
260 if (status)
261 return status;
262
263 board = pdev->dev.platform_data;
264 }
265
266 if (!gpio_is_valid(board->det_pin) || !gpio_is_valid(board->rst_pin))
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200267 return -ENODEV;
268
David Brownell2c536202006-04-14 18:05:38 -0700269 io = platform_get_resource(pdev, IORESOURCE_MEM, 0);
270 if (!io)
271 return -ENODEV;
272
Joachim Eastwood54fe1592013-06-06 10:24:16 +0200273 cf = devm_kzalloc(&pdev->dev, sizeof(*cf), GFP_KERNEL);
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200274 if (!cf)
275 return -ENOMEM;
276
277 cf->board = board;
278 cf->pdev = pdev;
Andrew Victorebe5cfb2006-11-06 15:56:07 +0200279 cf->phys_baseaddr = io->start;
David Brownell0db60952006-04-19 06:37:48 -0700280 platform_set_drvdata(pdev, cf);
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200281
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200282 /* must be a GPIO; ergo must trigger on both edges */
Joachim Eastwood54fe1592013-06-06 10:24:16 +0200283 status = devm_gpio_request(&pdev->dev, board->det_pin, "cf_det");
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200284 if (status < 0)
Joachim Eastwood54fe1592013-06-06 10:24:16 +0200285 return status;
286
287 status = devm_request_irq(&pdev->dev, gpio_to_irq(board->det_pin),
288 at91_cf_irq, 0, "at91_cf detect", cf);
David Brownell4c1fc442008-02-04 22:27:42 -0800289 if (status < 0)
Joachim Eastwood54fe1592013-06-06 10:24:16 +0200290 return status;
291
David Brownell0db60952006-04-19 06:37:48 -0700292 device_init_wakeup(&pdev->dev, 1);
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200293
Joachim Eastwood54fe1592013-06-06 10:24:16 +0200294 status = devm_gpio_request(&pdev->dev, board->rst_pin, "cf_rst");
David Brownell4c1fc442008-02-04 22:27:42 -0800295 if (status < 0)
296 goto fail0a;
297
Joachim Eastwood80af9e62012-01-10 02:37:25 +0100298 if (gpio_is_valid(board->vcc_pin)) {
Joachim Eastwood54fe1592013-06-06 10:24:16 +0200299 status = devm_gpio_request(&pdev->dev, board->vcc_pin, "cf_vcc");
David Brownell4c1fc442008-02-04 22:27:42 -0800300 if (status < 0)
Joachim Eastwood54fe1592013-06-06 10:24:16 +0200301 goto fail0a;
David Brownell4c1fc442008-02-04 22:27:42 -0800302 }
303
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200304 /*
305 * The card driver will request this irq later as needed.
306 * but it causes lots of "irqNN: nobody cared" messages
307 * unless we report that we handle everything (sigh).
308 * (Note: DK board doesn't wire the IRQ pin...)
309 */
Joachim Eastwood80af9e62012-01-10 02:37:25 +0100310 if (gpio_is_valid(board->irq_pin)) {
Joachim Eastwood54fe1592013-06-06 10:24:16 +0200311 status = devm_gpio_request(&pdev->dev, board->irq_pin, "cf_irq");
David Brownell4c1fc442008-02-04 22:27:42 -0800312 if (status < 0)
Joachim Eastwood54fe1592013-06-06 10:24:16 +0200313 goto fail0a;
314
315 status = devm_request_irq(&pdev->dev, gpio_to_irq(board->irq_pin),
316 at91_cf_irq, IRQF_SHARED, "at91_cf", cf);
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200317 if (status < 0)
Joachim Eastwood54fe1592013-06-06 10:24:16 +0200318 goto fail0a;
Joachim Eastwood80af9e62012-01-10 02:37:25 +0100319 cf->socket.pci_irq = gpio_to_irq(board->irq_pin);
David Brownell2c536202006-04-14 18:05:38 -0700320 } else
Yinghai Lu9130add2008-08-19 20:49:52 -0700321 cf->socket.pci_irq = nr_irqs + 1;
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200322
Arnd Bergmann1be27c62015-03-12 15:54:23 +0100323 /*
324 * pcmcia layer only remaps "real" memory not iospace
325 * io_offset is set to 0x10000 to avoid the check in static_find_io().
326 * */
327 cf->socket.io_offset = 0x10000;
328 status = pci_ioremap_io(0x10000, cf->phys_baseaddr + CF_IO_PHYS);
329 if (status)
Joachim Eastwood54fe1592013-06-06 10:24:16 +0200330 goto fail0a;
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200331
Andrew Victor40a00172006-12-04 12:26:36 +0200332 /* reserve chip-select regions */
Joachim Eastwood54fe1592013-06-06 10:24:16 +0200333 if (!devm_request_mem_region(&pdev->dev, io->start, resource_size(io), "at91_cf")) {
Andrew Victorebe5cfb2006-11-06 15:56:07 +0200334 status = -ENXIO;
Joachim Eastwood54fe1592013-06-06 10:24:16 +0200335 goto fail0a;
Andrew Victorebe5cfb2006-11-06 15:56:07 +0200336 }
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200337
Joachim Eastwood40ca0202013-06-06 10:24:15 +0200338 dev_info(&pdev->dev, "irqs det #%d, io #%d\n",
Joachim Eastwood80af9e62012-01-10 02:37:25 +0100339 gpio_to_irq(board->det_pin), gpio_to_irq(board->irq_pin));
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200340
341 cf->socket.owner = THIS_MODULE;
Alexey Dobriyane4a3c3f2007-02-13 22:39:27 -0800342 cf->socket.dev.parent = &pdev->dev;
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200343 cf->socket.ops = &at91_cf_ops;
344 cf->socket.resource_ops = &pccard_static_ops;
345 cf->socket.features = SS_CAP_PCCARD | SS_CAP_STATIC_MAP
346 | SS_CAP_MEM_ALIGN;
347 cf->socket.map_size = SZ_2K;
David Brownell2c536202006-04-14 18:05:38 -0700348 cf->socket.io[0].res = io;
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200349
350 status = pcmcia_register_socket(&cf->socket);
351 if (status < 0)
Joachim Eastwood54fe1592013-06-06 10:24:16 +0200352 goto fail0a;
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200353
354 return 0;
355
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200356fail0a:
David Brownell1fbece12006-07-01 13:39:55 -0700357 device_init_wakeup(&pdev->dev, 0);
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200358 return status;
359}
360
Johan Hovold16a7c7c2013-09-23 16:27:29 +0200361static int at91_cf_remove(struct platform_device *pdev)
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200362{
David Brownell0db60952006-04-19 06:37:48 -0700363 struct at91_cf_socket *cf = platform_get_drvdata(pdev);
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200364
365 pcmcia_unregister_socket(&cf->socket);
David Brownell0db60952006-04-19 06:37:48 -0700366 device_init_wakeup(&pdev->dev, 0);
Joachim Eastwood54fe1592013-06-06 10:24:16 +0200367
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200368 return 0;
369}
370
David Brownell0db60952006-04-19 06:37:48 -0700371#ifdef CONFIG_PM
372
373static int at91_cf_suspend(struct platform_device *pdev, pm_message_t mesg)
374{
375 struct at91_cf_socket *cf = platform_get_drvdata(pdev);
376 struct at91_cf_data *board = cf->board;
377
David Brownell1fbece12006-07-01 13:39:55 -0700378 if (device_may_wakeup(&pdev->dev)) {
Joachim Eastwood80af9e62012-01-10 02:37:25 +0100379 enable_irq_wake(gpio_to_irq(board->det_pin));
380 if (gpio_is_valid(board->irq_pin))
381 enable_irq_wake(gpio_to_irq(board->irq_pin));
David Brownell0db60952006-04-19 06:37:48 -0700382 }
David Brownell0db60952006-04-19 06:37:48 -0700383 return 0;
384}
385
386static int at91_cf_resume(struct platform_device *pdev)
387{
Marc Pignat9af20372007-05-31 00:40:44 -0700388 struct at91_cf_socket *cf = platform_get_drvdata(pdev);
389 struct at91_cf_data *board = cf->board;
390
391 if (device_may_wakeup(&pdev->dev)) {
Joachim Eastwood80af9e62012-01-10 02:37:25 +0100392 disable_irq_wake(gpio_to_irq(board->det_pin));
393 if (gpio_is_valid(board->irq_pin))
394 disable_irq_wake(gpio_to_irq(board->irq_pin));
Marc Pignat9af20372007-05-31 00:40:44 -0700395 }
396
David Brownell0db60952006-04-19 06:37:48 -0700397 return 0;
398}
399
400#else
401#define at91_cf_suspend NULL
402#define at91_cf_resume NULL
403#endif
404
405static struct platform_driver at91_cf_driver = {
406 .driver = {
Joachim Eastwood40ca0202013-06-06 10:24:15 +0200407 .name = "at91_cf",
Joachim Eastwooded9084e2013-06-06 10:24:18 +0200408 .of_match_table = of_match_ptr(at91_cf_dt_ids),
David Brownell0db60952006-04-19 06:37:48 -0700409 },
Johan Hovold16a7c7c2013-09-23 16:27:29 +0200410 .probe = at91_cf_probe,
411 .remove = at91_cf_remove,
David Brownell0db60952006-04-19 06:37:48 -0700412 .suspend = at91_cf_suspend,
413 .resume = at91_cf_resume,
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200414};
415
Johan Hovold16a7c7c2013-09-23 16:27:29 +0200416module_platform_driver(at91_cf_driver);
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200417
418MODULE_DESCRIPTION("AT91 Compact Flash Driver");
419MODULE_AUTHOR("David Brownell");
420MODULE_LICENSE("GPL");
Kay Sievers12c2c012008-04-15 14:34:34 -0700421MODULE_ALIAS("platform:at91_cf");