All of lore.kernel.org
 help / color / mirror / Atom feed
* PCMCIA
@ 2003-03-04 10:36 Gerhard TAEUBL
  0 siblings, 0 replies; 23+ messages in thread
From: Gerhard TAEUBL @ 2003-03-04 10:36 UTC (permalink / raw)
  To: linuxppc-embedded


Hi!

Yet another PCMCIA question :-)

We need for a project a second 100MBit interface, so our soloution will be to use a PCMCIA card. Does there exists an actual compatibility list which cards works, which not? I only found a list from 2000 or 2001.

Please help :-)

Thx in advance

Gerhard

** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/

^ permalink raw reply	[flat|nested] 23+ messages in thread
[parent not found: <se6c604d.015@mail.frequentis.com>]
* Re: PCMCIA
@ 2003-03-10  8:18 Gerhard TAEUBL
  2003-03-10  8:45 ` PCMCIA Wolfgang Denk
  0 siblings, 1 reply; 23+ messages in thread
From: Gerhard TAEUBL @ 2003-03-10  8:18 UTC (permalink / raw)
  To: wd; +Cc: linuxppc-embedded


Hi!

Well this issue we discussed with our project developer...
They want to use 2 Ethernetports for a double ethernet network, for saftey issues. We know, that we never get the full 100MBit on a MPC860 however, the point is, that our hardware don't get much data, but other components (PCs) in the network needs this bandwidth. Beside this to use a SCC for Ethernet we need an hardware redesign with a lot of software adaptions....

We have only one PCMCIA Port realised in HW.

So the (your) DENX Kernel (2.4.4) has PCMCIA support implemented yet? So this is maybe a reason for us to switch over.. (Uhuhu I hope this will not too much work to adapt the configuration again.... :-)

So do you have a list which Ethernet cards work? Or is it only the Xircom card that works?

Gerhard

>>> Wolfgang Denk <wd@denx.de> 03/07/03 08:53pm >>>
In message <se68594f.071@mail.frequentis.com> you wrote:
>
> We need for a project a second 100MBit interface, so our soloution will be to use a PCMCIA card. Does there exists an actual compatibility list which cards works, which not? I only found a list from 2000 or 2001.

Why do you think you need a second 100MBit interface? The performance
of  a  MPC8xx  is  a  bit  limited,  so  don't  expect  too  much  of
throughput...

Probably a 10 Mbps interface on a SCC would be the easier solution.

> We are using MPC860T with one possible PCMCIA port and Montavista kernel 2.4.2.

I cannot speak about MV's 2.4.2 kernel, except that it's  pretty  old
and  I  doubt  it  has  full PCMCIA support. But the MPC860T supports
_two_ PCMCIA slots.

> So it is possible to use every PCMCIA card, which is supported by Linux?

You will not get any guarantees. Try it out. The (few!) network cards
we tested so far worked fine.

Best regards,

Wolfgang Denk

--
Software Engineering:  Embedded and Realtime Systems,  Embedded Linux
Phone: (+49)-8142-4596-87  Fax: (+49)-8142-4596-88  Email: wd@denx.de
C++ was an interesting and valuable experiment, but we've learned its
lessons and it's time to move on.
                            - Peter Curran in <DCqM4z.BxB@isgtec.com>


** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/

^ permalink raw reply	[flat|nested] 23+ messages in thread
* PCMCIA
@ 2003-03-07  7:32 Gerhard TAEUBL
  2003-03-07 17:18 ` PCMCIA Magnus Damm
  2003-03-07 19:53 ` PCMCIA Wolfgang Denk
  0 siblings, 2 replies; 23+ messages in thread
From: Gerhard TAEUBL @ 2003-03-07  7:32 UTC (permalink / raw)
  To: linuxppc-embedded


Hi again!

Maybe I frogot some information:

We need for a project a second 100MBit interface, so our soloution will be to use a PCMCIA card. Does there exists an actual compatibility list which cards works, which not? I only found a list from 2000 or 2001.

Please help :-)


We are using MPC860T with one possible PCMCIA port and Montavista kernel 2.4.2.
So it is possible to use every PCMCIA card, which is supported by Linux?

Again, please help...

best regards
Gerhard

** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/

^ permalink raw reply	[flat|nested] 23+ messages in thread
* RE: pcmcia
@ 2001-11-30  8:39 Guillermo A. Loyola
  2001-11-30 17:35 ` pcmcia Pete Popov
  0 siblings, 1 reply; 23+ messages in thread
From: Guillermo A. Loyola @ 2001-11-30  8:39 UTC (permalink / raw)
  To: 'Pete Popov', linux-mips, sforge

> The pcmcia variable ioaddr_t should be a 32 bit type for my socket
> driver.  Is there any harm to other mips pcmcia socket drivers if we
> apply the patch below?

We need the same here, how about doing this instead:

