* kernel support of MPC8XX series
@ 2001-03-30 5:21 Leonard Ye
0 siblings, 0 replies; 5+ messages in thread
From: Leonard Ye @ 2001-03-30 5:21 UTC (permalink / raw)
To: linuxppc-embedded
Hi all,
Just want to ask a very simple question. How is the kernel support on
MPC8XX series, especially on the MPC855 and MPC860? I will be very happy if
kernel 2.4 can be used and PCMCIA is support as well.
Thanks for your time.
Regards,
Leonard Ye
** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: kernel support of MPC8XX series
[not found] ` <20010330074730.42B7E28827@denx.denx.de>
@ 2001-04-02 9:00 ` Leonard Ye
2001-04-02 9:26 ` Wolfgang Denk
0 siblings, 1 reply; 5+ messages in thread
From: Leonard Ye @ 2001-04-02 9:00 UTC (permalink / raw)
To: Wolfgang Denk, linuxppc-embedded
Wolfgang,
Thanks for your information. For the embedded system that I am going to
develop, kernel 2.4 and PCMCIA is a must. Have you get them working on
MPC8XX platform, especially MPC855? I have read the HOWTO, it just tell me
MPC8XX is support without any specific information.
Regards,
Leonard Ye
At 03:47 PM 3/30/2001, Wolfgang Denk wrote:
>Hi Leonard,
>
>in message <5.0.2.1.0.20010330132041.00a65958@pop.ylez.com> you wrote:
> >
> > Just want to ask a very simple question. How is the kernel support on
> > MPC8XX series, especially on the MPC855 and MPC860? I will be very happy if
> > kernel 2.4 can be used and PCMCIA is support as well.
>
>Kernel support for the 8xx has been available for well over 2 years.
>We use it in many customer projects.
>
>PCMCIA support is available, too, but need some work, depending on
>hwat you are going to do. For most embedded systems the PCMCIA
>package is just overkill, so simpler solutions may be useful - we
>have done this for storage devices (hard disks, CompactFlash, etc.).
>
>Feel free to ask if you need details.
>
>In the meantime, check the excellent embedded PPC FAQ at
>http://penguinppc.org/usr/embedded/howto/PowerPC-Embedded-HOWTO.html
>
>Wolfgang Denk
>
>--
>Software Engineering: Embedded and Realtime Systems, Embedded Linux
>Phone: (+49)-8142-4596-87 Fax: (+49)-8142-4596-88 Email: wd@denx.de
>"He only drinks when he gets depressed." "Why does he get depressed?"
>"Sometimes it's because he hasn't had a drink."
> - Terry Pratchett, _Men at Arms_
** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: kernel support of MPC8XX series
2001-04-02 9:00 ` kernel support of MPC8XX series Leonard Ye
@ 2001-04-02 9:26 ` Wolfgang Denk
2001-04-02 9:39 ` Magnus Damm
0 siblings, 1 reply; 5+ messages in thread
From: Wolfgang Denk @ 2001-04-02 9:26 UTC (permalink / raw)
To: Leonard Ye; +Cc: linuxppc-embedded
Dear Leonard,
in message <5.0.2.1.0.20010402165636.00b02008@pop.ylez.com> you wrote:
>
> Thanks for your information. For the embedded system that I am going to
> develop, kernel 2.4 and PCMCIA is a must. Have you get them working on
> MPC8XX platform, especially MPC855? I have read the HOWTO, it just tell me
> MPC8XX is support without any specific information.
First, you can use the normal PCMCIA package, which has some support
for PCMCIA on the MPC8xx. Most probably you will have to make some
adjustments for your specific board, i. e. voltage switching etc.
For us, the majority of devices are memory cards like SanDisk,
CompactFlash or IDE harddisk adapters. On one side, the PCMCIA
package is a lot of overkill here; on the other side it cannot be
used when you want to boot from such a device. That's why we added
low-level direct IDE support to the kernel.
It's much more restricted than the full-blown PCMCIA package. For
instance, removing or replacing a card while the system is running or
similar events are not handled at all. But for the embedded
applications we've seen so far that never has been a requirement.
Wolfgang Denk
--
Software Engineering: Embedded and Realtime Systems, Embedded Linux
Phone: (+49)-8142-4596-87 Fax: (+49)-8142-4596-88 Email: wd@denx.de
On a clear disk you can seek forever.
** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: kernel support of MPC8XX series
2001-04-02 9:26 ` Wolfgang Denk
@ 2001-04-02 9:39 ` Magnus Damm
2001-04-02 10:06 ` Wolfgang Denk
0 siblings, 1 reply; 5+ messages in thread
From: Magnus Damm @ 2001-04-02 9:39 UTC (permalink / raw)
To: Wolfgang Denk; +Cc: Leonard Ye, linuxppc-embedded
> For us, the majority of devices are memory cards like SanDisk,
> CompactFlash or IDE harddisk adapters. On one side, the PCMCIA
> package is a lot of overkill here; on the other side it cannot be
> used when you want to boot from such a device.
Not really true.
It _is_ possible to boot with the PCMCIA package, it's just a bit
harder.
Use an initrd with a scaled-down PCMCIA package to solve it.
But I suggest you try the in-kernel support as a first step.
/ Magnus
** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: kernel support of MPC8XX series
2001-04-02 9:39 ` Magnus Damm
@ 2001-04-02 10:06 ` Wolfgang Denk
0 siblings, 0 replies; 5+ messages in thread
From: Wolfgang Denk @ 2001-04-02 10:06 UTC (permalink / raw)
To: Magnus Damm; +Cc: Leonard Ye, linuxppc-embedded
In message <3AC848EC.92161602@opensource.se> you wrote:
>
> > For us, the majority of devices are memory cards like SanDisk,
> > CompactFlash or IDE harddisk adapters. On one side, the PCMCIA
> > package is a lot of overkill here; on the other side it cannot be
> > used when you want to boot from such a device.
>
> Not really true.
> It _is_ possible to boot with the PCMCIA package, it's just a bit
> harder.
> Use an initrd with a scaled-down PCMCIA package to solve it.
And where do you load this initrd image from?
I am talking about systems that don't have any (significant) flash
onboard. For instance, we have such a setup running on boards with
just 512 kB EPROM (right, EPROM, not flash). We have to load the
kernel and anything else over the PCMCIA interface. I don't see a
ways how this can be done with the normal PCMCIA package.
Wolfgang Denk
--
Software Engineering: Embedded and Realtime Systems, Embedded Linux
Phone: (+49)-8142-4596-87 Fax: (+49)-8142-4596-88 Email: wd@denx.de
The easiest way to figure the cost of living is to take your income
and add ten percent.
** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2001-04-02 10:06 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <Your message of "Fri, 30 Mar 2001 13:21:55 +0800." <5.0.2.1.0.20010330132041.00a65958@pop.ylez.com>
[not found] ` <20010330074730.42B7E28827@denx.denx.de>
2001-04-02 9:00 ` kernel support of MPC8XX series Leonard Ye
2001-04-02 9:26 ` Wolfgang Denk
2001-04-02 9:39 ` Magnus Damm
2001-04-02 10:06 ` Wolfgang Denk
2001-03-30 5:21 Leonard Ye
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).