1#include <common.h>
2#include <mpc8xx.h>
3#include <pcmcia.h>
4
5#undef CONFIG_PCMCIA
6
7#if defined(CONFIG_CMD_PCMCIA)
8#define CONFIG_PCMCIA
9#endif
10
11#if (defined(CONFIG_CMD_IDE)) && defined(CONFIG_IDE_8xx_PCCARD)
12#define CONFIG_PCMCIA
13#endif
14
15#ifdef CONFIG_PCMCIA
16
17#define PCMCIA_BOARD_MSG "UC100"
18
19
20
21
22
23static void cfg_ports (void)
24{
25 volatile immap_t *immap;
26
27 immap = (immap_t *)CONFIG_SYS_IMMR;
28
29
30
31
32 immap->im_ioport.iop_padat &= ~0x8000;
33 immap->im_ioport.iop_padir |= 0x8000;
34
35 debug ("Set Port A: PAR: %08x DIR: %08x DAT: %08x\n",
36 immap->im_ioport.iop_papar, immap->im_ioport.iop_padir,
37 immap->im_ioport.iop_padat);
38}
39
40int pcmcia_hardware_enable(int slot)
41{
42 volatile immap_t *immap;
43 volatile pcmconf8xx_t *pcmp;
44 volatile sysconf8xx_t *sysp;
45 uint reg, mask;
46
47 debug ("hardware_enable: " PCMCIA_BOARD_MSG " Slot %c\n", 'A'+slot);
48
49 udelay(10000);
50
51 immap = (immap_t *)CONFIG_SYS_IMMR;
52 sysp = (sysconf8xx_t *)(&(((immap_t *)CONFIG_SYS_IMMR)->im_siu_conf));
53 pcmp = (pcmconf8xx_t *)(&(((immap_t *)CONFIG_SYS_IMMR)->im_pcmcia));
54
55
56 cfg_ports ();
57
58
59
60
61
62 sysp->sc_siumcr &= ~SIUMCR_DBGC11;
63
64
65 pcmp->pcmc_pscr = PCMCIA_MASK(_slot_);
66 pcmp->pcmc_per &= ~PCMCIA_MASK(_slot_);
67
68
69
70
71
72 debug ("Disable PCMCIA buffers and assert RESET\n");
73 reg = 0;
74 reg |= __MY_PCMCIA_GCRX_CXRESET;
75 PCMCIA_PGCRX(_slot_) = reg;
76 udelay(500);
77
78
79
80
81 udelay(10000);
82 debug ("[%d] %s: PIPR(%p)=0x%x\n",
83 __LINE__,__FUNCTION__,
84 &(pcmp->pcmc_pipr),pcmp->pcmc_pipr);
85 if (pcmp->pcmc_pipr & (0x18000000 >> (slot << 4))) {
86 printf (" No Card found\n");
87 return (1);
88 }
89
90
91
92
93 mask = PCMCIA_VS1(slot) | PCMCIA_VS2(slot);
94 reg = pcmp->pcmc_pipr;
95 debug ("PIPR: 0x%x ==> VS1=o%s, VS2=o%s\n",
96 reg,
97 (reg&PCMCIA_VS1(slot))?"n":"ff",
98 (reg&PCMCIA_VS2(slot))?"n":"ff");
99
100 if ((reg & mask) == mask)
101 puts (" 5.0V card found: ");
102 else
103 puts (" 3.3V card found: ");
104
105
106 immap->im_ioport.iop_padat |= 0x8000;
107
108 udelay(10000);
109
110 debug ("Enable PCMCIA buffers and stop RESET\n");
111 reg = PCMCIA_PGCRX(_slot_);
112 reg &= ~__MY_PCMCIA_GCRX_CXRESET;
113 reg &= ~__MY_PCMCIA_GCRX_CXOE;
114 PCMCIA_PGCRX(_slot_) = reg;
115
116 udelay(250000);
117
118 debug ("# hardware_enable done\n");
119
120 return (0);
121}
122
123
124#if defined(CONFIG_CMD_PCMCIA)
125int pcmcia_hardware_disable(int slot)
126{
127 volatile immap_t *immap;
128 volatile cpm8xx_t *cp;
129 volatile pcmconf8xx_t *pcmp;
130 u_long reg;
131
132 debug ("hardware_disable: " PCMCIA_BOARD_MSG " Slot %c\n", 'A'+slot);
133
134 immap = (immap_t *)CONFIG_SYS_IMMR;
135 pcmp = (pcmconf8xx_t *)(&(((immap_t *)CONFIG_SYS_IMMR)->im_pcmcia));
136
137
138 immap->im_ioport.iop_padat &= ~0x8000;
139
140
141 debug ("Disable PCMCIA buffers and assert RESET\n");
142 reg = 0;
143 reg |= __MY_PCMCIA_GCRX_CXRESET;
144 PCMCIA_PGCRX(_slot_) = reg;
145
146 udelay(10000);
147
148 return (0);
149}
150#endif
151
152
153int pcmcia_voltage_set(int slot, int vcc, int vpp)
154{
155 u_long reg;
156
157 debug ("voltage_set: "
158 PCMCIA_BOARD_MSG
159 " Slot %c, Vcc=%d.%d, Vpp=%d.%d\n",
160 'A'+slot, vcc/10, vcc%10, vpp/10, vcc%10);
161
162
163
164
165
166 debug ("Disable PCMCIA buffers and assert RESET\n");
167 reg = PCMCIA_PGCRX(_slot_);
168 reg |= __MY_PCMCIA_GCRX_CXRESET;
169 PCMCIA_PGCRX(_slot_) = reg;
170 udelay(500);
171
172
173
174
175
176
177 debug ("PCMCIA power OFF\n");
178 cfg_ports ();
179
180 debug ("Enable PCMCIA buffers and stop RESET\n");
181 reg = PCMCIA_PGCRX(_slot_);
182 reg &= ~__MY_PCMCIA_GCRX_CXRESET;
183 reg &= ~__MY_PCMCIA_GCRX_CXOE;
184 PCMCIA_PGCRX(_slot_) = reg;
185 udelay(500);
186
187 debug ("voltage_set: " PCMCIA_BOARD_MSG " Slot %c, DONE\n",
188 slot+'A');
189 return (0);
190}
191
192#endif
193