From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from m13-81.163.com (m13-81.163.com [220.181.13.81]) by ozlabs.org (Postfix) with SMTP id 9D08FDDD04 for ; Sat, 25 Aug 2007 12:12:33 +1000 (EST) Date: Sat, 25 Aug 2007 09:53:32 +0800 (CST) From: =?GBK?B?wdbR/g==?= To: linuxppc-embedded@ozlabs.org Message-ID: <11873651.49841188006812937.JavaMail.coremail@bj163app81.163.com> In-Reply-To: References: Subject: Re:Problems on porting linux 2.6 to xilinx ML410 MIME-Version: 1.0 Content-Type: multipart/Alternative; boundary="----=_Part_5143_32477052.1188006812935" List-Id: Linux on Embedded PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , ------=_Part_5143_32477052.1188006812935 Content-Type: text/plain; charset=gbk Content-Transfer-Encoding: quoted-printable Maybe you did not set your baud rate while config the kernel. If you= use UART16550, you should set your baud rate while config the kernel.In th= e kernel 2.6.22, the option is in "Platform options", selecting "Default bo= otloader kernel arguments" and then setting your baud rate. However, if you= use UARTLITE, the baud rate dose not need to be set by yourself. If the = problem did not due to the baud rate, then perhaps your xparameters_ml40x.h= file did not correctly define the register address of the serial port devi= ce. Your can find the correct register address of the serial port device in= BSP generated by EDK. = linyao =20 =D4=DA2007-08-24=A3=AClinuxppc-embedded-request@ozlabs.org =D0=B4=B5=C0=A3= =BA Send Linuxppc-embedded mailing list submissions to linuxppc-embedded@ozlabs= .org To subscribe or unsubscribe via the World Wide Web, visit https://ozla= bs.org/mailman/listinfo/linuxppc-embedded or, via email, send a message wit= h subject or body 'help' to linuxppc-embedded-request@ozlabs.org You can re= ach the person managing the list at linuxppc-embedded-owner@ozlabs.org When= replying, please edit your Subject line so it is more specific than "Re: C= ontents of Linuxppc-embedded digest..." Today's Topics: 1. Problems on port= ing linux 2.6 to xilinx ML410 (woyuzhilei) 2. little endian page mapping on= PQ3 (Jose Almeida) 3. RE: little endian page mapping on PQ3 (Joyeau Sylvai= n) 4. Re: little endian page mapping on PQ3 (Jose Almeida) 5. Re: little en= dian page mapping on PQ3 (Clemens Koller) 6. [linux kernel 2.6.19] ethernet= driver for Marvell bridge GT-64260 (joachim.bader@diehl-aerospace.de) 7. R= e: little endian page mapping on PQ3 (David Hawkins) ----------------------= ------------------------------------------------ Message: 1 Date: Fri, 24 A= ug 2007 11:11:57 +0800 From: "woyuzhilei" Subject: Pro= blems on porting linux 2.6 to xilinx ML410 To: "grant.likely" Cc: linuxppc-embedded Message= -ID: <200708241111513591137@163.com> Content-Type: text/plain; charset=3D"g= b2312" Hey: Recently I'm doing some project on Xilinx Ml410 evaluation boar= d.The first step is porting linux 2.6 to ml410,but I got some problems on t= his,and my project cann't proceed,so I come to you for some help. I use the= linux kernel source tree download from http://git.secretlab.ca/git/linux-2= .6-virtex.git (The latest one).Add the file the xparameters.h,xparameter_ml= 40x.h. Then add arch/ppc/platforms/4xx/xilinx_generic_ppc.c(Use the patch I= get here),and change it's name to ml40x.c,then I make some necessay change= of the configuration files to accept selecting a Ml40x type board.Then com= pile the kernel,and get the image file from arch/ppc/boot/images, (On kerne= l compiling,the only device driver I sellect is " 8250/16550 and compatible= serial support ").After that I download the zImage.elf file to the target = board,and run it.But there is no output from the serial port at all.Am I do= ing somthing wrong?I really don't know goes wrong. Can anyone here help me = with this?Any help from you is appreciated.Thank you very much! woyuzhilei = 2007-08-24 -------------- next part -------------- An HTML attachment was s= crubbed... URL: http://ozlabs.org/pipermail/linuxppc-embedded/attachments/2= 0070824/b495befd/attachment-0001.htm ------------------------------ Message= : 2 Date: Fri, 24 Aug 2007 09:59:17 +0200 From: Jose Almeida Subject: little endian page mapping on PQ3 To: Linuxppc-embedded@ozla= bs.org Message-ID: <46CE8FD5.2060609@sysgo.fr> Content-Type: text/plain; ch= arset=3DISO-8859-1 Hi all, Looking at PQ3 documentation, it looks like ther= e is a way to select on a page basis if we would like to map one particular= page in BIG or LITTLE endian. This is a very nice feature when you need to= exchange some data between a PC and a PQ3 target. I am wondering if someon= e have already tryed this PQ3 feature ? I guess this would require some kin= d of hook in the kernel ... Any clue ? Thanks - Jose ----------------------= -------- Message: 3 Date: Fri, 24 Aug 2007 13:40:31 +0200 From: "Joyeau Syl= vain" Subject: RE: little endian page mapping = on PQ3 To: "Jose Almeida" , Message-ID: Content-Type: text/plain; charset=3D"iso-8859-1" Jose, You are ri= ght, PQ3 supports endianess choice on a per page basis. Without any hook in= Linux, you can remap physical address range (but RAM), by calling __iorema= p() with the "_PAGE_ENDIAN" bit set in the flags. -- sj > -----Original Mes= sage----- > From: > linuxppc-embedded-bounces+sylvain.joyeau=3Dthomson.net@= ozlabs.or > g > [mailto:linuxppc-embedded-bounces+sylvain.joyeau=3Dthomson.= net@o > zlabs.org] On Behalf Of Jose Almeida > Sent: vendredi 24 ao?t 2007 = 09:59 > To: Linuxppc-embedded@ozlabs.org > Subject: little endian page mapp= ing on PQ3 > > Hi all, > > Looking at PQ3 documentation, it looks like ther= e is a way to select > on a page basis if we would like to map one particul= ar page in BIG or > LITTLE endian. > This is a very nice feature when you n= eed to exchange some data > between a PC and a PQ3 target. > > I am wonderi= ng if someone have already tryed this PQ3 feature ? > I guess this would re= quire some kind of hook in the kernel ... > > Any clue ? > > Thanks - Jose = > > _______________________________________________ > Linuxppc-embedded mai= ling list > Linuxppc-embedded@ozlabs.org > https://ozlabs.org/mailman/listi= nfo/linuxppc-embedded > ------------------------------ Message: 4 Date: Fri= , 24 Aug 2007 15:08:33 +0200 From: Jose Almeida Subject= : Re: little endian page mapping on PQ3 To: Joyeau Sylvain Cc: Linuxppc-embedded@ozlabs.org Message-ID: <46CED851.70002@s= ysgo.fr> Content-Type: text/plain; charset=3D"us-ascii" An HTML attachment = was scrubbed... URL: http://ozlabs.org/pipermail/linuxppc-embedded/attachme= nts/20070824/3072d9f9/attachment-0001.htm ------------------------------ Me= ssage: 5 Date: Fri, 24 Aug 2007 15:19:17 +0200 From: Clemens Koller Subject: Re: little endian page mapping on PQ3 To: Jo= se Almeida Cc: Linuxppc-embedded@ozlabs.org Message-ID:= <46CEDAD5.1070506@anagramm.de> Content-Type: text/plain; charset=3DISO-885= 9-1; format=3Dflowed Hi, Jose! Jose Almeida schrieb: > Hi all, > > Looking = at PQ3 documentation, it looks like there is a way to select > on a page ba= sis if we would like to map one particular page in BIG or > LITTLE endian. = > This is a very nice feature when you need to exchange some data > between= a PC and a PQ3 target. I would be interested, however cannot spend time ri= ght now to work on that subject. > I am wondering if someone have already t= ryed this PQ3 feature ? > I guess this would require some kind of hook in t= he kernel ... Just some random bits I found in the web: http://developer.ap= ple.com/documentation/Hardware/DeviceManagers/pci_srvcs/pci_cards_drivers/P= CI_BOOK.250.html The Interesting part is: "Thus, the address swizzle is com= pletely transparent to software." So, I would just try to setup some memory= mapping and turn on little endian mode to access that area... MMMV. Just a= guess. Regards, -- Clemens Koller __________________________________ R&D I= maging Devices Anagramm GmbH Rupert-Mayer-Stra?e 45/1 Linhof Werksgel?nde D= -81379 M?nchen Tel.089-741518-50 Fax 089-741518-19 http://www.anagramm-tech= nology.com ------------------------------ Message: 6 Date: Fri, 24 Aug 2007= 15:51:33 +0200 From: joachim.bader@diehl-aerospace.de Subject: [linux kern= el 2.6.19] ethernet driver for Marvell bridge GT-64260 To: linuxppc-embedde= d@ozlabs.org Message-ID: Content-Type: text/plain; charset=3D"utf-8" Hello= everybody, I continue the work of ThomasB to get a linux kernel 2.6.19 up = and running on a PPC750FX based platform using a GT-64260. From Thomas I go= t a patched mv643xx_eth driver which is ported to support the 64260, too. N= ow the driver is integrated and runs complete through initialisation bringi= ng up an eth0 device. The initialisation seams to be ok (no error messages)= , the device is up and routing information is setup. Now I try to ping a re= mote station but I receive nothing and I get no feedback from the remote co= mpter. As soon as I turn of the net interface (ifconfig eth0 down) I get th= e message "Tx time out or no link?) Is there anything else I can check? Any= idea what may cause this problem? Thanks a lot for your help Joachim _____= ___________________________________________________________________________= _______________________________________ Der Inhalt dieser E-Mail ist f?r de= n Absender rechtlich nicht verbindlich. Informieren Sie uns bitte, wenn Sie= diese E-Mail f?lschlicherweise erhalten haben (Fax: +49-69-5805-1399). Bit= te l?schen Sie in diesem Fall die Nachricht. Jede Form der weiteren Benutzu= ng ist untersagt. The content of this e-mail is not legally binding upon th= e sender. If this e-mail was transmitted to you by error, then please infor= m us accordingly (Fax: +49-69-5805-1399). In such case you are requested to= erase the message. Any use of such e-mail message is strictly prohibited. = -------------- next part -------------- An HTML attachment was scrubbed... = URL: http://ozlabs.org/pipermail/linuxppc-embedded/attachments/20070824/5bb= 5a616/attachment-0001.htm ------------------------------ Message: 7 Date: F= ri, 24 Aug 2007 08:49:46 -0700 From: David Hawkins S= ubject: Re: little endian page mapping on PQ3 To: Jose Almeida Cc: Joyeau Sylvain , Linuxppc-embedded@= ozlabs.org Message-ID: <46CEFE1A.40905@ovro.caltech.edu> Content-Type: text= /plain; charset=3DISO-8859-1; format=3Dflowed Hi Jose, > I want to do using= an mmap() entry point in a driver, in order to map > this to the user. Of = course in that case ioremap() does not work. > > Any Clue ? > I used the li= ttle-endian flag on the Yosemite board (440EP) to test what the flag did. h= ttp://www.ovro.caltech.edu/~dwh/correlator/pdf/LNX-762-Hawkins.pdf http://w= ww.ovro.caltech.edu/~dwh/correlator/software/driver_design.tar.gz Look at t= he mmap function in pci_io.c. /* PowerPC endian control * - default is clea= red, big-endian */ #ifdef _PAGE_ENDIAN if (bar->little_endian) { pgprot_val= (vma->vm_page_prot) |=3D _PAGE_ENDIAN; } else { pgprot_val(vma->vm_page_pro= t) &=3D ~_PAGE_ENDIAN; } if (pgprot_val(vma->vm_page_prot) & _PAGE_ENDIAN) = { LOG_DEBUG("_PAGE_ENDIAN is set\n"); } else { LOG_DEBUG("_PAGE_ENDIAN is n= ot set\n"); } #endif It might be the same for the PQ3 ... at least it'll be= pretty similar. Dave ------------------------------ ______________________= _________________________ Linuxppc-embedded mailing list Linuxppc-embedded@= ozlabs.org https://ozlabs.org/mailman/listinfo/linuxppc-embedded End of Lin= uxppc-embedded Digest, Vol 36, Issue 59 ***********************************= ************** ------=_Part_5143_32477052.1188006812935 Content-Type: text/html; charset=gbk Content-Transfer-Encoding: quoted-printable
   Maybe you did not set your baud rate while config the ker= nel.  
   If you use UART16550, you should set your baud rate while= config the kernel.In the kernel 2.6.22, the option is in "Platform options= ", selecting "Default bootloader kernel arguments" and then setting your ba= ud rate. However, if you use UARTLITE, the baud rate dose not need to be se= t by yourself.
   If the problem did not due to the baud rate, then perhaps= your xparameters_ml40x.h file did not correctly define the regis= ter address of the serial port device. Your can find the correct regis= ter address of the serial port device in BSP generated by EDK.
           &nbs= p;            &= nbsp;           &nbs= p;            &= nbsp;           &nbs= p;     linyao 
 
 
 