#ifdef __i386__
typedef u_short   ioaddr_t;
#else
typedef u_int	ioaddr_t;
#endif

Gmo.

^ permalink raw reply	[flat|nested] 23+ messages in thread
* pcmcia
@ 2001-11-29 20:32 Pete Popov
  0 siblings, 0 replies; 23+ messages in thread
From: Pete Popov @ 2001-11-29 20:32 UTC (permalink / raw)
  To: linux-mips, sforge

The pcmcia variable ioaddr_t should be a 32 bit type for my socket
driver.  Is there any harm to other mips pcmcia socket drivers if we
apply the patch below?  If not, it would make it so much easier if I
don't have to debug this problem with each new kernel (having forgotten
about the need for this patch)...


--- linux-orig/include/pcmcia/cs_types.h	Mon Nov  5 16:55:31 2001
+++ linux/include/pcmcia/cs_types.h	Thu Nov 29 12:27:42 2001
@@ -36,7 +36,7 @@
 #include <sys/types.h>
 #endif
 
-#ifdef __arm__
+#if defined(__arm__) || defined(__mips__)
 typedef u_int   ioaddr_t;
 #else
 typedef u_short	ioaddr_t;

^ permalink raw reply	[flat|nested] 23+ messages in thread
* pcmcia
@ 2000-11-08 22:24 David Feuer
  2000-11-08 22:39 ` pcmcia Jeff Garzik
                   ` (2 more replies)
  0 siblings, 3 replies; 23+ messages in thread
From: David Feuer @ 2000-11-08 22:24 UTC (permalink / raw)
  To: linux-kernel

What is the current status of PC-card support?  I've seen ominous signs on 
this list about the state of support....  I have a laptop with a PCMCIA 
network card (a 3com thing). Will it work?

--
This message has been brought to you by the letter alpha and the number pi.
David Feuer
David_Feuer@brown.edu

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/

^ permalink raw reply	[flat|nested] 23+ messages in thread
* PCMCIA
@ 2000-02-05 19:21 Ryan Boder
  0 siblings, 0 replies; 23+ messages in thread
From: Ryan Boder @ 2000-02-05 19:21 UTC (permalink / raw)
  To: linuxppc-dev


Does the rev-15 kernel from BenH's website support pcmcia flash memory
cards?

** Sent via the linuxppc-dev mail list. See http://lists.linuxppc.org/

^ permalink raw reply	[flat|nested] 23+ messages in thread
* PCMCIA
@ 1999-12-23  3:28 Nguyen Xuan Hoang
  2000-06-23  7:55 ` PCMCIA Jo-Ellen F. Mathews
  0 siblings, 1 reply; 23+ messages in thread
From: Nguyen Xuan Hoang @ 1999-12-23  3:28 UTC (permalink / raw)
  To: linuxppc-embedded@lists.linuxppc.org


Hi All,

I love this mail list, you are all very friendly... could anyone tell which PCMCIA device have worked with RPX Lite board I am interrest in Modem and HDD PCMCIA
where can I find the driver... Yes, I have gone though the mail list but as Dan said we seldom hear from the people who are happy...

Best regards
Hoang

** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/

^ permalink raw reply	[flat|nested] 23+ messages in thread

end of thread, other threads:[~2003-03-10  9:01 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-03-04 10:36 PCMCIA Gerhard TAEUBL
     [not found] <se6c604d.015@mail.frequentis.com>
2003-03-10  9:01 ` PCMCIA Wolfgang Denk
  -- strict thread matches above, loose matches on Subject: below --
2003-03-10  8:18 PCMCIA Gerhard TAEUBL
2003-03-10  8:45 ` PCMCIA Wolfgang Denk
2003-03-07  7:32 PCMCIA Gerhard TAEUBL
2003-03-07 17:18 ` PCMCIA Magnus Damm
2003-03-07 19:53 ` PCMCIA Wolfgang Denk
2001-11-30  8:39 pcmcia Guillermo A. Loyola
2001-11-30 17:35 ` pcmcia Pete Popov
2001-11-30 17:54   ` pcmcia Alan Cox
2001-11-30 17:54     ` pcmcia Alan Cox
2001-11-30 17:50     ` pcmcia Pete Popov
2001-11-29 20:32 pcmcia Pete Popov
2000-11-08 22:24 pcmcia David Feuer
2000-11-08 22:39 ` pcmcia Jeff Garzik
2000-11-08 23:59 ` pcmcia David Ford
2000-11-09  0:35   ` pcmcia Brett
2000-11-09  1:15     ` pcmcia David Ford
2000-11-09  2:44       ` pcmcia FORT David
2000-11-09  2:19 ` pcmcia Horst von Brand
2000-02-05 19:21 PCMCIA Ryan Boder
1999-12-23  3:28 PCMCIA Nguyen Xuan Hoang
2000-06-23  7:55 ` PCMCIA Jo-Ellen F. Mathews

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.