blob: 385e145e1acc5688bed7b7869fe6aa40020ada9d [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>
18
19#include <pcmcia/ss.h>
20
21#include <asm/hardware.h>
22#include <asm/io.h>
23#include <asm/sizes.h>
David Brownell4c1fc442008-02-04 22:27:42 -080024#include <asm/gpio.h>
Andrew Victor2c1f3b72006-02-21 12:56:52 +020025
Andrew Victor2c1f3b72006-02-21 12:56:52 +020026#include <asm/arch/board.h>
Andrew Victor55d8bae2006-11-30 17:16:43 +010027#include <asm/arch/at91rm9200_mc.h>
Andrew Victor2c1f3b72006-02-21 12:56:52 +020028
29
Andrew Victor2c1f3b72006-02-21 12:56:52 +020030/*
31 * A0..A10 work in each range; A23 indicates I/O space; A25 is CFRNW;
32 * some other bit in {A24,A22..A11} is nREG to flag memory access
33 * (vs attributes). So more than 2KB/region would just be waste.
Andrew Victorebe5cfb2006-11-06 15:56:07 +020034 * Note: These are offsets from the physical base address.
Andrew Victor2c1f3b72006-02-21 12:56:52 +020035 */
Andrew Victorebe5cfb2006-11-06 15:56:07 +020036#define CF_ATTR_PHYS (0)
37#define CF_IO_PHYS (1 << 23)
38#define CF_MEM_PHYS (0x017ff800)
Andrew Victor2c1f3b72006-02-21 12:56:52 +020039
40/*--------------------------------------------------------------------------*/
41
42static const char driver_name[] = "at91_cf";
43
44struct 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;
Andrew Victorebe5cfb2006-11-06 15:56:07 +020051
52 unsigned long phys_baseaddr;
Andrew Victor2c1f3b72006-02-21 12:56:52 +020053};
54
55#define SZ_2K (2 * SZ_1K)
56
57static 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
73 if (irq == cf->board->det_pin) {
74 unsigned present = at91_cf_present(cf);
75
76 /* kick pccard as needed */
77 if (present != cf->present) {
78 cf->present = present;
David Brownell2c536202006-04-14 18:05:38 -070079 pr_debug("%s: card %s\n", driver_name,
80 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)) {
99 int rdy = cf->board->irq_pin; /* RDY/nIRQ */
100 int vcc = cf->board->vcc_pin;
101
102 *sp = SS_DETECT | SS_3VCARD;
David Brownell4c1fc442008-02-04 22:27:42 -0800103 if (!rdy || gpio_get_value(rdy))
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200104 *sp |= SS_READY;
David Brownell4c1fc442008-02-04 22:27:42 -0800105 if (!vcc || gpio_get_value(vcc))
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 */
121 if (cf->board->vcc_pin) {
122 switch (s->Vcc) {
123 case 0:
David Brownell4c1fc442008-02-04 22:27:42 -0800124 gpio_set_value(cf->board->vcc_pin, 0);
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200125 break;
126 case 33:
David Brownell4c1fc442008-02-04 22:27:42 -0800127 gpio_set_value(cf->board->vcc_pin, 1);
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200128 break;
129 default:
130 return -EINVAL;
131 }
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
137 pr_debug("%s: Vcc %d, io_irq %d, flags %04x csc %04x\n",
138 driver_name, s->Vcc, s->io_irq, s->flags, s->csc_mask);
139
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.
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200159 */
Andrew Victor40a00172006-12-04 12:26:36 +0200160 csr = at91_sys_read(AT91_SMC_CSR(cf->board->chipselect)) & ~AT91_SMC_DBW;
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200161
162 /*
163 * NOTE: this CF controller ignores IOIS16, so we can't really do
164 * MAP_AUTOSZ. The 16bit mode allows single byte access on either
165 * D0-D7 (even addr) or D8-D15 (odd), so it's close enough for many
166 * purposes (and handles ide-cs).
167 *
168 * The 8bit mode is needed for odd byte access on D0-D7. It seems
169 * some cards only like that way to get at the odd byte, despite
170 * CF 3.0 spec table 35 also giving the D8-D15 option.
171 */
Andrew Victorebe5cfb2006-11-06 15:56:07 +0200172 if (!(io->flags & (MAP_16BIT | MAP_AUTOSZ))) {
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200173 csr |= AT91_SMC_DBW_8;
174 pr_debug("%s: 8bit i/o bus\n", driver_name);
175 } else {
176 csr |= AT91_SMC_DBW_16;
177 pr_debug("%s: 16bit i/o bus\n", driver_name);
178 }
Andrew Victor40a00172006-12-04 12:26:36 +0200179 at91_sys_write(AT91_SMC_CSR(cf->board->chipselect), csr);
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200180
181 io->start = cf->socket.io_offset;
182 io->stop = io->start + SZ_2K - 1;
183
184 return 0;
185}
186
187/* pcmcia layer maps/unmaps mem regions */
David Brownell2c536202006-04-14 18:05:38 -0700188static int
189at91_cf_set_mem_map(struct pcmcia_socket *s, struct pccard_mem_map *map)
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200190{
191 struct at91_cf_socket *cf;
192
193 if (map->card_start)
194 return -EINVAL;
195
196 cf = container_of(s, struct at91_cf_socket, socket);
197
Andrew Victorebe5cfb2006-11-06 15:56:07 +0200198 map->flags &= (MAP_ACTIVE | MAP_ATTRIB | MAP_16BIT);
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200199 if (map->flags & MAP_ATTRIB)
Andrew Victorebe5cfb2006-11-06 15:56:07 +0200200 map->static_start = cf->phys_baseaddr + CF_ATTR_PHYS;
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200201 else
Andrew Victorebe5cfb2006-11-06 15:56:07 +0200202 map->static_start = cf->phys_baseaddr + CF_MEM_PHYS;
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200203
204 return 0;
205}
206
207static struct pccard_operations at91_cf_ops = {
208 .init = at91_cf_ss_init,
209 .suspend = at91_cf_ss_suspend,
210 .get_status = at91_cf_get_status,
211 .set_socket = at91_cf_set_socket,
212 .set_io_map = at91_cf_set_io_map,
213 .set_mem_map = at91_cf_set_mem_map,
214};
215
216/*--------------------------------------------------------------------------*/
217
David Brownell0db60952006-04-19 06:37:48 -0700218static int __init at91_cf_probe(struct platform_device *pdev)
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200219{
220 struct at91_cf_socket *cf;
David Brownell0db60952006-04-19 06:37:48 -0700221 struct at91_cf_data *board = pdev->dev.platform_data;
David Brownell2c536202006-04-14 18:05:38 -0700222 struct resource *io;
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200223 int status;
224
225 if (!board || !board->det_pin || !board->rst_pin)
226 return -ENODEV;
227
David Brownell2c536202006-04-14 18:05:38 -0700228 io = platform_get_resource(pdev, IORESOURCE_MEM, 0);
229 if (!io)
230 return -ENODEV;
231
Robert P. J. Daycd861282006-12-13 00:34:52 -0800232 cf = kzalloc(sizeof *cf, GFP_KERNEL);
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200233 if (!cf)
234 return -ENOMEM;
235
236 cf->board = board;
237 cf->pdev = pdev;
Andrew Victorebe5cfb2006-11-06 15:56:07 +0200238 cf->phys_baseaddr = io->start;
David Brownell0db60952006-04-19 06:37:48 -0700239 platform_set_drvdata(pdev, cf);
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200240
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200241 /* must be a GPIO; ergo must trigger on both edges */
David Brownell4c1fc442008-02-04 22:27:42 -0800242 status = gpio_request(board->det_pin, "cf_det");
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200243 if (status < 0)
244 goto fail0;
David Brownell4c1fc442008-02-04 22:27:42 -0800245 status = request_irq(board->det_pin, at91_cf_irq, 0, driver_name, cf);
246 if (status < 0)
247 goto fail00;
David Brownell0db60952006-04-19 06:37:48 -0700248 device_init_wakeup(&pdev->dev, 1);
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200249
David Brownell4c1fc442008-02-04 22:27:42 -0800250 status = gpio_request(board->rst_pin, "cf_rst");
251 if (status < 0)
252 goto fail0a;
253
254 if (board->vcc_pin) {
255 status = gpio_request(board->vcc_pin, "cf_vcc");
256 if (status < 0)
257 goto fail0b;
258 }
259
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200260 /*
261 * The card driver will request this irq later as needed.
262 * but it causes lots of "irqNN: nobody cared" messages
263 * unless we report that we handle everything (sigh).
264 * (Note: DK board doesn't wire the IRQ pin...)
265 */
266 if (board->irq_pin) {
David Brownell4c1fc442008-02-04 22:27:42 -0800267 status = gpio_request(board->irq_pin, "cf_irq");
268 if (status < 0)
269 goto fail0c;
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200270 status = request_irq(board->irq_pin, at91_cf_irq,
Thomas Gleixnerdace1452006-07-01 19:29:38 -0700271 IRQF_SHARED, driver_name, cf);
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200272 if (status < 0)
David Brownell4c1fc442008-02-04 22:27:42 -0800273 goto fail0d;
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200274 cf->socket.pci_irq = board->irq_pin;
David Brownell2c536202006-04-14 18:05:38 -0700275 } else
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200276 cf->socket.pci_irq = NR_IRQS + 1;
277
278 /* pcmcia layer only remaps "real" memory not iospace */
David Brownell4c1fc442008-02-04 22:27:42 -0800279 cf->socket.io_offset = (unsigned long)
280 ioremap(cf->phys_baseaddr + CF_IO_PHYS, SZ_2K);
Andrew Victorebe5cfb2006-11-06 15:56:07 +0200281 if (!cf->socket.io_offset) {
282 status = -ENXIO;
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200283 goto fail1;
Andrew Victorebe5cfb2006-11-06 15:56:07 +0200284 }
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200285
Andrew Victor40a00172006-12-04 12:26:36 +0200286 /* reserve chip-select regions */
David Brownell2c536202006-04-14 18:05:38 -0700287 if (!request_mem_region(io->start, io->end + 1 - io->start,
Andrew Victorebe5cfb2006-11-06 15:56:07 +0200288 driver_name)) {
289 status = -ENXIO;
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200290 goto fail1;
Andrew Victorebe5cfb2006-11-06 15:56:07 +0200291 }
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200292
293 pr_info("%s: irqs det #%d, io #%d\n", driver_name,
294 board->det_pin, board->irq_pin);
295
296 cf->socket.owner = THIS_MODULE;
Alexey Dobriyane4a3c3f2007-02-13 22:39:27 -0800297 cf->socket.dev.parent = &pdev->dev;
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200298 cf->socket.ops = &at91_cf_ops;
299 cf->socket.resource_ops = &pccard_static_ops;
300 cf->socket.features = SS_CAP_PCCARD | SS_CAP_STATIC_MAP
301 | SS_CAP_MEM_ALIGN;
302 cf->socket.map_size = SZ_2K;
David Brownell2c536202006-04-14 18:05:38 -0700303 cf->socket.io[0].res = io;
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200304
305 status = pcmcia_register_socket(&cf->socket);
306 if (status < 0)
307 goto fail2;
308
309 return 0;
310
311fail2:
David Brownell2c536202006-04-14 18:05:38 -0700312 release_mem_region(io->start, io->end + 1 - io->start);
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200313fail1:
Amol Lad3efa9972006-10-20 14:44:18 -0700314 if (cf->socket.io_offset)
315 iounmap((void __iomem *) cf->socket.io_offset);
David Brownell4c1fc442008-02-04 22:27:42 -0800316 if (board->irq_pin) {
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200317 free_irq(board->irq_pin, cf);
David Brownell4c1fc442008-02-04 22:27:42 -0800318fail0d:
319 gpio_free(board->irq_pin);
320 }
321fail0c:
322 if (board->vcc_pin)
323 gpio_free(board->vcc_pin);
324fail0b:
325 gpio_free(board->rst_pin);
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200326fail0a:
David Brownell1fbece12006-07-01 13:39:55 -0700327 device_init_wakeup(&pdev->dev, 0);
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200328 free_irq(board->det_pin, cf);
David Brownell4c1fc442008-02-04 22:27:42 -0800329fail00:
330 gpio_free(board->det_pin);
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200331fail0:
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200332 kfree(cf);
333 return status;
334}
335
David Brownell0db60952006-04-19 06:37:48 -0700336static int __exit at91_cf_remove(struct platform_device *pdev)
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200337{
David Brownell0db60952006-04-19 06:37:48 -0700338 struct at91_cf_socket *cf = platform_get_drvdata(pdev);
339 struct at91_cf_data *board = cf->board;
David Brownell2c536202006-04-14 18:05:38 -0700340 struct resource *io = cf->socket.io[0].res;
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200341
342 pcmcia_unregister_socket(&cf->socket);
David Brownell4c1fc442008-02-04 22:27:42 -0800343 release_mem_region(io->start, io->end + 1 - io->start);
344 iounmap((void __iomem *) cf->socket.io_offset);
345 if (board->irq_pin) {
David Brownell0db60952006-04-19 06:37:48 -0700346 free_irq(board->irq_pin, cf);
David Brownell4c1fc442008-02-04 22:27:42 -0800347 gpio_free(board->irq_pin);
348 }
349 if (board->vcc_pin)
350 gpio_free(board->vcc_pin);
351 gpio_free(board->rst_pin);
David Brownell0db60952006-04-19 06:37:48 -0700352 device_init_wakeup(&pdev->dev, 0);
Andrew Victorebe5cfb2006-11-06 15:56:07 +0200353 free_irq(board->det_pin, cf);
David Brownell4c1fc442008-02-04 22:27:42 -0800354 gpio_free(board->det_pin);
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200355 kfree(cf);
356 return 0;
357}
358
David Brownell0db60952006-04-19 06:37:48 -0700359#ifdef CONFIG_PM
360
361static int at91_cf_suspend(struct platform_device *pdev, pm_message_t mesg)
362{
363 struct at91_cf_socket *cf = platform_get_drvdata(pdev);
364 struct at91_cf_data *board = cf->board;
365
366 pcmcia_socket_dev_suspend(&pdev->dev, mesg);
David Brownell1fbece12006-07-01 13:39:55 -0700367 if (device_may_wakeup(&pdev->dev)) {
David Brownell0db60952006-04-19 06:37:48 -0700368 enable_irq_wake(board->det_pin);
David Brownell1fbece12006-07-01 13:39:55 -0700369 if (board->irq_pin)
370 enable_irq_wake(board->irq_pin);
David Brownell0db60952006-04-19 06:37:48 -0700371 }
David Brownell0db60952006-04-19 06:37:48 -0700372 return 0;
373}
374
375static int at91_cf_resume(struct platform_device *pdev)
376{
Marc Pignat9af20372007-05-31 00:40:44 -0700377 struct at91_cf_socket *cf = platform_get_drvdata(pdev);
378 struct at91_cf_data *board = cf->board;
379
380 if (device_may_wakeup(&pdev->dev)) {
381 disable_irq_wake(board->det_pin);
382 if (board->irq_pin)
383 disable_irq_wake(board->irq_pin);
384 }
385
David Brownell0db60952006-04-19 06:37:48 -0700386 pcmcia_socket_dev_resume(&pdev->dev);
387 return 0;
388}
389
390#else
391#define at91_cf_suspend NULL
392#define at91_cf_resume NULL
393#endif
394
395static struct platform_driver at91_cf_driver = {
396 .driver = {
397 .name = (char *) driver_name,
398 .owner = THIS_MODULE,
399 },
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200400 .remove = __exit_p(at91_cf_remove),
David Brownell0db60952006-04-19 06:37:48 -0700401 .suspend = at91_cf_suspend,
402 .resume = at91_cf_resume,
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200403};
404
405/*--------------------------------------------------------------------------*/
406
407static int __init at91_cf_init(void)
408{
David Brownell02c83592007-05-06 14:48:42 -0700409 return platform_driver_probe(&at91_cf_driver, at91_cf_probe);
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200410}
411module_init(at91_cf_init);
412
413static void __exit at91_cf_exit(void)
414{
David Brownell0db60952006-04-19 06:37:48 -0700415 platform_driver_unregister(&at91_cf_driver);
Andrew Victor2c1f3b72006-02-21 12:56:52 +0200416}
417module_exit(at91_cf_exit);
418
419MODULE_DESCRIPTION("AT91 Compact Flash Driver");
420MODULE_AUTHOR("David Brownell");
421MODULE_LICENSE("GPL");