=D4=DA2007-08-24=A3=AClinuxppc-embedded-request@ozlabs.org = =D0=B4=B5=C0=A3=BA
Send Linuxppc-embedded mailin=
g list submissions to
=09linuxppc-embedded@ozlabs.org

To subscribe or unsubscribe via the World Wide Web, visit
=09https://ozlabs.org/mailman/listinfo/linuxppc-embedded
or, via email, send a message with subject or body 'help' to
=09linuxppc-embedded-request@ozlabs.org

You can reach the person managing the list at
=09linuxppc-embedded-owner@ozlabs.org

When replying, please edit your Subject line so it is more specific
than "Re: Contents of Linuxppc-embedded digest..."


Today's Topics:

   1. Problems on porting linux 2.6 to xilinx ML410 (woyuzhilei)
   2. little endian page mapping on PQ3 (Jose Almeida)
   3. RE: little endian page mapping on PQ3 (Joyeau Sylvain)
   4. Re: little endian page mapping on PQ3 (Jose Almeida)
   5. Re: little endian page mapping on PQ3 (Clemens Koller)
   6. [linux kernel 2.6.19] ethernet driver for Marvell bridge
      GT-64260 (joachim.bader@diehl-aerospace.de)
   7. Re: little endian page mapping on PQ3 (David Hawkins)


