linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* some problems on the SystemACE driver.
@ 2006-07-11 19:47 Ming Liu
  2006-07-12  9:54 ` Ameet Patil
  0 siblings, 1 reply; 15+ messages in thread
From: Ming Liu @ 2006-07-11 19:47 UTC (permalink / raw)
  To: ammubhai; +Cc: linuxppc-embedded

Dear Ameet,
Sorry to bother you again but I am totally confused on the systemACE 
driver. First let me show you the problem.

1. I downloaded the linux kernel of 2.6.17.1, also the patch for SystemACE 
driver. Applied the patch to the kernel. Replaced the xparameters_ml403.h 
with the generated file xparameters_ml300.h from Xilinx EDK. Make 
menuconfig, make dep and make zImage. Then the error shows like this:

drivers/block/xilinx_sysace/xsysace.c:120:6: warning: 
"XPAR_XSYSACE_MEM_WIDTH" is not defined
drivers/block/xilinx_sysace/xsysace.c: In function `XSysAce_LookupConfig':
drivers/block/xilinx_sysace/xsysace.c:366: error: 
`XPAR_XSYSACE_NUM_INSTANCES' undeclared (first use in this function)
drivers/block/xilinx_sysace/xsysace.c:366: error: (Each undeclared 
identifier is reported only once
drivers/block/xilinx_sysace/xsysace.c:366: error: for each function it 
appears in.)
make[3]: *** [drivers/block/xilinx_sysace/xsysace.o] Error 1
make[2]: *** [drivers/block/xilinx_sysace] Error 2
make[1]: *** [drivers/block] Error 2
make: *** [drivers] Error 2

I think this is because of the no inclusion of the xparameters header file. 
So I change #include "xparameters.h" into  #include " 
/home/mingliu/linux-2.6.17.1/arch/ppc/platforms/4xx/xparameters/xparameters.h" 
in the files of xsysace.c and xsysace_g.c, using the full address to 
specify the header file. In fact, this is not a serious problem and it 
often happens. But, after the modification, another problem happened: 

  GEN     .version
  CHK     include/linux/compile.h
  UPD     include/linux/compile.h
  CC      init/version.o
  LD      init/built-in.o
  LD      .tmp_vmlinux1
drivers/built-in.o(.text+0x2234a): In function `XSysAce_GetCfgAddr':
: undefined reference to `XAssertStatus'
drivers/built-in.o(.text+0x2235e): In function `XSysAce_GetCfgAddr':
: undefined reference to `XAssertStatus'
drivers/built-in.o(.text+0x22364): In function `XSysAce_GetCfgAddr':
: undefined reference to `XAssert'
drivers/built-in.o(.text+0x22372): In function `XSysAce_GetCfgAddr':
: undefined reference to `XAssertStatus'
drivers/built-in.o(.text+0x2237a): In function `XSysAce_GetCfgAddr':
: undefined reference to `XAssertStatus'
drivers/built-in.o(.text+0x22394): In function `XSysAce_GetCfgAddr':
: undefined reference to `XAssert'
drivers/built-in.o(.text+0x223a2): In function `XSysAce_GetCfgAddr':
: undefined reference to `XAssertStatus'
drivers/built-in.o(.text+0x223aa): In function `XSysAce_GetCfgAddr':
: undefined reference to `XAssertStatus'
drivers/built-in.o(.text+0x22cd6): In function `XSysAce_Initialize':
: undefined reference to `XAssertStatus'
drivers/built-in.o(.text+0x22cdc): In function `XSysAce_Initialize':
: undefined reference to `XAssert'
drivers/built-in.o(.text+0x22cea): In function `XSysAce_Initialize':
: undefined reference to `XAssertStatus'

......( a long information to say that undefined reference to the XAssert 
things.)

Also, I tried this in the kernel 2.6.16-rc5. (In fact I prefer this version 
because the temac driver is for this version. ) The same problem happened. 
I checked the source code. The problem happened in the file 
driver/block/xilinx_sysace/adapter.c, etc. Also, the XAssert things are 
defined in the file arch/ppc/platforms/4xx/xilinx_ocp/xbasic_types.c. (In 
2.6.16 kernel, it is also defined in driver/xilinx_edk/xbasic_types.c. 
There are two copies of this file. ) I think the problem is, the systemACE 
files cannot link together with the xbasic_types.c file. 

I heard that you have tested this driver. Have you got this problem? Why 
there are so many strange problems for me while you have tested without 
problem? Without the CF card, I cannot try the Temac driver and my work is 
totally blocked. So I have to ask for your suggestion. Really anxious for 
your useful guidance. Thanks a lot!!!!!!

Regards
Ming

_________________________________________________________________
与联机的朋友进行交流,请使用 MSN Messenger:  http://messenger.msn.com/cn  

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

* Re: some problems on the SystemACE driver.
  2006-07-11 19:47 some problems on the SystemACE driver Ming Liu
@ 2006-07-12  9:54 ` Ameet Patil
  2006-07-12 15:55   ` Ming Liu
  0 siblings, 1 reply; 15+ messages in thread
From: Ameet Patil @ 2006-07-12  9:54 UTC (permalink / raw)
  To: Ming Liu; +Cc: linuxppc-embedded

Hi Ming,

> I heard that you have tested this driver. Have you got this problem?
> Why there are so many strange problems for me while you have tested
> without problem?

Yes, that is right! When I say... I have tested - "it really means I
have tested". So what's the problem? It works for me but not you? The
obvious difference: mine is a ML300 configuration and yours ML403.

There were some files which unknowing were made dependant on ML300
target. I have now made them compile for both targets. It should work
fine for you now (Hopefully!). Download the updated patch from the same
location.

http://www.cs.york.ac.uk/rtslab/demos/amos/xupv2pro/patches/linuxppc-2.6.17_sysace.patch

Since I don't have ML403 board, theres no way I can test this patch on
it. I rely on you in doing this... and thanks for letting me know the
issues.

WARNING: There might be more issues. :-)

Please DONOT hesitate to raise any issues with the driver. I am more
than happy to fix them.

-Ameet

Ming Liu wrote:
> Dear Ameet,
> Sorry to bother you again but I am totally confused on the systemACE 
> driver. First let me show you the problem.
> 
> 1. I downloaded the linux kernel of 2.6.17.1, also the patch for 
> SystemACE driver. Applied the patch to the kernel. Replaced the 
> xparameters_ml403.h with the generated file xparameters_ml300.h from 
> Xilinx EDK. Make menuconfig, make dep and make zImage. Then the error 
> shows like this:
> 
> drivers/block/xilinx_sysace/xsysace.c:120:6: warning: 
> "XPAR_XSYSACE_MEM_WIDTH" is not defined
> drivers/block/xilinx_sysace/xsysace.c: In function `XSysAce_LookupConfig':
> drivers/block/xilinx_sysace/xsysace.c:366: error: 
> `XPAR_XSYSACE_NUM_INSTANCES' undeclared (first use in this function)
> drivers/block/xilinx_sysace/xsysace.c:366: error: (Each undeclared 
> identifier is reported only once
> drivers/block/xilinx_sysace/xsysace.c:366: error: for each function it 
> appears in.)
> make[3]: *** [drivers/block/xilinx_sysace/xsysace.o] Error 1
> make[2]: *** [drivers/block/xilinx_sysace] Error 2
> make[1]: *** [drivers/block] Error 2
> make: *** [drivers] Error 2
> 
> I think this is because of the no inclusion of the xparameters header 
> file. So I change #include "xparameters.h" into  #include " 
> /home/mingliu/linux-2.6.17.1/arch/ppc/platforms/4xx/xparameters/xparameters.h" 
> in the files of xsysace.c and xsysace_g.c, using the full address to 
> specify the header file. In fact, this is not a serious problem and it 
> often happens. But, after the modification, another problem happened:
>  GEN     .version
>  CHK     include/linux/compile.h
>  UPD     include/linux/compile.h
>  CC      init/version.o
>  LD      init/built-in.o
>  LD      .tmp_vmlinux1
> drivers/built-in.o(.text+0x2234a): In function `XSysAce_GetCfgAddr':
> : undefined reference to `XAssertStatus'
> drivers/built-in.o(.text+0x2235e): In function `XSysAce_GetCfgAddr':
> : undefined reference to `XAssertStatus'
> drivers/built-in.o(.text+0x22364): In function `XSysAce_GetCfgAddr':
> : undefined reference to `XAssert'
> drivers/built-in.o(.text+0x22372): In function `XSysAce_GetCfgAddr':
> : undefined reference to `XAssertStatus'
> drivers/built-in.o(.text+0x2237a): In function `XSysAce_GetCfgAddr':
> : undefined reference to `XAssertStatus'
> drivers/built-in.o(.text+0x22394): In function `XSysAce_GetCfgAddr':
> : undefined reference to `XAssert'
> drivers/built-in.o(.text+0x223a2): In function `XSysAce_GetCfgAddr':
> : undefined reference to `XAssertStatus'
> drivers/built-in.o(.text+0x223aa): In function `XSysAce_GetCfgAddr':
> : undefined reference to `XAssertStatus'
> drivers/built-in.o(.text+0x22cd6): In function `XSysAce_Initialize':
> : undefined reference to `XAssertStatus'
> drivers/built-in.o(.text+0x22cdc): In function `XSysAce_Initialize':
> : undefined reference to `XAssert'
> drivers/built-in.o(.text+0x22cea): In function `XSysAce_Initialize':
> : undefined reference to `XAssertStatus'
> 
> ......( a long information to say that undefined reference to the 
> XAssert things.)
> 
> Also, I tried this in the kernel 2.6.16-rc5. (In fact I prefer this 
> version because the temac driver is for this version. ) The same problem 
> happened. I checked the source code. The problem happened in the file 
> driver/block/xilinx_sysace/adapter.c, etc. Also, the XAssert things are 
> defined in the file arch/ppc/platforms/4xx/xilinx_ocp/xbasic_types.c. 
> (In 2.6.16 kernel, it is also defined in 
> driver/xilinx_edk/xbasic_types.c. There are two copies of this file. ) I 
> think the problem is, the systemACE files cannot link together with the 
> xbasic_types.c file.
> I heard that you have tested this driver. Have you got this problem? Why 
> there are so many strange problems for me while you have tested without 
> problem? Without the CF card, I cannot try the Temac driver and my work 
> is totally blocked. So I have to ask for your suggestion. Really anxious 
> for your useful guidance. Thanks a lot!!!!!!
> 
> Regards
> Ming
> 
> _________________________________________________________________
> 与联机的朋友进行交流,请使用 MSN Messenger:  http://messenger.msn.com/cn 
> 

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

* Re: some problems on the SystemACE driver.
  2006-07-12  9:54 ` Ameet Patil
@ 2006-07-12 15:55   ` Ming Liu
  2006-07-12 18:22     ` Ameet Patil
  0 siblings, 1 reply; 15+ messages in thread
From: Ming Liu @ 2006-07-12 15:55 UTC (permalink / raw)
  To: ammubhai; +Cc: akonovalov, linuxppc-embedded

Dear Ameet (and Andrei),
I have tested the new patch for SystemACE driver. With respect to the 
single SystemACE driver, it works well. I can boot my linux in ML403 board. 
(I tried both 2.6.16-rc5 and 2.6.17.1 versions) So first congratulations 
and thanks for your hard work!

However, when I tried to implemented Temac (with and without SystemACE. TWO 
conditions.), some errors happened. Here is the compilation information:

  CC      init/do_mounts.o
  LD      init/mounts.o
  CC      init/initramfs.o
  LD      init/built-in.o
  LD      .tmp_vmlinux1
drivers/built-in.o(.sdata+0x2c): multiple definition of `XWaitInAssert'
arch/ppc/platforms/4xx/built-in.o(.sdata+0x0): first defined here
drivers/built-in.o(.text+0x3e480): In function `XPacketFifoV200a_WriteDre':
: multiple definition of `XPacketFifoV200a_WriteDre'
arch/ppc/platforms/4xx/built-in.o(.text+0x1b14): first defined here
drivers/built-in.o(.text+0x3e158): In function `XPacketFifoV200a_SelfTest':
: multiple definition of `XPacketFifoV200a_SelfTest'
arch/ppc/platforms/4xx/built-in.o(.text+0x17ec): first defined here
drivers/built-in.o(.sbss+0x18c): multiple definition of `XAssertStatus'
arch/ppc/platforms/4xx/built-in.o(.sbss+0x8): first defined here
drivers/built-in.o(.text+0x3e798): In function `XPacketFifoV200a_L0Write':
: multiple definition of `XPacketFifoV200a_L0Write'
arch/ppc/platforms/4xx/built-in.o(.text+0x1e2c): first defined here
drivers/built-in.o(.text+0x3e280): In function `XPacketFifoV200a_Read':
: multiple definition of `XPacketFifoV200a_Read'
arch/ppc/platforms/4xx/built-in.o(.text+0x1914): first defined here
drivers/built-in.o(.text+0x3e55c): In function `XPacketFifoV200a_L0Read':
: multiple definition of `XPacketFifoV200a_L0Read'
arch/ppc/platforms/4xx/built-in.o(.text+0x1bf0): first defined here
drivers/built-in.o(.text+0x3e380): In function `XPacketFifoV200a_Write':
: multiple definition of `XPacketFifoV200a_Write'
arch/ppc/platforms/4xx/built-in.o(.text+0x1a14): first defined here
drivers/built-in.o(.text+0x3e0cc): In function `XAssertSetCallback':
: multiple definition of `XAssertSetCallback'
arch/ppc/platforms/4xx/built-in.o(.text+0x44): first defined here
drivers/built-in.o(.text+0x3e9fc): In function 
`XPacketFifoV200a_L0WriteDre':
: multiple definition of `XPacketFifoV200a_L0WriteDre'
arch/ppc/platforms/4xx/built-in.o(.text+0x2090): first defined here
drivers/built-in.o(.text+0x3e0dc): In function 
`XPacketFifoV200a_Initialize':
: multiple definition of `XPacketFifoV200a_Initialize'
arch/ppc/platforms/4xx/built-in.o(.text+0x1770): first defined here
drivers/built-in.o(.text+0x3e088): In function `XAssert':
: multiple definition of `XAssert'
arch/ppc/platforms/4xx/built-in.o(.text+0x0): first defined here
drivers/built-in.o(.text+0x3e0d8): In function `XNullHandler':
: multiple definition of `XNullHandler'
arch/ppc/platforms/4xx/built-in.o(.text+0x50): first defined here
make: *** [.tmp_vmlinux1] Error 1

It looks like that your patch affect some symbols which are used by Temac. 
(When I use the old patch for SystemACE, there is no problem like this if I 
only choose Temac. ) So let's find out the problem together. Also, I don't 
know if this is a problem from SystemACE or Temac , I would like to invite 
Andrei to look at this altogether. If any suggestion, please feel free to 
announce. Thanks for both your help. 

Regards
Ming



>From: Ameet Patil <ammubhai@gmail.com>
>To: Ming Liu <eemingliu@hotmail.com>
>CC: linuxppc-embedded@ozlabs.org
>Subject: Re: some problems on the SystemACE driver.
>Date: Wed, 12 Jul 2006 10:54:13 +0100
>
>Hi Ming,
>
> > I heard that you have tested this driver. Have you got this problem?
> > Why there are so many strange problems for me while you have tested
> > without problem?
>
>Yes, that is right! When I say... I have tested - "it really means I
>have tested". So what's the problem? It works for me but not you? The
>obvious difference: mine is a ML300 configuration and yours ML403.
>
>There were some files which unknowing were made dependant on ML300
>target. I have now made them compile for both targets. It should work
>fine for you now (Hopefully!). Download the updated patch from the same
>location.
>
>http://www.cs.york.ac.uk/rtslab/demos/amos/xupv2pro/patches/linuxppc-2.6.17_sysace.patch

>
>Since I don't have ML403 board, theres no way I can test this patch on
>it. I rely on you in doing this... and thanks for letting me know the
>issues.
>
>WARNING: There might be more issues. :-)
>
>Please DONOT hesitate to raise any issues with the driver. I am more
>than happy to fix them.
>
>-Ameet
>
>Ming Liu wrote:
> > Dear Ameet,
> > Sorry to bother you again but I am totally confused on the systemACE
> > driver. First let me show you the problem.
> >
> > 1. I downloaded the linux kernel of 2.6.17.1, also the patch for
> > SystemACE driver. Applied the patch to the kernel. Replaced the
> > xparameters_ml403.h with the generated file xparameters_ml300.h from
> > Xilinx EDK. Make menuconfig, make dep and make zImage. Then the error
> > shows like this:
> >
> > drivers/block/xilinx_sysace/xsysace.c:120:6: warning:
> > "XPAR_XSYSACE_MEM_WIDTH" is not defined
> > drivers/block/xilinx_sysace/xsysace.c: In function 
`XSysAce_LookupConfig':
> > drivers/block/xilinx_sysace/xsysace.c:366: error:
> > `XPAR_XSYSACE_NUM_INSTANCES' undeclared (first use in this function)
> > drivers/block/xilinx_sysace/xsysace.c:366: error: (Each undeclared
> > identifier is reported only once
> > drivers/block/xilinx_sysace/xsysace.c:366: error: for each function it
> > appears in.)
> > make[3]: *** [drivers/block/xilinx_sysace/xsysace.o] Error 1
> > make[2]: *** [drivers/block/xilinx_sysace] Error 2
> > make[1]: *** [drivers/block] Error 2
> > make: *** [drivers] Error 2
> >
> > I think this is because of the no inclusion of the xparameters header
> > file. So I change #include "xparameters.h" into  #include "
> > 
/home/mingliu/linux-2.6.17.1/arch/ppc/platforms/4xx/xparameters/xparameters.h"

> > in the files of xsysace.c and xsysace_g.c, using the full address to
> > specify the header file. In fact, this is not a serious problem and it
> > often happens. But, after the modification, another problem happened:
> >  GEN     .version
> >  CHK     include/linux/compile.h
> >  UPD     include/linux/compile.h
> >  CC      init/version.o
> >  LD      init/built-in.o
> >  LD      .tmp_vmlinux1
> > drivers/built-in.o(.text+0x2234a): In function `XSysAce_GetCfgAddr':
> > : undefined reference to `XAssertStatus'
> > drivers/built-in.o(.text+0x2235e): In function `XSysAce_GetCfgAddr':
> > : undefined reference to `XAssertStatus'
> > drivers/built-in.o(.text+0x22364): In function `XSysAce_GetCfgAddr':
> > : undefined reference to `XAssert'
> > drivers/built-in.o(.text+0x22372): In function `XSysAce_GetCfgAddr':
> > : undefined reference to `XAssertStatus'
> > drivers/built-in.o(.text+0x2237a): In function `XSysAce_GetCfgAddr':
> > : undefined reference to `XAssertStatus'
> > drivers/built-in.o(.text+0x22394): In function `XSysAce_GetCfgAddr':
> > : undefined reference to `XAssert'
> > drivers/built-in.o(.text+0x223a2): In function `XSysAce_GetCfgAddr':
> > : undefined reference to `XAssertStatus'
> > drivers/built-in.o(.text+0x223aa): In function `XSysAce_GetCfgAddr':
> > : undefined reference to `XAssertStatus'
> > drivers/built-in.o(.text+0x22cd6): In function `XSysAce_Initialize':
> > : undefined reference to `XAssertStatus'
> > drivers/built-in.o(.text+0x22cdc): In function `XSysAce_Initialize':
> > : undefined reference to `XAssert'
> > drivers/built-in.o(.text+0x22cea): In function `XSysAce_Initialize':
> > : undefined reference to `XAssertStatus'
> >
> > ......( a long information to say that undefined reference to the
> > XAssert things.)
> >
> > Also, I tried this in the kernel 2.6.16-rc5. (In fact I prefer this
> > version because the temac driver is for this version. ) The same 
problem
> > happened. I checked the source code. The problem happened in the file
> > driver/block/xilinx_sysace/adapter.c, etc. Also, the XAssert things are
> > defined in the file arch/ppc/platforms/4xx/xilinx_ocp/xbasic_types.c.
> > (In 2.6.16 kernel, it is also defined in
> > driver/xilinx_edk/xbasic_types.c. There are two copies of this file. ) 
I
> > think the problem is, the systemACE files cannot link together with the
> > xbasic_types.c file.
> > I heard that you have tested this driver. Have you got this problem? 
Why
> > there are so many strange problems for me while you have tested without
> > problem? Without the CF card, I cannot try the Temac driver and my work
> > is totally blocked. So I have to ask for your suggestion. Really 
anxious
> > for your useful guidance. Thanks a lot!!!!!!
> >
> > Regards
> > Ming
> >
> > _________________________________________________________________
> > 与联机的朋友进行交流,请使用 MSN Messenger:  
http://messenger.msn.com/cn
> >

_________________________________________________________________
免费下载 MSN Explorer:   http://explorer.msn.com/lccn/  

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

* Re: some problems on the SystemACE driver.
  2006-07-12 15:55   ` Ming Liu
@ 2006-07-12 18:22     ` Ameet Patil
  2006-07-13 11:57       ` Ming Liu
  0 siblings, 1 reply; 15+ messages in thread
From: Ameet Patil @ 2006-07-12 18:22 UTC (permalink / raw)
  To: Ming Liu; +Cc: akonovalov, linuxppc-embedded

Hi Ming,
   Thanks for testing the driver patch! The errors you get when
compiling both - SysAce and TEMAC are reasonable. My ignorance or call
it me being lazy. I recollect now... I was also working on the Xilinx
Ethernet driver and forgot to cleanup that code before creating the
patch for the SysAce driver. Thus, it so happens that code for the
ethernet driver in my patch also gets compiled along with the TEMAC. I
have deleted the unnecessary code files and updated the patch (name
changed). Find the new one here:
https://www.cs.york.ac.uk/rtslab/demos/amos/xupv2pro/patches/linuxppc-2.6.17.1-sysace-1.1.patch

Let me know if it works for you now?

-Ameet

Ming Liu wrote:
> Dear Ameet (and Andrei),
> I have tested the new patch for SystemACE driver. With respect to the 
> single SystemACE driver, it works well. I can boot my linux in ML403 
> board. (I tried both 2.6.16-rc5 and 2.6.17.1 versions) So first 
> congratulations and thanks for your hard work!
> 
> However, when I tried to implemented Temac (with and without SystemACE. 
> TWO conditions.), some errors happened. Here is the compilation 
> information:
> 
>  CC      init/do_mounts.o
>  LD      init/mounts.o
>  CC      init/initramfs.o
>  LD      init/built-in.o
>  LD      .tmp_vmlinux1
> drivers/built-in.o(.sdata+0x2c): multiple definition of `XWaitInAssert'
> arch/ppc/platforms/4xx/built-in.o(.sdata+0x0): first defined here
> drivers/built-in.o(.text+0x3e480): In function `XPacketFifoV200a_WriteDre':
> : multiple definition of `XPacketFifoV200a_WriteDre'
> arch/ppc/platforms/4xx/built-in.o(.text+0x1b14): first defined here
> drivers/built-in.o(.text+0x3e158): In function `XPacketFifoV200a_SelfTest':
> : multiple definition of `XPacketFifoV200a_SelfTest'
> arch/ppc/platforms/4xx/built-in.o(.text+0x17ec): first defined here
> drivers/built-in.o(.sbss+0x18c): multiple definition of `XAssertStatus'
> arch/ppc/platforms/4xx/built-in.o(.sbss+0x8): first defined here
> drivers/built-in.o(.text+0x3e798): In function `XPacketFifoV200a_L0Write':
> : multiple definition of `XPacketFifoV200a_L0Write'
> arch/ppc/platforms/4xx/built-in.o(.text+0x1e2c): first defined here
> drivers/built-in.o(.text+0x3e280): In function `XPacketFifoV200a_Read':
> : multiple definition of `XPacketFifoV200a_Read'
> arch/ppc/platforms/4xx/built-in.o(.text+0x1914): first defined here
> drivers/built-in.o(.text+0x3e55c): In function `XPacketFifoV200a_L0Read':
> : multiple definition of `XPacketFifoV200a_L0Read'
> arch/ppc/platforms/4xx/built-in.o(.text+0x1bf0): first defined here
> drivers/built-in.o(.text+0x3e380): In function `XPacketFifoV200a_Write':
> : multiple definition of `XPacketFifoV200a_Write'
> arch/ppc/platforms/4xx/built-in.o(.text+0x1a14): first defined here
> drivers/built-in.o(.text+0x3e0cc): In function `XAssertSetCallback':
> : multiple definition of `XAssertSetCallback'
> arch/ppc/platforms/4xx/built-in.o(.text+0x44): first defined here
> drivers/built-in.o(.text+0x3e9fc): In function 
> `XPacketFifoV200a_L0WriteDre':
> : multiple definition of `XPacketFifoV200a_L0WriteDre'
> arch/ppc/platforms/4xx/built-in.o(.text+0x2090): first defined here
> drivers/built-in.o(.text+0x3e0dc): In function 
> `XPacketFifoV200a_Initialize':
> : multiple definition of `XPacketFifoV200a_Initialize'
> arch/ppc/platforms/4xx/built-in.o(.text+0x1770): first defined here
> drivers/built-in.o(.text+0x3e088): In function `XAssert':
> : multiple definition of `XAssert'
> arch/ppc/platforms/4xx/built-in.o(.text+0x0): first defined here
> drivers/built-in.o(.text+0x3e0d8): In function `XNullHandler':
> : multiple definition of `XNullHandler'
> arch/ppc/platforms/4xx/built-in.o(.text+0x50): first defined here
> make: *** [.tmp_vmlinux1] Error 1
> 
> It looks like that your patch affect some symbols which are used by 
> Temac. (When I use the old patch for SystemACE, there is no problem like 
> this if I only choose Temac. ) So let's find out the problem together. 
> Also, I don't know if this is a problem from SystemACE or Temac , I 
> would like to invite Andrei to look at this altogether. If any 
> suggestion, please feel free to announce. Thanks for both your help.
> Regards
> Ming
> 
> 
> 
>> From: Ameet Patil <ammubhai@gmail.com>
>> To: Ming Liu <eemingliu@hotmail.com>
>> CC: linuxppc-embedded@ozlabs.org
>> Subject: Re: some problems on the SystemACE driver.
>> Date: Wed, 12 Jul 2006 10:54:13 +0100
>>
>> Hi Ming,
>>
>> > I heard that you have tested this driver. Have you got this problem?
>> > Why there are so many strange problems for me while you have tested
>> > without problem?
>>
>> Yes, that is right! When I say... I have tested - "it really means I
>> have tested". So what's the problem? It works for me but not you? The
>> obvious difference: mine is a ML300 configuration and yours ML403.
>>
>> There were some files which unknowing were made dependant on ML300
>> target. I have now made them compile for both targets. It should work
>> fine for you now (Hopefully!). Download the updated patch from the same
>> location.
>>
>> http://www.cs.york.ac.uk/rtslab/demos/amos/xupv2pro/patches/linuxppc-2.6.17_sysace.patch 
>>
> 
>>
>> Since I don't have ML403 board, theres no way I can test this patch on
>> it. I rely on you in doing this... and thanks for letting me know the
>> issues.
>>
>> WARNING: There might be more issues. :-)
>>
>> Please DONOT hesitate to raise any issues with the driver. I am more
>> than happy to fix them.
>>
>> -Ameet
>>
>> Ming Liu wrote:
>> > Dear Ameet,
>> > Sorry to bother you again but I am totally confused on the systemACE
>> > driver. First let me show you the problem.
>> >
>> > 1. I downloaded the linux kernel of 2.6.17.1, also the patch for
>> > SystemACE driver. Applied the patch to the kernel. Replaced the
>> > xparameters_ml403.h with the generated file xparameters_ml300.h from
>> > Xilinx EDK. Make menuconfig, make dep and make zImage. Then the error
>> > shows like this:
>> >
>> > drivers/block/xilinx_sysace/xsysace.c:120:6: warning:
>> > "XPAR_XSYSACE_MEM_WIDTH" is not defined
>> > drivers/block/xilinx_sysace/xsysace.c: In function 
> `XSysAce_LookupConfig':
>> > drivers/block/xilinx_sysace/xsysace.c:366: error:
>> > `XPAR_XSYSACE_NUM_INSTANCES' undeclared (first use in this function)
>> > drivers/block/xilinx_sysace/xsysace.c:366: error: (Each undeclared
>> > identifier is reported only once
>> > drivers/block/xilinx_sysace/xsysace.c:366: error: for each function it
>> > appears in.)
>> > make[3]: *** [drivers/block/xilinx_sysace/xsysace.o] Error 1
>> > make[2]: *** [drivers/block/xilinx_sysace] Error 2
>> > make[1]: *** [drivers/block] Error 2
>> > make: *** [drivers] Error 2
>> >
>> > I think this is because of the no inclusion of the xparameters header
>> > file. So I change #include "xparameters.h" into  #include "
>> > 
> /home/mingliu/linux-2.6.17.1/arch/ppc/platforms/4xx/xparameters/xparameters.h" 
> 
> 
>> > in the files of xsysace.c and xsysace_g.c, using the full address to
>> > specify the header file. In fact, this is not a serious problem and it
>> > often happens. But, after the modification, another problem happened:
>> >  GEN     .version
>> >  CHK     include/linux/compile.h
>> >  UPD     include/linux/compile.h
>> >  CC      init/version.o
>> >  LD      init/built-in.o
>> >  LD      .tmp_vmlinux1
>> > drivers/built-in.o(.text+0x2234a): In function `XSysAce_GetCfgAddr':
>> > : undefined reference to `XAssertStatus'
>> > drivers/built-in.o(.text+0x2235e): In function `XSysAce_GetCfgAddr':
>> > : undefined reference to `XAssertStatus'
>> > drivers/built-in.o(.text+0x22364): In function `XSysAce_GetCfgAddr':
>> > : undefined reference to `XAssert'
>> > drivers/built-in.o(.text+0x22372): In function `XSysAce_GetCfgAddr':
>> > : undefined reference to `XAssertStatus'
>> > drivers/built-in.o(.text+0x2237a): In function `XSysAce_GetCfgAddr':
>> > : undefined reference to `XAssertStatus'
>> > drivers/built-in.o(.text+0x22394): In function `XSysAce_GetCfgAddr':
>> > : undefined reference to `XAssert'
>> > drivers/built-in.o(.text+0x223a2): In function `XSysAce_GetCfgAddr':
>> > : undefined reference to `XAssertStatus'
>> > drivers/built-in.o(.text+0x223aa): In function `XSysAce_GetCfgAddr':
>> > : undefined reference to `XAssertStatus'
>> > drivers/built-in.o(.text+0x22cd6): In function `XSysAce_Initialize':
>> > : undefined reference to `XAssertStatus'
>> > drivers/built-in.o(.text+0x22cdc): In function `XSysAce_Initialize':
>> > : undefined reference to `XAssert'
>> > drivers/built-in.o(.text+0x22cea): In function `XSysAce_Initialize':
>> > : undefined reference to `XAssertStatus'
>> >
>> > ......( a long information to say that undefined reference to the
>> > XAssert things.)
>> >
>> > Also, I tried this in the kernel 2.6.16-rc5. (In fact I prefer this
>> > version because the temac driver is for this version. ) The same 
> problem
>> > happened. I checked the source code. The problem happened in the file
>> > driver/block/xilinx_sysace/adapter.c, etc. Also, the XAssert things are
>> > defined in the file arch/ppc/platforms/4xx/xilinx_ocp/xbasic_types.c.
>> > (In 2.6.16 kernel, it is also defined in
>> > driver/xilinx_edk/xbasic_types.c. There are two copies of this file. ) 
> I
>> > think the problem is, the systemACE files cannot link together with the
>> > xbasic_types.c file.
>> > I heard that you have tested this driver. Have you got this problem? 
> Why
>> > there are so many strange problems for me while you have tested without
>> > problem? Without the CF card, I cannot try the Temac driver and my work
>> > is totally blocked. So I have to ask for your suggestion. Really 
> anxious
>> > for your useful guidance. Thanks a lot!!!!!!
>> >
>> > Regards
>> > Ming
>> >
>> > _________________________________________________________________
>> > 与联机的朋友进行交流,请使用 MSN Messenger:  
> http://messenger.msn.com/cn
>> >
> 
> _________________________________________________________________
> 免费下载 MSN Explorer:   http://explorer.msn.com/lccn/ 
> 

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

* Re: some problems on the SystemACE driver.
  2006-07-12 18:22     ` Ameet Patil
