Andrew Victor | 2c1f3b7 | 2006-02-21 12:56:52 +0200 | [diff] [blame] | 1 | /* |
| 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> |
| 14 | #include <linux/sched.h> |
| 15 | #include <linux/platform_device.h> |
| 16 | #include <linux/errno.h> |
| 17 | #include <linux/init.h> |
| 18 | #include <linux/interrupt.h> |
| 19 | |
| 20 | #include <pcmcia/ss.h> |
| 21 | |
| 22 | #include <asm/hardware.h> |
| 23 | #include <asm/io.h> |
| 24 | #include <asm/sizes.h> |
| 25 | |
| 26 | #include <asm/arch/at91rm9200.h> |
| 27 | #include <asm/arch/board.h> |
| 28 | #include <asm/arch/gpio.h> |
| 29 | |
| 30 | |
Andrew Victor | 2c1f3b7 | 2006-02-21 12:56:52 +0200 | [diff] [blame] | 31 | /* |
| 32 | * A0..A10 work in each range; A23 indicates I/O space; A25 is CFRNW; |
| 33 | * some other bit in {A24,A22..A11} is nREG to flag memory access |
| 34 | * (vs attributes). So more than 2KB/region would just be waste. |
| 35 | */ |
| 36 | #define CF_ATTR_PHYS (AT91_CF_BASE) |
| 37 | #define CF_IO_PHYS (AT91_CF_BASE + (1 << 23)) |
| 38 | #define CF_MEM_PHYS (AT91_CF_BASE + 0x017ff800) |
| 39 | |
| 40 | /*--------------------------------------------------------------------------*/ |
| 41 | |
| 42 | static const char driver_name[] = "at91_cf"; |
| 43 | |
| 44 | struct at91_cf_socket { |
| 45 | struct pcmcia_socket socket; |
| 46 | |
| 47 | unsigned present:1; |
| 48 | |
| 49 | struct platform_device *pdev; |
| 50 | struct at91_cf_data *board; |
| 51 | }; |
| 52 | |
| 53 | #define SZ_2K (2 * SZ_1K) |
| 54 | |
| 55 | static inline int at91_cf_present(struct at91_cf_socket *cf) |
| 56 | { |
| 57 | return !at91_get_gpio_value(cf->board->det_pin); |
| 58 | } |
| 59 | |
| 60 | /*--------------------------------------------------------------------------*/ |
| 61 | |
| 62 | static int at91_cf_ss_init(struct pcmcia_socket *s) |
| 63 | { |
| 64 | return 0; |
| 65 | } |
| 66 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 67 | static irqreturn_t at91_cf_irq(int irq, void *_cf) |
Andrew Victor | 2c1f3b7 | 2006-02-21 12:56:52 +0200 | [diff] [blame] | 68 | { |
Jeff Garzik | c7bec5a | 2006-10-06 15:00:58 -0400 | [diff] [blame] | 69 | struct at91_cf_socket *cf = _cf; |
Andrew Victor | 2c1f3b7 | 2006-02-21 12:56:52 +0200 | [diff] [blame] | 70 | |
| 71 | if (irq == cf->board->det_pin) { |
| 72 | unsigned present = at91_cf_present(cf); |
| 73 | |
| 74 | /* kick pccard as needed */ |
| 75 | if (present != cf->present) { |
| 76 | cf->present = present; |
David Brownell | 2c53620 | 2006-04-14 18:05:38 -0700 | [diff] [blame] | 77 | pr_debug("%s: card %s\n", driver_name, |
| 78 | present ? "present" : "gone"); |
Andrew Victor | 2c1f3b7 | 2006-02-21 12:56:52 +0200 | [diff] [blame] | 79 | pcmcia_parse_events(&cf->socket, SS_DETECT); |
| 80 | } |
| 81 | } |
| 82 | |
| 83 | return IRQ_HANDLED; |
| 84 | } |
| 85 | |
| 86 | static int at91_cf_get_status(struct pcmcia_socket *s, u_int *sp) |
| 87 | { |
| 88 | struct at91_cf_socket *cf; |
| 89 | |
| 90 | if (!sp) |
| 91 | return -EINVAL; |
| 92 | |
| 93 | cf = container_of(s, struct at91_cf_socket, socket); |
| 94 | |
David Brownell | 2c53620 | 2006-04-14 18:05:38 -0700 | [diff] [blame] | 95 | /* NOTE: CF is always 3VCARD */ |
Andrew Victor | 2c1f3b7 | 2006-02-21 12:56:52 +0200 | [diff] [blame] | 96 | if (at91_cf_present(cf)) { |
| 97 | int rdy = cf->board->irq_pin; /* RDY/nIRQ */ |
| 98 | int vcc = cf->board->vcc_pin; |
| 99 | |
| 100 | *sp = SS_DETECT | SS_3VCARD; |
| 101 | if (!rdy || at91_get_gpio_value(rdy)) |
| 102 | *sp |= SS_READY; |
| 103 | if (!vcc || at91_get_gpio_value(vcc)) |
| 104 | *sp |= SS_POWERON; |
| 105 | } else |
| 106 | *sp = 0; |
| 107 | |
| 108 | return 0; |
| 109 | } |
| 110 | |
David Brownell | 2c53620 | 2006-04-14 18:05:38 -0700 | [diff] [blame] | 111 | static int |
| 112 | at91_cf_set_socket(struct pcmcia_socket *sock, struct socket_state_t *s) |
Andrew Victor | 2c1f3b7 | 2006-02-21 12:56:52 +0200 | [diff] [blame] | 113 | { |
| 114 | struct at91_cf_socket *cf; |
| 115 | |
| 116 | cf = container_of(sock, struct at91_cf_socket, socket); |
| 117 | |
| 118 | /* switch Vcc if needed and possible */ |
| 119 | if (cf->board->vcc_pin) { |
| 120 | switch (s->Vcc) { |
| 121 | case 0: |
| 122 | at91_set_gpio_value(cf->board->vcc_pin, 0); |
| 123 | break; |
| 124 | case 33: |
| 125 | at91_set_gpio_value(cf->board->vcc_pin, 1); |
| 126 | break; |
| 127 | default: |
| 128 | return -EINVAL; |
| 129 | } |
| 130 | } |
| 131 | |
| 132 | /* toggle reset if needed */ |
| 133 | at91_set_gpio_value(cf->board->rst_pin, s->flags & SS_RESET); |
| 134 | |
| 135 | pr_debug("%s: Vcc %d, io_irq %d, flags %04x csc %04x\n", |
| 136 | driver_name, s->Vcc, s->io_irq, s->flags, s->csc_mask); |
| 137 | |
| 138 | return 0; |
| 139 | } |
| 140 | |
| 141 | static int at91_cf_ss_suspend(struct pcmcia_socket *s) |
| 142 | { |
| 143 | return at91_cf_set_socket(s, &dead_socket); |
| 144 | } |
| 145 | |
| 146 | /* we already mapped the I/O region */ |
| 147 | static int at91_cf_set_io_map(struct pcmcia_socket *s, struct pccard_io_map *io) |
| 148 | { |
| 149 | struct at91_cf_socket *cf; |
| 150 | u32 csr; |
| 151 | |
| 152 | cf = container_of(s, struct at91_cf_socket, socket); |
| 153 | io->flags &= (MAP_ACTIVE | MAP_16BIT | MAP_AUTOSZ); |
| 154 | |
| 155 | /* |
| 156 | * Use 16 bit accesses unless/until we need 8-bit i/o space. |
| 157 | * Always set CSR4 ... PCMCIA won't always unmap things. |
| 158 | */ |
| 159 | csr = at91_sys_read(AT91_SMC_CSR(4)) & ~AT91_SMC_DBW; |
| 160 | |
| 161 | /* |
| 162 | * NOTE: this CF controller ignores IOIS16, so we can't really do |
| 163 | * MAP_AUTOSZ. The 16bit mode allows single byte access on either |
| 164 | * D0-D7 (even addr) or D8-D15 (odd), so it's close enough for many |
| 165 | * purposes (and handles ide-cs). |
| 166 | * |
| 167 | * The 8bit mode is needed for odd byte access on D0-D7. It seems |
| 168 | * some cards only like that way to get at the odd byte, despite |
| 169 | * CF 3.0 spec table 35 also giving the D8-D15 option. |
| 170 | */ |
| 171 | if (!(io->flags & (MAP_16BIT|MAP_AUTOSZ))) { |
| 172 | csr |= AT91_SMC_DBW_8; |
| 173 | pr_debug("%s: 8bit i/o bus\n", driver_name); |
| 174 | } else { |
| 175 | csr |= AT91_SMC_DBW_16; |
| 176 | pr_debug("%s: 16bit i/o bus\n", driver_name); |
| 177 | } |
| 178 | at91_sys_write(AT91_SMC_CSR(4), csr); |
| 179 | |
| 180 | io->start = cf->socket.io_offset; |
| 181 | io->stop = io->start + SZ_2K - 1; |
| 182 | |
| 183 | return 0; |
| 184 | } |
| 185 | |
| 186 | /* pcmcia layer maps/unmaps mem regions */ |
David Brownell | 2c53620 | 2006-04-14 18:05:38 -0700 | [diff] [blame] | 187 | static int |
| 188 | at91_cf_set_mem_map(struct pcmcia_socket *s, struct pccard_mem_map *map) |
Andrew Victor | 2c1f3b7 | 2006-02-21 12:56:52 +0200 | [diff] [blame] | 189 | { |
| 190 | struct at91_cf_socket *cf; |
| 191 | |
| 192 | if (map->card_start) |
| 193 | return -EINVAL; |
| 194 | |
| 195 | cf = container_of(s, struct at91_cf_socket, socket); |
| 196 | |
| 197 | map->flags &= MAP_ACTIVE|MAP_ATTRIB|MAP_16BIT; |
| 198 | if (map->flags & MAP_ATTRIB) |
| 199 | map->static_start = CF_ATTR_PHYS; |
| 200 | else |
| 201 | map->static_start = CF_MEM_PHYS; |
| 202 | |
| 203 | return 0; |
| 204 | } |
| 205 | |
| 206 | static struct pccard_operations at91_cf_ops = { |
| 207 | .init = at91_cf_ss_init, |
| 208 | .suspend = at91_cf_ss_suspend, |
| 209 | .get_status = at91_cf_get_status, |
| 210 | .set_socket = at91_cf_set_socket, |
| 211 | .set_io_map = at91_cf_set_io_map, |
| 212 | .set_mem_map = at91_cf_set_mem_map, |
| 213 | }; |
| 214 | |
| 215 | /*--------------------------------------------------------------------------*/ |
| 216 | |
David Brownell | 0db6095 | 2006-04-19 06:37:48 -0700 | [diff] [blame] | 217 | static int __init at91_cf_probe(struct platform_device *pdev) |
Andrew Victor | 2c1f3b7 | 2006-02-21 12:56:52 +0200 | [diff] [blame] | 218 | { |
| 219 | struct at91_cf_socket *cf; |
David Brownell | 0db6095 | 2006-04-19 06:37:48 -0700 | [diff] [blame] | 220 | struct at91_cf_data *board = pdev->dev.platform_data; |
David Brownell | 2c53620 | 2006-04-14 18:05:38 -0700 | [diff] [blame] | 221 | struct resource *io; |
Andrew Victor | 2c1f3b7 | 2006-02-21 12:56:52 +0200 | [diff] [blame] | 222 | unsigned int csa; |
| 223 | int status; |
| 224 | |
| 225 | if (!board || !board->det_pin || !board->rst_pin) |
| 226 | return -ENODEV; |
| 227 | |
David Brownell | 2c53620 | 2006-04-14 18:05:38 -0700 | [diff] [blame] | 228 | io = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 229 | if (!io) |
| 230 | return -ENODEV; |
| 231 | |
Andrew Victor | 2c1f3b7 | 2006-02-21 12:56:52 +0200 | [diff] [blame] | 232 | cf = kcalloc(1, sizeof *cf, GFP_KERNEL); |
| 233 | if (!cf) |
| 234 | return -ENOMEM; |
| 235 | |
| 236 | cf->board = board; |
| 237 | cf->pdev = pdev; |
David Brownell | 0db6095 | 2006-04-19 06:37:48 -0700 | [diff] [blame] | 238 | platform_set_drvdata(pdev, cf); |
Andrew Victor | 2c1f3b7 | 2006-02-21 12:56:52 +0200 | [diff] [blame] | 239 | |
| 240 | /* CF takes over CS4, CS5, CS6 */ |
| 241 | csa = at91_sys_read(AT91_EBI_CSA); |
| 242 | at91_sys_write(AT91_EBI_CSA, csa | AT91_EBI_CS4A_SMC_COMPACTFLASH); |
| 243 | |
Andrew Victor | 2c1f3b7 | 2006-02-21 12:56:52 +0200 | [diff] [blame] | 244 | /* nWAIT is _not_ a default setting */ |
| 245 | (void) at91_set_A_periph(AT91_PIN_PC6, 1); /* nWAIT */ |
| 246 | |
| 247 | /* |
| 248 | * Static memory controller timing adjustments. |
| 249 | * REVISIT: these timings are in terms of MCK cycles, so |
| 250 | * when MCK changes (cpufreq etc) so must these values... |
| 251 | */ |
David Brownell | 2c53620 | 2006-04-14 18:05:38 -0700 | [diff] [blame] | 252 | at91_sys_write(AT91_SMC_CSR(4), |
| 253 | AT91_SMC_ACSS_STD |
| 254 | | AT91_SMC_DBW_16 |
| 255 | | AT91_SMC_BAT |
| 256 | | AT91_SMC_WSEN |
| 257 | | AT91_SMC_NWS_(32) /* wait states */ |
| 258 | | AT91_SMC_RWSETUP_(6) /* setup time */ |
| 259 | | AT91_SMC_RWHOLD_(4) /* hold time */ |
Andrew Victor | 2c1f3b7 | 2006-02-21 12:56:52 +0200 | [diff] [blame] | 260 | ); |
| 261 | |
| 262 | /* must be a GPIO; ergo must trigger on both edges */ |
| 263 | status = request_irq(board->det_pin, at91_cf_irq, |
Thomas Gleixner | dace145 | 2006-07-01 19:29:38 -0700 | [diff] [blame] | 264 | IRQF_SAMPLE_RANDOM, driver_name, cf); |
Andrew Victor | 2c1f3b7 | 2006-02-21 12:56:52 +0200 | [diff] [blame] | 265 | if (status < 0) |
| 266 | goto fail0; |
David Brownell | 0db6095 | 2006-04-19 06:37:48 -0700 | [diff] [blame] | 267 | device_init_wakeup(&pdev->dev, 1); |
Andrew Victor | 2c1f3b7 | 2006-02-21 12:56:52 +0200 | [diff] [blame] | 268 | |
| 269 | /* |
| 270 | * The card driver will request this irq later as needed. |
| 271 | * but it causes lots of "irqNN: nobody cared" messages |
| 272 | * unless we report that we handle everything (sigh). |
| 273 | * (Note: DK board doesn't wire the IRQ pin...) |
| 274 | */ |
| 275 | if (board->irq_pin) { |
| 276 | status = request_irq(board->irq_pin, at91_cf_irq, |
Thomas Gleixner | dace145 | 2006-07-01 19:29:38 -0700 | [diff] [blame] | 277 | IRQF_SHARED, driver_name, cf); |
Andrew Victor | 2c1f3b7 | 2006-02-21 12:56:52 +0200 | [diff] [blame] | 278 | if (status < 0) |
| 279 | goto fail0a; |
| 280 | cf->socket.pci_irq = board->irq_pin; |
David Brownell | 2c53620 | 2006-04-14 18:05:38 -0700 | [diff] [blame] | 281 | } else |
Andrew Victor | 2c1f3b7 | 2006-02-21 12:56:52 +0200 | [diff] [blame] | 282 | cf->socket.pci_irq = NR_IRQS + 1; |
| 283 | |
| 284 | /* pcmcia layer only remaps "real" memory not iospace */ |
| 285 | cf->socket.io_offset = (unsigned long) ioremap(CF_IO_PHYS, SZ_2K); |
| 286 | if (!cf->socket.io_offset) |
| 287 | goto fail1; |
| 288 | |
| 289 | /* reserve CS4, CS5, and CS6 regions; but use just CS4 */ |
David Brownell | 2c53620 | 2006-04-14 18:05:38 -0700 | [diff] [blame] | 290 | if (!request_mem_region(io->start, io->end + 1 - io->start, |
| 291 | driver_name)) |
Andrew Victor | 2c1f3b7 | 2006-02-21 12:56:52 +0200 | [diff] [blame] | 292 | goto fail1; |
| 293 | |
| 294 | pr_info("%s: irqs det #%d, io #%d\n", driver_name, |
| 295 | board->det_pin, board->irq_pin); |
| 296 | |
| 297 | cf->socket.owner = THIS_MODULE; |
David Brownell | 0db6095 | 2006-04-19 06:37:48 -0700 | [diff] [blame] | 298 | cf->socket.dev.dev = &pdev->dev; |
Andrew Victor | 2c1f3b7 | 2006-02-21 12:56:52 +0200 | [diff] [blame] | 299 | cf->socket.ops = &at91_cf_ops; |
| 300 | cf->socket.resource_ops = &pccard_static_ops; |
| 301 | cf->socket.features = SS_CAP_PCCARD | SS_CAP_STATIC_MAP |
| 302 | | SS_CAP_MEM_ALIGN; |
| 303 | cf->socket.map_size = SZ_2K; |
David Brownell | 2c53620 | 2006-04-14 18:05:38 -0700 | [diff] [blame] | 304 | cf->socket.io[0].res = io; |
Andrew Victor | 2c1f3b7 | 2006-02-21 12:56:52 +0200 | [diff] [blame] | 305 | |
| 306 | status = pcmcia_register_socket(&cf->socket); |
| 307 | if (status < 0) |
| 308 | goto fail2; |
| 309 | |
| 310 | return 0; |
| 311 | |
| 312 | fail2: |
David Brownell | 2c53620 | 2006-04-14 18:05:38 -0700 | [diff] [blame] | 313 | release_mem_region(io->start, io->end + 1 - io->start); |
Andrew Victor | 2c1f3b7 | 2006-02-21 12:56:52 +0200 | [diff] [blame] | 314 | fail1: |
Amol Lad | 3efa997 | 2006-10-20 14:44:18 -0700 | [diff] [blame] | 315 | if (cf->socket.io_offset) |
| 316 | iounmap((void __iomem *) cf->socket.io_offset); |
Andrew Victor | 2c1f3b7 | 2006-02-21 12:56:52 +0200 | [diff] [blame] | 317 | if (board->irq_pin) |
| 318 | free_irq(board->irq_pin, cf); |
| 319 | fail0a: |
David Brownell | 1fbece1 | 2006-07-01 13:39:55 -0700 | [diff] [blame] | 320 | device_init_wakeup(&pdev->dev, 0); |
Andrew Victor | 2c1f3b7 | 2006-02-21 12:56:52 +0200 | [diff] [blame] | 321 | free_irq(board->det_pin, cf); |
David Brownell | 0db6095 | 2006-04-19 06:37:48 -0700 | [diff] [blame] | 322 | device_init_wakeup(&pdev->dev, 0); |
Andrew Victor | 2c1f3b7 | 2006-02-21 12:56:52 +0200 | [diff] [blame] | 323 | fail0: |
| 324 | at91_sys_write(AT91_EBI_CSA, csa); |
| 325 | kfree(cf); |
| 326 | return status; |
| 327 | } |
| 328 | |
David Brownell | 0db6095 | 2006-04-19 06:37:48 -0700 | [diff] [blame] | 329 | static int __exit at91_cf_remove(struct platform_device *pdev) |
Andrew Victor | 2c1f3b7 | 2006-02-21 12:56:52 +0200 | [diff] [blame] | 330 | { |
David Brownell | 0db6095 | 2006-04-19 06:37:48 -0700 | [diff] [blame] | 331 | struct at91_cf_socket *cf = platform_get_drvdata(pdev); |
| 332 | struct at91_cf_data *board = cf->board; |
David Brownell | 2c53620 | 2006-04-14 18:05:38 -0700 | [diff] [blame] | 333 | struct resource *io = cf->socket.io[0].res; |
| 334 | unsigned int csa; |
Andrew Victor | 2c1f3b7 | 2006-02-21 12:56:52 +0200 | [diff] [blame] | 335 | |
| 336 | pcmcia_unregister_socket(&cf->socket); |
David Brownell | 0db6095 | 2006-04-19 06:37:48 -0700 | [diff] [blame] | 337 | if (board->irq_pin) |
| 338 | free_irq(board->irq_pin, cf); |
| 339 | free_irq(board->det_pin, cf); |
| 340 | device_init_wakeup(&pdev->dev, 0); |
Andrew Victor | 2c1f3b7 | 2006-02-21 12:56:52 +0200 | [diff] [blame] | 341 | iounmap((void __iomem *) cf->socket.io_offset); |
David Brownell | 2c53620 | 2006-04-14 18:05:38 -0700 | [diff] [blame] | 342 | release_mem_region(io->start, io->end + 1 - io->start); |
Andrew Victor | 2c1f3b7 | 2006-02-21 12:56:52 +0200 | [diff] [blame] | 343 | |
| 344 | csa = at91_sys_read(AT91_EBI_CSA); |
| 345 | at91_sys_write(AT91_EBI_CSA, csa & ~AT91_EBI_CS4A); |
| 346 | |
| 347 | kfree(cf); |
| 348 | return 0; |
| 349 | } |
| 350 | |
David Brownell | 0db6095 | 2006-04-19 06:37:48 -0700 | [diff] [blame] | 351 | #ifdef CONFIG_PM |
| 352 | |
| 353 | static int at91_cf_suspend(struct platform_device *pdev, pm_message_t mesg) |
| 354 | { |
| 355 | struct at91_cf_socket *cf = platform_get_drvdata(pdev); |
| 356 | struct at91_cf_data *board = cf->board; |
| 357 | |
| 358 | pcmcia_socket_dev_suspend(&pdev->dev, mesg); |
David Brownell | 1fbece1 | 2006-07-01 13:39:55 -0700 | [diff] [blame] | 359 | if (device_may_wakeup(&pdev->dev)) { |
David Brownell | 0db6095 | 2006-04-19 06:37:48 -0700 | [diff] [blame] | 360 | enable_irq_wake(board->det_pin); |
David Brownell | 1fbece1 | 2006-07-01 13:39:55 -0700 | [diff] [blame] | 361 | if (board->irq_pin) |
| 362 | enable_irq_wake(board->irq_pin); |
| 363 | } else { |
David Brownell | 0db6095 | 2006-04-19 06:37:48 -0700 | [diff] [blame] | 364 | disable_irq_wake(board->det_pin); |
David Brownell | 1fbece1 | 2006-07-01 13:39:55 -0700 | [diff] [blame] | 365 | if (board->irq_pin) |
| 366 | disable_irq_wake(board->irq_pin); |
David Brownell | 0db6095 | 2006-04-19 06:37:48 -0700 | [diff] [blame] | 367 | } |
David Brownell | 0db6095 | 2006-04-19 06:37:48 -0700 | [diff] [blame] | 368 | return 0; |
| 369 | } |
| 370 | |
| 371 | static int at91_cf_resume(struct platform_device *pdev) |
| 372 | { |
David Brownell | 0db6095 | 2006-04-19 06:37:48 -0700 | [diff] [blame] | 373 | pcmcia_socket_dev_resume(&pdev->dev); |
| 374 | return 0; |
| 375 | } |
| 376 | |
| 377 | #else |
| 378 | #define at91_cf_suspend NULL |
| 379 | #define at91_cf_resume NULL |
| 380 | #endif |
| 381 | |
| 382 | static struct platform_driver at91_cf_driver = { |
| 383 | .driver = { |
| 384 | .name = (char *) driver_name, |
| 385 | .owner = THIS_MODULE, |
| 386 | }, |
Andrew Victor | 2c1f3b7 | 2006-02-21 12:56:52 +0200 | [diff] [blame] | 387 | .probe = at91_cf_probe, |
| 388 | .remove = __exit_p(at91_cf_remove), |
David Brownell | 0db6095 | 2006-04-19 06:37:48 -0700 | [diff] [blame] | 389 | .suspend = at91_cf_suspend, |
| 390 | .resume = at91_cf_resume, |
Andrew Victor | 2c1f3b7 | 2006-02-21 12:56:52 +0200 | [diff] [blame] | 391 | }; |
| 392 | |
| 393 | /*--------------------------------------------------------------------------*/ |
| 394 | |
| 395 | static int __init at91_cf_init(void) |
| 396 | { |
David Brownell | 0db6095 | 2006-04-19 06:37:48 -0700 | [diff] [blame] | 397 | return platform_driver_register(&at91_cf_driver); |
Andrew Victor | 2c1f3b7 | 2006-02-21 12:56:52 +0200 | [diff] [blame] | 398 | } |
| 399 | module_init(at91_cf_init); |
| 400 | |
| 401 | static void __exit at91_cf_exit(void) |
| 402 | { |
David Brownell | 0db6095 | 2006-04-19 06:37:48 -0700 | [diff] [blame] | 403 | platform_driver_unregister(&at91_cf_driver); |
Andrew Victor | 2c1f3b7 | 2006-02-21 12:56:52 +0200 | [diff] [blame] | 404 | } |
| 405 | module_exit(at91_cf_exit); |
| 406 | |
| 407 | MODULE_DESCRIPTION("AT91 Compact Flash Driver"); |
| 408 | MODULE_AUTHOR("David Brownell"); |
| 409 | MODULE_LICENSE("GPL"); |