2 * (C) Copyright 2000-2006
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 * See file CREDITS for list of people who contributed to this
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
23 ********************************************************************
25 * Lots of code copied from:
27 * m8xx_pcmcia.c - Linux PCMCIA socket driver for the mpc8xx series.
28 * (C) 1999-2000 Magnus Damm <damm@bitsmart.com>
30 * "The ExCA standard specifies that socket controllers should provide
31 * two IO and five memory windows per socket, which can be independently
32 * configured and positioned in the host address space and mapped to
33 * arbitrary segments of card address space. " - David A Hinds. 1999
35 * This controller does _not_ meet the ExCA standard.
37 * m8xx pcmcia controller brief info:
38 * + 8 windows (attrib, mem, i/o)
39 * + up to two slots (SLOT_A and SLOT_B)
40 * + inputpins, outputpins, event and mask registers.
41 * - no offset register. sigh.
43 * Because of the lacking offset register we must map the whole card.
44 * We assign each memory window PCMCIA_MEM_WIN_SIZE address space.
45 * Make sure there is (PCMCIA_MEM_WIN_SIZE * PCMCIA_MEM_WIN_NO
46 * * PCMCIA_SOCKETS_NO) bytes at PCMCIA_MEM_WIN_BASE.
47 * The i/o windows are dynamically allocated at PCMCIA_IO_WIN_BASE.
48 * They are maximum 64KByte each...
62 /* -------------------------------------------------------------------- */
64 #if defined(CONFIG_CMD_PCMCIA)
66 extern int pcmcia_on (void);
67 extern int pcmcia_off (void);
69 int do_pinit (cmd_tbl_t
*cmdtp
, int flag
, int argc
, char *argv
[])
74 printf ("Usage: pinit {on | off}\n");
77 if (strcmp(argv
[1],"on") == 0) {
79 } else if (strcmp(argv
[1],"off") == 0) {
80 rcode
= pcmcia_off ();
82 printf ("Usage: pinit {on | off}\n");
90 pinit
, 2, 0, do_pinit
,
91 "pinit - PCMCIA sub-system\n",
92 "on - power on PCMCIA socket\n"
93 "pinit off - power off PCMCIA socket\n"
98 /* -------------------------------------------------------------------- */
100 #undef CHECK_IDE_DEVICE
102 #if defined(CONFIG_CMD_IDE) && defined(CONFIG_IDE_8xx_PCCARD)
103 #define CHECK_IDE_DEVICE
106 #if defined(CONFIG_PXA_PCMCIA)
107 #define CHECK_IDE_DEVICE
110 #ifdef CHECK_IDE_DEVICE
112 int ide_devices_found
;
113 static uchar
*known_cards
[] = {
114 (uchar
*)"ARGOSY PnPIDE D5",
118 #define MAX_TUPEL_SZ 512
119 #define MAX_FEATURES 4
121 #define MAX_IDENT_CHARS 64
122 #define MAX_IDENT_FIELDS 4
126 static void print_funcid (int func
)
130 case CISTPL_FUNCID_MULTI
:
131 puts (" Multi-Function");
133 case CISTPL_FUNCID_MEMORY
:
136 case CISTPL_FUNCID_SERIAL
:
137 puts (" Serial Port");
139 case CISTPL_FUNCID_PARALLEL
:
140 puts (" Parallel Port");
142 case CISTPL_FUNCID_FIXED
:
143 puts (" Fixed Disk");
145 case CISTPL_FUNCID_VIDEO
:
146 puts (" Video Adapter");
148 case CISTPL_FUNCID_NETWORK
:
149 puts (" Network Adapter");
151 case CISTPL_FUNCID_AIMS
:
154 case CISTPL_FUNCID_SCSI
:
155 puts (" SCSI Adapter");
164 static void print_fixed (volatile uchar
*p
)
172 case CISTPL_FUNCE_IDE_IFACE
:
173 { uchar iface
= *(p
+2);
175 puts ((iface
== CISTPL_IDE_INTERFACE
) ? " IDE" : " unknown");
176 puts (" interface ");
179 case CISTPL_FUNCE_IDE_MASTER
:
180 case CISTPL_FUNCE_IDE_SLAVE
:
184 puts ((f1
& CISTPL_IDE_SILICON
) ? " [silicon]" : " [rotating]");
186 if (f1
& CISTPL_IDE_UNIQUE
)
189 puts ((f1
& CISTPL_IDE_DUAL
) ? " [dual]" : " [single]");
191 if (f2
& CISTPL_IDE_HAS_SLEEP
)
194 if (f2
& CISTPL_IDE_HAS_STANDBY
)
197 if (f2
& CISTPL_IDE_HAS_IDLE
)
200 if (f2
& CISTPL_IDE_LOW_POWER
)
201 puts (" [low power]");
203 if (f2
& CISTPL_IDE_REG_INHIBIT
)
204 puts (" [reg inhibit]");
206 if (f2
& CISTPL_IDE_HAS_INDEX
)
209 if (f2
& CISTPL_IDE_IOIS16
)
218 static int identify (volatile uchar
*p
)
220 uchar id_str
[MAX_IDENT_CHARS
];
227 return (0); /* Don't know */
232 for (i
=0; i
<=4 && !done
; ++i
, p
+=2) {
233 while ((data
= *p
) != '\0') {
239 if (t
== &id_str
[MAX_IDENT_CHARS
-1]) {
249 while (--t
> id_str
) {
255 puts ((char *)id_str
);
258 for (card
=known_cards
; *card
; ++card
) {
259 debug ("## Compare against \"%s\"\n", *card
);
260 if (strcmp((char *)*card
, (char *)id_str
) == 0) { /* found! */
261 debug ("## CARD FOUND ##\n");
266 return (0); /* don't know */
269 int check_ide_device (int slot
)
271 volatile uchar
*ident
= NULL
;
272 volatile uchar
*feature_p
[MAX_FEATURES
];
273 volatile uchar
*p
, *start
, *addr
;
277 ushort config_base
= 0;
281 addr
= (volatile uchar
*)(CFG_PCMCIA_MEM_ADDR
+
282 CFG_PCMCIA_MEM_SIZE
* (slot
* 4));
283 debug ("PCMCIA MEM: %08lX\n", (ulong
)addr
);
285 start
= p
= (volatile uchar
*) addr
;
287 while ((p
- start
) < MAX_TUPEL_SZ
) {
291 if (code
== 0xFF) { /* End of chain */
296 #if defined(DEBUG) && (DEBUG > 1)
297 { volatile uchar
*q
= p
;
298 printf ("\nTuple code %02x length %d\n\tData:",
301 for (i
= 0; i
< len
; ++i
) {
302 printf (" %02x", *q
);
312 /* Fix for broken SanDisk which may have 0x80 bit set */
316 if (n_features
< MAX_FEATURES
)
317 feature_p
[n_features
++] = p
;
320 config_base
= (*(p
+6) << 8) + (*(p
+4));
321 debug ("\n## Config_base = %04x ###\n", config_base
);
328 found
= identify (ident
);
330 if (func_id
!= ((uchar
)~0)) {
331 print_funcid (func_id
);
333 if (func_id
== CISTPL_FUNCID_FIXED
)
336 return (1); /* no disk drive */
339 for (i
=0; i
<n_features
; ++i
) {
340 print_fixed (feature_p
[i
]);
344 printf ("unknown card type\n");
348 ide_devices_found
|= (1 << slot
);
352 /* set I/O area in config reg -> only valid for ARGOSY D5!!! */
353 *((uchar
*)(addr
+ config_base
)) = 1;
356 printf("\n## Config_base = %04x ###\n", config_base
);
357 printf("Configuration Option Register: %02x @ %x\n", readb(addr
+ config_base
), addr
+ config_base
);
358 printf("Card Configuration and Status Register: %02x\n", readb(addr
+ config_base
+ 2));
359 printf("Pin Replacement Register Register: %02x\n", readb(addr
+ config_base
+ 4));
360 printf("Socket and Copy Register: %02x\n", readb(addr
+ config_base
+ 6));
365 #endif /* CHECK_IDE_DEVICE */