@ 2006-07-13 11:57       ` Ming Liu
  0 siblings, 0 replies; 15+ messages in thread
From: Ming Liu @ 2006-07-13 11:57 UTC (permalink / raw)
  To: ammubhai; +Cc: linuxppc-embedded

Dear Ameet,
Have you seen the response I sent to you last night? The content is that 
there is still the same problem in the newly updated patch for SystemACE. I 
forgot to CC a copy to the maillist so I don't know if you have received 
it. I don't mean to push you. :)

Any progress on the patch? If yes, please tell me a.s.a.p. and I am anxious 
for testing it. 

Regards
Ming


>From: Ameet Patil <ammubhai@gmail.com>
>To: Ming Liu <eemingliu@hotmail.com>
>CC: akonovalov@ru.mvista.com,  linuxppc-embedded@ozlabs.org
>Subject: Re: some problems on the SystemACE driver.
>Date: Wed, 12 Jul 2006 19:22:08 +0100
>
>Hi Ming,
>    Thanks for testing the driver patch! The errors you get when
>compiling both - SysAce and TEMAC are reasonable. My ignorance or call
>it me being lazy. I recollect now... I was also working on the Xilinx
>Ethernet driver and forgot to cleanup that code before creating the
>patch for the SysAce driver. Thus, it so happens that code for the
>ethernet driver in my patch also gets compiled along with the TEMAC. I
>have deleted the unnecessary code files and updated the patch (name
>changed). Find the new one here:
>https://www.cs.york.ac.uk/rtslab/demos/amos/xupv2pro/patches/linuxppc-2.6.17.1-sysace-1.1.patch

>
>Let me know if it works for you now?
>
>-Ameet
>
>Ming Liu wrote:
> > Dear Ameet (and Andrei),
> > I have tested the new patch for SystemACE driver. With respect to the
> > single SystemACE driver, it works well. I can boot my linux in ML403
> > board. (I tried both 2.6.16-rc5 and 2.6.17.1 versions) So first
> > congratulations and thanks for your hard work!
> >
> > However, when I tried to implemented Temac (with and without SystemACE.
> > TWO conditions.), some errors happened. Here is the compilation
> > information:
> >
> >  CC      init/do_mounts.o
> >  LD      init/mounts.o
> >  CC      init/initramfs.o
> >  LD      init/built-in.o
> >  LD      .tmp_vmlinux1
> > drivers/built-in.o(.sdata+0x2c): multiple definition of `XWaitInAssert'
> > arch/ppc/platforms/4xx/built-in.o(.sdata+0x0): first defined here
> > drivers/built-in.o(.text+0x3e480): In function 
`XPacketFifoV200a_WriteDre':
> > : multiple definition of `XPacketFifoV200a_WriteDre'
> > arch/ppc/platforms/4xx/built-in.o(.text+0x1b14): first defined here
> > drivers/built-in.o(.text+0x3e158): In function 
`XPacketFifoV200a_SelfTest':
> > : multiple definition of `XPacketFifoV200a_SelfTest'
> > arch/ppc/platforms/4xx/built-in.o(.text+0x17ec): first defined here
> > drivers/built-in.o(.sbss+0x18c): multiple definition of `XAssertStatus'
> > arch/ppc/platforms/4xx/built-in.o(.sbss+0x8): first defined here
> > drivers/built-in.o(.text+0x3e798): In function 
`XPacketFifoV200a_L0Write':
> > : multiple definition of `XPacketFifoV200a_L0Write'
> > arch/ppc/platforms/4xx/built-in.o(.text+0x1e2c): first defined here
> > drivers/built-in.o(.text+0x3e280): In function `XPacketFifoV200a_Read':
> > : multiple definition of `XPacketFifoV200a_Read'
> > arch/ppc/platforms/4xx/built-in.o(.text+0x1914): first defined here
> > drivers/built-in.o(.text+0x3e55c): In function 
`XPacketFifoV200a_L0Read':
> > : multiple definition of `XPacketFifoV200a_L0Read'
> > arch/ppc/platforms/4xx/built-in.o(.text+0x1bf0): first defined here
> > drivers/built-in.o(.text+0x3e380): In function 
`XPacketFifoV200a_Write':
> > : multiple definition of `XPacketFifoV200a_Write'
> > arch/ppc/platforms/4xx/built-in.o(.text+0x1a14): first defined here
> > drivers/built-in.o(.text+0x3e0cc): In function `XAssertSetCallback':
> > : multiple definition of `XAssertSetCallback'
> > arch/ppc/platforms/4xx/built-in.o(.text+0x44): first defined here
> > drivers/built-in.o(.text+0x3e9fc): In function
> > `XPacketFifoV200a_L0WriteDre':
> > : multiple definition of `XPacketFifoV200a_L0WriteDre'
> > arch/ppc/platforms/4xx/built-in.o(.text+0x2090): first defined here
> > drivers/built-in.o(.text+0x3e0dc): In function
> > `XPacketFifoV200a_Initialize':
> > : multiple definition of `XPacketFifoV200a_Initialize'
> > arch/ppc/platforms/4xx/built-in.o(.text+0x1770): first defined here
> > drivers/built-in.o(.text+0x3e088): In function `XAssert':
> > : multiple definition of `XAssert'
> > arch/ppc/platforms/4xx/built-in.o(.text+0x0): first defined here
> > drivers/built-in.o(.text+0x3e0d8): In function `XNullHandler':
> > : multiple definition of `XNullHandler'
> > arch/ppc/platforms/4xx/built-in.o(.text+0x50): first defined here
> > make: *** [.tmp_vmlinux1] Error 1
> >
> > It looks like that your patch affect some symbols which are used by
> > Temac. (When I use the old patch for SystemACE, there is no problem 
like
> > this if I only choose Temac. ) So let's find out the problem together.
> > Also, I don't know if this is a problem from SystemACE or Temac , I
> > would like to invite Andrei to look at this altogether. If any
> > suggestion, please feel free to announce. Thanks for both your help.
> > Regards
> > Ming
> >
> >
> >
> >> From: Ameet Patil <ammubhai@gmail.com>
> >> To: Ming Liu <eemingliu@hotmail.com>
> >> CC: linuxppc-embedded@ozlabs.org
> >> Subject: Re: some problems on the SystemACE driver.
> >> Date: Wed, 12 Jul 2006 10:54:13 +0100
> >>
> >> Hi Ming,
> >>
> >> > I heard that you have tested this driver. Have you got this problem?
> >> > Why there are so many strange problems for me while you have tested
> >> > without problem?
> >>
> >> Yes, that is right! When I say... I have tested - "it really means I
> >> have tested". So what's the problem? It works for me but not you? The
> >> obvious difference: mine is a ML300 configuration and yours ML403.
> >>
> >> There were some files which unknowing were made dependant on ML300
> >> target. I have now made them compile for both targets. It should work
> >> fine for you now (Hopefully!). Download the updated patch from the 
same
> >> location.
> >>
> >> 
http://www.cs.york.ac.uk/rtslab/demos/amos/xupv2pro/patches/linuxppc-2.6.17_sysace.patch

> >>
> >
> >>
> >> Since I don't have ML403 board, theres no way I can test this patch on
> >> it. I rely on you in doing this... and thanks for letting me know the
> >> issues.
> >>
> >> WARNING: There might be more issues. :-)
> >>
> >> Please DONOT hesitate to raise any issues with the driver. I am more
> >> than happy to fix them.
> >>
> >> -Ameet
> >>
> >> Ming Liu wrote:
> >> > Dear Ameet,
> >> > Sorry to bother you again but I am totally confused on the systemACE
> >> > driver. First let me show you the problem.
> >> >
> >> > 1. I downloaded the linux kernel of 2.6.17.1, also the patch for
> >> > SystemACE driver. Applied the patch to the kernel. Replaced the
> >> > xparameters_ml403.h with the generated file xparameters_ml300.h from
> >> > Xilinx EDK. Make menuconfig, make dep and make zImage. Then the 
error
> >> > shows like this:
> >> >
> >> > drivers/block/xilinx_sysace/xsysace.c:120:6: warning:
> >> > "XPAR_XSYSACE_MEM_WIDTH" is not defined
> >> > drivers/block/xilinx_sysace/xsysace.c: In function
> > `XSysAce_LookupConfig':
> >> > drivers/block/xilinx_sysace/xsysace.c:366: error:
> >> > `XPAR_XSYSACE_NUM_INSTANCES' undeclared (first use in this function)
> >> > drivers/block/xilinx_sysace/xsysace.c:366: error: (Each undeclared
> >> > identifier is reported only once
> >> > drivers/block/xilinx_sysace/xsysace.c:366: error: for each function 
it
> >> > appears in.)
> >> > make[3]: *** [drivers/block/xilinx_sysace/xsysace.o] Error 1
> >> > make[2]: *** [drivers/block/xilinx_sysace] Error 2
> >> > make[1]: *** [drivers/block] Error 2
> >> > make: *** [drivers] Error 2
> >> >
> >> > I think this is because of the no inclusion of the xparameters 
header
> >> > file. So I change #include "xparameters.h" into  #include "
> >> >
> > 
/home/mingliu/linux-2.6.17.1/arch/ppc/platforms/4xx/xparameters/xparameters.h"

> >
> >
> >> > in the files of xsysace.c and xsysace_g.c, using the full address to
> >> > specify the header file. In fact, this is not a serious problem and 
it
> >> > often happens. But, after the modification, another problem 
happened:
> >> >  GEN     .version
> >> >  CHK     include/linux/compile.h
> >> >  UPD     include/linux/compile.h
> >> >  CC      init/version.o
> >> >  LD      init/built-in.o
> >> >  LD      .tmp_vmlinux1
> >> > drivers/built-in.o(.text+0x2234a): In function `XSysAce_GetCfgAddr':
> >> > : undefined reference to `XAssertStatus'
> >> > drivers/built-in.o(.text+0x2235e): In function `XSysAce_GetCfgAddr':
> >> > : undefined reference to `XAssertStatus'
> >> > drivers/built-in.o(.text+0x22364): In function `XSysAce_GetCfgAddr':
> >> > : undefined reference to `XAssert'
> >> > drivers/built-in.o(.text+0x22372): In function `XSysAce_GetCfgAddr':
> >> > : undefined reference to `XAssertStatus'
> >> > drivers/built-in.o(.text+0x2237a): In function `XSysAce_GetCfgAddr':
> >> > : undefined reference to `XAssertStatus'
> >> > drivers/built-in.o(.text+0x22394): In function `XSysAce_GetCfgAddr':
> >> > : undefined reference to `XAssert'
> >> > drivers/built-in.o(.text+0x223a2): In function `XSysAce_GetCfgAddr':
> >> > : undefined reference to `XAssertStatus'
> >> > drivers/built-in.o(.text+0x223aa): In function `XSysAce_GetCfgAddr':
> >> > : undefined reference to `XAssertStatus'
> >> > drivers/built-in.o(.text+0x22cd6): In function `XSysAce_Initialize':
> >> > : undefined reference to `XAssertStatus'
> >> > drivers/built-in.o(.text+0x22cdc): In function `XSysAce_Initialize':
> >> > : undefined reference to `XAssert'
> >> > drivers/built-in.o(.text+0x22cea): In function `XSysAce_Initialize':
> >> > : undefined reference to `XAssertStatus'
> >> >
> >> > ......( a long information to say that undefined reference to the
> >> > XAssert things.)
> >> >
> >> > Also, I tried this in the kernel 2.6.16-rc5. (In fact I prefer this
> >> > version because the temac driver is for this version. ) The same
> > problem
> >> > happened. I checked the source code. The problem happened in the 
file
> >> > driver/block/xilinx_sysace/adapter.c, etc. Also, the XAssert things 
are
> >> > defined in the file 
arch/ppc/platforms/4xx/xilinx_ocp/xbasic_types.c.
> >> > (In 2.6.16 kernel, it is also defined in
> >> > driver/xilinx_edk/xbasic_types.c. There are two copies of this file. 
)
> > I
> >> > think the problem is, the systemACE files cannot link together with 
the
> >> > xbasic_types.c file.
> >> > I heard that you have tested this driver. Have you got this problem?
> > Why
> >> > there are so many strange problems for me while you have tested 
without
> >> > problem? Without the CF card, I cannot try the Temac driver and my 
work
> >> > is totally blocked. So I have to ask for your suggestion. Really
> > anxious
> >> > for your useful guidance. Thanks a lot!!!!!!
> >> >
> >> > Regards
> >> > Ming
> >> >
> >> > _________________________________________________________________
> >> > 与联机的朋友进行交流,请使用 MSN Messenger:
> > http://messenger.msn.com/cn
> >> >
> >
> > _________________________________________________________________
> > 免费下载 MSN Explorer:   http://explorer.msn.com/lccn/
> >

_________________________________________________________________
享用世界上最大的电子邮件系统― MSN Hotmail。  http://www.hotmail.com  

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

* Re: some problems on the SystemACE driver.
       [not found] <BAY110-F40A48564C0A5B30AB0DCCB2690@phx.gbl>
@ 2006-07-13 16:16 ` Ameet Patil
  2006-07-13 21:41   ` Ming Liu
  0 siblings, 1 reply; 15+ messages in thread
From: Ameet Patil @ 2006-07-13 16:16 UTC (permalink / raw)
  To: Ming Liu; +Cc: linuxppc-embedded

Hi Ming,
Instead of bouncing emails to and forth, lets do all at one place:

1. Which TEMAC patch are you using?
(http://source.mvista.com/~ank/paulus-powerpc/20060309/ppc32_xilinx_edk_temac.patch)
2. After applying the patch, is the driver getting compiled directly
without having to select it via "make menuconfig"?
3. I don't see a Makefile in the drivers/net/xilinx_temac/ folder?

Ofcourse, I can work my way to compile the driver. But is there any doc.
present explaining this?

-Ameet

Ming Liu wrote:
> Dear Ameet,
> Unfortunately, I tried the new patch and the same problem happened. Here 
> is the information:
> 
>  CC      drivers/xilinx_edk/xdmav2_simple.o
>  LD      drivers/xilinx_edk/built-in.o
>  LD      drivers/built-in.o
> drivers/xilinx_edk/built-in.o(.sdata+0x0): In function `XAssert':
> drivers/xilinx_edk/xbasic_types.c:105: multiple definition of 
> `XWaitInAssert'
> drivers/block/built-in.o(.sdata+0x4):drivers/block/rd.c:103: first 
> defined here
> drivers/xilinx_edk/built-in.o(.sbss+0x4): In function `XAssert':
> drivers/xilinx_edk/xbasic_types.c:105: multiple definition of 
> `XAssertStatus'
> drivers/block/built-in.o(.sbss+0x3c):include/asm-generic/bitops/non-atomic.h:108 
> 
> 
> : first defined here
> drivers/xilinx_edk/built-in.o(.text+0x44): In function 
> `XAssertSetCallback':
> drivers/xilinx_edk/xbasic_types.c:134: multiple definition of 
> `XAssertSetCallbac
> k'
> drivers/block/built-in.o(.text+0x38d0):drivers/block/xilinx_sysace/xbasic_types. 
> 
> 
> c:117: first defined here
> drivers/xilinx_edk/built-in.o(.text+0x0): In function `XAssert':
> drivers/xilinx_edk/xbasic_types.c:105: multiple definition of `XAssert'
> drivers/block/built-in.o(.text+0x388c):drivers/block/xilinx_sysace/xbasic_types. 
> 
> 
> c:87: first defined here
> drivers/xilinx_edk/built-in.o(.text+0x50): In function `XNullHandler':
> drivers/xilinx_edk/xbasic_types.c:153: multiple definition of 
> `XNullHandler'
> drivers/block/built-in.o(.text+0x38dc):drivers/block/xilinx_sysace/xbasic_types. 
> 
> 
> c:136: first defined here
> make[1]: *** [drivers/built-in.o] Error 1
> make: *** [drivers] Error 2
> 
> This time I only tried on linux 2.6.17.1 version. Please check again and 
> modify it. Thank you.
> 
> Regards
> Ming
> 
> 
>> From: Ameet Patil <ammubhai@gmail.com>
>> To: Ming Liu <eemingliu@hotmail.com>
>> CC: akonovalov@ru.mvista.com,  linuxppc-embedded@ozlabs.org
>> Subject: Re: some problems on the SystemACE driver.
>> Date: Wed, 12 Jul 2006 19:22:08 +0100
>>
>> Hi Ming,
>>    Thanks for testing the driver patch! The errors you get when
>> compiling both - SysAce and TEMAC are reasonable. My ignorance or call
>> it me being lazy. I recollect now... I was also working on the Xilinx
>> Ethernet driver and forgot to cleanup that code before creating the
>> patch for the SysAce driver. Thus, it so happens that code for the
>> ethernet driver in my patch also gets compiled along with the TEMAC. I
>> have deleted the unnecessary code files and updated the patch (name
>> changed). Find the new one here:
>> https://www.cs.york.ac.uk/rtslab/demos/amos/xupv2pro/patches/linuxppc-2.6.17.1-sysace-1.1.patch 
>>
> 
>>
>> Let me know if it works for you now?
>>
>> -Ameet
>>
>> Ming Liu wrote:
>> > Dear Ameet (and Andrei),
>> > I have tested the new patch for SystemACE driver. With respect to the
>> > single SystemACE driver, it works well. I can boot my linux in ML403
>> > board. (I tried both 2.6.16-rc5 and 2.6.17.1 versions) So first
>> > congratulations and thanks for your hard work!
>> >
>> > However, when I tried to implemented Temac (with and without SystemACE.
>> > TWO conditions.), some errors happened. Here is the compilation
>> > information:
>> >
>> >  CC      init/do_mounts.o
>> >  LD      init/mounts.o
>> >  CC      init/initramfs.o
>> >  LD      init/built-in.o
>> >  LD      .tmp_vmlinux1
>> > drivers/built-in.o(.sdata+0x2c): multiple definition of `XWaitInAssert'
>> > arch/ppc/platforms/4xx/built-in.o(.sdata+0x0): first defined here
>> > drivers/built-in.o(.text+0x3e480): In function 
> `XPacketFifoV200a_WriteDre':
>> > : multiple definition of `XPacketFifoV200a_WriteDre'
>> > arch/ppc/platforms/4xx/built-in.o(.text+0x1b14): first defined here
>> > drivers/built-in.o(.text+0x3e158): In function 
> `XPacketFifoV200a_SelfTest':
>> > : multiple definition of `XPacketFifoV200a_SelfTest'
>> > arch/ppc/platforms/4xx/built-in.o(.text+0x17ec): first defined here
>> > drivers/built-in.o(.sbss+0x18c): multiple definition of `XAssertStatus'
>> > arch/ppc/platforms/4xx/built-in.o(.sbss+0x8): first defined here
>> > drivers/built-in.o(.text+0x3e798): In function 
> `XPacketFifoV200a_L0Write':
>> > : multiple definition of `XPacketFifoV200a_L0Write'
>> > arch/ppc/platforms/4xx/built-in.o(.text+0x1e2c): first defined here
>> > drivers/built-in.o(.text+0x3e280): In function `XPacketFifoV200a_Read':
>> > : multiple definition of `XPacketFifoV200a_Read'
>> > arch/ppc/platforms/4xx/built-in.o(.text+0x1914): first defined here
>> > drivers/built-in.o(.text+0x3e55c): In function 
> `XPacketFifoV200a_L0Read':
>> > : multiple definition of `XPacketFifoV200a_L0Read'
>> > arch/ppc/platforms/4xx/built-in.o(.text+0x1bf0): first defined here
>> > drivers/built-in.o(.text+0x3e380): In function 
> `XPacketFifoV200a_Write':
>> > : multiple definition of `XPacketFifoV200a_Write'
>> > arch/ppc/platforms/4xx/built-in.o(.text+0x1a14): first defined here
>> > drivers/built-in.o(.text+0x3e0cc): In function `XAssertSetCallback':
>> > : multiple definition of `XAssertSetCallback'
>> > arch/ppc/platforms/4xx/built-in.o(.text+0x44): first defined here
>> > drivers/built-in.o(.text+0x3e9fc): In function
>> > `XPacketFifoV200a_L0WriteDre':
>> > : multiple definition of `XPacketFifoV200a_L0WriteDre'
>> > arch/ppc/platforms/4xx/built-in.o(.text+0x2090): first defined here
>> > drivers/built-in.o(.text+0x3e0dc): In function
>> > `XPacketFifoV200a_Initialize':
>> > : multiple definition of `XPacketFifoV200a_Initialize'
>> > arch/ppc/platforms/4xx/built-in.o(.text+0x1770): first defined here
>> > drivers/built-in.o(.text+0x3e088): In function `XAssert':
>> > : multiple definition of `XAssert'
>> > arch/ppc/platforms/4xx/built-in.o(.text+0x0): first defined here
>> > drivers/built-in.o(.text+0x3e0d8): In function `XNullHandler':
>> > : multiple definition of `XNullHandler'
>> > arch/ppc/platforms/4xx/built-in.o(.text+0x50): first defined here
>> > make: *** [.tmp_vmlinux1] Error 1
>> >
>> > It looks like that your patch affect some symbols which are used by
>> > Temac. (When I use the old patch for SystemACE, there is no problem 
> like
>> > this if I only choose Temac. ) So let's find out the problem together.
>> > Also, I don't know if this is a problem from SystemACE or Temac , I
>> > would like to invite Andrei to look at this altogether. If any
>> > suggestion, please feel free to announce. Thanks for both your help.
>> > Regards
>> > Ming
>> >
>> >
>> >
>> >> From: Ameet Patil <ammubhai@gmail.com>
>> >> To: Ming Liu <eemingliu@hotmail.com>
>> >> CC: linuxppc-embedded@ozlabs.org
>> >> Subject: Re: some problems on the SystemACE driver.
>> >> Date: Wed, 12 Jul 2006 10:54:13 +0100
>> >>
>> >> Hi Ming,
>> >>
>> >> > I heard that you have tested this driver. Have you got this problem?
>> >> > Why there are so many strange problems for me while you have tested
>> >> > without problem?
>> >>
>> >> Yes, that is right! When I say... I have tested - "it really means I
>> >> have tested". So what's the problem? It works for me but not you? The
>> >> obvious difference: mine is a ML300 configuration and yours ML403.
>> >>
>> >> There were some files which unknowing were made dependant on ML300
>> >> target. I have now made them compile for both targets. It should work
>> >> fine for you now (Hopefully!). Download the updated patch from the 
> same
>> >> location.
>> >>
>> >> 
> http://www.cs.york.ac.uk/rtslab/demos/amos/xupv2pro/patches/linuxppc-2.6.17_sysace.patch 
> 
> 
>> >>
>> >
>> >>
>> >> Since I don't have ML403 board, theres no way I can test this patch on
>> >> it. I rely on you in doing this... and thanks for letting me know the
>> >> issues.
>> >>
>> >> WARNING: There might be more issues. :-)
>> >>
>> >> Please DONOT hesitate to raise any issues with the driver. I am more
>> >> than happy to fix them.
>> >>
>> >> -Ameet
>> >>
>> >> Ming Liu wrote:
>> >> > Dear Ameet,
>> >> > Sorry to bother you again but I am totally confused on the systemACE
>> >> > driver. First let me show you the problem.
>> >> >
>> >> > 1. I downloaded the linux kernel of 2.6.17.1, also the patch for
>> >> > SystemACE driver. Applied the patch to the kernel. Replaced the
>> >> > xparameters_ml403.h with the generated file xparameters_ml300.h from
>> >> > Xilinx EDK. Make menuconfig, make dep and make zImage. Then the 
> error
>> >> > shows like this:
>> >> >
>> >> > drivers/block/xilinx_sysace/xsysace.c:120:6: warning:
>> >> > "XPAR_XSYSACE_MEM_WIDTH" is not defined
>> >> > drivers/block/xilinx_sysace/xsysace.c: In function
>> > `XSysAce_LookupConfig':
>> >> > drivers/block/xilinx_sysace/xsysace.c:366: error:
>> >> > `XPAR_XSYSACE_NUM_INSTANCES' undeclared (first use in this function)
>> >> > drivers/block/xilinx_sysace/xsysace.c:366: error: (Each undeclared
>> >> > identifier is reported only once
>> >> > drivers/block/xilinx_sysace/xsysace.c:366: error: for each function 
> it
>> >> > appears in.)
>> >> > make[3]: *** [drivers/block/xilinx_sysace/xsysace.o] Error 1
>> >> > make[2]: *** [drivers/block/xilinx_sysace] Error 2
>> >> > make[1]: *** [drivers/block] Error 2
>> >> > make: *** [drivers] Error 2
>> >> >
>> >> > I think this is because of the no inclusion of the xparameters 
> header
>> >> > file. So I change #include "xparameters.h" into  #include "
>> >> >
>> > 
> /home/mingliu/linux-2.6.17.1/arch/ppc/platforms/4xx/xparameters/xparameters.h" 
> 
> 
>> >
>> >
>> >> > in the files of xsysace.c and xsysace_g.c, using the full address to
>> >> > specify the header file. In fact, this is not a serious problem and 
> it
>> >> > often happens. But, after the modification, another problem 
> happened:
>> >> >  GEN     .version
>> >> >  CHK     include/linux/compile.h
>> >> >  UPD     include/linux/compile.h
>> >> >  CC      init/version.o
>> >> >  LD      init/built-in.o
>> >> >  LD      .tmp_vmlinux1
>> >> > drivers/built-in.o(.text+0x2234a): In function `XSysAce_GetCfgAddr':
>> >> > : undefined reference to `XAssertStatus'
>> >> > drivers/built-in.o(.text+0x2235e): In function `XSysAce_GetCfgAddr':
>> >> > : undefined reference to `XAssertStatus'
>> >> > drivers/built-in.o(.text+0x22364): In function `XSysAce_GetCfgAddr':
>> >> > : undefined reference to `XAssert'
>> >> > drivers/built-in.o(.text+0x22372): In function `XSysAce_GetCfgAddr':
>> >> > : undefined reference to `XAssertStatus'
>> >> > drivers/built-in.o(.text+0x2237a): In function `XSysAce_GetCfgAddr':
>> >> > : undefined reference to `XAssertStatus'
>> >> > drivers/built-in.o(.text+0x22394): In function `XSysAce_GetCfgAddr':
>> >> > : undefined reference to `XAssert'
>> >> > drivers/built-in.o(.text+0x223a2): In function `XSysAce_GetCfgAddr':
>> >> > : undefined reference to `XAssertStatus'
>> >> > drivers/built-in.o(.text+0x223aa): In function `XSysAce_GetCfgAddr':
>> >> > : undefined reference to `XAssertStatus'
>> >> > drivers/built-in.o(.text+0x22cd6): In function `XSysAce_Initialize':
>> >> > : undefined reference to `XAssertStatus'
>> >> > drivers/built-in.o(.text+0x22cdc): In function `XSysAce_Initialize':
>> >> > : undefined reference to `XAssert'
>> >> > drivers/built-in.o(.text+0x22cea): In function `XSysAce_Initialize':
>> >> > : undefined reference to `XAssertStatus'
>> >> >
>> >> > ......( a long information to say that undefined reference to the
>> >> > XAssert things.)
>> >> >
>> >> > Also, I tried this in the kernel 2.6.16-rc5. (In fact I prefer this
>> >> > version because the temac driver is for this version. ) The same
>> > problem
>> >> > happened. I checked the source code. The problem happened in the 
> file
>> >> > driver/block/xilinx_sysace/adapter.c, etc. Also, the XAssert things 
> are
>> >> > defined in the file 
> arch/ppc/platforms/4xx/xilinx_ocp/xbasic_types.c.
>> >> > (In 2.6.16 kernel, it is also defined in
>> >> > driver/xilinx_edk/xbasic_types.c. There are two copies of this file. 
> )
>> > I
>> >> > think the problem is, the systemACE files cannot link together with 
> the
>> >> > xbasic_types.c file.
>> >> > I heard that you have tested this driver. Have you got this problem?
>> > Why
>> >> > there are so many strange problems for me while you have tested 
> without
>> >> > problem? Without the CF card, I cannot try the Temac driver and my 
> work
>> >> > is totally blocked. So I have to ask for your suggestion. Really
>> > anxious
>> >> > for your useful guidance. Thanks a lot!!!!!!
>> >> >
>> >> > Regards
>> >> > Ming
>> >> >
>> >> > _________________________________________________________________
>> >> > 与联机的朋友进行交流,请使用 MSN Messenger:
>> > http://messenger.msn.com/cn
>> >> >
>> >
>> > _________________________________________________________________
>> > 免费下载 MSN Explorer:   http://explorer.msn.com/lccn/
>> >
> 
> _________________________________________________________________
> 免费下载 MSN Explorer:   http://explorer.msn.com/lccn/ 
> 

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

* Re: some problems on the SystemACE driver.
  2006-07-13 16:16 ` Ameet Patil
@ 2006-07-13 21:41   ` Ming Liu
  2006-07-14 11:12     ` Ameet Patil
  0 siblings, 1 reply; 15+ messages in thread
From: Ming Liu @ 2006-07-13 21:41 UTC (permalink / raw)
  To: ammubhai; +Cc: linuxppc-embedded

Dear Ameet,

