blob: 4e2f501e55486dbee297865f03148e5b46d09d91 [file] [log] [blame]
David Brownellf74e48a2005-09-09 13:03:28 -07001/*
2 * omap_cf.c -- OMAP 16xx 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>
Russell Kingd052d1b2005-10-29 19:07:23 +010014#include <linux/platform_device.h>
David Brownellf74e48a2005-09-09 13:03:28 -070015#include <linux/errno.h>
16#include <linux/init.h>
17#include <linux/delay.h>
18#include <linux/interrupt.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090019#include <linux/slab.h>
David Brownellf74e48a2005-09-09 13:03:28 -070020
21#include <pcmcia/ss.h>
22
Russell Kinga09e64f2008-08-05 16:14:15 +010023#include <mach/hardware.h>
David Brownellf74e48a2005-09-09 13:03:28 -070024#include <asm/io.h>
David Brownellf74e48a2005-09-09 13:03:28 -070025#include <asm/sizes.h>
26
Tony Lindgren70c494c2012-09-19 10:46:56 -070027#include <mach/mux.h>
Tony Lindgren54b693d2012-10-02 13:39:28 -070028#include <mach/tc.h>
David Brownellf74e48a2005-09-09 13:03:28 -070029
30
31/* NOTE: don't expect this to support many I/O cards. The 16xx chips have
32 * hard-wired timings to support Compact Flash memory cards; they won't work
33 * with various other devices (like WLAN adapters) without some external
34 * logic to help out.
35 *
36 * NOTE: CF controller docs disagree with address space docs as to where
37 * CF_BASE really lives; this is a doc erratum.
38 */
39#define CF_BASE 0xfffe2800
40
41/* status; read after IRQ */
Tony Lindgren030b1542008-07-03 12:24:41 +030042#define CF_STATUS (CF_BASE + 0x00)
David Brownellf74e48a2005-09-09 13:03:28 -070043# define CF_STATUS_BAD_READ (1 << 2)
44# define CF_STATUS_BAD_WRITE (1 << 1)
45# define CF_STATUS_CARD_DETECT (1 << 0)
46
47/* which chipselect (CS0..CS3) is used for CF (active low) */
Tony Lindgren030b1542008-07-03 12:24:41 +030048#define CF_CFG (CF_BASE + 0x02)
David Brownellf74e48a2005-09-09 13:03:28 -070049
50/* card reset */
Tony Lindgren030b1542008-07-03 12:24:41 +030051#define CF_CONTROL (CF_BASE + 0x04)
David Brownellf74e48a2005-09-09 13:03:28 -070052# define CF_CONTROL_RESET (1 << 0)
53
Tony Lindgren030b1542008-07-03 12:24:41 +030054#define omap_cf_present() (!(omap_readw(CF_STATUS) & CF_STATUS_CARD_DETECT))
David Brownellf74e48a2005-09-09 13:03:28 -070055
56/*--------------------------------------------------------------------------*/
57
58static const char driver_name[] = "omap_cf";
59
60struct omap_cf_socket {
61 struct pcmcia_socket socket;
62
63 struct timer_list timer;
64 unsigned present:1;
65 unsigned active:1;
66
67 struct platform_device *pdev;
68 unsigned long phys_cf;
69 u_int irq;
David Brownelldcb9c392006-09-30 23:28:19 -070070 struct resource iomem;
David Brownellf74e48a2005-09-09 13:03:28 -070071};
72
73#define POLL_INTERVAL (2 * HZ)
74
David Brownellf74e48a2005-09-09 13:03:28 -070075/*--------------------------------------------------------------------------*/
76
77static int omap_cf_ss_init(struct pcmcia_socket *s)
78{
79 return 0;
80}
81
82/* the timer is primarily to kick this socket's pccardd */
83static void omap_cf_timer(unsigned long _cf)
84{
85 struct omap_cf_socket *cf = (void *) _cf;
86 unsigned present = omap_cf_present();
87
88 if (present != cf->present) {
89 cf->present = present;
90 pr_debug("%s: card %s\n", driver_name,
91 present ? "present" : "gone");
92 pcmcia_parse_events(&cf->socket, SS_DETECT);
93 }
94
95 if (cf->active)
96 mod_timer(&cf->timer, jiffies + POLL_INTERVAL);
97}
98
99/* This irq handler prevents "irqNNN: nobody cared" messages as drivers
100 * claim the card's IRQ. It may also detect some card insertions, but
101 * not removals; it can't always eliminate timer irqs.
102 */
David Howells7d12e782006-10-05 14:55:46 +0100103static irqreturn_t omap_cf_irq(int irq, void *_cf)
David Brownellf74e48a2005-09-09 13:03:28 -0700104{
105 omap_cf_timer((unsigned long)_cf);
106 return IRQ_HANDLED;
107}
108
109static int omap_cf_get_status(struct pcmcia_socket *s, u_int *sp)
110{
111 if (!sp)
112 return -EINVAL;
113
David Brownelldcb9c392006-09-30 23:28:19 -0700114 /* NOTE CF is always 3VCARD */
David Brownellf74e48a2005-09-09 13:03:28 -0700115 if (omap_cf_present()) {
116 struct omap_cf_socket *cf;
117
118 *sp = SS_READY | SS_DETECT | SS_POWERON | SS_3VCARD;
119 cf = container_of(s, struct omap_cf_socket, socket);
Dominik Brodowski6f840af2010-03-07 10:51:23 +0100120 s->pcmcia_irq = 0;
David Brownelldcb9c392006-09-30 23:28:19 -0700121 s->pci_irq = cf->irq;
David Brownellf74e48a2005-09-09 13:03:28 -0700122 } else
123 *sp = 0;
124 return 0;
125}
126
127static int
128omap_cf_set_socket(struct pcmcia_socket *sock, struct socket_state_t *s)
129{
130 u16 control;
131
David Brownelldcb9c392006-09-30 23:28:19 -0700132 /* REVISIT some non-OSK boards may support power switching */
David Brownellf74e48a2005-09-09 13:03:28 -0700133 switch (s->Vcc) {
134 case 0:
135 case 33:
136 break;
137 default:
138 return -EINVAL;
139 }
140
Tony Lindgren030b1542008-07-03 12:24:41 +0300141 control = omap_readw(CF_CONTROL);
David Brownellf74e48a2005-09-09 13:03:28 -0700142 if (s->flags & SS_RESET)
Tony Lindgren030b1542008-07-03 12:24:41 +0300143 omap_writew(CF_CONTROL_RESET, CF_CONTROL);
David Brownellf74e48a2005-09-09 13:03:28 -0700144 else
Tony Lindgren030b1542008-07-03 12:24:41 +0300145 omap_writew(0, CF_CONTROL);
David Brownellf74e48a2005-09-09 13:03:28 -0700146
147 pr_debug("%s: Vcc %d, io_irq %d, flags %04x csc %04x\n",
148 driver_name, s->Vcc, s->io_irq, s->flags, s->csc_mask);
149
150 return 0;
151}
152
153static int omap_cf_ss_suspend(struct pcmcia_socket *s)
154{
Harvey Harrison2e11cb42008-05-01 04:34:54 -0700155 pr_debug("%s: %s\n", driver_name, __func__);
David Brownellf74e48a2005-09-09 13:03:28 -0700156 return omap_cf_set_socket(s, &dead_socket);
157}
158
159/* regions are 2K each: mem, attrib, io (and reserved-for-ide) */
160
161static int
162omap_cf_set_io_map(struct pcmcia_socket *s, struct pccard_io_map *io)
163{
164 struct omap_cf_socket *cf;
165
166 cf = container_of(s, struct omap_cf_socket, socket);
167 io->flags &= MAP_ACTIVE|MAP_ATTRIB|MAP_16BIT;
168 io->start = cf->phys_cf + SZ_4K;
169 io->stop = io->start + SZ_2K - 1;
170 return 0;
171}
172
173static int
174omap_cf_set_mem_map(struct pcmcia_socket *s, struct pccard_mem_map *map)
175{
176 struct omap_cf_socket *cf;
177
178 if (map->card_start)
179 return -EINVAL;
180 cf = container_of(s, struct omap_cf_socket, socket);
181 map->static_start = cf->phys_cf;
182 map->flags &= MAP_ACTIVE|MAP_ATTRIB|MAP_16BIT;
183 if (map->flags & MAP_ATTRIB)
184 map->static_start += SZ_2K;
185 return 0;
186}
187
188static struct pccard_operations omap_cf_ops = {
189 .init = omap_cf_ss_init,
190 .suspend = omap_cf_ss_suspend,
191 .get_status = omap_cf_get_status,
192 .set_socket = omap_cf_set_socket,
193 .set_io_map = omap_cf_set_io_map,
194 .set_mem_map = omap_cf_set_mem_map,
195};
196
197/*--------------------------------------------------------------------------*/
198
199/*
200 * NOTE: right now the only board-specific platform_data is
201 * "what chipselect is used". Boards could want more.
202 */
203
David Brownellb6d2ccc2007-04-08 16:04:02 -0700204static int __init omap_cf_probe(struct platform_device *pdev)
David Brownellf74e48a2005-09-09 13:03:28 -0700205{
206 unsigned seg;
207 struct omap_cf_socket *cf;
David Brownellf74e48a2005-09-09 13:03:28 -0700208 int irq;
209 int status;
210
David Brownellb6d2ccc2007-04-08 16:04:02 -0700211 seg = (int) pdev->dev.platform_data;
David Brownellf74e48a2005-09-09 13:03:28 -0700212 if (seg == 0 || seg > 3)
213 return -ENODEV;
214
215 /* either CFLASH.IREQ (INT_1610_CF) or some GPIO */
216 irq = platform_get_irq(pdev, 0);
David Vrabel48944732006-01-19 17:56:29 +0000217 if (irq < 0)
David Brownellf74e48a2005-09-09 13:03:28 -0700218 return -EINVAL;
219
Robert P. J. Daycd861282006-12-13 00:34:52 -0800220 cf = kzalloc(sizeof *cf, GFP_KERNEL);
David Brownellf74e48a2005-09-09 13:03:28 -0700221 if (!cf)
222 return -ENOMEM;
Vaishali Thakkardae6cda2015-02-11 16:25:38 +0530223 setup_timer(&cf->timer, omap_cf_timer, (unsigned long)cf);
David Brownellf74e48a2005-09-09 13:03:28 -0700224
225 cf->pdev = pdev;
David Brownellb6d2ccc2007-04-08 16:04:02 -0700226 platform_set_drvdata(pdev, cf);
David Brownellf74e48a2005-09-09 13:03:28 -0700227
228 /* this primarily just shuts up irq handling noise */
Thomas Gleixnerdace1452006-07-01 19:29:38 -0700229 status = request_irq(irq, omap_cf_irq, IRQF_SHARED,
David Brownellf74e48a2005-09-09 13:03:28 -0700230 driver_name, cf);
231 if (status < 0)
232 goto fail0;
233 cf->irq = irq;
234 cf->socket.pci_irq = irq;
235
236 switch (seg) {
237 /* NOTE: CS0 could be configured too ... */
238 case 1:
239 cf->phys_cf = OMAP_CS1_PHYS;
240 break;
241 case 2:
242 cf->phys_cf = OMAP_CS2_PHYS;
243 break;
244 case 3:
245 cf->phys_cf = omap_cs3_phys();
246 break;
247 default:
248 goto fail1;
249 }
David Brownelldcb9c392006-09-30 23:28:19 -0700250 cf->iomem.start = cf->phys_cf;
251 cf->iomem.end = cf->iomem.end + SZ_8K - 1;
252 cf->iomem.flags = IORESOURCE_MEM;
David Brownellf74e48a2005-09-09 13:03:28 -0700253
254 /* pcmcia layer only remaps "real" memory */
255 cf->socket.io_offset = (unsigned long)
256 ioremap(cf->phys_cf + SZ_4K, SZ_2K);
257 if (!cf->socket.io_offset)
258 goto fail1;
259
260 if (!request_mem_region(cf->phys_cf, SZ_8K, driver_name))
261 goto fail1;
262
263 /* NOTE: CF conflicts with MMC1 */
264 omap_cfg_reg(W11_1610_CF_CD1);
265 omap_cfg_reg(P11_1610_CF_CD2);
266 omap_cfg_reg(R11_1610_CF_IOIS16);
267 omap_cfg_reg(V10_1610_CF_IREQ);
268 omap_cfg_reg(W10_1610_CF_RESET);
269
Tony Lindgren030b1542008-07-03 12:24:41 +0300270 omap_writew(~(1 << seg), CF_CFG);
David Brownellf74e48a2005-09-09 13:03:28 -0700271
272 pr_info("%s: cs%d on irq %d\n", driver_name, seg, irq);
273
274 /* NOTE: better EMIFS setup might support more cards; but the
275 * TRM only shows how to affect regular flash signals, not their
276 * CF/PCMCIA variants...
277 */
278 pr_debug("%s: cs%d, previous ccs %08x acs %08x\n", driver_name,
Tony Lindgren030b1542008-07-03 12:24:41 +0300279 seg, omap_readl(EMIFS_CCS(seg)), omap_readl(EMIFS_ACS(seg)));
280 omap_writel(0x0004a1b3, EMIFS_CCS(seg)); /* synch mode 4 etc */
281 omap_writel(0x00000000, EMIFS_ACS(seg)); /* OE hold/setup */
David Brownellf74e48a2005-09-09 13:03:28 -0700282
283 /* CF uses armxor_ck, which is "always" available */
284
285 pr_debug("%s: sts %04x cfg %04x control %04x %s\n", driver_name,
Tony Lindgren030b1542008-07-03 12:24:41 +0300286 omap_readw(CF_STATUS), omap_readw(CF_CFG),
287 omap_readw(CF_CONTROL),
David Brownellf74e48a2005-09-09 13:03:28 -0700288 omap_cf_present() ? "present" : "(not present)");
289
290 cf->socket.owner = THIS_MODULE;
David Brownellb6d2ccc2007-04-08 16:04:02 -0700291 cf->socket.dev.parent = &pdev->dev;
David Brownellf74e48a2005-09-09 13:03:28 -0700292 cf->socket.ops = &omap_cf_ops;
293 cf->socket.resource_ops = &pccard_static_ops;
294 cf->socket.features = SS_CAP_PCCARD | SS_CAP_STATIC_MAP
295 | SS_CAP_MEM_ALIGN;
296 cf->socket.map_size = SZ_2K;
David Brownelldcb9c392006-09-30 23:28:19 -0700297 cf->socket.io[0].res = &cf->iomem;
David Brownellf74e48a2005-09-09 13:03:28 -0700298
299 status = pcmcia_register_socket(&cf->socket);
300 if (status < 0)
301 goto fail2;
302
303 cf->active = 1;
304 mod_timer(&cf->timer, jiffies + POLL_INTERVAL);
305 return 0;
306
307fail2:
David Brownellf74e48a2005-09-09 13:03:28 -0700308 release_mem_region(cf->phys_cf, SZ_8K);
309fail1:
Amol Lad3efa9972006-10-20 14:44:18 -0700310 if (cf->socket.io_offset)
311 iounmap((void __iomem *) cf->socket.io_offset);
David Brownellf74e48a2005-09-09 13:03:28 -0700312 free_irq(irq, cf);
313fail0:
314 kfree(cf);
315 return status;
316}
317
David Brownellb6d2ccc2007-04-08 16:04:02 -0700318static int __exit omap_cf_remove(struct platform_device *pdev)
David Brownellf74e48a2005-09-09 13:03:28 -0700319{
David Brownellb6d2ccc2007-04-08 16:04:02 -0700320 struct omap_cf_socket *cf = platform_get_drvdata(pdev);
David Brownellf74e48a2005-09-09 13:03:28 -0700321
322 cf->active = 0;
323 pcmcia_unregister_socket(&cf->socket);
324 del_timer_sync(&cf->timer);
325 iounmap((void __iomem *) cf->socket.io_offset);
326 release_mem_region(cf->phys_cf, SZ_8K);
327 free_irq(cf->irq, cf);
328 kfree(cf);
329 return 0;
330}
331
David Brownellb6d2ccc2007-04-08 16:04:02 -0700332static struct platform_driver omap_cf_driver = {
333 .driver = {
334 .name = (char *) driver_name,
335 },
336 .remove = __exit_p(omap_cf_remove),
David Brownellf74e48a2005-09-09 13:03:28 -0700337};
338
339static int __init omap_cf_init(void)
340{
341 if (cpu_is_omap16xx())
David Brownellb6d2ccc2007-04-08 16:04:02 -0700342 return platform_driver_probe(&omap_cf_driver, omap_cf_probe);
David Brownelldcb9c392006-09-30 23:28:19 -0700343 return -ENODEV;
David Brownellf74e48a2005-09-09 13:03:28 -0700344}
345
346static void __exit omap_cf_exit(void)
347{
348 if (cpu_is_omap16xx())
David Brownellb6d2ccc2007-04-08 16:04:02 -0700349 platform_driver_unregister(&omap_cf_driver);
David Brownellf74e48a2005-09-09 13:03:28 -0700350}
351
352module_init(omap_cf_init);
353module_exit(omap_cf_exit);
354
355MODULE_DESCRIPTION("OMAP CF Driver");
356MODULE_LICENSE("GPL");
Kay Sievers12c2c012008-04-15 14:34:34 -0700357MODULE_ALIAS("platform:omap_cf");