blob: 7eedb42f800c1f4591c5f4aaa5b7aa6ada01be64 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * drivers/pcmcia/sa1100_jornada720.c
3 *
4 * Jornada720 PCMCIA specific routines
5 *
6 */
7#include <linux/module.h>
8#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/device.h>
10#include <linux/errno.h>
11#include <linux/init.h>
12
Russell Kinga09e64f2008-08-05 16:14:15 +010013#include <mach/hardware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <asm/hardware/sa1111.h>
15#include <asm/mach-types.h>
16
17#include "sa1111_generic.h"
18
Kristoffer Ericson02e87d12009-09-21 17:03:56 -070019/* Does SOCKET1_3V actually do anything? */
20#define SOCKET0_POWER GPIO_GPIO0
21#define SOCKET0_3V GPIO_GPIO2
22#define SOCKET1_POWER (GPIO_GPIO1 | GPIO_GPIO3)
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#define SOCKET1_3V GPIO_GPIO3
24
25static int jornada720_pcmcia_hw_init(struct soc_pcmcia_socket *skt)
26{
Kristoffer Ericson02e87d12009-09-21 17:03:56 -070027 unsigned int pin = GPIO_A0 | GPIO_A1 | GPIO_A2 | GPIO_A3;
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Kristoffer Ericson02e87d12009-09-21 17:03:56 -070029 /*
30 * What is all this crap for?
31 */
32 GRER |= 0x00000002;
33 /* Set GPIO_A<3:1> to be outputs for PCMCIA/CF power controller: */
34 sa1111_set_io_dir(SA1111_DEV(skt->dev), pin, 0, 0);
35 sa1111_set_io(SA1111_DEV(skt->dev), pin, 0);
36 sa1111_set_sleep_io(SA1111_DEV(skt->dev), pin, 0);
37
38 return sa1111_pcmcia_hw_init(skt);
Linus Torvalds1da177e2005-04-16 15:20:36 -070039}
40
41static int
42jornada720_pcmcia_configure_socket(struct soc_pcmcia_socket *skt, const socket_state_t *state)
43{
Kristoffer Ericson02e87d12009-09-21 17:03:56 -070044 unsigned int pa_dwr_mask, pa_dwr_set;
45 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Kristoffer Ericson02e87d12009-09-21 17:03:56 -070047 printk(KERN_INFO "%s(): config socket %d vcc %d vpp %d\n", __func__,
48 skt->nr, state->Vcc, state->Vpp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Kristoffer Ericson02e87d12009-09-21 17:03:56 -070050 switch (skt->nr) {
51 case 0:
52 pa_dwr_mask = SOCKET0_POWER | SOCKET0_3V;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Kristoffer Ericson02e87d12009-09-21 17:03:56 -070054 switch (state->Vcc) {
55 default:
56 case 0:
57 pa_dwr_set = 0;
58 break;
59 case 33:
60 pa_dwr_set = SOCKET0_POWER | SOCKET0_3V;
61 break;
62 case 50:
63 pa_dwr_set = SOCKET0_POWER;
64 break;
65 }
66 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Kristoffer Ericson02e87d12009-09-21 17:03:56 -070068 case 1:
69 pa_dwr_mask = SOCKET1_POWER;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Kristoffer Ericson02e87d12009-09-21 17:03:56 -070071 switch (state->Vcc) {
72 default:
73 case 0:
74 pa_dwr_set = 0;
75 break;
76 case 33:
77 pa_dwr_set = SOCKET1_POWER;
78 break;
79 case 50:
80 pa_dwr_set = SOCKET1_POWER;
81 break;
82 }
83 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
Kristoffer Ericson02e87d12009-09-21 17:03:56 -070085 default:
86 return -1;
87 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Kristoffer Ericson02e87d12009-09-21 17:03:56 -070089 if (state->Vpp != state->Vcc && state->Vpp != 0) {
90 printk(KERN_ERR "%s(): slot cannot support VPP %u\n",
91 __func__, state->Vpp);
92 return -EPERM;
93 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Kristoffer Ericson02e87d12009-09-21 17:03:56 -070095 ret = sa1111_pcmcia_configure_socket(skt, state);
96 if (ret == 0) {
97 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Kristoffer Ericson02e87d12009-09-21 17:03:56 -070099 local_irq_save(flags);
100 sa1111_set_io(SA1111_DEV(skt->dev), pa_dwr_mask, pa_dwr_set);
101 local_irq_restore(flags);
102 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Kristoffer Ericson02e87d12009-09-21 17:03:56 -0700104 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105}
106
107static struct pcmcia_low_level jornada720_pcmcia_ops = {
Kristoffer Ericson02e87d12009-09-21 17:03:56 -0700108 .owner = THIS_MODULE,
109 .hw_init = jornada720_pcmcia_hw_init,
110 .hw_shutdown = sa1111_pcmcia_hw_shutdown,
111 .socket_state = sa1111_pcmcia_socket_state,
112 .configure_socket = jornada720_pcmcia_configure_socket,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Kristoffer Ericson02e87d12009-09-21 17:03:56 -0700114 .socket_init = sa1111_pcmcia_socket_init,
115 .socket_suspend = sa1111_pcmcia_socket_suspend,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116};
117
Kristoffer Ericson85e6c7a2008-02-03 22:08:10 +0100118int __devinit pcmcia_jornada720_init(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119{
120 int ret = -ENODEV;
121
122 if (machine_is_jornada720())
123 ret = sa11xx_drv_pcmcia_probe(dev, &jornada720_pcmcia_ops, 0, 2);
124
125 return ret;
126}