>1. Which TEMAC patch are you using?
>(http://source.mvista.com/~ank/paulus-powerpc/20060309/ppc32_xilinx_edk_temac.patch)

There are five patches in the directory 20060309 whose address is listed 
above by you. I applied all of them in my system, because without any there 
will be problems. 

>2. After applying the patch, is the driver getting compiled directly
>without having to select it via "make menuconfig"?
No. there is an option named "xilinx 10/100/1000 Mbit TEMAC support" in the 
menuconfig. I must select it and then compile the kernel. 

>3. I don't see a Makefile in the drivers/net/xilinx_temac/ folder?
I have checked. In my kernel, there is the Makefile. I don't know why this 
happened to you.

Let me describe the detailed process I did. First, download the kernel 
2.6.17.1 (or 2.6.16-rc5). Then apply the five patches for Temac.(If I use 
2.6.17.1, I need to upgrade some files manually. For 2.6.16, there is no 
problem.) And then apply the patch for SystemACE. Also copy and replace the 
xparameters_ml403.h by my own file generated by EDK. Then make menuconfig, 
selecting both Temac and SystemACE and other basic options. Then make dep 
and make zImage. During this process, I need to modify some little problems 
which are about the inclusion of some header files, or specify some lib 
inclusion directories instead. Then that problem appears. There are some 
main points: 1. configured for ml403 board. 2.both Temac and SystemACE are 
selected. 3. 5 patches for Temac and 1 patch for SystemACE. 4. linux 
version is 2.6.17 or 2.6.16. I really have no idea why this still happens 
after your modification. So I have to ask you again. 

>Ofcourse, I can work my way to compile the driver. But is there any doc.
>present explaining this?
Sorry that there is no doc to explain this. I just did following the 
procedure described above. I am totally lost. The strange thing is, when I 
select only one of these two drivers, no problem, but if both, problem. 

By the way, I noticed that in the address where I get your patch, there is 
also a patch called linuxppc-2.6.17.1-sysace-1.0.patch which is much larger 
than the 1.1 one. I needn't apply the 1.0 one, right? 

Thanks for your hard work. Hopefully we can solve the problem. 

Regards
Ming

_________________________________________________________________
免费下载 MSN Explorer:   http://explorer.msn.com/lccn  

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

* Re: some problems on the SystemACE driver.
  2006-07-13 21:41   ` Ming Liu
@ 2006-07-14 11:12     ` Ameet Patil
  0 siblings, 0 replies; 15+ messages in thread
From: Ameet Patil @ 2006-07-14 11:12 UTC (permalink / raw)
  To: Ming Liu; +Cc: linuxppc-embedded

Hi Ming,
   Can you send me the entire text output (in a file) of the compilation
process with errors?

-Ameet

Ming Liu wrote:
> Dear Ameet,
> 
>> 1. Which TEMAC patch are you using?
>> (http://source.mvista.com/~ank/paulus-powerpc/20060309/ppc32_xilinx_edk_temac.patch) 
>>
> 
> There are five patches in the directory 20060309 whose address is listed 
> above by you. I applied all of them in my system, because without any 
> there will be problems.
>> 2. After applying the patch, is the driver getting compiled directly
>> without having to select it via "make menuconfig"?
> No. there is an option named "xilinx 10/100/1000 Mbit TEMAC support" in 
> the menuconfig. I must select it and then compile the kernel.
>> 3. I don't see a Makefile in the drivers/net/xilinx_temac/ folder?
> I have checked. In my kernel, there is the Makefile. I don't know why 
> this happened to you.
> 
> Let me describe the detailed process I did. First, download the kernel 
> 2.6.17.1 (or 2.6.16-rc5). Then apply the five patches for Temac.(If I 
> use 2.6.17.1, I need to upgrade some files manually. For 2.6.16, there 
> is no problem.) And then apply the patch for SystemACE. Also copy and 
> replace the xparameters_ml403.h by my own file generated by EDK. Then 
> make menuconfig, selecting both Temac and SystemACE and other basic 
> options. Then make dep and make zImage. During this process, I need to 
> modify some little problems which are about the inclusion of some header 
> files, or specify some lib inclusion directories instead. Then that 
> problem appears. There are some main points: 1. configured for ml403 
> board. 2.both Temac and SystemACE are selected. 3. 5 patches for Temac 
> and 1 patch for SystemACE. 4. linux version is 2.6.17 or 2.6.16. I 
> really have no idea why this still happens after your modification. So I 
> have to ask you again.
>> Ofcourse, I can work my way to compile the driver. But is there any doc.
>> present explaining this?
> Sorry that there is no doc to explain this. I just did following the 
> procedure described above. I am totally lost. The strange thing is, when 
> I select only one of these two drivers, no problem, but if both, problem.
> By the way, I noticed that in the address where I get your patch, there 
> is also a patch called linuxppc-2.6.17.1-sysace-1.0.patch which is much 
> larger than the 1.1 one. I needn't apply the 1.0 one, right?
> Thanks for your hard work. Hopefully we can solve the problem.
> Regards
> Ming
> 
> _________________________________________________________________
> 免费下载 MSN Explorer:   http://explorer.msn.com/lccn 
> 

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

* Re: some problems on the SystemACE driver.
@ 2006-07-14 13:09 Ming Liu
  2006-07-14 15:10 ` Ameet Patil
  0 siblings, 1 reply; 15+ messages in thread
From: Ming Liu @ 2006-07-14 13:09 UTC (permalink / raw)
  To: ammubhai; +Cc: linuxppc-embedded

[-- Attachment #1: Type: text/plain, Size: 3419 bytes --]

Dear Ameet,
The attached is the log file to record the error. Please unzip and search 
for "XAssert" to go to the end to see the problem. Also, the .config file 
is attached. Please rename the file from config into .config. The linux 
version is 2.6.17.1. When you compile the kernel, please remember to export 
C_INCLUDE_PATH=....../driver/xilinx_edk. Thanks for your work.

Regards
Ming


>From: Ameet Patil <ammubhai@gmail.com>
>To: Ming Liu <eemingliu@hotmail.com>
>CC: linuxppc-embedded@ozlabs.org
>Subject: Re: some problems on the SystemACE driver.
>Date: Fri, 14 Jul 2006 12:12:36 +0100
>
>Hi Ming,
>    Can you send me the entire text output (in a file) of the compilation
>process with errors?
>
>-Ameet
>
>Ming Liu wrote:
> > Dear Ameet,
> >
> >> 1. Which TEMAC patch are you using?
> >> 
(http://source.mvista.com/~ank/paulus-powerpc/20060309/ppc32_xilinx_edk_temac.patch)

> >>
> >
> > There are five patches in the directory 20060309 whose address is 
listed
> > above by you. I applied all of them in my system, because without any
> > there will be problems.
> >> 2. After applying the patch, is the driver getting compiled directly
> >> without having to select it via "make menuconfig"?
> > No. there is an option named "xilinx 10/100/1000 Mbit TEMAC support" in
> > the menuconfig. I must select it and then compile the kernel.
> >> 3. I don't see a Makefile in the drivers/net/xilinx_temac/ folder?
> > I have checked. In my kernel, there is the Makefile. I don't know why
> > this happened to you.
> >
> > Let me describe the detailed process I did. First, download the kernel
> > 2.6.17.1 (or 2.6.16-rc5). Then apply the five patches for Temac.(If I
> > use 2.6.17.1, I need to upgrade some files manually. For 2.6.16, there
> > is no problem.) And then apply the patch for SystemACE. Also copy and
> > replace the xparameters_ml403.h by my own file generated by EDK. Then
> > make menuconfig, selecting both Temac and SystemACE and other basic
> > options. Then make dep and make zImage. During this process, I need to
> > modify some little problems which are about the inclusion of some 
header
> > files, or specify some lib inclusion directories instead. Then that
> > problem appears. There are some main points: 1. configured for ml403
> > board. 2.both Temac and SystemACE are selected. 3. 5 patches for Temac
> > and 1 patch for SystemACE. 4. linux version is 2.6.17 or 2.6.16. I
> > really have no idea why this still happens after your modification. So 
I
> > have to ask you again.
> >> Ofcourse, I can work my way to compile the driver. But is there any 
doc.
> >> present explaining this?
> > Sorry that there is no doc to explain this. I just did following the
> > procedure described above. I am totally lost. The strange thing is, 
when
> > I select only one of these two drivers, no problem, but if both, 
problem.
> > By the way, I noticed that in the address where I get your patch, there
> > is also a patch called linuxppc-2.6.17.1-sysace-1.0.patch which is much
> > larger than the 1.1 one. I needn't apply the 1.0 one, right?
> > Thanks for your hard work. Hopefully we can solve the problem.
> > Regards
> > Ming
> >
> > _________________________________________________________________
> > 免费下载 MSN Explorer:   http://explorer.msn.com/lccn
> >

_________________________________________________________________
免费下载 MSN Explorer:   http://explorer.msn.com/lccn  

[-- Attachment #2: config --]
[-- Type: text/plain, Size: 15664 bytes --]

#
# Automatically generated make config: don't edit
# Linux kernel version: 2.6.17.1
# Fri Jul 14 15:00:57 2006
#
CONFIG_MMU=y
CONFIG_GENERIC_HARDIRQS=y
CONFIG_RWSEM_XCHGADD_ALGORITHM=y
CONFIG_GENERIC_HWEIGHT=y
CONFIG_GENERIC_CALIBRATE_DELAY=y
CONFIG_PPC=y
CONFIG_PPC32=y
CONFIG_GENERIC_NVRAM=y
CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
CONFIG_ARCH_MAY_HAVE_PC_FDC=y

#
# Code maturity level options
#
CONFIG_EXPERIMENTAL=y
CONFIG_BROKEN_ON_SMP=y
CONFIG_INIT_ENV_ARG_LIMIT=32

#
# General setup
#
CONFIG_LOCALVERSION=""
CONFIG_LOCALVERSION_AUTO=y
CONFIG_SWAP=y
CONFIG_SYSVIPC=y
# CONFIG_POSIX_MQUEUE is not set
# CONFIG_BSD_PROCESS_ACCT is not set
CONFIG_SYSCTL=y
# CONFIG_AUDIT is not set
# CONFIG_IKCONFIG is not set
# CONFIG_RELAY is not set
CONFIG_INITRAMFS_SOURCE=""
CONFIG_CC_OPTIMIZE_FOR_SIZE=y
# CONFIG_EMBEDDED is not set
CONFIG_KALLSYMS=y
# CONFIG_KALLSYMS_ALL is not set
# CONFIG_KALLSYMS_EXTRA_PASS is not set
CONFIG_HOTPLUG=y
CONFIG_PRINTK=y
CONFIG_BUG=y
CONFIG_ELF_CORE=y
CONFIG_BASE_FULL=y
CONFIG_FUTEX=y
CONFIG_EPOLL=y
CONFIG_SHMEM=y
CONFIG_SLAB=y
# CONFIG_TINY_SHMEM is not set
CONFIG_BASE_SMALL=0
# CONFIG_SLOB is not set
CONFIG_OBSOLETE_INTERMODULE=y

#
# Loadable module support
#
# CONFIG_MODULES is not set

#
# Block layer
#
# CONFIG_LBD is not set
# CONFIG_BLK_DEV_IO_TRACE is not set
# CONFIG_LSF is not set

#
# IO Schedulers
#
CONFIG_IOSCHED_NOOP=y
CONFIG_IOSCHED_AS=y
CONFIG_IOSCHED_DEADLINE=y
CONFIG_IOSCHED_CFQ=y
CONFIG_DEFAULT_AS=y
# CONFIG_DEFAULT_DEADLINE is not set
# CONFIG_DEFAULT_CFQ is not set
# CONFIG_DEFAULT_NOOP is not set
CONFIG_DEFAULT_IOSCHED="anticipatory"

#
# Processor
#
# CONFIG_6xx is not set
CONFIG_40x=y
# CONFIG_44x is not set
# CONFIG_8xx is not set
# CONFIG_E200 is not set
# CONFIG_E500 is not set
CONFIG_MATH_EMULATION=y
# CONFIG_KEXEC is not set
# CONFIG_CPU_FREQ is not set
CONFIG_4xx=y
# CONFIG_WANT_EARLY_SERIAL is not set

#
# IBM 4xx options
#
# CONFIG_BUBINGA is not set
# CONFIG_CPCI405 is not set
# CONFIG_EP405 is not set
# CONFIG_REDWOOD_5 is not set
# CONFIG_REDWOOD_6 is not set
# CONFIG_SYCAMORE is not set
# CONFIG_WALNUT is not set
# CONFIG_XILINX_ML300 is not set
CONFIG_XILINX_ML403=y
CONFIG_IBM405_ERR77=y
CONFIG_IBM405_ERR51=y
CONFIG_XILINX_VIRTEX_4_FX=y
CONFIG_XILINX_VIRTEX=y
CONFIG_EMBEDDEDBOOT=y
# CONFIG_PPC4xx_DMA is not set
CONFIG_PPC_GEN550=y
CONFIG_UART0_TTYS0=y
# CONFIG_UART0_TTYS1 is not set
CONFIG_NOT_COHERENT_CACHE=y

#
# Platform options
#
# CONFIG_PC_KEYBOARD is not set
# CONFIG_HIGHMEM is not set
# CONFIG_HZ_100 is not set
CONFIG_HZ_250=y
# CONFIG_HZ_1000 is not set
CONFIG_HZ=250
CONFIG_PREEMPT_NONE=y
# CONFIG_PREEMPT_VOLUNTARY is not set
# CONFIG_PREEMPT is not set
CONFIG_SELECT_MEMORY_MODEL=y
CONFIG_FLATMEM_MANUAL=y
# CONFIG_DISCONTIGMEM_MANUAL is not set
# CONFIG_SPARSEMEM_MANUAL is not set
CONFIG_FLATMEM=y
CONFIG_FLAT_NODE_MEM_MAP=y
# CONFIG_SPARSEMEM_STATIC is not set
CONFIG_SPLIT_PTLOCK_CPUS=4
CONFIG_BINFMT_ELF=y
# CONFIG_BINFMT_MISC is not set
CONFIG_CMDLINE_BOOL=y
CONFIG_CMDLINE="console=ttyS0,9600 root=/dev/xsa3 rw"
# CONFIG_PM is not set
# CONFIG_SOFTWARE_SUSPEND is not set
CONFIG_SECCOMP=y
CONFIG_ISA_DMA_API=y

#
# Bus options
#
# CONFIG_PPC_I8259 is not set
# CONFIG_PCI is not set
# CONFIG_PCI_DOMAINS is not set

#
# PCCARD (PCMCIA/CardBus) support
#
# CONFIG_PCCARD is not set

#
# Advanced setup
#
# CONFIG_ADVANCED_OPTIONS is not set

#
# Default settings for advanced configuration options are used
#
CONFIG_HIGHMEM_START=0xfe000000
CONFIG_LOWMEM_SIZE=0x30000000
CONFIG_KERNEL_START=0xc0000000
CONFIG_TASK_SIZE=0x80000000
CONFIG_CONSISTENT_START=0xff100000
CONFIG_CONSISTENT_SIZE=0x00200000
CONFIG_BOOT_LOAD=0x00400000

#
# Networking
#
CONFIG_NET=y

#
# Networking options
#
# CONFIG_NETDEBUG is not set
# CONFIG_PACKET is not set
CONFIG_UNIX=y
# CONFIG_NET_KEY is not set
CONFIG_INET=y
CONFIG_IP_MULTICAST=y
# CONFIG_IP_ADVANCED_ROUTER is not set
CONFIG_IP_FIB_HASH=y
CONFIG_IP_PNP=y
CONFIG_IP_PNP_DHCP=y
# CONFIG_IP_PNP_BOOTP is not set
# CONFIG_IP_PNP_RARP is not set
# CONFIG_NET_IPIP is not set
# CONFIG_NET_IPGRE is not set
# CONFIG_IP_MROUTE is not set
# CONFIG_ARPD is not set
CONFIG_SYN_COOKIES=y
# CONFIG_INET_AH is not set
# CONFIG_INET_ESP is not set
# CONFIG_INET_IPCOMP is not set
# CONFIG_INET_XFRM_TUNNEL is not set
# CONFIG_INET_TUNNEL is not set
# CONFIG_INET_DIAG is not set
# CONFIG_TCP_CONG_ADVANCED is not set
CONFIG_TCP_CONG_BIC=y
# CONFIG_IPV6 is not set
# CONFIG_INET6_XFRM_TUNNEL is not set
# CONFIG_INET6_TUNNEL is not set
# CONFIG_NETFILTER is not set

#
# DCCP Configuration (EXPERIMENTAL)
#
# CONFIG_IP_DCCP is not set

#
# SCTP Configuration (EXPERIMENTAL)
#
# CONFIG_IP_SCTP is not set

#
# TIPC Configuration (EXPERIMENTAL)
#
# CONFIG_TIPC is not set
# CONFIG_ATM is not set
# CONFIG_BRIDGE is not set
# CONFIG_VLAN_8021Q is not set
# CONFIG_DECNET is not set
# CONFIG_LLC2 is not set
# CONFIG_IPX is not set
# CONFIG_ATALK is not set
# CONFIG_X25 is not set
# CONFIG_LAPB is not set
# CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set

#
# QoS and/or fair queueing
#
# CONFIG_NET_SCHED is not set

#
# Network testing
#
# CONFIG_NET_PKTGEN is not set
# CONFIG_HAMRADIO is not set
# CONFIG_IRDA is not set
# CONFIG_BT is not set
# CONFIG_IEEE80211 is not set

#
# Device Drivers
#

#
# Generic Driver Options
#
CONFIG_STANDALONE=y
CONFIG_PREVENT_FIRMWARE_BUILD=y
# CONFIG_FW_LOADER is not set
# CONFIG_DEBUG_DRIVER is not set

#
# Connector - unified userspace <-> kernelspace linker
#
# CONFIG_CONNECTOR is not set

#
# Memory Technology Devices (MTD)
#
CONFIG_MTD=y
# CONFIG_MTD_DEBUG is not set
# CONFIG_MTD_CONCAT is not set
CONFIG_MTD_PARTITIONS=y
CONFIG_MTD_REDBOOT_PARTS=y
CONFIG_MTD_REDBOOT_DIRECTORY_BLOCK=-1
# CONFIG_MTD_REDBOOT_PARTS_UNALLOCATED is not set
# CONFIG_MTD_REDBOOT_PARTS_READONLY is not set
# CONFIG_MTD_CMDLINE_PARTS is not set

#
# User Modules And Translation Layers
#
CONFIG_MTD_CHAR=y
CONFIG_MTD_BLOCK=y
# CONFIG_FTL is not set
# CONFIG_NFTL is not set
# CONFIG_INFTL is not set
# CONFIG_RFD_FTL is not set

#
# RAM/ROM/Flash chip drivers
#
CONFIG_MTD_CFI=y
# CONFIG_MTD_JEDECPROBE is not set
CONFIG_MTD_GEN_PROBE=y
# CONFIG_MTD_CFI_ADV_OPTIONS is not set
CONFIG_MTD_MAP_BANK_WIDTH_1=y
CONFIG_MTD_MAP_BANK_WIDTH_2=y
CONFIG_MTD_MAP_BANK_WIDTH_4=y
# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set
# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set
# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set
CONFIG_MTD_CFI_I1=y
CONFIG_MTD_CFI_I2=y
# CONFIG_MTD_CFI_I4 is not set
# CONFIG_MTD_CFI_I8 is not set
# CONFIG_MTD_CFI_INTELEXT is not set
CONFIG_MTD_CFI_AMDSTD=y
# CONFIG_MTD_CFI_STAA is not set
CONFIG_MTD_CFI_UTIL=y
# CONFIG_MTD_RAM is not set
# CONFIG_MTD_ROM is not set
# CONFIG_MTD_ABSENT is not set
# CONFIG_MTD_OBSOLETE_CHIPS is not set

#
# Mapping drivers for chip access
#
# CONFIG_MTD_COMPLEX_MAPPINGS is not set
# CONFIG_MTD_PHYSMAP is not set
# CONFIG_MTD_PLATRAM is not set

#
# Self-contained MTD device drivers
#
# CONFIG_MTD_SLRAM is not set
# CONFIG_MTD_PHRAM is not set
# CONFIG_MTD_MTDRAM is not set
# CONFIG_MTD_BLOCK2MTD is not set

#
# Disk-On-Chip Device Drivers
#
# CONFIG_MTD_DOC2000 is not set
# CONFIG_MTD_DOC2001 is not set
# CONFIG_MTD_DOC2001PLUS is not set

#
# NAND Flash Device Drivers
#
# CONFIG_MTD_NAND is not set

#
# OneNAND Flash Device Drivers
#
# CONFIG_MTD_ONENAND is not set

#
# Parallel port support
#
# CONFIG_PARPORT is not set

#
# Plug and Play support
#

#
# Block devices
#
# CONFIG_BLK_DEV_FD is not set
# CONFIG_BLK_DEV_COW_COMMON is not set
CONFIG_BLK_DEV_LOOP=y
# CONFIG_BLK_DEV_CRYPTOLOOP is not set
CONFIG_XILINX_SYSACE=y
# CONFIG_BLK_DEV_NBD is not set
# CONFIG_BLK_DEV_RAM is not set
# CONFIG_BLK_DEV_INITRD is not set
# CONFIG_CDROM_PKTCDVD is not set
# CONFIG_ATA_OVER_ETH is not set

#
# ATA/ATAPI/MFM/RLL support
#
# CONFIG_IDE is not set

#
# SCSI device support
#
# CONFIG_RAID_ATTRS is not set
# CONFIG_SCSI is not set

#
# Multi-device support (RAID and LVM)
#
# CONFIG_MD is not set

#
# Fusion MPT device support
#
# CONFIG_FUSION is not set

#
# IEEE 1394 (FireWire) support
#

#
# I2O device support
#

#
# Macintosh device drivers
#
# CONFIG_WINDFARM is not set

#
# Network device support
#
CONFIG_NETDEVICES=y
# CONFIG_DUMMY is not set
# CONFIG_BONDING is not set
# CONFIG_EQUALIZER is not set
# CONFIG_TUN is not set

#
# PHY device support
#

#
# Ethernet (10 or 100Mbit)
#
# CONFIG_NET_ETHERNET is not set
# CONFIG_IBM_EMAC is not set

#
# Ethernet (1000 Mbit)
#
CONFIG_XILINX_TEMAC=y

#
# Ethernet (10000 Mbit)
#

#
# Token Ring devices
#

#
# Wireless LAN (non-hamradio)
#
# CONFIG_NET_RADIO is not set

#
# Wan interfaces
#
# CONFIG_WAN is not set
# CONFIG_PPP is not set
# CONFIG_SLIP is not set
# CONFIG_SHAPER is not set
# CONFIG_NETCONSOLE is not set
# CONFIG_NETPOLL is not set
# CONFIG_NET_POLL_CONTROLLER is not set

#
# ISDN subsystem
#
# CONFIG_ISDN is not set

#
# Telephony Support
#
# CONFIG_PHONE is not set

#
# Input device support
#
CONFIG_INPUT=y

#
# Userland interfaces
#
CONFIG_INPUT_MOUSEDEV=y
CONFIG_INPUT_MOUSEDEV_PSAUX=y
CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
# CONFIG_INPUT_JOYDEV is not set
# CONFIG_INPUT_TSDEV is not set
# CONFIG_INPUT_EVDEV is not set
# CONFIG_INPUT_EVBUG is not set

#
# Input Device Drivers
#
# CONFIG_INPUT_KEYBOARD is not set
# CONFIG_INPUT_MOUSE is not set
# CONFIG_INPUT_JOYSTICK is not set
# CONFIG_INPUT_TOUCHSCREEN is not set
# CONFIG_INPUT_MISC is not set

#
# Hardware I/O ports
#
CONFIG_SERIO=y
CONFIG_SERIO_I8042=y
CONFIG_SERIO_SERPORT=y
# CONFIG_SERIO_RAW is not set
# CONFIG_GAMEPORT is not set

#
# Character devices
#
CONFIG_VT=y
CONFIG_VT_CONSOLE=y
CONFIG_HW_CONSOLE=y
# CONFIG_SERIAL_NONSTANDARD is not set

#
# Serial drivers
#
CONFIG_SERIAL_8250=y
CONFIG_SERIAL_8250_CONSOLE=y
CONFIG_SERIAL_8250_NR_UARTS=4
CONFIG_SERIAL_8250_RUNTIME_UARTS=4
# CONFIG_SERIAL_8250_EXTENDED is not set

#
# Non-8250 serial port support
#
CONFIG_SERIAL_CORE=y
CONFIG_SERIAL_CORE_CONSOLE=y
CONFIG_UNIX98_PTYS=y
CONFIG_LEGACY_PTYS=y
CONFIG_LEGACY_PTY_COUNT=256

#
# IPMI
#
# CONFIG_IPMI_HANDLER is not set

#
# Watchdog Cards
#
# CONFIG_WATCHDOG is not set
# CONFIG_NVRAM is not set
# CONFIG_GEN_RTC is not set
# CONFIG_DTLK is not set
# CONFIG_R3964 is not set

#
# Ftape, the floppy tape device driver
#
# CONFIG_AGP is not set
# CONFIG_RAW_DRIVER is not set

#
# TPM devices
#
# CONFIG_TCG_TPM is not set
# CONFIG_TELCLOCK is not set

#
# I2C support
#
# CONFIG_I2C is not set

#
# SPI support
#
# CONFIG_SPI is not set
# CONFIG_SPI_MASTER is not set

#
# Dallas's 1-wire bus
#
# CONFIG_W1 is not set

#
# Hardware Monitoring support
#
CONFIG_HWMON=y
# CONFIG_HWMON_VID is not set
# CONFIG_SENSORS_F71805F is not set
# CONFIG_HWMON_DEBUG_CHIP is not set

#
# Misc devices
#

#
# Multimedia devices
#
# CONFIG_VIDEO_DEV is not set
CONFIG_VIDEO_V4L2=y

#
# Digital Video Broadcasting Devices
#
# CONFIG_DVB is not set

#
# Graphics support
#
# CONFIG_FB is not set

#
# Console display driver support
#
CONFIG_DUMMY_CONSOLE=y

#
# Sound
#
# CONFIG_SOUND is not set

#
# USB support
#
# CONFIG_USB_ARCH_HAS_HCD is not set
# CONFIG_USB_ARCH_HAS_OHCI is not set
# CONFIG_USB_ARCH_HAS_EHCI is not set

#
# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
#

#
# USB Gadget Support
#
# CONFIG_USB_GADGET is not set

#
# MMC/SD Card support
#
# CONFIG_MMC is not set

#
# LED devices
#
# CONFIG_NEW_LEDS is not set

#
# LED drivers
#

#
# LED Triggers
#

#
# InfiniBand support
#

#
# EDAC - error detection and reporting (RAS) (EXPERIMENTAL)
#

#
# Real Time Clock
#
# CONFIG_RTC_CLASS is not set
CONFIG_XILINX_EDK=y

#
# File systems
#
CONFIG_EXT2_FS=y
CONFIG_EXT2_FS_XATTR=y
CONFIG_EXT2_FS_POSIX_ACL=y
CONFIG_EXT2_FS_SECURITY=y
CONFIG_EXT2_FS_XIP=y
CONFIG_FS_XIP=y
# CONFIG_EXT3_FS is not set
CONFIG_FS_MBCACHE=y
# CONFIG_REISERFS_FS is not set
# CONFIG_JFS_FS is not set
CONFIG_FS_POSIX_ACL=y
# CONFIG_XFS_FS is not set
# CONFIG_OCFS2_FS is not set
# CONFIG_MINIX_FS is not set
# CONFIG_ROMFS_FS is not set
CONFIG_INOTIFY=y
# CONFIG_QUOTA is not set
CONFIG_DNOTIFY=y
CONFIG_AUTOFS_FS=y
CONFIG_AUTOFS4_FS=y
# CONFIG_FUSE_FS is not set

#
# CD-ROM/DVD Filesystems
#
# CONFIG_ISO9660_FS is not set
# CONFIG_UDF_FS is not set

#
# DOS/FAT/NT Filesystems
#
# CONFIG_MSDOS_FS is not set
# CONFIG_VFAT_FS is not set
# CONFIG_NTFS_FS is not set

#
# Pseudo filesystems
#
CONFIG_PROC_FS=y
CONFIG_PROC_KCORE=y
CONFIG_SYSFS=y
CONFIG_TMPFS=y
# CONFIG_HUGETLB_PAGE is not set
CONFIG_RAMFS=y
# CONFIG_CONFIGFS_FS is not set

#
# Miscellaneous filesystems
#
# CONFIG_ADFS_FS is not set
# CONFIG_AFFS_FS is not set
# CONFIG_HFS_FS is not set
# CONFIG_HFSPLUS_FS is not set
# CONFIG_BEFS_FS is not set
# CONFIG_BFS_FS is not set
# CONFIG_EFS_FS is not set
# CONFIG_JFFS_FS is not set
# CONFIG_JFFS2_FS is not set
# CONFIG_CRAMFS is not set
# CONFIG_VXFS_FS is not set
# CONFIG_HPFS_FS is not set
# CONFIG_QNX4FS_FS is not set
# CONFIG_SYSV_FS is not set
# CONFIG_UFS_FS is not set

#
# Network File Systems
#
# CONFIG_NFS_FS is not set
# CONFIG_NFSD is not set
# CONFIG_SMB_FS is not set
# CONFIG_CIFS is not set
# CONFIG_NCP_FS is not set
# CONFIG_CODA_FS is not set
# CONFIG_AFS_FS is not set
# CONFIG_9P_FS is not set

#
# Partition Types
#
# CONFIG_PARTITION_ADVANCED is not set
CONFIG_MSDOS_PARTITION=y

#
# Native Language Support
#
CONFIG_NLS=y
CONFIG_NLS_DEFAULT="iso8859-1"
# CONFIG_NLS_CODEPAGE_437 is not set
# CONFIG_NLS_CODEPAGE_737 is not set
# CONFIG_NLS_CODEPAGE_775 is not set
# CONFIG_NLS_CODEPAGE_850 is not set
# CONFIG_NLS_CODEPAGE_852 is not set
# CONFIG_NLS_CODEPAGE_855 is not set
# CONFIG_NLS_CODEPAGE_857 is not set
# CONFIG_NLS_CODEPAGE_860 is not set
# CONFIG_NLS_CODEPAGE_861 is not set
# CONFIG_NLS_CODEPAGE_862 is not set
# CONFIG_NLS_CODEPAGE_863 is not set
# CONFIG_NLS_CODEPAGE_864 is not set
# CONFIG_NLS_CODEPAGE_865 is not set
# CONFIG_NLS_CODEPAGE_866 is not set
# CONFIG_NLS_CODEPAGE_869 is not set
# CONFIG_NLS_CODEPAGE_936 is not set
# CONFIG_NLS_CODEPAGE_950 is not set
# CONFIG_NLS_CODEPAGE_932 is not set
# CONFIG_NLS_CODEPAGE_949 is not set
# CONFIG_NLS_CODEPAGE_874 is not set
# CONFIG_NLS_ISO8859_8 is not set
# CONFIG_NLS_CODEPAGE_1250 is not set
# CONFIG_NLS_CODEPAGE_1251 is not set
# CONFIG_NLS_ASCII is not set
# CONFIG_NLS_ISO8859_1 is not set
# CONFIG_NLS_ISO8859_2 is not set
# CONFIG_NLS_ISO8859_3 is not set
# CONFIG_NLS_ISO8859_4 is not set
# CONFIG_NLS_ISO8859_5 is not set
# CONFIG_NLS_ISO8859_6 is not set
# CONFIG_NLS_ISO8859_7 is not set
# CONFIG_NLS_ISO8859_9 is not set
# CONFIG_NLS_ISO8859_13 is not set
# CONFIG_NLS_ISO8859_14 is not set
# CONFIG_NLS_ISO8859_15 is not set
# CONFIG_NLS_KOI8_R is not set
# CONFIG_NLS_KOI8_U is not set
# CONFIG_NLS_UTF8 is not set

#
# IBM 40x options
#

#
# Library routines
#
# CONFIG_CRC_CCITT is not set
# CONFIG_CRC16 is not set
CONFIG_CRC32=y
# CONFIG_LIBCRC32C is not set
# CONFIG_PROFILING is not set

#
# Kernel hacking
#
# CONFIG_PRINTK_TIME is not set
# CONFIG_MAGIC_SYSRQ is not set
CONFIG_DEBUG_KERNEL=y
CONFIG_LOG_BUF_SHIFT=14
CONFIG_DETECT_SOFTLOCKUP=y
# CONFIG_SCHEDSTATS is not set
# CONFIG_DEBUG_SLAB is not set
# CONFIG_DEBUG_MUTEXES is not set
# CONFIG_DEBUG_SPINLOCK is not set
# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
# CONFIG_DEBUG_KOBJECT is not set
CONFIG_DEBUG_INFO=y
# CONFIG_DEBUG_FS is not set
# CONFIG_DEBUG_VM is not set
# CONFIG_UNWIND_INFO is not set
CONFIG_FORCED_INLINING=y
# CONFIG_RCU_TORTURE_TEST is not set
# CONFIG_KGDB is not set
# CONFIG_XMON is not set
CONFIG_BDI_SWITCH=y
# CONFIG_SERIAL_TEXT_DEBUG is not set

#
# Security options
#
# CONFIG_KEYS is not set
# CONFIG_SECURITY is not set

#
# Cryptographic options
#
# CONFIG_CRYPTO is not set

#
# Hardware crypto devices
#


[-- Attachment #3: log.zip --]
[-- Type: application/x-zip-compressed, Size: 602325 bytes --]

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

* Re: some problems on the SystemACE driver.
  2006-07-14 13:09 Ming Liu
@ 2006-07-14 15:10 ` Ameet Patil
  2006-07-14 16:38   ` Ming Liu
  0 siblings, 1 reply; 15+ messages in thread
From: Ameet Patil @ 2006-07-14 15:10 UTC (permalink / raw)
  To: Ming Liu; +Cc: linuxppc-embedded

Ming,
  Had a look, both patches define the XILINX_OCP functions which is
unavoidable really. I have made some changes only so that it works in
your scenario. First apply the TEMAC patch and then this one:
https://www.cs.york.ac.uk/rtslab/demos/amos/xupv2pro/patches/linuxppc-2.6.17.1-sysace-1.2-after-TEMAC.patch

Also, I have also made some new changes to the SysAce driver patch. New
version is here:
https://www.cs.york.ac.uk/rtslab/demos/amos/xupv2pro/patches/linuxppc-2.6.17.1-sysace-1.2.patch

No, you donot need to apply all the patches found in my patches folder.

Let me know what happens? I think it should work....

-Ameet

Ming Liu wrote:
> Dear Ameet,
> The attached is the log file to record the error. Please unzip and 
> search for "XAssert" to go to the end to see the problem. Also, the 
> .config file is attached. Please rename the file from config into 
> .config. The linux version is 2.6.17.1. When you compile the kernel, 
> please remember to export C_INCLUDE_PATH=....../driver/xilinx_edk. 
> Thanks for your work.
> 
> Regards
> Ming
> 
> 
>> From: Ameet Patil <ammubhai@gmail.com>
>> To: Ming Liu <eemingliu@hotmail.com>
>> CC: linuxppc-embedded@ozlabs.org
>> Subject: Re: some problems on the SystemACE driver.
>> Date: Fri, 14 Jul 2006 12:12:36 +0100
>>
>> Hi Ming,
>>    Can you send me the entire text output (in a file) of the compilation
>> process with errors?
>>
>> -Ameet
>>
>> Ming Liu wrote:
>> > Dear Ameet,
>> >
>> >> 1. Which TEMAC patch are you using?
>> >> 
> (http://source.mvista.com/~ank/paulus-powerpc/20060309/ppc32_xilinx_edk_temac.patch) 
> 
> 
>> >>
>> >
>> > There are five patches in the directory 20060309 whose address is 
> listed
>> > above by you. I applied all of them in my system, because without any
>> > there will be problems.
>> >> 2. After applying the patch, is the driver getting compiled directly
>> >> without having to select it via "make menuconfig"?
>> > No. there is an option named "xilinx 10/100/1000 Mbit TEMAC support" in
>> > the menuconfig. I must select it and then compile the kernel.
>> >> 3. I don't see a Makefile in the drivers/net/xilinx_temac/ folder?
>> > I have checked. In my kernel, there is the Makefile. I don't know why
>> > this happened to you.
>> >
>> > Let me describe the detailed process I did. First, download the kernel
>> > 2.6.17.1 (or 2.6.16-rc5). Then apply the five patches for Temac.(If I
>> > use 2.6.17.1, I need to upgrade some files manually. For 2.6.16, there
>> > is no problem.) And then apply the patch for SystemACE. Also copy and
>> > replace the xparameters_ml403.h by my own file generated by EDK. Then
>> > make menuconfig, selecting both Temac and SystemACE and other basic
>> > options. Then make dep and make zImage. During this process, I need to
>> > modify some little problems which are about the inclusion of some 
> header
>> > files, or specify some lib inclusion directories instead. Then that
>> > problem appears. There are some main points: 1. configured for ml403
>> > board. 2.both Temac and SystemACE are selected. 3. 5 patches for Temac
>> > and 1 patch for SystemACE. 4. linux version is 2.6.17 or 2.6.16. I
>> > really have no idea why this still happens after your modification. So 
> I
>> > have to ask you again.
>> >> Ofcourse, I can work my way to compile the driver. But is there any 
> doc.
>> >> present explaining this?
>> > Sorry that there is no doc to explain this. I just did following the
>> > procedure described above. I am totally lost. The strange thing is, 
> when
>> > I select only one of these two drivers, no problem, but if both, 
> problem.
>> > By the way, I noticed that in the address where I get your patch, there
>> > is also a patch called linuxppc-2.6.17.1-sysace-1.0.patch which is much
>> > larger than the 1.1 one. I needn't apply the 1.0 one, right?
>> > Thanks for your hard work. Hopefully we can solve the problem.
>> > Regards
>> > Ming
>> >
>> > _________________________________________________________________
>> > 免费下载 MSN Explorer:   http://explorer.msn.com/lccn
>> >
> 
> _________________________________________________________________
> 免费下载 MSN Explorer:   http://explorer.msn.com/lccn  #
> # Automatically generated make config: don't edit
> # Linux kernel version: 2.6.17.1
> # Fri Jul 14 15:00:57 2006
> #
> CONFIG_MMU=y
> CONFIG_GENERIC_HARDIRQS=y
> CONFIG_RWSEM_XCHGADD_ALGORITHM=y
> CONFIG_GENERIC_HWEIGHT=y
> CONFIG_GENERIC_CALIBRATE_DELAY=y
> CONFIG_PPC=y
> CONFIG_PPC32=y
> CONFIG_GENERIC_NVRAM=y
> CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
> CONFIG_ARCH_MAY_HAVE_PC_FDC=y
> 
> #
> # Code maturity level options
> #
> CONFIG_EXPERIMENTAL=y
> CONFIG_BROKEN_ON_SMP=y
> CONFIG_INIT_ENV_ARG_LIMIT=32
> 
> #
> # General setup
> #
> CONFIG_LOCALVERSION=""
> CONFIG_LOCALVERSION_AUTO=y
> CONFIG_SWAP=y
> CONFIG_SYSVIPC=y
> # CONFIG_POSIX_MQUEUE is not set
> # CONFIG_BSD_PROCESS_ACCT is not set
> CONFIG_SYSCTL=y
> # CONFIG_AUDIT is not set
> # CONFIG_IKCONFIG is not set
> # CONFIG_RELAY is not set
> CONFIG_INITRAMFS_SOURCE=""
> CONFIG_CC_OPTIMIZE_FOR_SIZE=y
> # CONFIG_EMBEDDED is not set
> CONFIG_KALLSYMS=y
> # CONFIG_KALLSYMS_ALL is not set
> # CONFIG_KALLSYMS_EXTRA_PASS is not set
> CONFIG_HOTPLUG=y
> CONFIG_PRINTK=y
> CONFIG_BUG=y
> CONFIG_ELF_CORE=y
> CONFIG_BASE_FULL=y
> CONFIG_FUTEX=y
> CONFIG_EPOLL=y
> CONFIG_SHMEM=y
> CONFIG_SLAB=y
> # CONFIG_TINY_SHMEM is not set
> CONFIG_BASE_SMALL=0
> # CONFIG_SLOB is not set
> CONFIG_OBSOLETE_INTERMODULE=y
> 
> #
> # Loadable module support
> #
> # CONFIG_MODULES is not set
> 
> #
> # Block layer
> #
> # CONFIG_LBD is not set
> # CONFIG_BLK_DEV_IO_TRACE is not set
> # CONFIG_LSF is not set
> 
> #
> # IO Schedulers
> #
> CONFIG_IOSCHED_NOOP=y
> CONFIG_IOSCHED_AS=y
> CONFIG_IOSCHED_DEADLINE=y
> CONFIG_IOSCHED_CFQ=y
> CONFIG_DEFAULT_AS=y
> # CONFIG_DEFAULT_DEADLINE is not set
> # CONFIG_DEFAULT_CFQ is not set
> # CONFIG_DEFAULT_NOOP is not set
> CONFIG_DEFAULT_IOSCHED="anticipatory"
> 
> #
> # Processor
> #
> # CONFIG_6xx is not set
> CONFIG_40x=y
> # CONFIG_44x is not set
> # CONFIG_8xx is not set
> # CONFIG_E200 is not set
> # CONFIG_E500 is not set
> CONFIG_MATH_EMULATION=y
> # CONFIG_KEXEC is not set
> # CONFIG_CPU_FREQ is not set
> CONFIG_4xx=y
> # CONFIG_WANT_EARLY_SERIAL is not set
> 
> #
> # IBM 4xx options
> #
> # CONFIG_BUBINGA is not set
> # CONFIG_CPCI405 is not set
> # CONFIG_EP405 is not set
> # CONFIG_REDWOOD_5 is not set
> # CONFIG_REDWOOD_6 is not set
> # CONFIG_SYCAMORE is not set
> # CONFIG_WALNUT is not set
> # CONFIG_XILINX_ML300 is not set
> CONFIG_XILINX_ML403=y
> CONFIG_IBM405_ERR77=y
> CONFIG_IBM405_ERR51=y
> CONFIG_XILINX_VIRTEX_4_FX=y
> CONFIG_XILINX_VIRTEX=y
> CONFIG_EMBEDDEDBOOT=y
> # CONFIG_PPC4xx_DMA is not set
> CONFIG_PPC_GEN550=y
> CONFIG_UART0_TTYS0=y
> # CONFIG_UART0_TTYS1 is not set
> CONFIG_NOT_COHERENT_CACHE=y
> 
> #
> # Platform options
> #
> # CONFIG_PC_KEYBOARD is not set
> # CONFIG_HIGHMEM is not set
> # CONFIG_HZ_100 is not set
> CONFIG_HZ_250=y
> # CONFIG_HZ_1000 is not set
> CONFIG_HZ=250
> CONFIG_PREEMPT_NONE=y
> # CONFIG_PREEMPT_VOLUNTARY is not set
> # CONFIG_PREEMPT is not set
> CONFIG_SELECT_MEMORY_MODEL=y
> CONFIG_FLATMEM_MANUAL=y
> # CONFIG_DISCONTIGMEM_MANUAL is not set
> # CONFIG_SPARSEMEM_MANUAL is not set
> CONFIG_FLATMEM=y
> CONFIG_FLAT_NODE_MEM_MAP=y
> # CONFIG_SPARSEMEM_STATIC is not set
> CONFIG_SPLIT_PTLOCK_CPUS=4
> CONFIG_BINFMT_ELF=y
> # CONFIG_BINFMT_MISC is not set
> CONFIG_CMDLINE_BOOL=y
> CONFIG_CMDLINE="console=ttyS0,9600 root=/dev/xsa3 rw"
> # CONFIG_PM is not set
> # CONFIG_SOFTWARE_SUSPEND is not set
> CONFIG_SECCOMP=y
> CONFIG_ISA_DMA_API=y
> 
> #
> # Bus options
> #
> # CONFIG_PPC_I8259 is not set
> # CONFIG_PCI is not set
> # CONFIG_PCI_DOMAINS is not set
> 
> #
> # PCCARD (PCMCIA/CardBus) support
> #
> # CONFIG_PCCARD is not set
> 
> #
> # Advanced setup
> #
> # CONFIG_ADVANCED_OPTIONS is not set
> 
> #
> # Default settings for advanced configuration options are used
> #
> CONFIG_HIGHMEM_START=0xfe000000
> CONFIG_LOWMEM_SIZE=0x30000000
> CONFIG_KERNEL_START=0xc0000000
> CONFIG_TASK_SIZE=0x80000000
> CONFIG_CONSISTENT_START=0xff100000
> CONFIG_CONSISTENT_SIZE=0x00200000
> CONFIG_BOOT_LOAD=0x00400000
> 
> #
> # Networking
> #
> CONFIG_NET=y
> 
> #
> # Networking options
> #
> # CONFIG_NETDEBUG is not set
> # CONFIG_PACKET is not set
> CONFIG_UNIX=y
> # CONFIG_NET_KEY is not set
> CONFIG_INET=y
> CONFIG_IP_MULTICAST=y
> # CONFIG_IP_ADVANCED_ROUTER is not set
> CONFIG_IP_FIB_HASH=y
> CONFIG_IP_PNP=y
> CONFIG_IP_PNP_DHCP=y
> # CONFIG_IP_PNP_BOOTP is not set
> # CONFIG_IP_PNP_RARP is not set
> # CONFIG_NET_IPIP is not set
> # CONFIG_NET_IPGRE is not set
> # CONFIG_IP_MROUTE is not set
> # CONFIG_ARPD is not set
> CONFIG_SYN_COOKIES=y
> # CONFIG_INET_AH is not set
> # CONFIG_INET_ESP is not set
> # CONFIG_INET_IPCOMP is not set
> # CONFIG_INET_XFRM_TUNNEL is not set
> # CONFIG_INET_TUNNEL is not set
> # CONFIG_INET_DIAG is not set
> # CONFIG_TCP_CONG_ADVANCED is not set
> CONFIG_TCP_CONG_BIC=y
> # CONFIG_IPV6 is not set
> # CONFIG_INET6_XFRM_TUNNEL is not set
> # CONFIG_INET6_TUNNEL is not set
> # CONFIG_NETFILTER is not set
> 
> #
> # DCCP Configuration (EXPERIMENTAL)
> #
> # CONFIG_IP_DCCP is not set
> 
> #
> # SCTP Configuration (EXPERIMENTAL)
> #
> # CONFIG_IP_SCTP is not set
> 
> #
> # TIPC Configuration (EXPERIMENTAL)
> #
> # CONFIG_TIPC is not set
> # CONFIG_ATM is not set
> # CONFIG_BRIDGE is not set
> # CONFIG_VLAN_8021Q is not set
> # CONFIG_DECNET is not set
> # CONFIG_LLC2 is not set
> # CONFIG_IPX is not set
> # CONFIG_ATALK is not set
> # CONFIG_X25 is not set
> # CONFIG_LAPB is not set
> # CONFIG_NET_DIVERT is not set
> # CONFIG_ECONET is not set
> # CONFIG_WAN_ROUTER is not set
> 
> #
> # QoS and/or fair queueing
> #
> # CONFIG_NET_SCHED is not set
> 
> #
> # Network testing
> #
> # CONFIG_NET_PKTGEN is not set
> # CONFIG_HAMRADIO is not set
> # CONFIG_IRDA is not set
> # CONFIG_BT is not set
> # CONFIG_IEEE80211 is not set
> 
> #
> # Device Drivers
> #
> 
> #
> # Generic Driver Options
> #
> CONFIG_STANDALONE=y
> CONFIG_PREVENT_FIRMWARE_BUILD=y
> # CONFIG_FW_LOADER is not set
> # CONFIG_DEBUG_DRIVER is not set
> 
> #
> # Connector - unified userspace <-> kernelspace linker
> #
> # CONFIG_CONNECTOR is not set
> 
> #
> # Memory Technology Devices (MTD)
> #
> CONFIG_MTD=y
> # CONFIG_MTD_DEBUG is not set
> # CONFIG_MTD_CONCAT is not set
> CONFIG_MTD_PARTITIONS=y
> CONFIG_MTD_REDBOOT_PARTS=y
> CONFIG_MTD_REDBOOT_DIRECTORY_BLOCK=-1
> # CONFIG_MTD_REDBOOT_PARTS_UNALLOCATED is not set
> # CONFIG_MTD_REDBOOT_PARTS_READONLY is not set
> # CONFIG_MTD_CMDLINE_PARTS is not set
> 
> #
> # User Modules And Translation Layers
> #
> CONFIG_MTD_CHAR=y
> CONFIG_MTD_BLOCK=y
> # CONFIG_FTL is not set
> # CONFIG_NFTL is not set
> # CONFIG_INFTL is not set
> # CONFIG_RFD_FTL is not set
> 
> #
> # RAM/ROM/Flash chip drivers
> #
> CONFIG_MTD_CFI=y
> # CONFIG_MTD_JEDECPROBE is not set
> CONFIG_MTD_GEN_PROBE=y
> # CONFIG_MTD_CFI_ADV_OPTIONS is not set
> CONFIG_MTD_MAP_BANK_WIDTH_1=y
> CONFIG_MTD_MAP_BANK_WIDTH_2=y
> CONFIG_MTD_MAP_BANK_WIDTH_4=y
> # CONFIG_MTD_MAP_BANK_WIDTH_8 is not set
> # CONFIG_MTD_MAP_BANK_WIDTH_16 is not set
> # CONFIG_MTD_MAP_BANK_WIDTH_32 is not set
> CONFIG_MTD_CFI_I1=y
> CONFIG_MTD_CFI_I2=y
> # CONFIG_MTD_CFI_I4 is not set
> # CONFIG_MTD_CFI_I8 is not set
> # CONFIG_MTD_CFI_INTELEXT is not set
> CONFIG_MTD_CFI_AMDSTD=y
> # CONFIG_MTD_CFI_STAA is not set
> CONFIG_MTD_CFI_UTIL=y
> # CONFIG_MTD_RAM is not set
> # CONFIG_MTD_ROM is not set
> # CONFIG_MTD_ABSENT is not set
> # CONFIG_MTD_OBSOLETE_CHIPS is not set
> 
> #
> # Mapping drivers for chip access
> #
> # CONFIG_MTD_COMPLEX_MAPPINGS is not set
> # CONFIG_MTD_PHYSMAP is not set
> # CONFIG_MTD_PLATRAM is not set
> 
> #
> # Self-contained MTD device drivers
> #
> # CONFIG_MTD_SLRAM is not set
> # CONFIG_MTD_PHRAM is not set
> # CONFIG_MTD_MTDRAM is not set
> # CONFIG_MTD_BLOCK2MTD is not set
> 
> #
> # Disk-On-Chip Device Drivers
> #
> # CONFIG_MTD_DOC2000 is not set
> # CONFIG_MTD_DOC2001 is not set
> # CONFIG_MTD_DOC2001PLUS is not set
> 
> #
> # NAND Flash Device Drivers
> #
> # CONFIG_MTD_NAND is not set
> 
> #
> # OneNAND Flash Device Drivers
> #
> # CONFIG_MTD_ONENAND is not set
> 
> #
> # Parallel port support
> #
> # CONFIG_PARPORT is not set
> 
> #
> # Plug and Play support
> #
> 
> #
> # Block devices
> #
> # CONFIG_BLK_DEV_FD is not set
> # CONFIG_BLK_DEV_COW_COMMON is not set
> CONFIG_BLK_DEV_LOOP=y
> # CONFIG_BLK_DEV_CRYPTOLOOP is not set
> CONFIG_XILINX_SYSACE=y
> # CONFIG_BLK_DEV_NBD is not set
> # CONFIG_BLK_DEV_RAM is not set
> # CONFIG_BLK_DEV_INITRD is not set
> # CONFIG_CDROM_PKTCDVD is not set
> # CONFIG_ATA_OVER_ETH is not set
> 
> #
> # ATA/ATAPI/MFM/RLL support
> #
> # CONFIG_IDE is not set
> 
> #
> # SCSI device support
> #
> # CONFIG_RAID_ATTRS is not set
> # CONFIG_SCSI is not set
> 
> #
> # Multi-device support (RAID and LVM)
> #
> # CONFIG_MD is not set
> 
> #
> # Fusion MPT device support
> #
> # CONFIG_FUSION is not set
> 
> #
> # IEEE 1394 (FireWire) support
> #
> 
> #
> # I2O device support
> #
> 
> #
> # Macintosh device drivers
> #
> # CONFIG_WINDFARM is not set
> 
> #
> # Network device support
> #
> CONFIG_NETDEVICES=y
> # CONFIG_DUMMY is not set
> # CONFIG_BONDING is not set
> # CONFIG_EQUALIZER is not set
> # CONFIG_TUN is not set
> 
> #
> # PHY device support
> #
> 
> #
> # Ethernet (10 or 100Mbit)
> #
> # CONFIG_NET_ETHERNET is not set
> # CONFIG_IBM_EMAC is not set
> 
> #
> # Ethernet (1000 Mbit)
> #
> CONFIG_XILINX_TEMAC=y
> 
> #
> # Ethernet (10000 Mbit)
> #
> 
> #
> # Token Ring devices
> #
> 
> #
> # Wireless LAN (non-hamradio)
> #
> # CONFIG_NET_RADIO is not set
> 
> #
> # Wan interfaces
> #
> # CONFIG_WAN is not set
> # CONFIG_PPP is not set
> # CONFIG_SLIP is not set
> # CONFIG_SHAPER is not set
> # CONFIG_NETCONSOLE is not set
> # CONFIG_NETPOLL is not set
> # CONFIG_NET_POLL_CONTROLLER is not set
> 
> #
> # ISDN subsystem
> #
> # CONFIG_ISDN is not set
> 
> #
> # Telephony Support
> #
> # CONFIG_PHONE is not set
> 
> #
> # Input device support
> #
> CONFIG_INPUT=y
> 
> #
> # Userland interfaces
> #
> CONFIG_INPUT_MOUSEDEV=y
> CONFIG_INPUT_MOUSEDEV_PSAUX=y
> CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
> CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
> # CONFIG_INPUT_JOYDEV is not set
> # CONFIG_INPUT_TSDEV is not set
> # CONFIG_INPUT_EVDEV is not set
> # CONFIG_INPUT_EVBUG is not set
> 
> #
> # Input Device Drivers
> #
> # CONFIG_INPUT_KEYBOARD is not set
> # CONFIG_INPUT_MOUSE is not set
> # CONFIG_INPUT_JOYSTICK is not set
> # CONFIG_INPUT_TOUCHSCREEN is not set
> # CONFIG_INPUT_MISC is not set
> 
> #
> # Hardware I/O ports
> #
> CONFIG_SERIO=y
> CONFIG_SERIO_I8042=y
> CONFIG_SERIO_SERPORT=y
> # CONFIG_SERIO_RAW is not set
> # CONFIG_GAMEPORT is not set
> 
> #
> # Character devices
> #
> CONFIG_VT=y
> CONFIG_VT_CONSOLE=y
> CONFIG_HW_CONSOLE=y
> # CONFIG_SERIAL_NONSTANDARD is not set
> 
> #
> # Serial drivers
> #
> CONFIG_SERIAL_8250=y
> CONFIG_SERIAL_8250_CONSOLE=y
> CONFIG_SERIAL_8250_NR_UARTS=4
> CONFIG_SERIAL_8250_RUNTIME_UARTS=4
> # CONFIG_SERIAL_8250_EXTENDED is not set
> 
> #
> # Non-8250 serial port support
> #
> CONFIG_SERIAL_CORE=y
> CONFIG_SERIAL_CORE_CONSOLE=y
> CONFIG_UNIX98_PTYS=y
> CONFIG_LEGACY_PTYS=y
> CONFIG_LEGACY_PTY_COUNT=256
> 
> #
> # IPMI
> #
> # CONFIG_IPMI_HANDLER is not set
> 
> #
> # Watchdog Cards
> #
> # CONFIG_WATCHDOG is not set
> # CONFIG_NVRAM is not set
> # CONFIG_GEN_RTC is not set
> # CONFIG_DTLK is not set
> # CONFIG_R3964 is not set
> 
> #
> # Ftape, the floppy tape device driver
> #
> # CONFIG_AGP is not set
> # CONFIG_RAW_DRIVER is not set
> 
> #
> # TPM devices
> #
> # CONFIG_TCG_TPM is not set
> # CONFIG_TELCLOCK is not set
> 
> #
> # I2C support
> #
> # CONFIG_I2C is not set
> 
> #
> # SPI support
> #
> # CONFIG_SPI is not set
> # CONFIG_SPI_MASTER is not set
> 
> #
> # Dallas's 1-wire bus
> #
> # CONFIG_W1 is not set
> 
> #
> # Hardware Monitoring support
> #
> CONFIG_HWMON=y
> # CONFIG_HWMON_VID is not set
> # CONFIG_SENSORS_F71805F is not set
> # CONFIG_HWMON_DEBUG_CHIP is not set
> 
> #
> # Misc devices
> #
> 
> #
> # Multimedia devices
> #
> # CONFIG_VIDEO_DEV is not set
> CONFIG_VIDEO_V4L2=y
> 
> #
> # Digital Video Broadcasting Devices
> #
> # CONFIG_DVB is not set
> 
> #
> # Graphics support
> #
> # CONFIG_FB is not set
> 
> #
> # Console display driver support
> #
> CONFIG_DUMMY_CONSOLE=y
> 
> #
> # Sound
> #
> # CONFIG_SOUND is not set
> 
> #
> # USB support
> #
> # CONFIG_USB_ARCH_HAS_HCD is not set
> # CONFIG_USB_ARCH_HAS_OHCI is not set
> # CONFIG_USB_ARCH_HAS_EHCI is not set
> 
> #
> # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
> #
> 
> #
> # USB Gadget Support
> #
> # CONFIG_USB_GADGET is not set
> 
> #
> # MMC/SD Card support
> #
> # CONFIG_MMC is not set
> 
> #
> # LED devices
> #
> # CONFIG_NEW_LEDS is not set
> 
> #
> # LED drivers
> #
> 
> #
> # LED Triggers
> #
> 
> #
> # InfiniBand support
> #
> 
> #
> # EDAC - error detection and reporting (RAS) (EXPERIMENTAL)
> #
> 
> #
> # Real Time Clock
> #
> # CONFIG_RTC_CLASS is not set
> CONFIG_XILINX_EDK=y
> 
> #
> # File systems
> #
> CONFIG_EXT2_FS=y
> CONFIG_EXT2_FS_XATTR=y
> CONFIG_EXT2_FS_POSIX_ACL=y
> CONFIG_EXT2_FS_SECURITY=y
> CONFIG_EXT2_FS_XIP=y
> CONFIG_FS_XIP=y
> # CONFIG_EXT3_FS is not set
> CONFIG_FS_MBCACHE=y
> # CONFIG_REISERFS_FS is not set
> # CONFIG_JFS_FS is not set
> CONFIG_FS_POSIX_ACL=y
> # CONFIG_XFS_FS is not set
> # CONFIG_OCFS2_FS is not set
> # CONFIG_MINIX_FS is not set
> # CONFIG_ROMFS_FS is not set
> CONFIG_INOTIFY=y
> # CONFIG_QUOTA is not set
> CONFIG_DNOTIFY=y
> CONFIG_AUTOFS_FS=y
> CONFIG_AUTOFS4_FS=y
> # CONFIG_FUSE_FS is not set
> 
> #
> # CD-ROM/DVD Filesystems
> #
> # CONFIG_ISO9660_FS is not set
> # CONFIG_UDF_FS is not set
> 
> #
> # DOS/FAT/NT Filesystems
> #
> # CONFIG_MSDOS_FS is not set
> # CONFIG_VFAT_FS is not set
> # CONFIG_NTFS_FS is not set
> 
> #
> # Pseudo filesystems
> #
> CONFIG_PROC_FS=y
> CONFIG_PROC_KCORE=y
> CONFIG_SYSFS=y
> CONFIG_TMPFS=y
> # CONFIG_HUGETLB_PAGE is not set
> CONFIG_RAMFS=y
> # CONFIG_CONFIGFS_FS is not set
> 
> #
> # Miscellaneous filesystems
> #
> # CONFIG_ADFS_FS is not set
> # CONFIG_AFFS_FS is not set
> # CONFIG_HFS_FS is not set
> # CONFIG_HFSPLUS_FS is not set
> # CONFIG_BEFS_FS is not set
> # CONFIG_BFS_FS is not set
> # CONFIG_EFS_FS is not set
> # CONFIG_JFFS_FS is not set
> # CONFIG_JFFS2_FS is not set
> # CONFIG_CRAMFS is not set
> # CONFIG_VXFS_FS is not set
> # CONFIG_HPFS_FS is not set
> # CONFIG_QNX4FS_FS is not set
> # CONFIG_SYSV_FS is not set
> # CONFIG_UFS_FS is not set
> 
> #
> # Network File Systems
> #
> # CONFIG_NFS_FS is not set
> # CONFIG_NFSD is not set
> # CONFIG_SMB_FS is not set
> # CONFIG_CIFS is not set
> # CONFIG_NCP_FS is not set
> # CONFIG_CODA_FS is not set
> # CONFIG_AFS_FS is not set
> # CONFIG_9P_FS is not set
> 
> #
> # Partition Types
> #
> # CONFIG_PARTITION_ADVANCED is not set
> CONFIG_MSDOS_PARTITION=y
> 
> #
> # Native Language Support
> #
> CONFIG_NLS=y
> CONFIG_NLS_DEFAULT="iso8859-1"
> # CONFIG_NLS_CODEPAGE_437 is not set
> # CONFIG_NLS_CODEPAGE_737 is not set
> # CONFIG_NLS_CODEPAGE_775 is not set
> # CONFIG_NLS_CODEPAGE_850 is not set
> # CONFIG_NLS_CODEPAGE_852 is not set
> # CONFIG_NLS_CODEPAGE_855 is not set
> # CONFIG_NLS_CODEPAGE_857 is not set
> # CONFIG_NLS_CODEPAGE_860 is not set
> # CONFIG_NLS_CODEPAGE_861 is not set
> # CONFIG_NLS_CODEPAGE_862 is not set
> # CONFIG_NLS_CODEPAGE_863 is not set
> # CONFIG_NLS_CODEPAGE_864 is not set
> # CONFIG_NLS_CODEPAGE_865 is not set
> # CONFIG_NLS_CODEPAGE_866 is not set
> # CONFIG_NLS_CODEPAGE_869 is not set
> # CONFIG_NLS_CODEPAGE_936 is not set
> # CONFIG_NLS_CODEPAGE_950 is not set
> # CONFIG_NLS_CODEPAGE_932 is not set
> # CONFIG_NLS_CODEPAGE_949 is not set
> # CONFIG_NLS_CODEPAGE_874 is not set
> # CONFIG_NLS_ISO8859_8 is not set
> # CONFIG_NLS_CODEPAGE_1250 is not set
> # CONFIG_NLS_CODEPAGE_1251 is not set
> # CONFIG_NLS_ASCII is not set
> # CONFIG_NLS_ISO8859_1 is not set
> # CONFIG_NLS_ISO8859_2 is not set
> # CONFIG_NLS_ISO8859_3 is not set
> # CONFIG_NLS_ISO8859_4 is not set
> # CONFIG_NLS_ISO8859_5 is not set
> # CONFIG_NLS_ISO8859_6 is not set
> # CONFIG_NLS_ISO8859_7 is not set
> # CONFIG_NLS_ISO8859_9 is not set
> # CONFIG_NLS_ISO8859_13 is not set
> # CONFIG_NLS_ISO8859_14 is not set
> # CONFIG_NLS_ISO8859_15 is not set
> # CONFIG_NLS_KOI8_R is not set
> # CONFIG_NLS_KOI8_U is not set
> # CONFIG_NLS_UTF8 is not set
> 
> #
> # IBM 40x options
> #
> 
> #
> # Library routines
> #
> # CONFIG_CRC_CCITT is not set
> # CONFIG_CRC16 is not set
> CONFIG_CRC32=y
> # CONFIG_LIBCRC32C is not set
> # CONFIG_PROFILING is not set
> 
> #
> # Kernel hacking
> #
> # CONFIG_PRINTK_TIME is not set
> # CONFIG_MAGIC_SYSRQ is not set
> CONFIG_DEBUG_KERNEL=y
> CONFIG_LOG_BUF_SHIFT=14
> CONFIG_DETECT_SOFTLOCKUP=y
> # CONFIG_SCHEDSTATS is not set
> # CONFIG_DEBUG_SLAB is not set
> # CONFIG_DEBUG_MUTEXES is not set
> # CONFIG_DEBUG_SPINLOCK is not set
> # CONFIG_DEBUG_SPINLOCK_SLEEP is not set
> # CONFIG_DEBUG_KOBJECT is not set
> CONFIG_DEBUG_INFO=y
> # CONFIG_DEBUG_FS is not set
> # CONFIG_DEBUG_VM is not set
> # CONFIG_UNWIND_INFO is not set
> CONFIG_FORCED_INLINING=y
> # CONFIG_RCU_TORTURE_TEST is not set
> # CONFIG_KGDB is not set
> # CONFIG_XMON is not set
> CONFIG_BDI_SWITCH=y
> # CONFIG_SERIAL_TEXT_DEBUG is not set
> 
> #
> # Security options
> #
> # CONFIG_KEYS is not set
> # CONFIG_SECURITY is not set
> 
> #
> # Cryptographic options
> #
> # CONFIG_CRYPTO is not set
> 
> #
> # Hardware crypto devices
> #
> 

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

* Re: some problems on the SystemACE driver.
  2006-07-14 15:10 ` Ameet Patil
@ 2006-07-14 16:38   ` Ming Liu
  2006-07-14 16:57     ` Ameet Patil
  0 siblings, 1 reply; 15+ messages in thread
From: Ming Liu @ 2006-07-14 16:38 UTC (permalink / raw)
  To: ammubhai; +Cc: linuxppc-embedded

Dear Ameet,
I am not so clear with your email. First, I have a question about the patch 
linuxppc-2.6.17.1-sysace-1.2-after-TEMAC.patch. I noticed that in this 
patch, there are some modifications to the file xparameters_ml300.h. In my 
senario, I configure the platform as ml403 and use xparameters_ml403.h 
(copy from EDK BSP and rename the file xparameters_ml300.h as 
xparameters_ml403.h). Do you mean to modify the ml403 file, right? 

Second, after I patch linuxppc-2.6.17.1-sysace-1.2-after-TEMAC.patch, I 
needn't patch linuxppc-2.6.17.1-sysace-1.2.patch any more, right? I 
compared the two patch files and found that the only difference between 
them is in linuxppc-2.6.17.1-sysace-1.2.patch, there are some modifications 
to do with the file "adapter.c.old" while in 
linuxppc-2.6.17.1-sysace-1.2-after-TEMAC.patch there isn't. I don't think 
the file "adapter.c.old" has something to do with the kernel compilation. 

I tried the new patches in such a procedure: download the kernel, apply the 
five Temac patches, apply the patch 
linuxppc-2.6.17.1-sysace-1.2-after-TEMAC.patch, copy and replace 
xparameters_ml403.h and use the one generated by EDK (I don't know if this 
is right. But there is really no modification in your patch for the ml403 
xparameters file.). Then make menuconfig, make dep and make zImage. Still 
the same problem as former. 

Is there any problem in the sequence according to which I applied the 
patches? Or other problems? But why the problem still happened? If I made a 
wrong operation, please forgive me because I am a novice. That's why I 
would like to describe the procedure as detailed as possible. Also, please 
check it again to solve the problem. Thanks for your hard work.

Regards
Ming 

  


>From: Ameet Patil <ammubhai@gmail.com>
>To: Ming Liu <eemingliu@hotmail.com>
>CC: linuxppc-embedded@ozlabs.org
>Subject: Re: some problems on the SystemACE driver.
>Date: Fri, 14 Jul 2006 16:10:54 +0100
>
>Ming,
>   Had a look, both patches define the XILINX_OCP functions which is
>unavoidable really. I have made some changes only so that it works in
>your scenario. First apply the TEMAC patch and then this one:
>https://www.cs.york.ac.uk/rtslab/demos/amos/xupv2pro/patches/linuxppc-2.6.17.1-sysace-1.2-after-TEMAC.patch

>
>Also, I have also made some new changes to the SysAce driver patch. New
>version is here:
>https://www.cs.york.ac.uk/rtslab/demos/amos/xupv2pro/patches/linuxppc-2.6.17.1-sysace-1.2.patch

>
>No, you donot need to apply all the patches found in my patches folder.
>
>Let me know what happens? I think it should work....
>
>-Ameet
>
>Ming Liu wrote:
> > Dear Ameet,
> > The attached is the log file to record the error. Please unzip and
> > search for "XAssert" to go to the end to see the problem. Also, the
> > .config file is attached. Please rename the file from config into
> > .config. The linux version is 2.6.17.1. When you compile the kernel,
> > please remember to export C_INCLUDE_PATH=....../driver/xilinx_edk.
> > Thanks for your work.
> >
> > Regards
> > Ming
> >
> >
> >> From: Ameet Patil <ammubhai@gmail.com>
> >> To: Ming Liu <eemingliu@hotmail.com>
> >> CC: linuxppc-embedded@ozlabs.org
> >> Subject: Re: some problems on the SystemACE driver.
> >> Date: Fri, 14 Jul 2006 12:12:36 +0100
> >>
> >> Hi Ming,
> >>    Can you send me the entire text output (in a file) of the 
compilation
> >> process with errors?
> >>
> >> -Ameet
> >>
> >> Ming Liu wrote:
> >> > Dear Ameet,
> >> >
> >> >> 1. Which TEMAC patch are you using?
> >> >>
> > 
(http://source.mvista.com/~ank/paulus-powerpc/20060309/ppc32_xilinx_edk_temac.patch)

> >
> >
> >> >>
> >> >
> >> > There are five patches in the directory 20060309 whose address is
> > listed
> >> > above by you. I applied all of them in my system, because without 
any
> >> > there will be problems.
> >> >> 2. After applying the patch, is the driver getting compiled 
directly
> >> >> without having to select it via "make menuconfig"?
> >> > No. there is an option named "xilinx 10/100/1000 Mbit TEMAC support" 
in
> >> > the menuconfig. I must select it and then compile the kernel.
> >> >> 3. I don't see a Makefile in the drivers/net/xilinx_temac/ folder?
> >> > I have checked. In my kernel, there is the Makefile. I don't know 
why
> >> > this happened to you.
> >> >
> >> > Let me describe the detailed process I did. First, download the 
kernel
> >> > 2.6.17.1 (or 2.6.16-rc5). Then apply the five patches for Temac.(If 
I
> >> > use 2.6.17.1, I need to upgrade some files manually. For 2.6.16, 
there
> >> > is no problem.) And then apply the patch for SystemACE. Also copy 
and
> >> > replace the xparameters_ml403.h by my own file generated by EDK. 
Then
> >> > make menuconfig, selecting both Temac and SystemACE and other basic
> >> > options. Then make dep and make zImage. During this process, I need 
to
> >> > modify some little problems which are about the inclusion of some
> > header
> >> > files, or specify some lib inclusion directories instead. Then that
> >> > problem appears. There are some main points: 1. configured for ml403
> >> > board. 2.both Temac and SystemACE are selected. 3. 5 patches for 
Temac
> >> > and 1 patch for SystemACE. 4. linux version is 2.6.17 or 2.6.16. I
> >> > really have no idea why this still happens after your modification. 
So
> > I
> >> > have to ask you again.
> >> >> Ofcourse, I can work my way to compile the driver. But is there any
> > doc.
> >> >> present explaining this?
> >> > Sorry that there is no doc to explain this. I just did following the
> >> > procedure described above. I am totally lost. The strange thing is,
> > when
> >> > I select only one of these two drivers, no problem, but if both,
> > problem.
> >> > By the way, I noticed that in the address where I get your patch, 
there
> >> > is also a patch called linuxppc-2.6.17.1-sysace-1.0.patch which is 
much
> >> > larger than the 1.1 one. I needn't apply the 1.0 one, right?
> >> > Thanks for your hard work. Hopefully we can solve the problem.
> >> > Regards
> >> > Ming
> >> >
> >> > _________________________________________________________________
> >> > 免费下载 MSN Explorer:   http://explorer.msn.com/lccn
> >> >
> >
> > _________________________________________________________________
> > 免费下载 MSN Explorer:   http://explorer.msn.com/lccn  #
> > # Automatically generated make config: don't edit
> > # Linux kernel version: 2.6.17.1
> > # Fri Jul 14 15:00:57 2006
> > #
> > CONFIG_MMU=y
> > CONFIG_GENERIC_HARDIRQS=y
> > CONFIG_RWSEM_XCHGADD_ALGORITHM=y
> > CONFIG_GENERIC_HWEIGHT=y
> > CONFIG_GENERIC_CALIBRATE_DELAY=y
> > CONFIG_PPC=y
> > CONFIG_PPC32=y
> > CONFIG_GENERIC_NVRAM=y
> > CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
> > CONFIG_ARCH_MAY_HAVE_PC_FDC=y
> >
> > #
> > # Code maturity level options
> > #
> > CONFIG_EXPERIMENTAL=y
> > CONFIG_BROKEN_ON_SMP=y
> > CONFIG_INIT_ENV_ARG_LIMIT=32
> >
> > #
> > # General setup
> > #
> > CONFIG_LOCALVERSION=""
> > CONFIG_LOCALVERSION_AUTO=y
> > CONFIG_SWAP=y
> > CONFIG_SYSVIPC=y
> > # CONFIG_POSIX_MQUEUE is not set
> > # CONFIG_BSD_PROCESS_ACCT is not set
> > CONFIG_SYSCTL=y
> > # CONFIG_AUDIT is not set
> > # CONFIG_IKCONFIG is not set
> > # CONFIG_RELAY is not set
> > CONFIG_INITRAMFS_SOURCE=""
> > CONFIG_CC_OPTIMIZE_FOR_SIZE=y
> > # CONFIG_EMBEDDED is not set
> > CONFIG_KALLSYMS=y
> > # CONFIG_KALLSYMS_ALL is not set
> > # CONFIG_KALLSYMS_EXTRA_PASS is not set
> > CONFIG_HOTPLUG=y
> > CONFIG_PRINTK=y
> > CONFIG_BUG=y
> > CONFIG_ELF_CORE=y
> > CONFIG_BASE_FULL=y
> > CONFIG_FUTEX=y
> > CONFIG_EPOLL=y
> > CONFIG_SHMEM=y
> > CONFIG_SLAB=y
> > # CONFIG_TINY_SHMEM is not set
> > CONFIG_BASE_SMALL=0
> > # CONFIG_SLOB is not set
> > CONFIG_OBSOLETE_INTERMODULE=y
> >
> > #
> > # Loadable module support
> > #
> > # CONFIG_MODULES is not set
> >
> > #
> > # Block layer
> > #
> > # CONFIG_LBD is not set
> > # CONFIG_BLK_DEV_IO_TRACE is not set
> > # CONFIG_LSF is not set
> >
> > #
> > # IO Schedulers
> > #
> > CONFIG_IOSCHED_NOOP=y
> > CONFIG_IOSCHED_AS=y
> > CONFIG_IOSCHED_DEADLINE=y
> > CONFIG_IOSCHED_CFQ=y
> > CONFIG_DEFAULT_AS=y
> > # CONFIG_DEFAULT_DEADLINE is not set
> > # CONFIG_DEFAULT_CFQ is not set
> > # CONFIG_DEFAULT_NOOP is not set
> > CONFIG_DEFAULT_IOSCHED="anticipatory"
> >
> > #
> > # Processor
> > #
> > # CONFIG_6xx is not set
> > CONFIG_40x=y
> > # CONFIG_44x is not set
> > # CONFIG_8xx is not set
> > # CONFIG_E200 is not set
> > # CONFIG_E500 is not set
> > CONFIG_MATH_EMULATION=y
> > # CONFIG_KEXEC is not set
> > # CONFIG_CPU_FREQ is not set
> > CONFIG_4xx=y
> > # CONFIG_WANT_EARLY_SERIAL is not set
> >
> > #
> > # IBM 4xx options
> > #
> > # CONFIG_BUBINGA is not set
> > # CONFIG_CPCI405 is not set
> > # CONFIG_EP405 is not set
> > # CONFIG_REDWOOD_5 is not set
> > # CONFIG_REDWOOD_6 is not set
> > # CONFIG_SYCAMORE is not set
> > # CONFIG_WALNUT is not set
> > # CONFIG_XILINX_ML300 is not set
> > CONFIG_XILINX_ML403=y
> > CONFIG_IBM405_ERR77=y
> > CONFIG_IBM405_ERR51=y
> > CONFIG_XILINX_VIRTEX_4_FX=y
> > CONFIG_XILINX_VIRTEX=y
> > CONFIG_EMBEDDEDBOOT=y
> > # CONFIG_PPC4xx_DMA is not set
> > CONFIG_PPC_GEN550=y
> > CONFIG_UART0_TTYS0=y
> > # CONFIG_UART0_TTYS1 is not set
> > CONFIG_NOT_COHERENT_CACHE=y
> >
> > #
> > # Platform options
> > #
> > # CONFIG_PC_KEYBOARD is not set
> > # CONFIG_HIGHMEM is not set
> > # CONFIG_HZ_100 is not set
> > CONFIG_HZ_250=y
> > # CONFIG_HZ_1000 is not set
> > CONFIG_HZ=250
> > CONFIG_PREEMPT_NONE=y
> > # CONFIG_PREEMPT_VOLUNTARY is not set
> > # CONFIG_PREEMPT is not set
> > CONFIG_SELECT_MEMORY_MODEL=y
> > CONFIG_FLATMEM_MANUAL=y
> > # CONFIG_DISCONTIGMEM_MANUAL is not set
> > # CONFIG_SPARSEMEM_MANUAL is not set
> > CONFIG_FLATMEM=y
> > CONFIG_FLAT_NODE_MEM_MAP=y
> > # CONFIG_SPARSEMEM_STATIC is not set
> > CONFIG_SPLIT_PTLOCK_CPUS=4
> > CONFIG_BINFMT_ELF=y
> > # CONFIG_BINFMT_MISC is not set
> > CONFIG_CMDLINE_BOOL=y
> > CONFIG_CMDLINE="console=ttyS0,9600 root=/dev/xsa3 rw"
> > # CONFIG_PM is not set
> > # CONFIG_SOFTWARE_SUSPEND is not set
> > CONFIG_SECCOMP=y
> > CONFIG_ISA_DMA_API=y
> >
> > #
> > # Bus options
> > #
> > # CONFIG_PPC_I8259 is not set
> > # CONFIG_PCI is not set
> > # CONFIG_PCI_DOMAINS is not set
> >
> > #
> > # PCCARD (PCMCIA/CardBus) support
> > #
> > # CONFIG_PCCARD is not set
> >
> > #
> > # Advanced setup
> > #
> > # CONFIG_ADVANCED_OPTIONS is not set
> >
> > #
> > # Default settings for advanced configuration options are used
> > #
> > CONFIG_HIGHMEM_START=0xfe000000
> > CONFIG_LOWMEM_SIZE=0x30000000
> > CONFIG_KERNEL_START=0xc0000000
> > CONFIG_TASK_SIZE=0x80000000
> > CONFIG_CONSISTENT_START=0xff100000
> > CONFIG_CONSISTENT_SIZE=0x00200000
> > CONFIG_BOOT_LOAD=0x00400000
> >
> > #
> > # Networking
> > #
> > CONFIG_NET=y
> >
> > #
> > # Networking options
> > #
> > # CONFIG_NETDEBUG is not set
> > # CONFIG_PACKET is not set
> > CONFIG_UNIX=y
> > # CONFIG_NET_KEY is not set
> > CONFIG_INET=y
> > CONFIG_IP_MULTICAST=y
> > # CONFIG_IP_ADVANCED_ROUTER is not set
> > CONFIG_IP_FIB_HASH=y
> > CONFIG_IP_PNP=y
> > CONFIG_IP_PNP_DHCP=y
> > # CONFIG_IP_PNP_BOOTP is not set
> > # CONFIG_IP_PNP_RARP is not set
> > # CONFIG_NET_IPIP is not set
> > # CONFIG_NET_IPGRE is not set
> > # CONFIG_IP_MROUTE is not set
> > # CONFIG_ARPD is not set
> > CONFIG_SYN_COOKIES=y
> > # CONFIG_INET_AH is not set
> > # CONFIG_INET_ESP is not set
> > # CONFIG_INET_IPCOMP is not set
> > # CONFIG_INET_XFRM_TUNNEL is not set
> > # CONFIG_INET_TUNNEL is not set
> > # CONFIG_INET_DIAG is not set
> > # CONFIG_TCP_CONG_ADVANCED is not set
> > CONFIG_TCP_CONG_BIC=y
> > # CONFIG_IPV6 is not set
> > # CONFIG_INET6_XFRM_TUNNEL is not set
> > # CONFIG_INET6_TUNNEL is not set
> > # CONFIG_NETFILTER is not set
> >
> > #
> > # DCCP Configuration (EXPERIMENTAL)
> > #
> > # CONFIG_IP_DCCP is not set
> >
> > #
> > # SCTP Configuration (EXPERIMENTAL)
> > #
> > # CONFIG_IP_SCTP is not set
> >
> > #
> > # TIPC Configuration (EXPERIMENTAL)
> > #
> > # CONFIG_TIPC is not set
> > # CONFIG_ATM is not set
> > # CONFIG_BRIDGE is not set
> > # CONFIG_VLAN_8021Q is not set
> > # CONFIG_DECNET is not set
> > # CONFIG_LLC2 is not set
> > # CONFIG_IPX is not set
> > # CONFIG_ATALK is not set
> > # CONFIG_X25 is not set
> > # CONFIG_LAPB is not set
> > # CONFIG_NET_DIVERT is not set
> > # CONFIG_ECONET is not set
> > # CONFIG_WAN_ROUTER is not set
> >
> > #
> > # QoS and/or fair queueing
> > #
> > # CONFIG_NET_SCHED is not set
> >
> > #
> > # Network testing
> > #
> > # CONFIG_NET_PKTGEN is not set
> > # CONFIG_HAMRADIO is not set
> > # CONFIG_IRDA is not set
> > # CONFIG_BT is not set
> > # CONFIG_IEEE80211 is not set
> >
> > #
> > # Device Drivers
> > #
> >
> > #
> > # Generic Driver Options
> > #
> > CONFIG_STANDALONE=y
> > CONFIG_PREVENT_FIRMWARE_BUILD=y
> > # CONFIG_FW_LOADER is not set
> > # CONFIG_DEBUG_DRIVER is not set
> >
> > #
> > # Connector - unified userspace <-> kernelspace linker
> > #
> > # CONFIG_CONNECTOR is not set
> >
> > #
> > # Memory Technology Devices (MTD)
> > #
> > CONFIG_MTD=y
> > # CONFIG_MTD_DEBUG is not set
> > # CONFIG_MTD_CONCAT is not set
> > CONFIG_MTD_PARTITIONS=y
> > CONFIG_MTD_REDBOOT_PARTS=y
> > CONFIG_MTD_REDBOOT_DIRECTORY_BLOCK=-1
> > # CONFIG_MTD_REDBOOT_PARTS_UNALLOCATED is not set
> > # CONFIG_MTD_REDBOOT_PARTS_READONLY is not set
> > # CONFIG_MTD_CMDLINE_PARTS is not set
> >
> > #
> > # User Modules And Translation Layers
> > #
> > CONFIG_MTD_CHAR=y
> > CONFIG_MTD_BLOCK=y
> > # CONFIG_FTL is not set
> > # CONFIG_NFTL is not set
> > # CONFIG_INFTL is not set
> > # CONFIG_RFD_FTL is not set
> >
> > #
> > # RAM/ROM/Flash chip drivers
> > #
> > CONFIG_MTD_CFI=y
> > # CONFIG_MTD_JEDECPROBE is not set
> > CONFIG_MTD_GEN_PROBE=y
> > # CONFIG_MTD_CFI_ADV_OPTIONS is not set
> > CONFIG_MTD_MAP_BANK_WIDTH_1=y
> > CONFIG_MTD_MAP_BANK_WIDTH_2=y
> > CONFIG_MTD_MAP_BANK_WIDTH_4=y
> > # CONFIG_MTD_MAP_BANK_WIDTH_8 is not set
> > # CONFIG_MTD_MAP_BANK_WIDTH_16 is not set
> > # CONFIG_MTD_MAP_BANK_WIDTH_32 is not set
> > CONFIG_MTD_CFI_I1=y
> > CONFIG_MTD_CFI_I2=y
> > # CONFIG_MTD_CFI_I4 is not set
> > # CONFIG_MTD_CFI_I8 is not set
> > # CONFIG_MTD_CFI_INTELEXT is not set
> > CONFIG_MTD_CFI_AMDSTD=y
> > # CONFIG_MTD_CFI_STAA is not set
> > CONFIG_MTD_CFI_UTIL=y
> > # CONFIG_MTD_RAM is not set
> > # CONFIG_MTD_ROM is not set
> > # CONFIG_MTD_ABSENT is not set
> > # CONFIG_MTD_OBSOLETE_CHIPS is not set
> >
> > #
> > # Mapping drivers for chip access
> > #
> > # CONFIG_MTD_COMPLEX_MAPPINGS is not set
> > # CONFIG_MTD_PHYSMAP is not set
> > # CONFIG_MTD_PLATRAM is not set
> >
> > #
> > # Self-contained MTD device drivers
> > #
> > # CONFIG_MTD_SLRAM is not set
> > # CONFIG_MTD_PHRAM is not set
> > # CONFIG_MTD_MTDRAM is not set
> > # CONFIG_MTD_BLOCK2MTD is not set
> >
> > #
> > # Disk-On-Chip Device Drivers
> > #
> > # CONFIG_MTD_DOC2000 is not set
> > # CONFIG_MTD_DOC2001 is not set
> > # CONFIG_MTD_DOC2001PLUS is not set
> >
> > #
> > # NAND Flash Device Drivers
> > #
> > # CONFIG_MTD_NAND is not set
> >
> > #
> > # OneNAND Flash Device Drivers
> > #
> > # CONFIG_MTD_ONENAND is not set
> >
> > #
> > # Parallel port support
> > #
> > # CONFIG_PARPORT is not set
> >
> > #
> > # Plug and Play support
> > #
> >
> > #
> > # Block devices
> > #
> > # CONFIG_BLK_DEV_FD is not set
> > # CONFIG_BLK_DEV_COW_COMMON is not set
> > CONFIG_BLK_DEV_LOOP=y
> > # CONFIG_BLK_DEV_CRYPTOLOOP is not set
> > CONFIG_XILINX_SYSACE=y
> > # CONFIG_BLK_DEV_NBD is not set
> > # CONFIG_BLK_DEV_RAM is not set
> > # CONFIG_BLK_DEV_INITRD is not set
> > # CONFIG_CDROM_PKTCDVD is not set
> > # CONFIG_ATA_OVER_ETH is not set
> >
> > #
> > # ATA/ATAPI/MFM/RLL support
> > #
> > # CONFIG_IDE is not set
> >
> > #
> > # SCSI device support
> > #
> > # CONFIG_RAID_ATTRS is not set
> > # CONFIG_SCSI is not set
> >
> > #
> > # Multi-device support (RAID and LVM)
> > #
> > # CONFIG_MD is not set
> >
> > #
> > # Fusion MPT device support
> > #
> > # CONFIG_FUSION is not set
> >
> > #
> > # IEEE 1394 (FireWire) support
> > #
> >
> > #
> > # I2O device support
> > #
> >
> > #
> > # Macintosh device drivers
> > #
> > # CONFIG_WINDFARM is not set
> >
> > #
> > # Network device support
> > #
> > CONFIG_NETDEVICES=y
> > # CONFIG_DUMMY is not set
> > # CONFIG_BONDING is not set
> > # CONFIG_EQUALIZER is not set
> > # CONFIG_TUN is not set
> >
> > #
> > # PHY device support
> > #
> >
> > #
> > # Ethernet (10 or 100Mbit)
> > #
> > # CONFIG_NET_ETHERNET is not set
> > # CONFIG_IBM_EMAC is not set
> >
> > #
> > # Ethernet (1000 Mbit)
> > #
> > CONFIG_XILINX_TEMAC=y
> >
> > #
> > # Ethernet (10000 Mbit)
> > #
> >
> > #
> > # Token Ring devices
> > #
> >
> > #
> > # Wireless LAN (non-hamradio)
> > #
> > # CONFIG_NET_RADIO is not set
> >
> > #
> > # Wan interfaces
> > #
> > # CONFIG_WAN is not set
> > # CONFIG_PPP is not set
> > # CONFIG_SLIP is not set
> > # CONFIG_SHAPER is not set
> > # CONFIG_NETCONSOLE is not set
> > # CONFIG_NETPOLL is not set
> > # CONFIG_NET_POLL_CONTROLLER is not set
> >
> > #
> > # ISDN subsystem
> > #
> > # CONFIG_ISDN is not set
> >
> > #
> > # Telephony Support
> > #
> > # CONFIG_PHONE is not set
> >
> > #
> > # Input device support
> > #
> > CONFIG_INPUT=y
> >
> > #
> > # Userland interfaces
> > #
> > CONFIG_INPUT_MOUSEDEV=y
> > CONFIG_INPUT_MOUSEDEV_PSAUX=y
> > CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
> > CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
> > # CONFIG_INPUT_JOYDEV is not set
> > # CONFIG_INPUT_TSDEV is not set
> > # CONFIG_INPUT_EVDEV is not set
> > # CONFIG_INPUT_EVBUG is not set
> >
> > #
> > # Input Device Drivers
> > #
> > # CONFIG_INPUT_KEYBOARD is not set
> > # CONFIG_INPUT_MOUSE is not set
> > # CONFIG_INPUT_JOYSTICK is not set
> > # CONFIG_INPUT_TOUCHSCREEN is not set
> > # CONFIG_INPUT_MISC is not set
> >
> > #
> > # Hardware I/O ports
> > #
> > CONFIG_SERIO=y
> > CONFIG_SERIO_I8042=y
> > CONFIG_SERIO_SERPORT=y
> > # CONFIG_SERIO_RAW is not set
> > # CONFIG_GAMEPORT is not set
> >
> > #
> > # Character devices
> > #
> > CONFIG_VT=y
> > CONFIG_VT_CONSOLE=y
> > CONFIG_HW_CONSOLE=y
> > # CONFIG_SERIAL_NONSTANDARD is not set
> >
> > #
> > # Serial drivers
> > #
> > CONFIG_SERIAL_8250=y
> > CONFIG_SERIAL_8250_CONSOLE=y
> > CONFIG_SERIAL_8250_NR_UARTS=4
> > CONFIG_SERIAL_8250_RUNTIME_UARTS=4
> > # CONFIG_SERIAL_8250_EXTENDED is not set
> >
> > #
> > # Non-8250 serial port support
> > #
> > CONFIG_SERIAL_CORE=y
> > CONFIG_SERIAL_CORE_CONSOLE=y
> > CONFIG_UNIX98_PTYS=y
> > CONFIG_LEGACY_PTYS=y
> > CONFIG_LEGACY_PTY_COUNT=256
> >
> > #
> > # IPMI
> > #
> > # CONFIG_IPMI_HANDLER is not set
> >
> > #
> > # Watchdog Cards
> > #
> > # CONFIG_WATCHDOG is not set
> > # CONFIG_NVRAM is not set
> > # CONFIG_GEN_RTC is not set
> > # CONFIG_DTLK is not set
> > # CONFIG_R3964 is not set
> >
> > #
> > # Ftape, the floppy tape device driver
> > #
> > # CONFIG_AGP is not set
> > # CONFIG_RAW_DRIVER is not set
> >
> > #
> > # TPM devices
> > #
> > # CONFIG_TCG_TPM is not set
> > # CONFIG_TELCLOCK is not set
> >
> > #
> > # I2C support
> > #
> > # CONFIG_I2C is not set
> >
> > #
> > # SPI support
> > #
> > # CONFIG_SPI is not set
> > # CONFIG_SPI_MASTER is not set
> >
> > #
> > # Dallas's 1-wire bus
> > #
> > # CONFIG_W1 is not set
> >
> > #
> > # Hardware Monitoring support
> > #
> > CONFIG_HWMON=y
> > # CONFIG_HWMON_VID is not set
> > # CONFIG_SENSORS_F71805F is not set
> > # CONFIG_HWMON_DEBUG_CHIP is not set
> >
> > #
> > # Misc devices
> > #
> >
> > #
> > # Multimedia devices
> > #
> > # CONFIG_VIDEO_DEV is not set
> > CONFIG_VIDEO_V4L2=y
> >
> > #
> > # Digital Video Broadcasting Devices
> > #
> > # CONFIG_DVB is not set
> >
> > #
> > # Graphics support
> > #
> > # CONFIG_FB is not set
> >
> > #
> > # Console display driver support
> > #
> > CONFIG_DUMMY_CONSOLE=y
> >
> > #
> > # Sound
> > #
> > # CONFIG_SOUND is not set
> >
> > #
> > # USB support
> > #
> > # CONFIG_USB_ARCH_HAS_HCD is not set
> > # CONFIG_USB_ARCH_HAS_OHCI is not set
> > # CONFIG_USB_ARCH_HAS_EHCI is not set
> >
> > #
> > # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
> > #
> >
> > #
> > # USB Gadget Support
> > #
> > # CONFIG_USB_GADGET is not set
> >
> > #
> > # MMC/SD Card support
> > #
> > # CONFIG_MMC is not set
> >
> > #
> > # LED devices
> > #
> > # CONFIG_NEW_LEDS is not set
> >
> > #
> > # LED drivers
> > #
> >
> > #
> > # LED Triggers
> > #
> >
> > #
> > # InfiniBand support
> > #
> >
> > #
> > # EDAC - error detection and reporting (RAS) (EXPERIMENTAL)
> > #
> >
> > #
> > # Real Time Clock
> > #
> > # CONFIG_RTC_CLASS is not set
> > CONFIG_XILINX_EDK=y
> >
> > #
> > # File systems
> > #
> > CONFIG_EXT2_FS=y
> > CONFIG_EXT2_FS_XATTR=y
> > CONFIG_EXT2_FS_POSIX_ACL=y
> > CONFIG_EXT2_FS_SECURITY=y
> > CONFIG_EXT2_FS_XIP=y
> > CONFIG_FS_XIP=y
> > # CONFIG_EXT3_FS is not set
> > CONFIG_FS_MBCACHE=y
> > # CONFIG_REISERFS_FS is not set
> > # CONFIG_JFS_FS is not set
> > CONFIG_FS_POSIX_ACL=y
> > # CONFIG_XFS_FS is not set
> > # CONFIG_OCFS2_FS is not set
> > # CONFIG_MINIX_FS is not set
> > # CONFIG_ROMFS_FS is not set
> > CONFIG_INOTIFY=y
> > # CONFIG_QUOTA is not set
> > CONFIG_DNOTIFY=y
> > CONFIG_AUTOFS_FS=y
> > CONFIG_AUTOFS4_FS=y
> > # CONFIG_FUSE_FS is not set
> >
> > #
> > # CD-ROM/DVD Filesystems
> > #
> > # CONFIG_ISO9660_FS is not set
> > # CONFIG_UDF_FS is not set
> >
> > #
> > # DOS/FAT/NT Filesystems
> > #
> > # CONFIG_MSDOS_FS is not set
> > # CONFIG_VFAT_FS is not set
> > # CONFIG_NTFS_FS is not set
> >
> > #
> > # Pseudo filesystems
> > #
> > CONFIG_PROC_FS=y
> > CONFIG_PROC_KCORE=y
> > CONFIG_SYSFS=y
> > CONFIG_TMPFS=y
> > # CONFIG_HUGETLB_PAGE is not set
> > CONFIG_RAMFS=y
> > # CONFIG_CONFIGFS_FS is not set
> >
> > #
> > # Miscellaneous filesystems
> > #
> > # CONFIG_ADFS_FS is not set
> > # CONFIG_AFFS_FS is not set
> > # CONFIG_HFS_FS is not set
> > # CONFIG_HFSPLUS_FS is not set
> > # CONFIG_BEFS_FS is not set
> > # CONFIG_BFS_FS is not set
> > # CONFIG_EFS_FS is not set
> > # CONFIG_JFFS_FS is not set
> > # CONFIG_JFFS2_FS is not set
> > # CONFIG_CRAMFS is not set
> > # CONFIG_VXFS_FS is not set
> > # CONFIG_HPFS_FS is not set
> > # CONFIG_QNX4FS_FS is not set
> > # CONFIG_SYSV_FS is not set
> > # CONFIG_UFS_FS is not set
> >
> > #
> > # Network File Systems
> > #
> > # CONFIG_NFS_FS is not set
> > # CONFIG_NFSD is not set
> > # CONFIG_SMB_FS is not set
> > # CONFIG_CIFS is not set
> > # CONFIG_NCP_FS is not set
> > # CONFIG_CODA_FS is not set
> > # CONFIG_AFS_FS is not set
> > # CONFIG_9P_FS is not set
> >
> > #
> > # Partition Types
> > #
> > # CONFIG_PARTITION_ADVANCED is not set
> > CONFIG_MSDOS_PARTITION=y
> >
> > #
> > # Native Language Support
> > #
> > CONFIG_NLS=y
> > CONFIG_NLS_DEFAULT="iso8859-1"
> > # CONFIG_NLS_CODEPAGE_437 is not set
> > # CONFIG_NLS_CODEPAGE_737 is not set
> > # CONFIG_NLS_CODEPAGE_775 is not set
> > # CONFIG_NLS_CODEPAGE_850 is not set
> > # CONFIG_NLS_CODEPAGE_852 is not set
> > # CONFIG_NLS_CODEPAGE_855 is not set
> > # CONFIG_NLS_CODEPAGE_857 is not set
> > # CONFIG_NLS_CODEPAGE_860 is not set
> > # CONFIG_NLS_CODEPAGE_861 is not set
> > # CONFIG_NLS_CODEPAGE_862 is not set
> > # CONFIG_NLS_CODEPAGE_863 is not set
> > # CONFIG_NLS_CODEPAGE_864 is not set
> > # CONFIG_NLS_CODEPAGE_865 is not set
> > # CONFIG_NLS_CODEPAGE_866 is not set
> > # CONFIG_NLS_CODEPAGE_869 is not set
> > # CONFIG_NLS_CODEPAGE_936 is not set
> > # CONFIG_NLS_CODEPAGE_950 is not set
> > # CONFIG_NLS_CODEPAGE_932 is not set
> > # CONFIG_NLS_CODEPAGE_949 is not set
> > # CONFIG_NLS_CODEPAGE_874 is not set
> > # CONFIG_NLS_ISO8859_8 is not set
> > # CONFIG_NLS_CODEPAGE_1250 is not set
> > # CONFIG_NLS_CODEPAGE_1251 is not set
> > # CONFIG_NLS_ASCII is not set
> > # CONFIG_NLS_ISO8859_1 is not set
> > # CONFIG_NLS_ISO8859_2 is not set
> > # CONFIG_NLS_ISO8859_3 is not set
> > # CONFIG_NLS_ISO8859_4 is not set
> > # CONFIG_NLS_ISO8859_5 is not set
> > # CONFIG_NLS_ISO8859_6 is not set
> > # CONFIG_NLS_ISO8859_7 is not set
> > # CONFIG_NLS_ISO8859_9 is not set
> > # CONFIG_NLS_ISO8859_13 is not set
> > # CONFIG_NLS_ISO8859_14 is not set
> > # CONFIG_NLS_ISO8859_15 is not set
> > # CONFIG_NLS_KOI8_R is not set
> > # CONFIG_NLS_KOI8_U is not set
> > # CONFIG_NLS_UTF8 is not set
> >
> > #
> > # IBM 40x options
> > #
> >
> > #
> > # Library routines
> > #
> > # CONFIG_CRC_CCITT is not set
> > # CONFIG_CRC16 is not set
> > CONFIG_CRC32=y
> > # CONFIG_LIBCRC32C is not set
> > # CONFIG_PROFILING is not set
> >
> > #
> > # Kernel hacking
> > #
> > # CONFIG_PRINTK_TIME is not set
> > # CONFIG_MAGIC_SYSRQ is not set
> > CONFIG_DEBUG_KERNEL=y
> > CONFIG_LOG_BUF_SHIFT=14
> > CONFIG_DETECT_SOFTLOCKUP=y
> > # CONFIG_SCHEDSTATS is not set
> > # CONFIG_DEBUG_SLAB is not set
> > # CONFIG_DEBUG_MUTEXES is not set
> > # CONFIG_DEBUG_SPINLOCK is not set
> > # CONFIG_DEBUG_SPINLOCK_SLEEP is not set
> > # CONFIG_DEBUG_KOBJECT is not set
> > CONFIG_DEBUG_INFO=y
> > # CONFIG_DEBUG_FS is not set
> > # CONFIG_DEBUG_VM is not set
> > # CONFIG_UNWIND_INFO is not set
> > CONFIG_FORCED_INLINING=y
> > # CONFIG_RCU_TORTURE_TEST is not set
> > # CONFIG_KGDB is not set
> > # CONFIG_XMON is not set
> > CONFIG_BDI_SWITCH=y
> > # CONFIG_SERIAL_TEXT_DEBUG is not set
> >
> > #
> > # Security options
> > #
> > # CONFIG_KEYS is not set
> > # CONFIG_SECURITY is not set
> >
> > #
> > # Cryptographic options
> > #
> > # CONFIG_CRYPTO is not set
> >
> > #
> > # Hardware crypto devices
> > #
> >

_________________________________________________________________
享用世界上最大的电子邮件系统― MSN Hotmail。  http://www.hotmail.com  

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

* Re: some problems on the SystemACE driver.
  2006-07-14 16:38   ` Ming Liu
@ 2006-07-14 16:57     ` Ameet Patil
  0 siblings, 0 replies; 15+ messages in thread
From: Ameet Patil @ 2006-07-14 16:57 UTC (permalink / raw)
  To: Ming Liu; +Cc: linuxppc-embedded

Hi Ming,

> I tried the new patches in such a procedure: download the kernel, apply 
> the five Temac patches, apply the patch 
> linuxppc-2.6.17.1-sysace-1.2-after-TEMAC.patch, copy and replace 
> xparameters_ml403.h and use the one generated by EDK (I don't know if 
> this is right. But there is really no modification in your patch for the 
> ml403 xparameters file.). Then make menuconfig, make dep and make 
> zImage. Still the same problem as former.
Yes! This procedure is correct. But you still get errors? hmmm... The
log file you sent is too long with mostly unnecessary stuffs. A normal
log "make zImage" without verbose output will suffice. Please can you
send me the new log?

> Is there any problem in the sequence according to which I applied the 
> patches? Or other problems? But why the problem still happened? If I 
> made a wrong operation, please forgive me because I am a novice. That's 
> why I would like to describe the procedure as detailed as possible. 

I appreciate you testing the patch. Don't worry... we will solve it. And
I am not an expert either... you probably know more than me!

-Ameet

>  
> 
> 
>> From: Ameet Patil <ammubhai@gmail.com>
>> To: Ming Liu <eemingliu@hotmail.com>
>> CC: linuxppc-embedded@ozlabs.org
>> Subject: Re: some problems on the SystemACE driver.
>> Date: Fri, 14 Jul 2006 16:10:54 +0100
>>
>> Ming,
>>   Had a look, both patches define the XILINX_OCP functions which is
>> unavoidable really. I have made some changes only so that it works in
>> your scenario. First apply the TEMAC patch and then this one:
>> https://www.cs.york.ac.uk/rtslab/demos/amos/xupv2pro/patches/linuxppc-2.6.17.1-sysace-1.2-after-TEMAC.patch 
>>
> 
>>
>> Also, I have also made some new changes to the SysAce driver patch. New
>> version is here:
>> https://www.cs.york.ac.uk/rtslab/demos/amos/xupv2pro/patches/linuxppc-2.6.17.1-sysace-1.2.patch 
>>
> 
>>
>> No, you donot need to apply all the patches found in my patches folder.
>>
>> Let me know what happens? I think it should work....
>>
>> -Ameet
>>
>> Ming Liu wrote:
>> > Dear Ameet,
>> > The attached is the log file to record the error. Please unzip and
>> > search for "XAssert" to go to the end to see the problem. Also, the
>> > .config file is attached. Please rename the file from config into
>> > .config. The linux version is 2.6.17.1. When you compile the kernel,
>> > please remember to export C_INCLUDE_PATH=....../driver/xilinx_edk.
>> > Thanks for your work.
>> >
>> > Regards
>> > Ming
>> >
>> >
>> >> From: Ameet Patil <ammubhai@gmail.com>
>> >> To: Ming Liu <eemingliu@hotmail.com>
>> >> CC: linuxppc-embedded@ozlabs.org
>> >> Subject: Re: some problems on the SystemACE driver.
>> >> Date: Fri, 14 Jul 2006 12:12:36 +0100
>> >>
>> >> Hi Ming,
>> >>    Can you send me the entire text output (in a file) of the 
> compilation
>> >> process with errors?
>> >>
>> >> -Ameet
>> >>
>> >> Ming Liu wrote:
>> >> > Dear Ameet,
>> >> >
>> >> >> 1. Which TEMAC patch are you using?
>> >> >>
>> > 
> (http://source.mvista.com/~ank/paulus-powerpc/20060309/ppc32_xilinx_edk_temac.patch) 
> 
> 
>> >
>> >
>> >> >>
>> >> >
>> >> > There are five patches in the directory 20060309 whose address is
>> > listed
>> >> > above by you. I applied all of them in my system, because without 
> any
>> >> > there will be problems.
>> >> >> 2. After applying the patch, is the driver getting compiled 
> directly
>> >> >> without having to select it via "make menuconfig"?
>> >> > No. there is an option named "xilinx 10/100/1000 Mbit TEMAC support" 
> in
>> >> > the menuconfig. I must select it and then compile the kernel.
>> >> >> 3. I don't see a Makefile in the drivers/net/xilinx_temac/ folder?
>> >> > I have checked. In my kernel, there is the Makefile. I don't know 
> why
>> >> > this happened to you.
>> >> >
>> >> > Let me describe the detailed process I did. First, download the 
> kernel
>> >> > 2.6.17.1 (or 2.6.16-rc5). Then apply the five patches for Temac.(If 
> I
>> >> > use 2.6.17.1, I need to upgrade some files manually. For 2.6.16, 
> there
>> >> > is no problem.) And then apply the patch for SystemACE. Also copy 
> and
>> >> > replace the xparameters_ml403.h by my own file generated by EDK. 
> Then
>> >> > make menuconfig, selecting both Temac and SystemACE and other basic
>> >> > options. Then make dep and make zImage. During this process, I need 
> to
>> >> > modify some little problems which are about the inclusion of some
>> > header
>> >> > files, or specify some lib inclusion directories instead. Then that
>> >> > problem appears. There are some main points: 1. configured for ml403
>> >> > board. 2.both Temac and SystemACE are selected. 3. 5 patches for 
> Temac
>> >> > and 1 patch for SystemACE. 4. linux version is 2.6.17 or 2.6.16. I
>> >> > really have no idea why this still happens after your modification. 
> So
>> > I
>> >> > have to ask you again.
>> >> >> Ofcourse, I can work my way to compile the driver. But is there any
>> > doc.
>> >> >> present explaining this?
>> >> > Sorry that there is no doc to explain this. I just did following the
>> >> > procedure described above. I am totally lost. The strange thing is,
>> > when
>> >> > I select only one of these two drivers, no problem, but if both,
>> > problem.
>> >> > By the way, I noticed that in the address where I get your patch, 
> there
>> >> > is also a patch called linuxppc-2.6.17.1-sysace-1.0.patch which is 
> much
>> >> > larger than the 1.1 one. I needn't apply the 1.0 one, right?
>> >> > Thanks for your hard work. Hopefully we can solve the problem.
>> >> > Regards
>> >> > Ming
>> >> >
>> >> > _________________________________________________________________
>> >> > 免费下载 MSN Explorer:   http://explorer.msn.com/lccn
>> >> >
>> >
>> > _________________________________________________________________
>> > 免费下载 MSN Explorer:   http://explorer.msn.com/lccn  #
>> > # Automatically generated make config: don't edit
>> > # Linux kernel version: 2.6.17.1
>> > # Fri Jul 14 15:00:57 2006
>> > #
>> > CONFIG_MMU=y
>> > CONFIG_GENERIC_HARDIRQS=y
>> > CONFIG_RWSEM_XCHGADD_ALGORITHM=y
>> > CONFIG_GENERIC_HWEIGHT=y
>> > CONFIG_GENERIC_CALIBRATE_DELAY=y
>> > CONFIG_PPC=y
>> > CONFIG_PPC32=y
>> > CONFIG_GENERIC_NVRAM=y
>> > CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
>> > CONFIG_ARCH_MAY_HAVE_PC_FDC=y
>> >
>> > #
>> > # Code maturity level options
>> > #
>> > CONFIG_EXPERIMENTAL=y
>> > CONFIG_BROKEN_ON_SMP=y
>> > CONFIG_INIT_ENV_ARG_LIMIT=32
>> >
>> > #
>> > # General setup
>> > #
>> > CONFIG_LOCALVERSION=""
>> > CONFIG_LOCALVERSION_AUTO=y
>> > CONFIG_SWAP=y
>> > CONFIG_SYSVIPC=y
>> > # CONFIG_POSIX_MQUEUE is not set
>> > # CONFIG_BSD_PROCESS_ACCT is not set
>> > CONFIG_SYSCTL=y
>> > # CONFIG_AUDIT is not set
>> > # CONFIG_IKCONFIG is not set
>> > # CONFIG_RELAY is not set
>> > CONFIG_INITRAMFS_SOURCE=""
>> > CONFIG_CC_OPTIMIZE_FOR_SIZE=y
>> > # CONFIG_EMBEDDED is not set
>> > CONFIG_KALLSYMS=y
>> > # CONFIG_KALLSYMS_ALL is not set
>> > # CONFIG_KALLSYMS_EXTRA_PASS is not set
>> > CONFIG_HOTPLUG=y
>> > CONFIG_PRINTK=y
>> > CONFIG_BUG=y
>> > CONFIG_ELF_CORE=y
>> > CONFIG_BASE_FULL=y
>> > CONFIG_FUTEX=y
>> > CONFIG_EPOLL=y
>> > CONFIG_SHMEM=y
>> > CONFIG_SLAB=y
>> > # CONFIG_TINY_SHMEM is not set
>> > CONFIG_BASE_SMALL=0
>> > # CONFIG_SLOB is not set
>> > CONFIG_OBSOLETE_INTERMODULE=y
>> >
>> > #
>> > # Loadable module support
>> > #
>> > # CONFIG_MODULES is not set
>> >
>> > #
>> > # Block layer
>> > #
>> > # CONFIG_LBD is not set
>> > # CONFIG_BLK_DEV_IO_TRACE is not set
>> > # CONFIG_LSF is not set
>> >
>> > #
>> > # IO Schedulers
>> > #
>> > CONFIG_IOSCHED_NOOP=y
>> > CONFIG_IOSCHED_AS=y
>> > CONFIG_IOSCHED_DEADLINE=y
>> > CONFIG_IOSCHED_CFQ=y
>> > CONFIG_DEFAULT_AS=y
>> > # CONFIG_DEFAULT_DEADLINE is not set
>> > # CONFIG_DEFAULT_CFQ is not set
>> > # CONFIG_DEFAULT_NOOP is not set
>> > CONFIG_DEFAULT_IOSCHED="anticipatory"
>> >
>> > #
>> > # Processor
>> > #
>> > # CONFIG_6xx is not set
>> > CONFIG_40x=y
>> > # CONFIG_44x is not set
>> > # CONFIG_8xx is not set
>> > # CONFIG_E200 is not set
>> > # CONFIG_E500 is not set
>> > CONFIG_MATH_EMULATION=y
>> > # CONFIG_KEXEC is not set
>> > # CONFIG_CPU_FREQ is not set
>> > CONFIG_4xx=y
>> > # CONFIG_WANT_EARLY_SERIAL is not set
>> >
>> > #
>> > # IBM 4xx options
>> > #
>> > # CONFIG_BUBINGA is not set
>> > # CONFIG_CPCI405 is not set
>> > # CONFIG_EP405 is not set
>> > # CONFIG_REDWOOD_5 is not set
>> > # CONFIG_REDWOOD_6 is not set
>> > # CONFIG_SYCAMORE is not set
>> > # CONFIG_WALNUT is not set
>> > # CONFIG_XILINX_ML300 is not set
>> > CONFIG_XILINX_ML403=y
>> > CONFIG_IBM405_ERR77=y
>> > CONFIG_IBM405_ERR51=y
>> > CONFIG_XILINX_VIRTEX_4_FX=y
>> > CONFIG_XILINX_VIRTEX=y
>> > CONFIG_EMBEDDEDBOOT=y
>> > # CONFIG_PPC4xx_DMA is not set
>> > CONFIG_PPC_GEN550=y
>> > CONFIG_UART0_TTYS0=y
>> > # CONFIG_UART0_TTYS1 is not set
>> > CONFIG_NOT_COHERENT_CACHE=y
>> >
>> > #
>> > # Platform options
>> > #
>> > # CONFIG_PC_KEYBOARD is not set
>> > # CONFIG_HIGHMEM is not set
>> > # CONFIG_HZ_100 is not set
>> > CONFIG_HZ_250=y
>> > # CONFIG_HZ_1000 is not set
>> > CONFIG_HZ=250
>> > CONFIG_PREEMPT_NONE=y
>> > # CONFIG_PREEMPT_VOLUNTARY is not set
>> > # CONFIG_PREEMPT is not set
>> > CONFIG_SELECT_MEMORY_MODEL=y
>> > CONFIG_FLATMEM_MANUAL=y
>> > # CONFIG_DISCONTIGMEM_MANUAL is not set
>> > # CONFIG_SPARSEMEM_MANUAL is not set
>> > CONFIG_FLATMEM=y
>> > CONFIG_FLAT_NODE_MEM_MAP=y
>> > # CONFIG_SPARSEMEM_STATIC is not set
>> > CONFIG_SPLIT_PTLOCK_CPUS=4
>> > CONFIG_BINFMT_ELF=y
>> > # CONFIG_BINFMT_MISC is not set
>> > CONFIG_CMDLINE_BOOL=y
>> > CONFIG_CMDLINE="console=ttyS0,9600 root=/dev/xsa3 rw"
>> > # CONFIG_PM is not set
>> > # CONFIG_SOFTWARE_SUSPEND is not set
>> > CONFIG_SECCOMP=y
>> > CONFIG_ISA_DMA_API=y
>> >
>> > #
>> > # Bus options
>> > #
>> > # CONFIG_PPC_I8259 is not set
>> > # CONFIG_PCI is not set
>> > # CONFIG_PCI_DOMAINS is not set
>> >
>> > #
>> > # PCCARD (PCMCIA/CardBus) support
>> > #
>> > # CONFIG_PCCARD is not set
>> >
>> > #
>> > # Advanced setup
>> > #
>> > # CONFIG_ADVANCED_OPTIONS is not set
>> >
>> > #
>> > # Default settings for advanced configuration options are used
>> > #
>> > CONFIG_HIGHMEM_START=0xfe000000
>> > CONFIG_LOWMEM_SIZE=0x30000000
>> > CONFIG_KERNEL_START=0xc0000000
>> > CONFIG_TASK_SIZE=0x80000000
>> > CONFIG_CONSISTENT_START=0xff100000
>> > CONFIG_CONSISTENT_SIZE=0x00200000
>> > CONFIG_BOOT_LOAD=0x00400000
>> >
>> > #
>> > # Networking
>> > #
>> > CONFIG_NET=y
>> >
>> > #
>> > # Networking options
>> > #
>> > # CONFIG_NETDEBUG is not set
>> > # CONFIG_PACKET is not set
>> > CONFIG_UNIX=y
>> > # CONFIG_NET_KEY is not set
>> > CONFIG_INET=y
>> > CONFIG_IP_MULTICAST=y
>> > # CONFIG_IP_ADVANCED_ROUTER is not set
>> > CONFIG_IP_FIB_HASH=y
>> > CONFIG_IP_PNP=y
>> > CONFIG_IP_PNP_DHCP=y
>> > # CONFIG_IP_PNP_BOOTP is not set
>> > # CONFIG_IP_PNP_RARP is not set
>> > # CONFIG_NET_IPIP is not set
>> > # CONFIG_NET_IPGRE is not set
>> > # CONFIG_IP_MROUTE is not set
>> > # CONFIG_ARPD is not set
>> > CONFIG_SYN_COOKIES=y
>> > # CONFIG_INET_AH is not set
>> > # CONFIG_INET_ESP is not set
>> > # CONFIG_INET_IPCOMP is not set
>> > # CONFIG_INET_XFRM_TUNNEL is not set
>> > # CONFIG_INET_TUNNEL is not set
>> > # CONFIG_INET_DIAG is not set
>> > # CONFIG_TCP_CONG_ADVANCED is not set
>> > CONFIG_TCP_CONG_BIC=y
>> > # CONFIG_IPV6 is not set
>> > # CONFIG_INET6_XFRM_TUNNEL is not set
>> > # CONFIG_INET6_TUNNEL is not set
>> > # CONFIG_NETFILTER is not set
>> >
>> > #
>> > # DCCP Configuration (EXPERIMENTAL)
>> > #
>> > # CONFIG_IP_DCCP is not set
>> >
>> > #
>> > # SCTP Configuration (EXPERIMENTAL)
>> > #
>> > # CONFIG_IP_SCTP is not set
>> >
>> > #
>> > # TIPC Configuration (EXPERIMENTAL)
>> > #
>> > # CONFIG_TIPC is not set
>> > # CONFIG_ATM is not set
>> > # CONFIG_BRIDGE is not set
>> > # CONFIG_VLAN_8021Q is not set
>> > # CONFIG_DECNET is not set
>> > # CONFIG_LLC2 is not set
>> > # CONFIG_IPX is not set
>> > # CONFIG_ATALK is not set
>> > # CONFIG_X25 is not set
>> > # CONFIG_LAPB is not set
>> > # CONFIG_NET_DIVERT is not set
>> > # CONFIG_ECONET is not set
>> > # CONFIG_WAN_ROUTER is not set
>> >
>> > #
>> > # QoS and/or fair queueing
>> > #
>> > # CONFIG_NET_SCHED is not set
>> >
>> > #
>> > # Network testing
>> > #
>> > # CONFIG_NET_PKTGEN is not set
>> > # CONFIG_HAMRADIO is not set
>> > # CONFIG_IRDA is not set
>> > # CONFIG_BT is not set
>> > # CONFIG_IEEE80211 is not set
>> >
>> > #
>> > # Device Drivers
>> > #
>> >
>> > #
>> > # Generic Driver Options
>> > #
>> > CONFIG_STANDALONE=y
>> > CONFIG_PREVENT_FIRMWARE_BUILD=y
>> > # CONFIG_FW_LOADER is not set
>> > # CONFIG_DEBUG_DRIVER is not set
>> >
>> > #
>> > # Connector - unified userspace <-> kernelspace linker
>> > #
>> > # CONFIG_CONNECTOR is not set
>> >
>> > #
>> > # Memory Technology Devices (MTD)
>> > #
>> > CONFIG_MTD=y
>> > # CONFIG_MTD_DEBUG is not set
>> > # CONFIG_MTD_CONCAT is not set
>> > CONFIG_MTD_PARTITIONS=y
>> > CONFIG_MTD_REDBOOT_PARTS=y
>> > CONFIG_MTD_REDBOOT_DIRECTORY_BLOCK=-1
>> > # CONFIG_MTD_REDBOOT_PARTS_UNALLOCATED is not set
>> > # CONFIG_MTD_REDBOOT_PARTS_READONLY is not set
>> > # CONFIG_MTD_CMDLINE_PARTS is not set
>> >
>> > #
>> > # User Modules And Translation Layers
>> > #
>> > CONFIG_MTD_CHAR=y
>> > CONFIG_MTD_BLOCK=y
>> > # CONFIG_FTL is not set
>> > # CONFIG_NFTL is not set
>> > # CONFIG_INFTL is not set
>> > # CONFIG_RFD_FTL is not set
>> >
>> > #
>> > # RAM/ROM/Flash chip drivers
>> > #
>> > CONFIG_MTD_CFI=y
>> > # CONFIG_MTD_JEDECPROBE is not set
>> > CONFIG_MTD_GEN_PROBE=y
>> > # CONFIG_MTD_CFI_ADV_OPTIONS is not set
>> > CONFIG_MTD_MAP_BANK_WIDTH_1=y
>> > CONFIG_MTD_MAP_BANK_WIDTH_2=y
>> > CONFIG_MTD_MAP_BANK_WIDTH_4=y
>> > # CONFIG_MTD_MAP_BANK_WIDTH_8 is not set
>> > # CONFIG_MTD_MAP_BANK_WIDTH_16 is not set
>> > # CONFIG_MTD_MAP_BANK_WIDTH_32 is not set
>> > CONFIG_MTD_CFI_I1=y
>> > CONFIG_MTD_CFI_I2=y
>> > # CONFIG_MTD_CFI_I4 is not set
>> > # CONFIG_MTD_CFI_I8 is not set
>> > # CONFIG_MTD_CFI_INTELEXT is not set
>> > CONFIG_MTD_CFI_AMDSTD=y
>> > # CONFIG_MTD_CFI_STAA is not set
>> > CONFIG_MTD_CFI_UTIL=y
>> > # CONFIG_MTD_RAM is not set
>> > # CONFIG_MTD_ROM is not set
>> > # CONFIG_MTD_ABSENT is not set
>> > # CONFIG_MTD_OBSOLETE_CHIPS is not set
>> >
>> > #
>> > # Mapping drivers for chip access
>> > #
>> > # CONFIG_MTD_COMPLEX_MAPPINGS is not set
>> > # CONFIG_MTD_PHYSMAP is not set
>> > # CONFIG_MTD_PLATRAM is not set
>> >
>> > #
>> > # Self-contained MTD device drivers
>> > #
>> > # CONFIG_MTD_SLRAM is not set
>> > # CONFIG_MTD_PHRAM is not set
>> > # CONFIG_MTD_MTDRAM is not set
>> > # CONFIG_MTD_BLOCK2MTD is not set
>> >
>> > #
>> > # Disk-On-Chip Device Drivers
>> > #
>> > # CONFIG_MTD_DOC2000 is not set
>> > # CONFIG_MTD_DOC2001 is not set
>> > # CONFIG_MTD_DOC2001PLUS is not set
>> >
>> > #
>> > # NAND Flash Device Drivers
>> > #
>> > # CONFIG_MTD_NAND is not set
>> >
>> > #
>> > # OneNAND Flash Device Drivers
>> > #
>> > # CONFIG_MTD_ONENAND is not set
>> >
>> > #
>> > # Parallel port support
>> > #
>> > # CONFIG_PARPORT is not set
>> >
>> > #
>> > # Plug and Play support
>> > #
>> >
>> > #
>> > # Block devices
>> > #
>> > # CONFIG_BLK_DEV_FD is not set
>> > # CONFIG_BLK_DEV_COW_COMMON is not set
>> > CONFIG_BLK_DEV_LOOP=y
>> > # CONFIG_BLK_DEV_CRYPTOLOOP is not set
>> > CONFIG_XILINX_SYSACE=y
>> > # CONFIG_BLK_DEV_NBD is not set
>> > # CONFIG_BLK_DEV_RAM is not set
>> > # CONFIG_BLK_DEV_INITRD is not set
>> > # CONFIG_CDROM_PKTCDVD is not set
>> > # CONFIG_ATA_OVER_ETH is not set
>> >
>> > #
>> > # ATA/ATAPI/MFM/RLL support
>> > #
>> > # CONFIG_IDE is not set
>> >
>> > #
>> > # SCSI device support
>> > #
>> > # CONFIG_RAID_ATTRS is not set
>> > # CONFIG_SCSI is not set
>> >
>> > #
>> > # Multi-device support (RAID and LVM)
>> > #
>> > # CONFIG_MD is not set
>> >
>> > #
>> > # Fusion MPT device support
>> > #
>> > # CONFIG_FUSION is not set
>> >
>> > #
>> > # IEEE 1394 (FireWire) support
>> > #
>> >
>> > #
>> > # I2O device support
>> > #
>> >
>> > #
>> > # Macintosh device drivers
>> > #
>> > # CONFIG_WINDFARM is not set
>> >
>> > #
>> > # Network device support
>> > #
>> > CONFIG_NETDEVICES=y
>> > # CONFIG_DUMMY is not set
>> > # CONFIG_BONDING is not set
>> > # CONFIG_EQUALIZER is not set
>> > # CONFIG_TUN is not set
>> >
>> > #
>> > # PHY device support
>> > #
>> >
>> > #
>> > # Ethernet (10 or 100Mbit)
>> > #
>> > # CONFIG_NET_ETHERNET is not set
>> > # CONFIG_IBM_EMAC is not set
>> >
>> > #
>> > # Ethernet (1000 Mbit)
>> > #
>> > CONFIG_XILINX_TEMAC=y
>> >
>> > #
>> > # Ethernet (10000 Mbit)
>> > #
>> >
>> > #
>> > # Token Ring devices
>> > #
>> >
>> > #
>> > # Wireless LAN (non-hamradio)
>> > #
>> > # CONFIG_NET_RADIO is not set
>> >
>> > #
>> > # Wan interfaces
>> > #
>> > # CONFIG_WAN is not set
>> > # CONFIG_PPP is not set
>> > # CONFIG_SLIP is not set
>> > # CONFIG_SHAPER is not set
>> > # CONFIG_NETCONSOLE is not set
>> > # CONFIG_NETPOLL is not set
>> > # CONFIG_NET_POLL_CONTROLLER is not set
>> >
>> > #
>> > # ISDN subsystem
>> > #
>> > # CONFIG_ISDN is not set
>> >
>> > #
>> > # Telephony Support
>> > #
>> > # CONFIG_PHONE is not set
>> >
>> > #
>> > # Input device support
>> > #
>> > CONFIG_INPUT=y
>> >
>> > #
>> > # Userland interfaces
>> > #
>> > CONFIG_INPUT_MOUSEDEV=y
>> > CONFIG_INPUT_MOUSEDEV_PSAUX=y
>> > CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
>> > CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
>> > # CONFIG_INPUT_JOYDEV is not set
>> > # CONFIG_INPUT_TSDEV is not set
>> > # CONFIG_INPUT_EVDEV is not set
>> > # CONFIG_INPUT_EVBUG is not set
>> >
>> > #
>> > # Input Device Drivers
>> > #
>> > # CONFIG_INPUT_KEYBOARD is not set
>> > # CONFIG_INPUT_MOUSE is not set
>> > # CONFIG_INPUT_JOYSTICK is not set
>> > # CONFIG_INPUT_TOUCHSCREEN is not set
>> > # CONFIG_INPUT_MISC is not set
>> >
>> > #
>> > # Hardware I/O ports
>> > #
>> > CONFIG_SERIO=y
>> > CONFIG_SERIO_I8042=y
>> > CONFIG_SERIO_SERPORT=y
>> > # CONFIG_SERIO_RAW is not set
>> > # CONFIG_GAMEPORT is not set
>> >
>> > #
>> > # Character devices
>> > #
>> > CONFIG_VT=y
>> > CONFIG_VT_CONSOLE=y
>> > CONFIG_HW_CONSOLE=y
>> > # CONFIG_SERIAL_NONSTANDARD is not set
>> >
>> > #
>> > # Serial drivers
>> > #
>> > CONFIG_SERIAL_8250=y
>> > CONFIG_SERIAL_8250_CONSOLE=y
>> > CONFIG_SERIAL_8250_NR_UARTS=4
>> > CONFIG_SERIAL_8250_RUNTIME_UARTS=4
>> > # CONFIG_SERIAL_8250_EXTENDED is not set
>> >
>> > #
>> > # Non-8250 serial port support
>> > #
>> > CONFIG_SERIAL_CORE=y
>> > CONFIG_SERIAL_CORE_CONSOLE=y
>> > CONFIG_UNIX98_PTYS=y
>> > CONFIG_LEGACY_PTYS=y
>> > CONFIG_LEGACY_PTY_COUNT=256
>> >
>> > #
>> > # IPMI
>> > #
>> > # CONFIG_IPMI_HANDLER is not set
>> >
>> > #
>> > # Watchdog Cards
>> > #
>> > # CONFIG_WATCHDOG is not set
>> > # CONFIG_NVRAM is not set
>> > # CONFIG_GEN_RTC is not set
>> > # CONFIG_DTLK is not set
>> > # CONFIG_R3964 is not set
>> >
>> > #
>> > # Ftape, the floppy tape device driver
>> > #
>> > # CONFIG_AGP is not set
>> > # CONFIG_RAW_DRIVER is not set
>> >
>> > #
>> > # TPM devices
>> > #
>> > # CONFIG_TCG_TPM is not set
>> > # CONFIG_TELCLOCK is not set
>> >
>> > #
>> > # I2C support
>> > #
>> > # CONFIG_I2C is not set
>> >
>> > #
>> > # SPI support
>> > #
>> > # CONFIG_SPI is not set
>> > # CONFIG_SPI_MASTER is not set
>> >
>> > #
>> > # Dallas's 1-wire bus
>> > #
>> > # CONFIG_W1 is not set
>> >
>> > #
>> > # Hardware Monitoring support
>> > #
>> > CONFIG_HWMON=y
>> > # CONFIG_HWMON_VID is not set
>> > # CONFIG_SENSORS_F71805F is not set
>> > # CONFIG_HWMON_DEBUG_CHIP is not set
>> >
>> > #
>> > # Misc devices
>> > #
>> >
>> > #
>> > # Multimedia devices
>> > #
>> > # CONFIG_VIDEO_DEV is not set
>> > CONFIG_VIDEO_V4L2=y
>> >
>> > #
>> > # Digital Video Broadcasting Devices
>> > #
>> > # CONFIG_DVB is not set
>> >
>> > #
>> > # Graphics support
>> > #
>> > # CONFIG_FB is not set
>> >
>> > #
>> > # Console display driver support
>> > #
>> > CONFIG_DUMMY_CONSOLE=y
>> >
>> > #
>> > # Sound
>> > #
>> > # CONFIG_SOUND is not set
>> >
>> > #
>> > # USB support
>> > #
>> > # CONFIG_USB_ARCH_HAS_HCD is not set
>> > # CONFIG_USB_ARCH_HAS_OHCI is not set
>> > # CONFIG_USB_ARCH_HAS_EHCI is not set
>> >
>> > #
>> > # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
>> > #
>> >
>> > #
>> > # USB Gadget Support
>> > #
>> > # CONFIG_USB_GADGET is not set
>> >
>> > #
>> > # MMC/SD Card support
>> > #
>> > # CONFIG_MMC is not set
>> >
>> > #
>> > # LED devices
>> > #
>> > # CONFIG_NEW_LEDS is not set
>> >
>> > #
>> > # LED drivers
>> > #
>> >
>> > #
>> > # LED Triggers
>> > #
>> >
>> > #
>> > # InfiniBand support
>> > #
>> >
>> > #
>> > # EDAC - error detection and reporting (RAS) (EXPERIMENTAL)
>> > #
>> >
>> > #
>> > # Real Time Clock
>> > #
>> > # CONFIG_RTC_CLASS is not set
>> > CONFIG_XILINX_EDK=y
>> >
>> > #
>> > # File systems
>> > #
>> > CONFIG_EXT2_FS=y
>> > CONFIG_EXT2_FS_XATTR=y
>> > CONFIG_EXT2_FS_POSIX_ACL=y
>> > CONFIG_EXT2_FS_SECURITY=y
>> > CONFIG_EXT2_FS_XIP=y
>> > CONFIG_FS_XIP=y
>> > # CONFIG_EXT3_FS is not set
>> > CONFIG_FS_MBCACHE=y
>> > # CONFIG_REISERFS_FS is not set
>> > # CONFIG_JFS_FS is not set
>> > CONFIG_FS_POSIX_ACL=y
>> > # CONFIG_XFS_FS is not set
>> > # CONFIG_OCFS2_FS is not set
>> > # CONFIG_MINIX_FS is not set
>> > # CONFIG_ROMFS_FS is not set
>> > CONFIG_INOTIFY=y
>> > # CONFIG_QUOTA is not set
>> > CONFIG_DNOTIFY=y
>> > CONFIG_AUTOFS_FS=y
>> > CONFIG_AUTOFS4_FS=y
>> > # CONFIG_FUSE_FS is not set
>> >
>> > #
>> > # CD-ROM/DVD Filesystems
>> > #
>> > # CONFIG_ISO9660_FS is not set
>> > # CONFIG_UDF_FS is not set
>> >
>> > #
>> > # DOS/FAT/NT Filesystems
>> > #
>> > # CONFIG_MSDOS_FS is not set
>> > # CONFIG_VFAT_FS is not set
>> > # CONFIG_NTFS_FS is not set
>> >
>> > #
>> > # Pseudo filesystems
>> > #
>> > CONFIG_PROC_FS=y
>> > CONFIG_PROC_KCORE=y
>> > CONFIG_SYSFS=y
>> > CONFIG_TMPFS=y
>> > # CONFIG_HUGETLB_PAGE is not set
>> > CONFIG_RAMFS=y
>> > # CONFIG_CONFIGFS_FS is not set
>> >
>> > #
>> > # Miscellaneous filesystems
>> > #
>> > # CONFIG_ADFS_FS is not set
>> > # CONFIG_AFFS_FS is not set
>> > # CONFIG_HFS_FS is not set
>> > # CONFIG_HFSPLUS_FS is not set
>> > # CONFIG_BEFS_FS is not set
>> > # CONFIG_BFS_FS is not set
>> > # CONFIG_EFS_FS is not set
>> > # CONFIG_JFFS_FS is not set
>> > # CONFIG_JFFS2_FS is not set
>> > # CONFIG_CRAMFS is not set
>> > # CONFIG_VXFS_FS is not set
>> > # CONFIG_HPFS_FS is not set
>> > # CONFIG_QNX4FS_FS is not set
>> > # CONFIG_SYSV_FS is not set
>> > # CONFIG_UFS_FS is not set
>> >
>> > #
>> > # Network File Systems
>> > #
>> > # CONFIG_NFS_FS is not set
>> > # CONFIG_NFSD is not set
>> > # CONFIG_SMB_FS is not set
>> > # CONFIG_CIFS is not set
>> > # CONFIG_NCP_FS is not set
>> > # CONFIG_CODA_FS is not set
>> > # CONFIG_AFS_FS is not set
>> > # CONFIG_9P_FS is not set
>> >
>> > #
>> > # Partition Types
>> > #
>> > # CONFIG_PARTITION_ADVANCED is not set
>> > CONFIG_MSDOS_PARTITION=y
>> >
>> > #
>> > # Native Language Support
>> > #
>> > CONFIG_NLS=y
>> > CONFIG_NLS_DEFAULT="iso8859-1"
>> > # CONFIG_NLS_CODEPAGE_437 is not set
>> > # CONFIG_NLS_CODEPAGE_737 is not set
>> > # CONFIG_NLS_CODEPAGE_775 is not set
>> > # CONFIG_NLS_CODEPAGE_850 is not set
>> > # CONFIG_NLS_CODEPAGE_852 is not set
>> > # CONFIG_NLS_CODEPAGE_855 is not set
>> > # CONFIG_NLS_CODEPAGE_857 is not set
>> > # CONFIG_NLS_CODEPAGE_860 is not set
>> > # CONFIG_NLS_CODEPAGE_861 is not set
>> > # CONFIG_NLS_CODEPAGE_862 is not set
>> > # CONFIG_NLS_CODEPAGE_863 is not set
>> > # CONFIG_NLS_CODEPAGE_864 is not set
>> > # CONFIG_NLS_CODEPAGE_865 is not set
>> > # CONFIG_NLS_CODEPAGE_866 is not set
>> > # CONFIG_NLS_CODEPAGE_869 is not set
>> > # CONFIG_NLS_CODEPAGE_936 is not set
>> > # CONFIG_NLS_CODEPAGE_950 is not set
>> > # CONFIG_NLS_CODEPAGE_932 is not set
>> > # CONFIG_NLS_CODEPAGE_949 is not set
>> > # CONFIG_NLS_CODEPAGE_874 is not set
>> > # CONFIG_NLS_ISO8859_8 is not set
>> > # CONFIG_NLS_CODEPAGE_1250 is not set
>> > # CONFIG_NLS_CODEPAGE_1251 is not set
>> > # CONFIG_NLS_ASCII is not set
>> > # CONFIG_NLS_ISO8859_1 is not set
>> > # CONFIG_NLS_ISO8859_2 is not set
>> > # CONFIG_NLS_ISO8859_3 is not set
>> > # CONFIG_NLS_ISO8859_4 is not set
>> > # CONFIG_NLS_ISO8859_5 is not set
>> > # CONFIG_NLS_ISO8859_6 is not set
>> > # CONFIG_NLS_ISO8859_7 is not set
>> > # CONFIG_NLS_ISO8859_9 is not set
>> > # CONFIG_NLS_ISO8859_13 is not set
>> > # CONFIG_NLS_ISO8859_14 is not set
>> > # CONFIG_NLS_ISO8859_15 is not set
>> > # CONFIG_NLS_KOI8_R is not set
>> > # CONFIG_NLS_KOI8_U is not set
>> > # CONFIG_NLS_UTF8 is not set
>> >
>> > #
>> > # IBM 40x options
>> > #
>> >
>> > #
>> > # Library routines
>> > #
>> > # CONFIG_CRC_CCITT is not set
>> > # CONFIG_CRC16 is not set
>> > CONFIG_CRC32=y
>> > # CONFIG_LIBCRC32C is not set
>> > # CONFIG_PROFILING is not set
>> >
>> > #
>> > # Kernel hacking
>> > #
>> > # CONFIG_PRINTK_TIME is not set
>> > # CONFIG_MAGIC_SYSRQ is not set
>> > CONFIG_DEBUG_KERNEL=y
>> > CONFIG_LOG_BUF_SHIFT=14
>> > CONFIG_DETECT_SOFTLOCKUP=y
>> > # CONFIG_SCHEDSTATS is not set
>> > # CONFIG_DEBUG_SLAB is not set
>> > # CONFIG_DEBUG_MUTEXES is not set
>> > # CONFIG_DEBUG_SPINLOCK is not set
>> > # CONFIG_DEBUG_SPINLOCK_SLEEP is not set
>> > # CONFIG_DEBUG_KOBJECT is not set
>> > CONFIG_DEBUG_INFO=y
>> > # CONFIG_DEBUG_FS is not set
>> > # CONFIG_DEBUG_VM is not set
>> > # CONFIG_UNWIND_INFO is not set
>> > CONFIG_FORCED_INLINING=y
>> > # CONFIG_RCU_TORTURE_TEST is not set
>> > # CONFIG_KGDB is not set
>> > # CONFIG_XMON is not set
>> > CONFIG_BDI_SWITCH=y
>> > # CONFIG_SERIAL_TEXT_DEBUG is not set
>> >
>> > #
>> > # Security options
>> > #
>> > # CONFIG_KEYS is not set
>> > # CONFIG_SECURITY is not set
>> >
>> > #
>> > # Cryptographic options
>> > #
>> > # CONFIG_CRYPTO is not set
>> >
>> > #
>> > # Hardware crypto devices
>> > #
>> >
> 
> _________________________________________________________________
> 享用世界上最大的电子邮件系统― MSN Hotmail。  http://www.hotmail.com 
> 

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

* Re: some problems on the SystemACE driver.
@ 2006-07-14 21:06 Ming Liu
  2006-07-16  9:40 ` Ameet Patil
  0 siblings, 1 reply; 15+ messages in thread
From: Ming Liu @ 2006-07-14 21:06 UTC (permalink / raw)
  To: ammubhai; +Cc: linuxppc-embedded

[-- Attachment #1: Type: text/plain, Size: 524 bytes --]

Dear Ameet,
Here is the normal log without -d when make zImage. Please check it. 
Waiting for your result. Have fun in the weekend. :)

>I appreciate you testing the patch. Don't worry... we will solve it. And
>I am not an expert either... you probably know more than me!

Thanks for your encouraging. Let's do it! Hopefully we can finish it 
a.s.a.p. Good luck for us!  

Regards
Ming

_________________________________________________________________
享用世界上最大的电子邮件系统― MSN Hotmail。  http://www.hotmail.com  

[-- Attachment #2: log --]
[-- Type: text/plain, Size: 30355 bytes --]

  CHK     include/linux/version.h
  HOSTCC  scripts/basic/fixdep
  HOSTCC  scripts/basic/split-include
  HOSTCC  scripts/basic/docproc
  HOSTCC  scripts/kconfig/conf.o
  HOSTCC  scripts/kconfig/kxgettext.o
  HOSTCC  scripts/kconfig/mconf.o
  HOSTCC  scripts/kconfig/zconf.tab.o
  HOSTLD  scripts/kconfig/conf
scripts/kconfig/conf -s arch/ppc/Kconfig
#
# using defaults found in .config
#
  SPLIT   include/linux/autoconf.h -> include/config/*
  CC      arch/ppc/kernel/asm-offsets.s
  GEN     include/asm-ppc/asm-offsets.h
  HOSTCC  scripts/kallsyms
  HOSTCC  scripts/conmakehash
  CC      init/main.o
  CHK     include/linux/compile.h
  UPD     include/linux/compile.h
  CC      init/version.o
  CC      init/do_mounts.o
  LD      init/mounts.o
  CC      init/initramfs.o
  CC      init/calibrate.o
  LD      init/built-in.o
  HOSTCC  usr/gen_init_cpio
  GEN     usr/initramfs_data.cpio.gz
  AS      usr/initramfs_data.o
  LD      usr/built-in.o
  AS      arch/ppc/kernel/entry.o
  CC      arch/ppc/kernel/traps.o
  CC      arch/ppc/kernel/time.o
  AS      arch/ppc/kernel/misc.o
  CC      arch/ppc/kernel/setup.o
  CC      arch/ppc/kernel/ppc_htab.o
  CC      arch/ppc/kernel/dma-mapping.o
  LD      arch/ppc/kernel/built-in.o
  AS      arch/ppc/kernel/head_4xx.o
  LDS     arch/ppc/kernel/vmlinux.lds
  CC      arch/powerpc/kernel/semaphore.o
  CC      arch/powerpc/kernel/cputable.o
  CC      arch/powerpc/kernel/ptrace.o
  CC      arch/powerpc/kernel/syscalls.o
  CC      arch/powerpc/kernel/irq.o
  CC      arch/powerpc/kernel/align.o
  CC      arch/powerpc/kernel/signal_32.o
  CC      arch/powerpc/kernel/pmc.o
  CC      arch/powerpc/kernel/vdso.o
  CC      arch/powerpc/kernel/init_task.o
  CC      arch/powerpc/kernel/process.o
  AS      arch/powerpc/kernel/systbl.o
  CC      arch/powerpc/kernel/idle.o
  LDS     arch/powerpc/kernel/vdso32/vdso32.lds
  VDSO32A arch/powerpc/kernel/vdso32/sigtramp.o
  VDSO32A arch/powerpc/kernel/vdso32/gettimeofday.o
  VDSO32A arch/powerpc/kernel/vdso32/datapage.o
  VDSO32A arch/powerpc/kernel/vdso32/cacheflush.o
  VDSO32A arch/powerpc/kernel/vdso32/note.o
  VDSO32L arch/powerpc/kernel/vdso32/vdso32.so
  AS      arch/powerpc/kernel/vdso32/vdso32_wrapper.o
  LD      arch/powerpc/kernel/vdso32/built-in.o
  LD      arch/powerpc/kernel/built-in.o
  LD      arch/ppc/platforms/built-in.o
  CC      arch/ppc/mm/fault.o
  CC      arch/ppc/mm/init.o
  CC      arch/ppc/mm/mem_pieces.o
  CC      arch/ppc/mm/mmu_context.o
  CC      arch/ppc/mm/pgtable.o
  CC      arch/ppc/mm/4xx_mmu.o
  LD      arch/ppc/mm/built-in.o
  AS      arch/ppc/lib/checksum.o
  AS      arch/ppc/lib/string.o
  CC      arch/ppc/lib/strcase.o
  AS      arch/ppc/lib/div64.o
  LD      arch/ppc/lib/built-in.o
  CC      arch/ppc/syslib/xilinx_pic.o
  CC      arch/ppc/syslib/ppc_sys.o
  CC      arch/ppc/syslib/ppc4xx_setup.o
  LD      arch/ppc/syslib/built-in.o
  AS      arch/powerpc/sysdev/dcr.o
  LD      arch/powerpc/sysdev/built-in.o
  CC      arch/powerpc/lib/bitops.o
  LD      arch/powerpc/lib/built-in.o
  CC      arch/ppc/platforms/4xx/xilinx_ml403.o
  CC      arch/ppc/platforms/4xx/virtex.o
  LD      arch/ppc/platforms/4xx/built-in.o
  CC      arch/powerpc/math-emu/math.o
arch/powerpc/math-emu/math.c:56: warning: conflicting types for built-in 
function 'fabs'
  CC      arch/powerpc/math-emu/fmr.o
  CC      arch/powerpc/math-emu/lfd.o
  CC      arch/powerpc/math-emu/stfd.o
  CC      arch/powerpc/math-emu/fabs.o
arch/powerpc/math-emu/fabs.c:7: warning: conflicting types for built-in 
function 'fabs'
  CC      arch/powerpc/math-emu/fadd.o
arch/powerpc/math-emu/fadd.c: In function `fadd':
arch/powerpc/math-emu/fadd.c:31: warning: right shift count is negative
arch/powerpc/math-emu/fadd.c:31: warning: left shift count >= width of type
arch/powerpc/math-emu/fadd.c:13: warning: 'R_e' might be used uninitialized 
in this function
arch/powerpc/math-emu/fadd.c:13: warning: 'R_f0' might be used uninitialized 
in this function
arch/powerpc/math-emu/fadd.c:13: warning: 'R_f1' might be used uninitialized 
in this function
  CC      arch/powerpc/math-emu/fadds.o
arch/powerpc/math-emu/fadds.c: In function `fadds':
arch/powerpc/math-emu/fadds.c:32: warning: right shift count is negative
arch/powerpc/math-emu/fadds.c:32: warning: left shift count >= width of type
arch/powerpc/math-emu/fadds.c:14: warning: 'R_e' might be used uninitialized 
in this function
arch/powerpc/math-emu/fadds.c:14: warning: 'R_f0' might be used 
uninitialized in this function
arch/powerpc/math-emu/fadds.c:14: warning: 'R_f1' might be used 
uninitialized in this function
  CC      arch/powerpc/math-emu/fcmpo.o
  CC      arch/powerpc/math-emu/fcmpu.o
  CC      arch/powerpc/math-emu/fctiw.o
arch/powerpc/math-emu/fctiw.c: In function `fctiw':
arch/powerpc/math-emu/fctiw.c:15: warning: left shift count >= width of type
arch/powerpc/math-emu/fctiw.c:15: warning: left shift count >= width of type
arch/powerpc/math-emu/fctiw.c:12: warning: 'r' might be used uninitialized 
in this function
  CC      arch/powerpc/math-emu/fctiwz.o
arch/powerpc/math-emu/fctiwz.c: In function `fctiwz':
arch/powerpc/math-emu/fctiwz.c:20: warning: left shift count >= width of 
type
arch/powerpc/math-emu/fctiwz.c:20: warning: left shift count >= width of 
type
arch/powerpc/math-emu/fctiwz.c:13: warning: 'r' might be used uninitialized 
in this function
  CC      arch/powerpc/math-emu/fdiv.o
arch/powerpc/math-emu/fdiv.c: In function `fdiv':
arch/powerpc/math-emu/fdiv.c:46: warning: left shift count is negative
arch/powerpc/math-emu/fdiv.c:13: warning: 'R_e' might be used uninitialized 
in this function
arch/powerpc/math-emu/fdiv.c:13: warning: 'R_f0' might be used uninitialized 
in this function
arch/powerpc/math-emu/fdiv.c:13: warning: 'R_f1' might be used uninitialized 
in this function
  CC      arch/powerpc/math-emu/fdivs.o
arch/powerpc/math-emu/fdivs.c: In function `fdivs':
arch/powerpc/math-emu/fdivs.c:48: warning: left shift count is negative
arch/powerpc/math-emu/fdivs.c:14: warning: 'R_e' might be used uninitialized 
in this function
arch/powerpc/math-emu/fdivs.c:14: warning: 'R_f0' might be used 
uninitialized in this function
arch/powerpc/math-emu/fdivs.c:14: warning: 'R_f1' might be used 
uninitialized in this function
  CC      arch/powerpc/math-emu/fmadd.o
arch/powerpc/math-emu/fmadd.c: In function `fmadd':
arch/powerpc/math-emu/fmadd.c:36: warning: right shift count is negative
arch/powerpc/math-emu/fmadd.c:36: warning: left shift count >= width of type
arch/powerpc/math-emu/fmadd.c:41: warning: right shift count is negative
arch/powerpc/math-emu/fmadd.c:41: warning: left shift count >= width of type
arch/powerpc/math-emu/fmadd.c:11: warning: 'R_e' might be used uninitialized 
in this function
arch/powerpc/math-emu/fmadd.c:11: warning: 'R_f0' might be used 
uninitialized in this function
arch/powerpc/math-emu/fmadd.c:11: warning: 'R_f1' might be used 
uninitialized in this function
arch/powerpc/math-emu/fmadd.c:15: warning: 'T_e' might be used uninitialized 
in this function
  CC      arch/powerpc/math-emu/fmadds.o
arch/powerpc/math-emu/fmadds.c: In function `fmadds':
arch/powerpc/math-emu/fmadds.c:37: warning: right shift count is negative
arch/powerpc/math-emu/fmadds.c:37: warning: left shift count >= width of 
type
arch/powerpc/math-emu/fmadds.c:42: warning: right shift count is negative
arch/powerpc/math-emu/fmadds.c:42: warning: left shift count >= width of 
type
arch/powerpc/math-emu/fmadds.c:12: warning: 'R_e' might be used 
uninitialized in this function
arch/powerpc/math-emu/fmadds.c:12: warning: 'R_f0' might be used 
uninitialized in this function
arch/powerpc/math-emu/fmadds.c:12: warning: 'R_f1' might be used 
uninitialized in this function
arch/powerpc/math-emu/fmadds.c:16: warning: 'T_e' might be used 
uninitialized in this function
  CC      arch/powerpc/math-emu/fmsub.o
arch/powerpc/math-emu/fmsub.c: In function `fmsub':
arch/powerpc/math-emu/fmsub.c:36: warning: right shift count is negative
arch/powerpc/math-emu/fmsub.c:36: warning: left shift count >= width of type
arch/powerpc/math-emu/fmsub.c:44: warning: right shift count is negative
arch/powerpc/math-emu/fmsub.c:44: warning: left shift count >= width of type
arch/powerpc/math-emu/fmsub.c:11: warning: 'R_e' might be used uninitialized 
in this function
arch/powerpc/math-emu/fmsub.c:11: warning: 'R_f0' might be used 
uninitialized in this function
arch/powerpc/math-emu/fmsub.c:11: warning: 'R_f1' might be used 
uninitialized in this function
arch/powerpc/math-emu/fmsub.c:15: warning: 'T_e' might be used uninitialized 
in this function
  CC      arch/powerpc/math-emu/fmsubs.o
arch/powerpc/math-emu/fmsubs.c: In function `fmsubs':
arch/powerpc/math-emu/fmsubs.c:37: warning: right shift count is negative
arch/powerpc/math-emu/fmsubs.c:37: warning: left shift count >= width of 
type
arch/powerpc/math-emu/fmsubs.c:45: warning: right shift count is negative
arch/powerpc/math-emu/fmsubs.c:45: warning: left shift count >= width of 
type
arch/powerpc/math-emu/fmsubs.c:12: warning: 'R_e' might be used 
uninitialized in this function
arch/powerpc/math-emu/fmsubs.c:12: warning: 'R_f0' might be used 
uninitialized in this function
arch/powerpc/math-emu/fmsubs.c:12: warning: 'R_f1' might be used 
uninitialized in this function
arch/powerpc/math-emu/fmsubs.c:16: warning: 'T_e' might be used 
uninitialized in this function
  CC      arch/powerpc/math-emu/fmul.o
arch/powerpc/math-emu/fmul.c: In function `fmul':
arch/powerpc/math-emu/fmul.c:34: warning: right shift count is negative
arch/powerpc/math-emu/fmul.c:34: warning: left shift count >= width of type
arch/powerpc/math-emu/fmul.c:13: warning: 'R_e' might be used uninitialized 
in this function
  CC      arch/powerpc/math-emu/fmuls.o
arch/powerpc/math-emu/fmuls.c: In function `fmuls':
arch/powerpc/math-emu/fmuls.c:35: warning: right shift count is negative
arch/powerpc/math-emu/fmuls.c:35: warning: left shift count >= width of type
arch/powerpc/math-emu/fmuls.c:14: warning: 'R_e' might be used uninitialized 
in this function
  CC      arch/powerpc/math-emu/fnabs.o
  CC      arch/powerpc/math-emu/fneg.o
  CC      arch/powerpc/math-emu/types.o
arch/powerpc/math-emu/types.c: In function `fp_unpack_d':
arch/powerpc/math-emu/types.c:13: warning: left shift count is negative
arch/powerpc/math-emu/types.c: In function `fp_pack_d':
arch/powerpc/math-emu/types.c:28: warning: right shift count is negative
arch/powerpc/math-emu/types.c:28: warning: right shift count is negative
arch/powerpc/math-emu/types.c:28: warning: left shift count is negative
arch/powerpc/math-emu/types.c:28: warning: right shift count is negative
arch/powerpc/math-emu/types.c: In function `fp_pack_ds':
arch/powerpc/math-emu/types.c:41: warning: right shift count is negative
arch/powerpc/math-emu/types.c:45: warning: left shift count is negative
arch/powerpc/math-emu/types.c:46: warning: right shift count is negative
arch/powerpc/math-emu/types.c:46: warning: right shift count is negative
arch/powerpc/math-emu/types.c:46: warning: left shift count is negative
arch/powerpc/math-emu/types.c:46: warning: right shift count is negative
  CC      arch/powerpc/math-emu/fnmadd.o
arch/powerpc/math-emu/fnmadd.c: In function `fnmadd':
arch/powerpc/math-emu/fnmadd.c:36: warning: right shift count is negative
arch/powerpc/math-emu/fnmadd.c:36: warning: left shift count >= width of 
type
arch/powerpc/math-emu/fnmadd.c:41: warning: right shift count is negative
arch/powerpc/math-emu/fnmadd.c:41: warning: left shift count >= width of 
type
arch/powerpc/math-emu/fnmadd.c:11: warning: 'R_e' might be used 
uninitialized in this function
arch/powerpc/math-emu/fnmadd.c:11: warning: 'R_f0' might be used 
uninitialized in this function
arch/powerpc/math-emu/fnmadd.c:11: warning: 'R_f1' might be used 
uninitialized in this function
arch/powerpc/math-emu/fnmadd.c:15: warning: 'T_e' might be used 
uninitialized in this function
  CC      arch/powerpc/math-emu/fnmadds.o
arch/powerpc/math-emu/fnmadds.c: In function `fnmadds':
arch/powerpc/math-emu/fnmadds.c:37: warning: right shift count is negative
arch/powerpc/math-emu/fnmadds.c:37: warning: left shift count >= width of 
type
arch/powerpc/math-emu/fnmadds.c:42: warning: right shift count is negative
arch/powerpc/math-emu/fnmadds.c:42: warning: left shift count >= width of 
type
arch/powerpc/math-emu/fnmadds.c:12: warning: 'R_e' might be used 
uninitialized in this function
arch/powerpc/math-emu/fnmadds.c:12: warning: 'R_f0' might be used 
uninitialized in this function
arch/powerpc/math-emu/fnmadds.c:12: warning: 'R_f1' might be used 
uninitialized in this function
arch/powerpc/math-emu/fnmadds.c:16: warning: 'T_e' might be used 
uninitialized in this function
  CC      arch/powerpc/math-emu/fnmsub.o
arch/powerpc/math-emu/fnmsub.c: In function `fnmsub':
arch/powerpc/math-emu/fnmsub.c:36: warning: right shift count is negative
arch/powerpc/math-emu/fnmsub.c:36: warning: left shift count >= width of 
type
arch/powerpc/math-emu/fnmsub.c:44: warning: right shift count is negative
arch/powerpc/math-emu/fnmsub.c:44: warning: left shift count >= width of 
type
arch/powerpc/math-emu/fnmsub.c:11: warning: 'R_e' might be used 
uninitialized in this function
arch/powerpc/math-emu/fnmsub.c:11: warning: 'R_f0' might be used 
uninitialized in this function
arch/powerpc/math-emu/fnmsub.c:11: warning: 'R_f1' might be used 
uninitialized in this function
arch/powerpc/math-emu/fnmsub.c:15: warning: 'T_e' might be used 
uninitialized in this function
  CC      arch/powerpc/math-emu/fnmsubs.o
arch/powerpc/math-emu/fnmsubs.c: In function `fnmsubs':
arch/powerpc/math-emu/fnmsubs.c:37: warning: right shift count is negative
arch/powerpc/math-emu/fnmsubs.c:37: warning: left shift count >= width of 
type
arch/powerpc/math-emu/fnmsubs.c:45: warning: right shift count is negative
arch/powerpc/math-emu/fnmsubs.c:45: warning: left shift count >= width of 
type
arch/powerpc/math-emu/fnmsubs.c:12: warning: 'R_e' might be used 
uninitialized in this function
arch/powerpc/math-emu/fnmsubs.c:12: warning: 'R_f0' might be used 
uninitialized in this function
arch/powerpc/math-emu/fnmsubs.c:12: warning: 'R_f1' might be used 
uninitialized in this function
arch/powerpc/math-emu/fnmsubs.c:16: warning: 'T_e' might be used 
uninitialized in this function
  CC      arch/powerpc/math-emu/fres.o
  CC      arch/powerpc/math-emu/frsp.o
  CC      arch/powerpc/math-emu/frsqrte.o
  CC      arch/powerpc/math-emu/fsel.o
  CC      arch/powerpc/math-emu/lfs.o
arch/powerpc/math-emu/lfs.c: In function `lfs':
arch/powerpc/math-emu/lfs.c:30: warning: left shift count is negative
  CC      arch/powerpc/math-emu/fsqrt.o
arch/powerpc/math-emu/fsqrt.c: In function `fsqrt':
arch/powerpc/math-emu/fsqrt.c:30: warning: left shift count is negative
arch/powerpc/math-emu/fsqrt.c:30: warning: left shift count is negative
arch/powerpc/math-emu/fsqrt.c:30: warning: left shift count is negative
arch/powerpc/math-emu/fsqrt.c:30: warning: left shift count is negative
arch/powerpc/math-emu/fsqrt.c:30: warning: right shift count is negative
arch/powerpc/math-emu/fsqrt.c:12: warning: 'R_c' might be used uninitialized 
in this function
arch/powerpc/math-emu/fsqrt.c:12: warning: 'R_s' might be used uninitialized 
in this function
arch/powerpc/math-emu/fsqrt.c:12: warning: 'R_e' might be used uninitialized 
in this function
arch/powerpc/math-emu/fsqrt.c:12: warning: 'R_f0' might be used 
uninitialized in this function
arch/powerpc/math-emu/fsqrt.c:12: warning: 'R_f1' might be used 
uninitialized in this function
  CC      arch/powerpc/math-emu/fsqrts.o
arch/powerpc/math-emu/fsqrts.c: In function `fsqrts':
arch/powerpc/math-emu/fsqrts.c:31: warning: left shift count is negative
arch/powerpc/math-emu/fsqrts.c:31: warning: left shift count is negative
arch/powerpc/math-emu/fsqrts.c:31: warning: left shift count is negative
arch/powerpc/math-emu/fsqrts.c:31: warning: left shift count is negative
arch/powerpc/math-emu/fsqrts.c:31: warning: right shift count is negative
arch/powerpc/math-emu/fsqrts.c:13: warning: 'R_c' might be used 
uninitialized in this function
arch/powerpc/math-emu/fsqrts.c:13: warning: 'R_s' might be used 
uninitialized in this function
arch/powerpc/math-emu/fsqrts.c:13: warning: 'R_e' might be used 
uninitialized in this function
arch/powerpc/math-emu/fsqrts.c:13: warning: 'R_f0' might be used 
uninitialized in this function
arch/powerpc/math-emu/fsqrts.c:13: warning: 'R_f1' might be used 
uninitialized in this function
  CC      arch/powerpc/math-emu/fsub.o
arch/powerpc/math-emu/fsub.c: In function `fsub':
arch/powerpc/math-emu/fsub.c:34: warning: right shift count is negative
arch/powerpc/math-emu/fsub.c:34: warning: left shift count >= width of type
arch/powerpc/math-emu/fsub.c:13: warning: 'R_e' might be used uninitialized 
in this function
arch/powerpc/math-emu/fsub.c:13: warning: 'R_f0' might be used uninitialized 
in this function
arch/powerpc/math-emu/fsub.c:13: warning: 'R_f1' might be used uninitialized 
in this function
  CC      arch/powerpc/math-emu/fsubs.o
arch/powerpc/math-emu/fsubs.c: In function `fsubs':
arch/powerpc/math-emu/fsubs.c:35: warning: right shift count is negative
arch/powerpc/math-emu/fsubs.c:35: warning: left shift count >= width of type
arch/powerpc/math-emu/fsubs.c:14: warning: 'R_e' might be used uninitialized 
in this function
arch/powerpc/math-emu/fsubs.c:14: warning: 'R_f0' might be used 
uninitialized in this function
arch/powerpc/math-emu/fsubs.c:14: warning: 'R_f1' might be used 
uninitialized in this function
  CC      arch/powerpc/math-emu/mcrfs.o
  CC      arch/powerpc/math-emu/mffs.o
  CC      arch/powerpc/math-emu/mtfsb0.o
  CC      arch/powerpc/math-emu/mtfsb1.o
  CC      arch/powerpc/math-emu/mtfsf.o
  CC      arch/powerpc/math-emu/mtfsfi.o
  CC      arch/powerpc/math-emu/stfiwx.o
  CC      arch/powerpc/math-emu/stfs.o
arch/powerpc/math-emu/stfs.c: In function `stfs':
arch/powerpc/math-emu/stfs.c:27: warning: right shift count is negative
  CC      arch/powerpc/math-emu/udivmodti4.o
  LD      arch/powerpc/math-emu/built-in.o
  CC      kernel/sched.o
  CC      kernel/fork.o
  CC      kernel/exec_domain.o
  CC      kernel/panic.o
  CC      kernel/printk.o
  CC      kernel/profile.o
  CC      kernel/exit.o
  CC      kernel/itimer.o
  CC      kernel/time.o
  CC      kernel/softirq.o
  CC      kernel/resource.o
  CC      kernel/sysctl.o
  CC      kernel/capability.o
  CC      kernel/ptrace.o
  CC      kernel/timer.o
  CC      kernel/user.o
  CC      kernel/signal.o
  CC      kernel/sys.o
  CC      kernel/kmod.o
  CC      kernel/workqueue.o
  CC      kernel/pid.o
  CC      kernel/rcupdate.o
  CC      kernel/extable.o
  CC      kernel/params.o
  CC      kernel/posix-timers.o
  CC      kernel/kthread.o
  CC      kernel/wait.o
  CC      kernel/kfifo.o
  CC      kernel/sys_ni.o
  CC      kernel/posix-cpu-timers.o
  CC      kernel/mutex.o
  CC      kernel/hrtimer.o
  CC      kernel/futex.o
  CC      kernel/intermodule.o
  CC      kernel/kallsyms.o
  CC      kernel/ksysfs.o
  CC      kernel/softlockup.o
  CC      kernel/irq/handle.o
  CC      kernel/irq/manage.o
  CC      kernel/irq/spurious.o
  CC      kernel/irq/proc.o
  LD      kernel/irq/built-in.o
  CC      kernel/seccomp.o
  LD      kernel/built-in.o
  CC      mm/bootmem.o
  CC      mm/filemap.o
  CC      mm/mempool.o
  CC      mm/oom_kill.o
  CC      mm/fadvise.o
  CC      mm/page_alloc.o
  CC      mm/page-writeback.o
  CC      mm/pdflush.o
  CC      mm/readahead.o
  CC      mm/swap.o
  CC      mm/truncate.o
  CC      mm/vmscan.o
  CC      mm/prio_tree.o
  CC      mm/util.o
  CC      mm/mmzone.o
  CC      mm/fremap.o
  CC      mm/highmem.o
  CC      mm/madvise.o
  CC      mm/memory.o
  CC      mm/mincore.o
  CC      mm/mlock.o
  CC      mm/mmap.o
  CC      mm/mprotect.o
  CC      mm/mremap.o
  CC      mm/msync.o
  CC      mm/rmap.o
  CC      mm/vmalloc.o
  CC      mm/page_io.o
  CC      mm/swap_state.o
  CC      mm/swapfile.o
  CC      mm/thrash.o
  CC      mm/shmem.o
  CC      mm/slab.o
  CC      mm/filemap_xip.o
  LD      mm/built-in.o
  CC      fs/open.o
  CC      fs/read_write.o
  CC      fs/file_table.o
  CC      fs/buffer.o
  CC      fs/bio.o
  CC      fs/super.o
  CC      fs/block_dev.o
  CC      fs/char_dev.o
  CC      fs/stat.o
  CC      fs/exec.o
  CC      fs/pipe.o
  CC      fs/namei.o
  CC      fs/fcntl.o
  CC      fs/ioctl.o
  CC      fs/readdir.o
  CC      fs/select.o
  CC      fs/fifo.o
  CC      fs/locks.o
  CC      fs/dcache.o
  CC      fs/inode.o
  CC      fs/attr.o
  CC      fs/bad_inode.o
  CC      fs/file.o
  CC      fs/filesystems.o
  CC      fs/namespace.o
  CC      fs/aio.o
  CC      fs/seq_file.o
  CC      fs/xattr.o
  CC      fs/libfs.o
  CC      fs/fs-writeback.o
  CC      fs/mpage.o
  CC      fs/direct-io.o
  CC      fs/ioprio.o
  CC      fs/pnode.o
  CC      fs/drop_caches.o
  CC      fs/splice.o
  CC      fs/sync.o
  CC      fs/inotify.o
  CC      fs/eventpoll.o
  CC      fs/binfmt_script.o
  CC      fs/binfmt_elf.o
  CC      fs/mbcache.o
  CC      fs/posix_acl.o
  CC      fs/xattr_acl.o
  CC      fs/dnotify.o
  CC      fs/autofs/dirhash.o
  CC      fs/autofs/init.o
  CC      fs/autofs/inode.o
  CC      fs/autofs/root.o
  CC      fs/autofs/symlink.o
  CC      fs/autofs/waitq.o
  LD      fs/autofs/autofs.o
  LD      fs/autofs/built-in.o
  CC      fs/autofs4/init.o
  CC      fs/autofs4/inode.o
  CC      fs/autofs4/root.o
  CC      fs/autofs4/symlink.o
  CC      fs/autofs4/waitq.o
  CC      fs/autofs4/expire.o
  LD      fs/autofs4/autofs4.o
  LD      fs/autofs4/built-in.o
  CC      fs/devpts/inode.o
  LD      fs/devpts/devpts.o
  LD      fs/devpts/built-in.o
  CC      fs/ext2/balloc.o
  CC      fs/ext2/bitmap.o
  CC      fs/ext2/dir.o
  CC      fs/ext2/file.o
  CC      fs/ext2/fsync.o
  CC      fs/ext2/ialloc.o
  CC      fs/ext2/inode.o
  CC      fs/ext2/ioctl.o
  CC      fs/ext2/namei.o
  CC      fs/ext2/super.o
  CC      fs/ext2/symlink.o
  CC      fs/ext2/xattr.o
  CC      fs/ext2/xattr_user.o
  CC      fs/ext2/xattr_trusted.o
  CC      fs/ext2/acl.o
  CC      fs/ext2/xattr_security.o
  CC      fs/ext2/xip.o
  LD      fs/ext2/ext2.o
  LD      fs/ext2/built-in.o
  CC      fs/nls/nls_base.o
  LD      fs/nls/built-in.o
  CC      fs/partitions/check.o
  CC      fs/partitions/msdos.o
  LD      fs/partitions/built-in.o
  CC      fs/proc/mmu.o
  CC      fs/proc/task_mmu.o
  CC      fs/proc/inode.o
  CC      fs/proc/root.o
  CC      fs/proc/base.o
  CC      fs/proc/generic.o
  CC      fs/proc/array.o
  CC      fs/proc/kmsg.o
  CC      fs/proc/proc_tty.o
  CC      fs/proc/proc_misc.o
  CC      fs/proc/kcore.o
  LD      fs/proc/proc.o
  LD      fs/proc/built-in.o
  CC      fs/ramfs/inode.o
  CC      fs/ramfs/file-mmu.o
  LD      fs/ramfs/ramfs.o
  LD      fs/ramfs/built-in.o
  CC      fs/sysfs/inode.o
  CC      fs/sysfs/file.o
  CC      fs/sysfs/dir.o
  CC      fs/sysfs/symlink.o
  CC      fs/sysfs/mount.o
  CC      fs/sysfs/bin.o
  CC      fs/sysfs/group.o
  LD      fs/sysfs/built-in.o
  LD      fs/built-in.o
  CC      ipc/util.o
  CC      ipc/msgutil.o
  CC      ipc/msg.o
  CC      ipc/sem.o
  CC      ipc/shm.o
  LD      ipc/built-in.o
  CC      security/commoncap.o
  LD      security/built-in.o
  LD      crypto/built-in.o
  CC      block/elevator.o
  CC      block/ll_rw_blk.o
  CC      block/ioctl.o
  CC      block/genhd.o
  CC      block/scsi_ioctl.o
  CC      block/noop-iosched.o
  CC      block/as-iosched.o
  CC      block/deadline-iosched.o
  CC      block/cfq-iosched.o
  LD      block/built-in.o
  CC      drivers/base/core.o
  CC      drivers/base/sys.o
  CC      drivers/base/bus.o
  CC      drivers/base/dd.o
  CC      drivers/base/driver.o
  CC      drivers/base/class.o
  CC      drivers/base/platform.o
  CC      drivers/base/cpu.o
  CC      drivers/base/firmware.o
  CC      drivers/base/init.o
  CC      drivers/base/map.o
  CC      drivers/base/dmapool.o
  CC      drivers/base/attribute_container.o
  CC      drivers/base/transport_class.o
  CC      drivers/base/power/shutdown.o
  LD      drivers/base/power/built-in.o
  LD      drivers/base/built-in.o
  CC      drivers/block/loop.o
  CC      drivers/block/xilinx_sysace/adapter.o
drivers/block/xilinx_sysace/adapter.c:221: warning: 'xsysace_restart' 
defined but not used
  CC      drivers/block/xilinx_sysace/xbasic_types.o
  CC      drivers/block/xilinx_sysace/xsysace.o
  CC      drivers/block/xilinx_sysace/xsysace_g.o
  CC      drivers/block/xilinx_sysace/xsysace_intr.o
  CC      drivers/block/xilinx_sysace/xsysace_l.o
  CC      drivers/block/xilinx_sysace/xsysace_compactflash.o
  CC      drivers/block/xilinx_sysace/xsysace_jtagcfg.o
  LD      drivers/block/xilinx_sysace/xilinx_sysace.o
  LD      drivers/block/xilinx_sysace/built-in.o
  LD      drivers/block/built-in.o
  LD      drivers/cdrom/built-in.o
  CC      drivers/char/mem.o
  CC      drivers/char/random.o
  CC      drivers/char/tty_io.o
  CC      drivers/char/n_tty.o
  CC      drivers/char/tty_ioctl.o
  CC      drivers/char/pty.o
  CC      drivers/char/misc.o
  CC      drivers/char/vt_ioctl.o
  CC      drivers/char/vc_screen.o
  CC      drivers/char/consolemap.o
  CONMK   drivers/char/consolemap_deftbl.c
  CC      drivers/char/consolemap_deftbl.o
  CC      drivers/char/selection.o
  CC      drivers/char/keyboard.o
  CC      drivers/char/vt.o
  SHIPPED drivers/char/defkeymap.c
  CC      drivers/char/defkeymap.o
  LD      drivers/char/built-in.o
  LD      drivers/firmware/built-in.o
  CC      drivers/hwmon/hwmon.o
  LD      drivers/hwmon/built-in.o
  CC      drivers/input/input.o
  CC      drivers/input/mousedev.o
  LD      drivers/input/built-in.o
  CC      drivers/input/serio/serio.o
  CC      drivers/input/serio/i8042.o
  CC      drivers/input/serio/serport.o
  LD      drivers/input/serio/built-in.o
  LD      drivers/media/common/built-in.o
  LD      drivers/media/built-in.o
  LD      drivers/mfd/built-in.o
  LD      drivers/misc/built-in.o
  CC      drivers/mtd/mtdcore.o
  CC      drivers/mtd/mtdpart.o
  CC      drivers/mtd/redboot.o
drivers/mtd/redboot.c: In function `parse_redboot_partitions':
drivers/mtd/redboot.c:103: warning: passing arg 1 of `__swab32s' from 
incompatible pointer type
drivers/mtd/redboot.c:104: warning: passing arg 1 of `__swab32s' from 
incompatible pointer type
drivers/mtd/redboot.c:105: warning: passing arg 1 of `__swab32s' from 
incompatible pointer type
drivers/mtd/redboot.c:106: warning: passing arg 1 of `__swab32s' from 
incompatible pointer type
drivers/mtd/redboot.c:107: warning: passing arg 1 of `__swab32s' from 
incompatible pointer type
drivers/mtd/redboot.c:108: warning: passing arg 1 of `__swab32s' from 
incompatible pointer type
drivers/mtd/redboot.c:109: warning: passing arg 1 of `__swab32s' from 
incompatible pointer type
  CC      drivers/mtd/mtdchar.o
  CC      drivers/mtd/mtdblock.o
  CC      drivers/mtd/mtd_blkdevs.o
  CC      drivers/mtd/chips/chipreg.o
  CC      drivers/mtd/chips/cfi_probe.o
  CC      drivers/mtd/chips/cfi_util.o
  CC      drivers/mtd/chips/cfi_cmdset_0002.o
drivers/mtd/chips/cfi_cmdset_0002.c: In function `cfi_amdstd_init':
drivers/mtd/chips/cfi_cmdset_0002.c:1766: warning: `inter_module_register' 
is deprecated (declared at include/linux/module.h:563)
drivers/mtd/chips/cfi_cmdset_0002.c: In function `cfi_amdstd_exit':
drivers/mtd/chips/cfi_cmdset_0002.c:1773: warning: `inter_module_unregister' 
is deprecated (declared at include/linux/module.h:564)
  CC      drivers/mtd/chips/gen_probe.o
  LD      drivers/mtd/chips/built-in.o
  LD      drivers/mtd/devices/built-in.o
  LD      drivers/mtd/maps/built-in.o
  LD      drivers/mtd/nand/built-in.o
  LD      drivers/mtd/onenand/built-in.o
  LD      drivers/mtd/built-in.o
  CC      drivers/net/Space.o
  CC      drivers/net/loopback.o
  CC      drivers/net/xilinx_temac/adapter.o
  CC      drivers/net/xilinx_temac/xtemac.o
  CC      drivers/net/xilinx_temac/xtemac_intr.o
  CC      drivers/net/xilinx_temac/xtemac_intr_sgdma.o
  CC      drivers/net/xilinx_temac/xtemac_sgdma.o
  CC      drivers/net/xilinx_temac/xtemac_intr_fifo.o
  CC      drivers/net/xilinx_temac/xtemac_fifo.o
  CC      drivers/net/xilinx_temac/xtemac_l.o
  CC      drivers/net/xilinx_temac/xtemac_control.o
  LD      drivers/net/xilinx_temac/xilinx_temac.o
  LD      drivers/net/xilinx_temac/built-in.o
  LD      drivers/net/built-in.o
  CC      drivers/serial/serial_core.o
  CC      drivers/serial/8250.o
  CC      drivers/serial/8250_early.o
  LD      drivers/serial/built-in.o
  LD      drivers/video/backlight/built-in.o
  CC      drivers/video/console/dummycon.o
  LD      drivers/video/console/built-in.o
  LD      drivers/video/built-in.o
  CC      drivers/xilinx_edk/xilinx_syms.o
  CC      drivers/xilinx_edk/xbasic_types.o
  CC      drivers/xilinx_edk/xpacket_fifo_v2_00_a.o
  CC      drivers/xilinx_edk/xpacket_fifo_l_v2_00_a.o
  CC      drivers/xilinx_edk/xdmav2.o
  CC      drivers/xilinx_edk/xdmav2_intr.o
  CC      drivers/xilinx_edk/xdmav2_sg.o
  CC      drivers/xilinx_edk/xdmav2_simple.o
  LD      drivers/xilinx_edk/built-in.o
  LD      drivers/built-in.o
drivers/xilinx_edk/built-in.o(.sdata+0x0): In function `XAssert':
drivers/xilinx_edk/xbasic_types.c:105: multiple definition of 
`XWaitInAssert'
drivers/block/built-in.o(.sdata+0x0):drivers/block/loop.c:91: first defined 
here
drivers/xilinx_edk/built-in.o(.sbss+0x4): In function `XAssert':
drivers/xilinx_edk/xbasic_types.c:105: multiple definition of 
`XAssertStatus'
drivers/block/built-in.o(.sbss+0x38):drivers/block/loop.c:98: first defined 
here
drivers/xilinx_edk/built-in.o(.text+0x44): In function `XAssertSetCallback':
drivers/xilinx_edk/xbasic_types.c:134: multiple definition of 
`XAssertSetCallback'
drivers/block/built-in.o(.text+0x24bc):drivers/block/xilinx_sysace/xbasic_types.c:134: 
first defined here
drivers/xilinx_edk/built-in.o(.text+0x0): In function `XAssert':
drivers/xilinx_edk/xbasic_types.c:105: multiple definition of `XAssert'
drivers/block/built-in.o(.text+0x2478):drivers/block/xilinx_sysace/xbasic_types.c:105: 
first defined here
drivers/xilinx_edk/built-in.o(.text+0x50): In function `XNullHandler':
drivers/xilinx_edk/xbasic_types.c:153: multiple definition of `XNullHandler'
drivers/block/built-in.o(.text+0x24c8):drivers/block/xilinx_sysace/xbasic_types.c:153: 
first defined here
make[1]: *** [drivers/built-in.o] Error 1
make: *** [drivers] Error 2


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

* Re: some problems on the SystemACE driver.
  2006-07-14 21:06 Ming Liu
@ 2006-07-16  9:40 ` Ameet Patil
  2006-07-16 13:17   ` Ming Liu
  0 siblings, 1 reply; 15+ messages in thread
From: Ameet Patil @ 2006-07-16  9:40 UTC (permalink / raw)
  To: Ming Liu; +Cc: linuxppc-embedded

Hi Ming,
   I know this might be very tedious for you. But its the same for me
especially when there is no need for me to do it. Anyway, could please
do a fresh start: untar linux kernel, apply all the TEMAC patches and
then apply my only 1 xx-after-TEMAC.patch

I have updated the patch. Make sure you download the new one.

The key is: When you compile this time the file xbasic_types.c in
drivers/bloxk/xilinx_sysace/ should not be compiled.

i.e.
>  CC      drivers/block/xilinx_sysace/xbasic_types.o
should not be shown!
Send a fresh log if this doesnot work!

-Ameet

Ming Liu wrote:
> Dear Ameet,
> Here is the normal log without -d when make zImage. Please check it. 
> Waiting for your result. Have fun in the weekend. :)
> 
>> I appreciate you testing the patch. Don't worry... we will solve it. And
>> I am not an expert either... you probably know more than me!
> 
> Thanks for your encouraging. Let's do it! Hopefully we can finish it 
> a.s.a.p. Good luck for us! 
> Regards
> Ming
> 
> _________________________________________________________________
> 享用世界上最大的电子邮件系统― MSN Hotmail。  http://www.hotmail.com  
>  CHK     include/linux/version.h
>  HOSTCC  scripts/basic/fixdep
>  HOSTCC  scripts/basic/split-include
>  HOSTCC  scripts/basic/docproc
>  HOSTCC  scripts/kconfig/conf.o
>  HOSTCC  scripts/kconfig/kxgettext.o
>  HOSTCC  scripts/kconfig/mconf.o
>  HOSTCC  scripts/kconfig/zconf.tab.o
>  HOSTLD  scripts/kconfig/conf
> scripts/kconfig/conf -s arch/ppc/Kconfig
> #
> # using defaults found in .config
> #
>  SPLIT   include/linux/autoconf.h -> include/config/*
>  CC      arch/ppc/kernel/asm-offsets.s
>  GEN     include/asm-ppc/asm-offsets.h
>  HOSTCC  scripts/kallsyms
>  HOSTCC  scripts/conmakehash
>  CC      init/main.o
>  CHK     include/linux/compile.h
>  UPD     include/linux/compile.h
>  CC      init/version.o
>  CC      init/do_mounts.o
>  LD      init/mounts.o
>  CC      init/initramfs.o
>  CC      init/calibrate.o
>  LD      init/built-in.o
>  HOSTCC  usr/gen_init_cpio
>  GEN     usr/initramfs_data.cpio.gz
>  AS      usr/initramfs_data.o
>  LD      usr/built-in.o
>  AS      arch/ppc/kernel/entry.o
>  CC      arch/ppc/kernel/traps.o
>  CC      arch/ppc/kernel/time.o
>  AS      arch/ppc/kernel/misc.o
>  CC      arch/ppc/kernel/setup.o
>  CC      arch/ppc/kernel/ppc_htab.o
>  CC      arch/ppc/kernel/dma-mapping.o
>  LD      arch/ppc/kernel/built-in.o
>  AS      arch/ppc/kernel/head_4xx.o
>  LDS     arch/ppc/kernel/vmlinux.lds
>  CC      arch/powerpc/kernel/semaphore.o
>  CC      arch/powerpc/kernel/cputable.o
>  CC      arch/powerpc/kernel/ptrace.o
>  CC      arch/powerpc/kernel/syscalls.o
>  CC      arch/powerpc/kernel/irq.o
>  CC      arch/powerpc/kernel/align.o
>  CC      arch/powerpc/kernel/signal_32.o
>  CC      arch/powerpc/kernel/pmc.o
>  CC      arch/powerpc/kernel/vdso.o
>  CC      arch/powerpc/kernel/init_task.o
>  CC      arch/powerpc/kernel/process.o
>  AS      arch/powerpc/kernel/systbl.o
>  CC      arch/powerpc/kernel/idle.o
>  LDS     arch/powerpc/kernel/vdso32/vdso32.lds
>  VDSO32A arch/powerpc/kernel/vdso32/sigtramp.o
>  VDSO32A arch/powerpc/kernel/vdso32/gettimeofday.o
>  VDSO32A arch/powerpc/kernel/vdso32/datapage.o
>  VDSO32A arch/powerpc/kernel/vdso32/cacheflush.o
>  VDSO32A arch/powerpc/kernel/vdso32/note.o
>  VDSO32L arch/powerpc/kernel/vdso32/vdso32.so
>  AS      arch/powerpc/kernel/vdso32/vdso32_wrapper.o
>  LD      arch/powerpc/kernel/vdso32/built-in.o
>  LD      arch/powerpc/kernel/built-in.o
>  LD      arch/ppc/platforms/built-in.o
>  CC      arch/ppc/mm/fault.o
>  CC      arch/ppc/mm/init.o
>  CC      arch/ppc/mm/mem_pieces.o
>  CC      arch/ppc/mm/mmu_context.o
>  CC      arch/ppc/mm/pgtable.o
>  CC      arch/ppc/mm/4xx_mmu.o
>  LD      arch/ppc/mm/built-in.o
>  AS      arch/ppc/lib/checksum.o
>  AS      arch/ppc/lib/string.o
>  CC      arch/ppc/lib/strcase.o
>  AS      arch/ppc/lib/div64.o
>  LD      arch/ppc/lib/built-in.o
>  CC      arch/ppc/syslib/xilinx_pic.o
>  CC      arch/ppc/syslib/ppc_sys.o
>  CC      arch/ppc/syslib/ppc4xx_setup.o
>  LD      arch/ppc/syslib/built-in.o
>  AS      arch/powerpc/sysdev/dcr.o
>  LD      arch/powerpc/sysdev/built-in.o
>  CC      arch/powerpc/lib/bitops.o
>  LD      arch/powerpc/lib/built-in.o
>  CC      arch/ppc/platforms/4xx/xilinx_ml403.o
>  CC      arch/ppc/platforms/4xx/virtex.o
>  LD      arch/ppc/platforms/4xx/built-in.o
>  CC      arch/powerpc/math-emu/math.o
> arch/powerpc/math-emu/math.c:56: warning: conflicting types for built-in 
> function 'fabs'
>  CC      arch/powerpc/math-emu/fmr.o
>  CC      arch/powerpc/math-emu/lfd.o
>  CC      arch/powerpc/math-emu/stfd.o
>  CC      arch/powerpc/math-emu/fabs.o
> arch/powerpc/math-emu/fabs.c:7: warning: conflicting types for built-in 
> function 'fabs'
>  CC      arch/powerpc/math-emu/fadd.o
> arch/powerpc/math-emu/fadd.c: In function `fadd':
> arch/powerpc/math-emu/fadd.c:31: warning: right shift count is negative
> arch/powerpc/math-emu/fadd.c:31: warning: left shift count >= width of type
> arch/powerpc/math-emu/fadd.c:13: warning: 'R_e' might be used 
> uninitialized in this function
> arch/powerpc/math-emu/fadd.c:13: warning: 'R_f0' might be used 
> uninitialized in this function
> arch/powerpc/math-emu/fadd.c:13: warning: 'R_f1' might be used 
> uninitialized in this function
>  CC      arch/powerpc/math-emu/fadds.o
> arch/powerpc/math-emu/fadds.c: In function `fadds':
> arch/powerpc/math-emu/fadds.c:32: warning: right shift count is negative
> arch/powerpc/math-emu/fadds.c:32: warning: left shift count >= width of 
> type
> arch/powerpc/math-emu/fadds.c:14: warning: 'R_e' might be used 
> uninitialized in this function
> arch/powerpc/math-emu/fadds.c:14: warning: 'R_f0' might be used 
> uninitialized in this function
> arch/powerpc/math-emu/fadds.c:14: warning: 'R_f1' might be used 
> uninitialized in this function
>  CC      arch/powerpc/math-emu/fcmpo.o
>  CC      arch/powerpc/math-emu/fcmpu.o
>  CC      arch/powerpc/math-emu/fctiw.o
> arch/powerpc/math-emu/fctiw.c: In function `fctiw':
> arch/powerpc/math-emu/fctiw.c:15: warning: left shift count >= width of 
> type
> arch/powerpc/math-emu/fctiw.c:15: warning: left shift count >= width of 
> type
> arch/powerpc/math-emu/fctiw.c:12: warning: 'r' might be used 
> uninitialized in this function
>  CC      arch/powerpc/math-emu/fctiwz.o
> arch/powerpc/math-emu/fctiwz.c: In function `fctiwz':
> arch/powerpc/math-emu/fctiwz.c:20: warning: left shift count >= width of 
> type
> arch/powerpc/math-emu/fctiwz.c:20: warning: left shift count >= width of 
> type
> arch/powerpc/math-emu/fctiwz.c:13: warning: 'r' might be used 
> uninitialized in this function
>  CC      arch/powerpc/math-emu/fdiv.o
> arch/powerpc/math-emu/fdiv.c: In function `fdiv':
> arch/powerpc/math-emu/fdiv.c:46: warning: left shift count is negative
> arch/powerpc/math-emu/fdiv.c:13: warning: 'R_e' might be used 
> uninitialized in this function
> arch/powerpc/math-emu/fdiv.c:13: warning: 'R_f0' might be used 
> uninitialized in this function
> arch/powerpc/math-emu/fdiv.c:13: warning: 'R_f1' might be used 
> uninitialized in this function
>  CC      arch/powerpc/math-emu/fdivs.o
> arch/powerpc/math-emu/fdivs.c: In function `fdivs':
> arch/powerpc/math-emu/fdivs.c:48: warning: left shift count is negative
> arch/powerpc/math-emu/fdivs.c:14: warning: 'R_e' might be used 
> uninitialized in this function
> arch/powerpc/math-emu/fdivs.c:14: warning: 'R_f0' might be used 
> uninitialized in this function
> arch/powerpc/math-emu/fdivs.c:14: warning: 'R_f1' might be used 
> uninitialized in this function
>  CC      arch/powerpc/math-emu/fmadd.o
> arch/powerpc/math-emu/fmadd.c: In function `fmadd':
> arch/powerpc/math-emu/fmadd.c:36: warning: right shift count is negative
> arch/powerpc/math-emu/fmadd.c:36: warning: left shift count >= width of 
> type
> arch/powerpc/math-emu/fmadd.c:41: warning: right shift count is negative
> arch/powerpc/math-emu/fmadd.c:41: warning: left shift count >= width of 
> type
> arch/powerpc/math-emu/fmadd.c:11: warning: 'R_e' might be used 
> uninitialized in this function
> arch/powerpc/math-emu/fmadd.c:11: warning: 'R_f0' might be used 
> uninitialized in this function
> arch/powerpc/math-emu/fmadd.c:11: warning: 'R_f1' might be used 
> uninitialized in this function
> arch/powerpc/math-emu/fmadd.c:15: warning: 'T_e' might be used 
> uninitialized in this function
>  CC      arch/powerpc/math-emu/fmadds.o
> arch/powerpc/math-emu/fmadds.c: In function `fmadds':
> arch/powerpc/math-emu/fmadds.c:37: warning: right shift count is negative
> arch/powerpc/math-emu/fmadds.c:37: warning: left shift count >= width of 
> type
> arch/powerpc/math-emu/fmadds.c:42: warning: right shift count is negative
> arch/powerpc/math-emu/fmadds.c:42: warning: left shift count >= width of 
> type
> arch/powerpc/math-emu/fmadds.c:12: warning: 'R_e' might be used 
> uninitialized in this function
> arch/powerpc/math-emu/fmadds.c:12: warning: 'R_f0' might be used 
> uninitialized in this function
> arch/powerpc/math-emu/fmadds.c:12: warning: 'R_f1' might be used 
> uninitialized in this function
> arch/powerpc/math-emu/fmadds.c:16: warning: 'T_e' might be used 
> uninitialized in this function
>  CC      arch/powerpc/math-emu/fmsub.o
> arch/powerpc/math-emu/fmsub.c: In function `fmsub':
> arch/powerpc/math-emu/fmsub.c:36: warning: right shift count is negative
> arch/powerpc/math-emu/fmsub.c:36: warning: left shift count >= width of 
> type
> arch/powerpc/math-emu/fmsub.c:44: warning: right shift count is negative
> arch/powerpc/math-emu/fmsub.c:44: warning: left shift count >= width of 
> type
> arch/powerpc/math-emu/fmsub.c:11: warning: 'R_e' might be used 
> uninitialized in this function
> arch/powerpc/math-emu/fmsub.c:11: warning: 'R_f0' might be used 
> uninitialized in this function
> arch/powerpc/math-emu/fmsub.c:11: warning: 'R_f1' might be used 
> uninitialized in this function
> arch/powerpc/math-emu/fmsub.c:15: warning: 'T_e' might be used 
> uninitialized in this function
>  CC      arch/powerpc/math-emu/fmsubs.o
> arch/powerpc/math-emu/fmsubs.c: In function `fmsubs':
> arch/powerpc/math-emu/fmsubs.c:37: warning: right shift count is negative
> arch/powerpc/math-emu/fmsubs.c:37: warning: left shift count >= width of 
> type
> arch/powerpc/math-emu/fmsubs.c:45: warning: right shift count is negative
> arch/powerpc/math-emu/fmsubs.c:45: warning: left shift count >= width of 
> type
> arch/powerpc/math-emu/fmsubs.c:12: warning: 'R_e' might be used 
> uninitialized in this function
> arch/powerpc/math-emu/fmsubs.c:12: warning: 'R_f0' might be used 
> uninitialized in this function
> arch/powerpc/math-emu/fmsubs.c:12: warning: 'R_f1' might be used 
> uninitialized in this function
> arch/powerpc/math-emu/fmsubs.c:16: warning: 'T_e' might be used 
> uninitialized in this function
>  CC      arch/powerpc/math-emu/fmul.o
> arch/powerpc/math-emu/fmul.c: In function `fmul':
> arch/powerpc/math-emu/fmul.c:34: warning: right shift count is negative
> arch/powerpc/math-emu/fmul.c:34: warning: left shift count >= width of type
> arch/powerpc/math-emu/fmul.c:13: warning: 'R_e' might be used 
> uninitialized in this function
>  CC      arch/powerpc/math-emu/fmuls.o
> arch/powerpc/math-emu/fmuls.c: In function `fmuls':
> arch/powerpc/math-emu/fmuls.c:35: warning: right shift count is negative
> arch/powerpc/math-emu/fmuls.c:35: warning: left shift count >= width of 
> type
> arch/powerpc/math-emu/fmuls.c:14: warning: 'R_e' might be used 
> uninitialized in this function
>  CC      arch/powerpc/math-emu/fnabs.o
>  CC      arch/powerpc/math-emu/fneg.o
>  CC      arch/powerpc/math-emu/types.o
> arch/powerpc/math-emu/types.c: In function `fp_unpack_d':
> arch/powerpc/math-emu/types.c:13: warning: left shift count is negative
> arch/powerpc/math-emu/types.c: In function `fp_pack_d':
> arch/powerpc/math-emu/types.c:28: warning: right shift count is negative
> arch/powerpc/math-emu/types.c:28: warning: right shift count is negative
> arch/powerpc/math-emu/types.c:28: warning: left shift count is negative
> arch/powerpc/math-emu/types.c:28: warning: right shift count is negative
> arch/powerpc/math-emu/types.c: In function `fp_pack_ds':
> arch/powerpc/math-emu/types.c:41: warning: right shift count is negative
> arch/powerpc/math-emu/types.c:45: warning: left shift count is negative
> arch/powerpc/math-emu/types.c:46: warning: right shift count is negative
> arch/powerpc/math-emu/types.c:46: warning: right shift count is negative
> arch/powerpc/math-emu/types.c:46: warning: left shift count is negative
> arch/powerpc/math-emu/types.c:46: warning: right shift count is negative
>  CC      arch/powerpc/math-emu/fnmadd.o
> arch/powerpc/math-emu/fnmadd.c: In function `fnmadd':
> arch/powerpc/math-emu/fnmadd.c:36: warning: right shift count is negative
> arch/powerpc/math-emu/fnmadd.c:36: warning: left shift count >= width of 
> type
> arch/powerpc/math-emu/fnmadd.c:41: warning: right shift count is negative
> arch/powerpc/math-emu/fnmadd.c:41: warning: left shift count >= width of 
> type
> arch/powerpc/math-emu/fnmadd.c:11: warning: 'R_e' might be used 
> uninitialized in this function
> arch/powerpc/math-emu/fnmadd.c:11: warning: 'R_f0' might be used 
> uninitialized in this function
> arch/powerpc/math-emu/fnmadd.c:11: warning: 'R_f1' might be used 
> uninitialized in this function
> arch/powerpc/math-emu/fnmadd.c:15: warning: 'T_e' might be used 
> uninitialized in this function
>  CC      arch/powerpc/math-emu/fnmadds.o
> arch/powerpc/math-emu/fnmadds.c: In function `fnmadds':
> arch/powerpc/math-emu/fnmadds.c:37: warning: right shift count is negative
> arch/powerpc/math-emu/fnmadds.c:37: warning: left shift count >= width 
> of type
> arch/powerpc/math-emu/fnmadds.c:42: warning: right shift count is negative
> arch/powerpc/math-emu/fnmadds.c:42: warning: left shift count >= width 
> of type
> arch/powerpc/math-emu/fnmadds.c:12: warning: 'R_e' might be used 
> uninitialized in this function
> arch/powerpc/math-emu/fnmadds.c:12: warning: 'R_f0' might be used 
> uninitialized in this function
> arch/powerpc/math-emu/fnmadds.c:12: warning: 'R_f1' might be used 
> uninitialized in this function
> arch/powerpc/math-emu/fnmadds.c:16: warning: 'T_e' might be used 
> uninitialized in this function
>  CC      arch/powerpc/math-emu/fnmsub.o
> arch/powerpc/math-emu/fnmsub.c: In function `fnmsub':
> arch/powerpc/math-emu/fnmsub.c:36: warning: right shift count is negative
> arch/powerpc/math-emu/fnmsub.c:36: warning: left shift count >= width of 
> type
> arch/powerpc/math-emu/fnmsub.c:44: warning: right shift count is negative
> arch/powerpc/math-emu/fnmsub.c:44: warning: left shift count >= width of 
> type
> arch/powerpc/math-emu/fnmsub.c:11: warning: 'R_e' might be used 
> uninitialized in this function
> arch/powerpc/math-emu/fnmsub.c:11: warning: 'R_f0' might be used 
> uninitialized in this function
> arch/powerpc/math-emu/fnmsub.c:11: warning: 'R_f1' might be used 
> uninitialized in this function
> arch/powerpc/math-emu/fnmsub.c:15: warning: 'T_e' might be used 
> uninitialized in this function
>  CC      arch/powerpc/math-emu/fnmsubs.o
> arch/powerpc/math-emu/fnmsubs.c: In function `fnmsubs':
> arch/powerpc/math-emu/fnmsubs.c:37: warning: right shift count is negative
> arch/powerpc/math-emu/fnmsubs.c:37: warning: left shift count >= width 
> of type
> arch/powerpc/math-emu/fnmsubs.c:45: warning: right shift count is negative
> arch/powerpc/math-emu/fnmsubs.c:45: warning: left shift count >= width 
> of type
> arch/powerpc/math-emu/fnmsubs.c:12: warning: 'R_e' might be used 
> uninitialized in this function
> arch/powerpc/math-emu/fnmsubs.c:12: warning: 'R_f0' might be used 
> uninitialized in this function
> arch/powerpc/math-emu/fnmsubs.c:12: warning: 'R_f1' might be used 
> uninitialized in this function
> arch/powerpc/math-emu/fnmsubs.c:16: warning: 'T_e' might be used 
> uninitialized in this function
>  CC      arch/powerpc/math-emu/fres.o
>  CC      arch/powerpc/math-emu/frsp.o
>  CC      arch/powerpc/math-emu/frsqrte.o
>  CC      arch/powerpc/math-emu/fsel.o
>  CC      arch/powerpc/math-emu/lfs.o
> arch/powerpc/math-emu/lfs.c: In function `lfs':
> arch/powerpc/math-emu/lfs.c:30: warning: left shift count is negative
>  CC      arch/powerpc/math-emu/fsqrt.o
> arch/powerpc/math-emu/fsqrt.c: In function `fsqrt':
> arch/powerpc/math-emu/fsqrt.c:30: warning: left shift count is negative
> arch/powerpc/math-emu/fsqrt.c:30: warning: left shift count is negative
> arch/powerpc/math-emu/fsqrt.c:30: warning: left shift count is negative
> arch/powerpc/math-emu/fsqrt.c:30: warning: left shift count is negative
> arch/powerpc/math-emu/fsqrt.c:30: warning: right shift count is negative
> arch/powerpc/math-emu/fsqrt.c:12: warning: 'R_c' might be used 
> uninitialized in this function
> arch/powerpc/math-emu/fsqrt.c:12: warning: 'R_s' might be used 
> uninitialized in this function
> arch/powerpc/math-emu/fsqrt.c:12: warning: 'R_e' might be used 
> uninitialized in this function
> arch/powerpc/math-emu/fsqrt.c:12: warning: 'R_f0' might be used 
> uninitialized in this function
> arch/powerpc/math-emu/fsqrt.c:12: warning: 'R_f1' might be used 
> uninitialized in this function
>  CC      arch/powerpc/math-emu/fsqrts.o
> arch/powerpc/math-emu/fsqrts.c: In function `fsqrts':
> arch/powerpc/math-emu/fsqrts.c:31: warning: left shift count is negative
> arch/powerpc/math-emu/fsqrts.c:31: warning: left shift count is negative
> arch/powerpc/math-emu/fsqrts.c:31: warning: left shift count is negative
> arch/powerpc/math-emu/fsqrts.c:31: warning: left shift count is negative
> arch/powerpc/math-emu/fsqrts.c:31: warning: right shift count is negative
> arch/powerpc/math-emu/fsqrts.c:13: warning: 'R_c' might be used 
> uninitialized in this function
> arch/powerpc/math-emu/fsqrts.c:13: warning: 'R_s' might be used 
> uninitialized in this function
> arch/powerpc/math-emu/fsqrts.c:13: warning: 'R_e' might be used 
> uninitialized in this function
> arch/powerpc/math-emu/fsqrts.c:13: warning: 'R_f0' might be used 
> uninitialized in this function
> arch/powerpc/math-emu/fsqrts.c:13: warning: 'R_f1' might be used 
> uninitialized in this function
>  CC      arch/powerpc/math-emu/fsub.o
> arch/powerpc/math-emu/fsub.c: In function `fsub':
> arch/powerpc/math-emu/fsub.c:34: warning: right shift count is negative
> arch/powerpc/math-emu/fsub.c:34: warning: left shift count >= width of type
> arch/powerpc/math-emu/fsub.c:13: warning: 'R_e' might be used 
> uninitialized in this function
> arch/powerpc/math-emu/fsub.c:13: warning: 'R_f0' might be used 
> uninitialized in this function
> arch/powerpc/math-emu/fsub.c:13: warning: 'R_f1' might be used 
> uninitialized in this function
>  CC      arch/powerpc/math-emu/fsubs.o
> arch/powerpc/math-emu/fsubs.c: In function `fsubs':
> arch/powerpc/math-emu/fsubs.c:35: warning: right shift count is negative
> arch/powerpc/math-emu/fsubs.c:35: warning: left shift count >= width of 
> type
> arch/powerpc/math-emu/fsubs.c:14: warning: 'R_e' might be used 
> uninitialized in this function
> arch/powerpc/math-emu/fsubs.c:14: warning: 'R_f0' might be used 
> uninitialized in this function
> arch/powerpc/math-emu/fsubs.c:14: warning: 'R_f1' might be used 
> uninitialized in this function
>  CC      arch/powerpc/math-emu/mcrfs.o
>  CC      arch/powerpc/math-emu/mffs.o
>  CC      arch/powerpc/math-emu/mtfsb0.o
>  CC      arch/powerpc/math-emu/mtfsb1.o
>  CC      arch/powerpc/math-emu/mtfsf.o
>  CC      arch/powerpc/math-emu/mtfsfi.o
>  CC      arch/powerpc/math-emu/stfiwx.o
>  CC      arch/powerpc/math-emu/stfs.o
> arch/powerpc/math-emu/stfs.c: In function `stfs':
> arch/powerpc/math-emu/stfs.c:27: warning: right shift count is negative
>  CC      arch/powerpc/math-emu/udivmodti4.o
>  LD      arch/powerpc/math-emu/built-in.o
>  CC      kernel/sched.o
>  CC      kernel/fork.o
>  CC      kernel/exec_domain.o
>  CC      kernel/panic.o
>  CC      kernel/printk.o
>  CC      kernel/profile.o
>  CC      kernel/exit.o
>  CC      kernel/itimer.o
>  CC      kernel/time.o
>  CC      kernel/softirq.o
>  CC      kernel/resource.o
>  CC      kernel/sysctl.o
>  CC      kernel/capability.o
>  CC      kernel/ptrace.o
>  CC      kernel/timer.o
>  CC      kernel/user.o
>  CC      kernel/signal.o
>  CC      kernel/sys.o
>  CC      kernel/kmod.o
>  CC      kernel/workqueue.o
>  CC      kernel/pid.o
>  CC      kernel/rcupdate.o
>  CC      kernel/extable.o
>  CC      kernel/params.o
>  CC      kernel/posix-timers.o
>  CC      kernel/kthread.o
>  CC      kernel/wait.o
>  CC      kernel/kfifo.o
>  CC      kernel/sys_ni.o
>  CC      kernel/posix-cpu-timers.o
>  CC      kernel/mutex.o
>  CC      kernel/hrtimer.o
>  CC      kernel/futex.o
>  CC      kernel/intermodule.o
>  CC      kernel/kallsyms.o
>  CC      kernel/ksysfs.o
>  CC      kernel/softlockup.o
>  CC      kernel/irq/handle.o
>  CC      kernel/irq/manage.o
>  CC      kernel/irq/spurious.o
>  CC      kernel/irq/proc.o
>  LD      kernel/irq/built-in.o
>  CC      kernel/seccomp.o
>  LD      kernel/built-in.o
>  CC      mm/bootmem.o
>  CC      mm/filemap.o
>  CC      mm/mempool.o
>  CC      mm/oom_kill.o
>  CC      mm/fadvise.o
>  CC      mm/page_alloc.o
>  CC      mm/page-writeback.o
>  CC      mm/pdflush.o
>  CC      mm/readahead.o
>  CC      mm/swap.o
>  CC      mm/truncate.o
>  CC      mm/vmscan.o
>  CC      mm/prio_tree.o
>  CC      mm/util.o
>  CC      mm/mmzone.o
>  CC      mm/fremap.o
>  CC      mm/highmem.o
>  CC      mm/madvise.o
>  CC      mm/memory.o
>  CC      mm/mincore.o
>  CC      mm/mlock.o
>  CC      mm/mmap.o
>  CC      mm/mprotect.o
>  CC      mm/mremap.o
>  CC      mm/msync.o
>  CC      mm/rmap.o
>  CC      mm/vmalloc.o
>  CC      mm/page_io.o
>  CC      mm/swap_state.o
>  CC      mm/swapfile.o
>  CC      mm/thrash.o
>  CC      mm/shmem.o
>  CC      mm/slab.o
>  CC      mm/filemap_xip.o
>  LD      mm/built-in.o
>  CC      fs/open.o
>  CC      fs/read_write.o
>  CC      fs/file_table.o
>  CC      fs/buffer.o
>  CC      fs/bio.o
>  CC      fs/super.o
>  CC      fs/block_dev.o
>  CC      fs/char_dev.o
>  CC      fs/stat.o
>  CC      fs/exec.o
>  CC      fs/pipe.o
>  CC      fs/namei.o
>  CC      fs/fcntl.o
>  CC      fs/ioctl.o
>  CC      fs/readdir.o
>  CC      fs/select.o
>  CC      fs/fifo.o
>  CC      fs/locks.o
>  CC      fs/dcache.o
>  CC      fs/inode.o
>  CC      fs/attr.o
>  CC      fs/bad_inode.o
>  CC      fs/file.o
>  CC      fs/filesystems.o
>  CC      fs/namespace.o
>  CC      fs/aio.o
>  CC      fs/seq_file.o
>  CC      fs/xattr.o
>  CC      fs/libfs.o
>  CC      fs/fs-writeback.o
>  CC      fs/mpage.o
>  CC      fs/direct-io.o
>  CC      fs/ioprio.o
>  CC      fs/pnode.o
>  CC      fs/drop_caches.o
>  CC      fs/splice.o
>  CC      fs/sync.o
>  CC      fs/inotify.o
>  CC      fs/eventpoll.o
>  CC      fs/binfmt_script.o
>  CC      fs/binfmt_elf.o
>  CC      fs/mbcache.o
>  CC      fs/posix_acl.o
>  CC      fs/xattr_acl.o
>  CC      fs/dnotify.o
>  CC      fs/autofs/dirhash.o
>  CC      fs/autofs/init.o
>  CC      fs/autofs/inode.o
>  CC      fs/autofs/root.o
>  CC      fs/autofs/symlink.o
>  CC      fs/autofs/waitq.o
>  LD      fs/autofs/autofs.o
>  LD      fs/autofs/built-in.o
>  CC      fs/autofs4/init.o
>  CC      fs/autofs4/inode.o
>  CC      fs/autofs4/root.o
>  CC      fs/autofs4/symlink.o
>  CC      fs/autofs4/waitq.o
>  CC      fs/autofs4/expire.o
>  LD      fs/autofs4/autofs4.o
>  LD      fs/autofs4/built-in.o
>  CC      fs/devpts/inode.o
>  LD      fs/devpts/devpts.o
>  LD      fs/devpts/built-in.o
>  CC      fs/ext2/balloc.o
>  CC      fs/ext2/bitmap.o
>  CC      fs/ext2/dir.o
>  CC      fs/ext2/file.o
>  CC      fs/ext2/fsync.o
>  CC      fs/ext2/ialloc.o
>  CC      fs/ext2/inode.o
>  CC      fs/ext2/ioctl.o
>  CC      fs/ext2/namei.o
>  CC      fs/ext2/super.o
>  CC      fs/ext2/symlink.o
>  CC      fs/ext2/xattr.o
>  CC      fs/ext2/xattr_user.o
>  CC      fs/ext2/xattr_trusted.o
>  CC      fs/ext2/acl.o
>  CC      fs/ext2/xattr_security.o
>  CC      fs/ext2/xip.o
>  LD      fs/ext2/ext2.o
>  LD      fs/ext2/built-in.o
>  CC      fs/nls/nls_base.o
>  LD      fs/nls/built-in.o
>  CC      fs/partitions/check.o
>  CC      fs/partitions/msdos.o
>  LD      fs/partitions/built-in.o
>  CC      fs/proc/mmu.o
>  CC      fs/proc/task_mmu.o
>  CC      fs/proc/inode.o
>  CC      fs/proc/root.o
>  CC      fs/proc/base.o
>  CC      fs/proc/generic.o
>  CC      fs/proc/array.o
>  CC      fs/proc/kmsg.o
>  CC      fs/proc/proc_tty.o
>  CC      fs/proc/proc_misc.o
>  CC      fs/proc/kcore.o
>  LD      fs/proc/proc.o
>  LD      fs/proc/built-in.o
>  CC      fs/ramfs/inode.o
>  CC      fs/ramfs/file-mmu.o
>  LD      fs/ramfs/ramfs.o
>  LD      fs/ramfs/built-in.o
>  CC      fs/sysfs/inode.o
>  CC      fs/sysfs/file.o
>  CC      fs/sysfs/dir.o
>  CC      fs/sysfs/symlink.o
>  CC      fs/sysfs/mount.o
>  CC      fs/sysfs/bin.o
>  CC      fs/sysfs/group.o
>  LD      fs/sysfs/built-in.o
>  LD      fs/built-in.o
>  CC      ipc/util.o
>  CC      ipc/msgutil.o
>  CC      ipc/msg.o
>  CC      ipc/sem.o
>  CC      ipc/shm.o
>  LD      ipc/built-in.o
>  CC      security/commoncap.o
>  LD      security/built-in.o
>  LD      crypto/built-in.o
>  CC      block/elevator.o
>  CC      block/ll_rw_blk.o
>  CC      block/ioctl.o
>  CC      block/genhd.o
>  CC      block/scsi_ioctl.o
>  CC      block/noop-iosched.o
>  CC      block/as-iosched.o
>  CC      block/deadline-iosched.o
>  CC      block/cfq-iosched.o
>  LD      block/built-in.o
>  CC      drivers/base/core.o
>  CC      drivers/base/sys.o
>  CC      drivers/base/bus.o
>  CC      drivers/base/dd.o
>  CC      drivers/base/driver.o
>  CC      drivers/base/class.o
>  CC      drivers/base/platform.o
>  CC      drivers/base/cpu.o
>  CC      drivers/base/firmware.o
>  CC      drivers/base/init.o
>  CC      drivers/base/map.o
>  CC      drivers/base/dmapool.o
>  CC      drivers/base/attribute_container.o
>  CC      drivers/base/transport_class.o
>  CC      drivers/base/power/shutdown.o
>  LD      drivers/base/power/built-in.o
>  LD      drivers/base/built-in.o
>  CC      drivers/block/loop.o
>  CC      drivers/block/xilinx_sysace/adapter.o
> drivers/block/xilinx_sysace/adapter.c:221: warning: 'xsysace_restart' 
> defined but not used
>  CC      drivers/block/xilinx_sysace/xbasic_types.o
>  CC      drivers/block/xilinx_sysace/xsysace.o
>  CC      drivers/block/xilinx_sysace/xsysace_g.o
>  CC      drivers/block/xilinx_sysace/xsysace_intr.o
>  CC      drivers/block/xilinx_sysace/xsysace_l.o
>  CC      drivers/block/xilinx_sysace/xsysace_compactflash.o
>  CC      drivers/block/xilinx_sysace/xsysace_jtagcfg.o
>  LD      drivers/block/xilinx_sysace/xilinx_sysace.o
>  LD      drivers/block/xilinx_sysace/built-in.o
>  LD      drivers/block/built-in.o
>  LD      drivers/cdrom/built-in.o
>  CC      drivers/char/mem.o
>  CC      drivers/char/random.o
>  CC      drivers/char/tty_io.o
>  CC      drivers/char/n_tty.o
>  CC      drivers/char/tty_ioctl.o
>  CC      drivers/char/pty.o
>  CC      drivers/char/misc.o
>  CC      drivers/char/vt_ioctl.o
>  CC      drivers/char/vc_screen.o
>  CC      drivers/char/consolemap.o
>  CONMK   drivers/char/consolemap_deftbl.c
>  CC      drivers/char/consolemap_deftbl.o
>  CC      drivers/char/selection.o
>  CC      drivers/char/keyboard.o
>  CC      drivers/char/vt.o
>  SHIPPED drivers/char/defkeymap.c
>  CC      drivers/char/defkeymap.o
>  LD      drivers/char/built-in.o
>  LD      drivers/firmware/built-in.o
>  CC      drivers/hwmon/hwmon.o
>  LD      drivers/hwmon/built-in.o
>  CC      drivers/input/input.o
>  CC      drivers/input/mousedev.o
>  LD      drivers/input/built-in.o
>  CC      drivers/input/serio/serio.o
>  CC      drivers/input/serio/i8042.o
>  CC      drivers/input/serio/serport.o
>  LD      drivers/input/serio/built-in.o
>  LD      drivers/media/common/built-in.o
>  LD      drivers/media/built-in.o
>  LD      drivers/mfd/built-in.o
>  LD      drivers/misc/built-in.o
>  CC      drivers/mtd/mtdcore.o
>  CC      drivers/mtd/mtdpart.o
>  CC      drivers/mtd/redboot.o
> drivers/mtd/redboot.c: In function `parse_redboot_partitions':
> drivers/mtd/redboot.c:103: warning: passing arg 1 of `__swab32s' from 
> incompatible pointer type
> drivers/mtd/redboot.c:104: warning: passing arg 1 of `__swab32s' from 
> incompatible pointer type
> drivers/mtd/redboot.c:105: warning: passing arg 1 of `__swab32s' from 
> incompatible pointer type
> drivers/mtd/redboot.c:106: warning: passing arg 1 of `__swab32s' from 
> incompatible pointer type
> drivers/mtd/redboot.c:107: warning: passing arg 1 of `__swab32s' from 
> incompatible pointer type
> drivers/mtd/redboot.c:108: warning: passing arg 1 of `__swab32s' from 
> incompatible pointer type
> drivers/mtd/redboot.c:109: warning: passing arg 1 of `__swab32s' from 
> incompatible pointer type
>  CC      drivers/mtd/mtdchar.o
>  CC      drivers/mtd/mtdblock.o
>  CC      drivers/mtd/mtd_blkdevs.o
>  CC      drivers/mtd/chips/chipreg.o
>  CC      drivers/mtd/chips/cfi_probe.o
>  CC      drivers/mtd/chips/cfi_util.o
>  CC      drivers/mtd/chips/cfi_cmdset_0002.o
> drivers/mtd/chips/cfi_cmdset_0002.c: In function `cfi_amdstd_init':
> drivers/mtd/chips/cfi_cmdset_0002.c:1766: warning: 
> `inter_module_register' is deprecated (declared at 
> include/linux/module.h:563)
> drivers/mtd/chips/cfi_cmdset_0002.c: In function `cfi_amdstd_exit':
> drivers/mtd/chips/cfi_cmdset_0002.c:1773: warning: 
> `inter_module_unregister' is deprecated (declared at 
> include/linux/module.h:564)
>  CC      drivers/mtd/chips/gen_probe.o
>  LD      drivers/mtd/chips/built-in.o
>  LD      drivers/mtd/devices/built-in.o
>  LD      drivers/mtd/maps/built-in.o
>  LD      drivers/mtd/nand/built-in.o
>  LD      drivers/mtd/onenand/built-in.o
>  LD      drivers/mtd/built-in.o
>  CC      drivers/net/Space.o
>  CC      drivers/net/loopback.o
>  CC      drivers/net/xilinx_temac/adapter.o
>  CC      drivers/net/xilinx_temac/xtemac.o
>  CC      drivers/net/xilinx_temac/xtemac_intr.o
>  CC      drivers/net/xilinx_temac/xtemac_intr_sgdma.o
>  CC      drivers/net/xilinx_temac/xtemac_sgdma.o
>  CC      drivers/net/xilinx_temac/xtemac_intr_fifo.o
>  CC      drivers/net/xilinx_temac/xtemac_fifo.o
>  CC      drivers/net/xilinx_temac/xtemac_l.o
>  CC      drivers/net/xilinx_temac/xtemac_control.o
>  LD      drivers/net/xilinx_temac/xilinx_temac.o
>  LD      drivers/net/xilinx_temac/built-in.o
>  LD      drivers/net/built-in.o
>  CC      drivers/serial/serial_core.o
>  CC      drivers/serial/8250.o
>  CC      drivers/serial/8250_early.o
>  LD      drivers/serial/built-in.o
>  LD      drivers/video/backlight/built-in.o
>  CC      drivers/video/console/dummycon.o
>  LD      drivers/video/console/built-in.o
>  LD      drivers/video/built-in.o
>  CC      drivers/xilinx_edk/xilinx_syms.o
>  CC      drivers/xilinx_edk/xbasic_types.o
>  CC      drivers/xilinx_edk/xpacket_fifo_v2_00_a.o
>  CC      drivers/xilinx_edk/xpacket_fifo_l_v2_00_a.o
>  CC      drivers/xilinx_edk/xdmav2.o
>  CC      drivers/xilinx_edk/xdmav2_intr.o
>  CC      drivers/xilinx_edk/xdmav2_sg.o
>  CC      drivers/xilinx_edk/xdmav2_simple.o
>  LD      drivers/xilinx_edk/built-in.o
>  LD      drivers/built-in.o
> drivers/xilinx_edk/built-in.o(.sdata+0x0): In function `XAssert':
> drivers/xilinx_edk/xbasic_types.c:105: multiple definition of 
> `XWaitInAssert'
> drivers/block/built-in.o(.sdata+0x0):drivers/block/loop.c:91: first 
> defined here
> drivers/xilinx_edk/built-in.o(.sbss+0x4): In function `XAssert':
> drivers/xilinx_edk/xbasic_types.c:105: multiple definition of 
> `XAssertStatus'
> drivers/block/built-in.o(.sbss+0x38):drivers/block/loop.c:98: first 
> defined here
> drivers/xilinx_edk/built-in.o(.text+0x44): In function 
> `XAssertSetCallback':
> drivers/xilinx_edk/xbasic_types.c:134: multiple definition of 
> `XAssertSetCallback'
> drivers/block/built-in.o(.text+0x24bc):drivers/block/xilinx_sysace/xbasic_types.c:134: 
> first defined here
> drivers/xilinx_edk/built-in.o(.text+0x0): In function `XAssert':
> drivers/xilinx_edk/xbasic_types.c:105: multiple definition of `XAssert'
> drivers/block/built-in.o(.text+0x2478):drivers/block/xilinx_sysace/xbasic_types.c:105: 
> first defined here
> drivers/xilinx_edk/built-in.o(.text+0x50): In function `XNullHandler':
> drivers/xilinx_edk/xbasic_types.c:153: multiple definition of 
> `XNullHandler'
> drivers/block/built-in.o(.text+0x24c8):drivers/block/xilinx_sysace/xbasic_types.c:153: 
> first defined here
> make[1]: *** [drivers/built-in.o] Error 1
> make: *** [drivers] Error 2
> 

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

* Re: some problems on the SystemACE driver.
  2006-07-16  9:40 ` Ameet Patil
@ 2006-07-16 13:17   ` Ming Liu
  0 siblings, 0 replies; 15+ messages in thread
From: Ming Liu @ 2006-07-16 13:17 UTC (permalink / raw)
  To: ammubhai; +Cc: linuxppc-embedded

Dear Ameet,
Good news! This time, it works well and no error during the compilation 
process. Finally we solved this sucking problem! Congratulations to us!

I have tried the kernel. It works well for the SystemACE driver, although I 
have not successfully made Temac work well. It shows that the network is 
disconnected and there is no device symbol in /dev directory. I think I 
should make this device in /dev manually and make it recognizable for 
Linux, right? If any guidance, please feel free to tell me. Thanks in 
advance.

>    I know this might be very tedious for you. But its the same for me
>especially when there is no need for me to do it. 

I will not feel it tedious because 1. in this process I can learn a lot; 2. 
it's really useful for me. :-) So I would like to consume time on that. 
Also, you are really helpful for my project. So if possible, I would like 
to cooperate with you and do something meanningful together. 

Thanks again for all your help and hard work recently. 

Regards
Ming

_________________________________________________________________
享用世界上最大的电子邮件系统― MSN Hotmail。  http://www.hotmail.com  

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

end of thread, other threads:[~2006-07-16 13:17 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-07-11 19:47 some problems on the SystemACE driver Ming Liu
2006-07-12  9:54 ` Ameet Patil
2006-07-12 15:55   ` Ming Liu
2006-07-12 18:22     ` Ameet Patil
2006-07-13 11:57       ` Ming Liu
     [not found] <BAY110-F40A48564C0A5B30AB0DCCB2690@phx.gbl>
2006-07-13 16:16 ` Ameet Patil
2006-07-13 21:41   ` Ming Liu
2006-07-14 11:12     ` Ameet Patil
  -- strict thread matches above, loose matches on Subject: below --
2006-07-14 13:09 Ming Liu
2006-07-14 15:10 ` Ameet Patil
2006-07-14 16:38   ` Ming Liu
2006-07-14 16:57     ` Ameet Patil
2006-07-14 21:06 Ming Liu
2006-07-16  9:40 ` Ameet Patil
2006-07-16 13:17   ` Ming Liu

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).