----------------------------------------------------------------------

Message: 1
Date: Fri, 24 Aug 2007 11:11:57 +0800
From: "woyuzhilei" <woyuzhilei@163.com>
Subject: Problems on porting linux 2.6 to xilinx ML410
To: "grant.likely" <grant.likely@secretlab.ca>
Cc: linuxppc-embedded <linuxppc-embedded@ozlabs.org>
Message-ID: <200708241111513591137@163.com>
Content-Type: text/plain; charset=3D"gb2312"

Hey:
    Recently I'm doing some project on Xilinx Ml410 evaluation board.The fi=
rst step is porting linux 2.6 to ml410,but I got some problems on this,and =
my project cann't proceed,so I come to you for some help.
    I use the linux kernel source tree download from  http://git.secretlab.=
ca/git/linux-2.6-virtex.git  (The latest one).Add the file the xparameters.=
h,xparameter_ml40x.h.  Then add arch/ppc/platforms/4xx/xilinx_generic_ppc.c=
(Use the patch I get here),and change it's name to ml40x.c,then I make some=
 necessay change of the configuration files to accept selecting a Ml40x typ=
e board.Then compile the kernel,and get the image file from arch/ppc/boot/i=
mages, (On kernel compiling,the only device driver  I sellect is " 8250/165=
50 and compatible serial support ").After that  I download the zImage.elf f=
ile to the target board,and run it.But there is no output from the serial p=
ort at all.Am I doing somthing wrong?I really don't know goes wrong.
    Can anyone here help me with this?Any help from you is appreciated.Than=
k you very much!

       =20


                                                                           =
                                                                           =
                              woyuzhilei
                                                                           =
                                                                           =
                               2007-08-24
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://ozlabs.org/pipermail/linuxppc-embedded/attachments/20070824/b49=
5befd/attachment-0001.htm=20

------------------------------

Message: 2
Date: Fri, 24 Aug 2007 09:59:17 +0200
From: Jose Almeida <jalmeida@sysgo.fr>
Subject: little endian page mapping on PQ3
To: Linuxppc-embedded@ozlabs.org
Message-ID: <46CE8FD5.2060609@sysgo.fr>
Content-Type: text/plain; charset=3DISO-8859-1

Hi all,

Looking at PQ3 documentation, it looks like there is a way to select
on a page basis if we would like to map one particular page in BIG or
LITTLE endian.
This is a very nice feature when you need to exchange some data
between a PC and a PQ3 target.

I am wondering if someone have already tryed this PQ3 feature ?
I guess this would require some kind of hook in the kernel ...

Any clue ?

Thanks -  Jose



------------------------------

Message: 3
Date: Fri, 24 Aug 2007 13:40:31 +0200
From: "Joyeau Sylvain" <Sylvain.Joyeau@thomson.net>
Subject: RE: little endian page mapping on PQ3
To: "Jose Almeida" <jalmeida@sysgo.fr>,=09<Linuxppc-embedded@ozlab=
s.org>
Message-ID:
=09<B00307ADBC68954AA8D6FB3AC8FD66F30141DE36@rennsmail05.eu.thmulti.com&=
gt;
Content-Type: text/plain;=09charset=3D"iso-8859-1"

Jose,

You are right, PQ3 supports endianess choice on a per page basis.=20
Without any hook in Linux, you can remap physical address range (but RAM), =
by calling __ioremap() with the "_PAGE_ENDIAN" bit set in the flags.

--
sj

> -----Original Message-----
> From:=20
> linuxppc-embedded-bounces+sylvain.joyeau=3Dthomson.net@ozlabs.or
> g=20
> [mailto:linuxppc-embedded-bounces+sylvain.joyeau=3Dthomson.net@o
> zlabs.org] On Behalf Of Jose Almeida
> Sent: vendredi 24 ao?t 2007 09:59
> To: Linuxppc-embedded@ozlabs.org
> Subject: little endian page mapping on PQ3
>=20
> Hi all,
>=20
> Looking at PQ3 documentation, it looks like there is a way to select
> on a page basis if we would like to map one particular page in BIG or
> LITTLE endian.
> This is a very nice feature when you need to exchange some data
> between a PC and a PQ3 target.
>=20
> I am wondering if someone have already tryed this PQ3 feature ?
> I guess this would require some kind of hook in the kernel ...
>=20
> Any clue ?
>=20
> Thanks -  Jose
>=20
> _______________________________________________
> Linuxppc-embedded mailing list
> Linuxppc-embedded@ozlabs.org
> https://ozlabs.org/mailman/listinfo/linuxppc-embedded
>=20


------------------------------

Message: 4
Date: Fri, 24 Aug 2007 15:08:33 +0200
From: Jose Almeida <jalmeida@sysgo.fr>
Subject: Re: little endian page mapping on PQ3
To: Joyeau Sylvain <Sylvain.Joyeau@thomson.net>
Cc: Linuxppc-embedded@ozlabs.org
Message-ID: <46CED851.70002@sysgo.fr>
Content-Type: text/plain; charset=3D"us-ascii"

An HTML attachment was scrubbed...
URL: http://ozlabs.org/pipermail/linuxppc-embedded/attachments/20070824/307=
2d9f9/attachment-0001.htm=20

------------------------------

Message: 5
Date: Fri, 24 Aug 2007 15:19:17 +0200
From: Clemens Koller <clemens.koller@anagramm.de>
Subject: Re: little endian page mapping on PQ3
To: Jose Almeida <jalmeida@sysgo.fr>
Cc: Linuxppc-embedded@ozlabs.org
Message-ID: <46CEDAD5.1070506@anagramm.de>
Content-Type: text/plain; charset=3DISO-8859-1; format=3Dflowed

Hi, Jose!

Jose Almeida schrieb:
> Hi all,
>=20
> Looking at PQ3 documentation, it looks like there is a way to select
> on a page basis if we would like to map one particular page in BIG or
> LITTLE endian.
> This is a very nice feature when you need to exchange some data
> between a PC and a PQ3 target.

I would be interested, however cannot spend time right now to work
on that subject.

> I am wondering if someone have already tryed this PQ3 feature ?
> I guess this would require some kind of hook in the kernel ...

Just some random bits I found in the web:
http://developer.apple.com/documentation/Hardware/DeviceManagers/pci_srvcs/=
pci_cards_drivers/PCI_BOOK.250.html

The Interesting part is:
"Thus, the address swizzle is completely transparent to software."

So, I would just try to setup some memory mapping and turn on little endian
mode to access that area... MMMV. Just a guess.

Regards,
--=20
Clemens Koller
__________________________________
R&D Imaging Devices
Anagramm GmbH
Rupert-Mayer-Stra?e 45/1
Linhof Werksgel?nde
D-81379 M?nchen
Tel.089-741518-50
Fax 089-741518-19
http://www.anagramm-technology.com


------------------------------

Message: 6
Date: Fri, 24 Aug 2007 15:51:33 +0200
From: joachim.bader@diehl-aerospace.de
Subject: [linux kernel 2.6.19] ethernet driver for Marvell bridge
=09GT-64260
To: linuxppc-embedded@ozlabs.org
Message-ID:
=09<OF2C2E8C6F.3860730F-ONC1257341.004B3D4B-C1257341.004C2882@diehl-grup=
pe.de>
=09
Content-Type: text/plain; charset=3D"utf-8"

Hello everybody,

I continue the work of ThomasB to get a linux kernel 2.6.19 up and running=
=20
on a PPC750FX based platform using a GT-64260.
>>From Thomas I got a patched mv643xx_eth driver which is ported to support=
=20
the 64260, too.
Now the driver is integrated and runs complete through initialisation=20
bringing up an eth0 device.
The initialisation seams to be ok (no error messages), the device is up=20
and routing information is setup.
Now I try to ping a remote station but I receive nothing and I get no=20
feedback from the remote compter.
As soon as I turn of the net interface (ifconfig eth0 down) I get the=20
message "Tx time out or no link?)
Is there anything else I can check? Any idea what may cause this problem?

Thanks a lot for your help

Joachim



___________________________________________________________________________=
____________________________________________
Der Inhalt dieser E-Mail ist f?r den Absender rechtlich nicht verbindlich.=
=20
Informieren Sie uns bitte, wenn Sie diese E-Mail f?lschlicherweise erhalten=
 haben (Fax: +49-69-5805-1399). Bitte l?schen Sie in diesem Fall die Nachri=
cht. Jede Form der weiteren Benutzung ist untersagt.

The content of this e-mail is not legally binding upon the sender.
If this e-mail was transmitted to you by error, then please inform us accor=
dingly (Fax: +49-69-5805-1399). In such case you are requested to erase the=
 message. Any use of such e-mail message is strictly prohibited.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://ozlabs.org/pipermail/linuxppc-embedded/attachments/20070824/5bb=
5a616/attachment-0001.htm=20

------------------------------

Message: 7
Date: Fri, 24 Aug 2007 08:49:46 -0700
From: David Hawkins <dwh@ovro.caltech.edu>
Subject: Re: little endian page mapping on PQ3
To: Jose Almeida <jalmeida@sysgo.fr>
Cc: Joyeau Sylvain <Sylvain.Joyeau@thomson.net>,
=09Linuxppc-embedded@ozlabs.org
Message-ID: <46CEFE1A.40905@ovro.caltech.edu>
Content-Type: text/plain; charset=3DISO-8859-1; format=3Dflowed

Hi Jose,

> I want to do using an mmap() entry point in a driver, in order to map=
=20
> this to the user. Of course in that case ioremap() does not work.
>=20
> Any Clue ?
>=20

I used the little-endian flag on the Yosemite board (440EP)
to test what the flag did.

http://www.ovro.caltech.edu/~dwh/correlator/pdf/LNX-762-Hawkins.pdf
http://www.ovro.caltech.edu/~dwh/correlator/software/driver_design.tar.gz

Look at the mmap function in pci_io.c.

=09/* PowerPC endian control
=09 * - default is cleared, big-endian
=09 */
#ifdef _PAGE_ENDIAN
=09if (bar->little_endian) {
=09=09pgprot_val(vma->vm_page_prot) |=3D _PAGE_ENDIAN;
=09} else {
=09=09pgprot_val(vma->vm_page_prot) &=3D ~_PAGE_ENDIAN;
=09}
=09if (pgprot_val(vma->vm_page_prot) & _PAGE_ENDIAN) {
=09=09LOG_DEBUG("_PAGE_ENDIAN is set\n");
=09} else {
=09=09LOG_DEBUG("_PAGE_ENDIAN is not set\n");
=09}
#endif

It might be the same for the PQ3 ... at least it'll be
pretty similar.

Dave


------------------------------

_______________________________________________
Linuxppc-embedded mailing list
Linuxppc-embedded@ozlabs.org
https://ozlabs.org/mailman/listinfo/linuxppc-embedded

End of Linuxppc-embedded Digest, Vol 36, Issue 59
*************************************************
------=_Part_5143_32477052.1188006812935--