<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Re:Adding new module to the ltib in Other NXP Products</title>
    <link>https://community.nxp.com/t5/Other-NXP-Products/LTIB-for-mpc8349itx/m-p/131086#M95</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;you have to find a driver for your device or just make it and add your driver to the kernel tree, it doesn't depend of LTIB but the kernel.&lt;BR /&gt;To add your driver you have to read what i posted before on this section.&lt;BR /&gt;Good luck,&lt;BR /&gt;aurelien&lt;BR /&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 27 Nov 2007 19:43:04 GMT</pubDate>
    <dc:creator>aurelihein</dc:creator>
    <dc:date>2007-11-27T19:43:04Z</dc:date>
    <item>
      <title>LTIB for mpc8349itx</title>
      <link>https://community.nxp.com/t5/Other-NXP-Products/LTIB-for-mpc8349itx/m-p/131068#M77</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;I want to make a hello driver for this platform using LTIB.&lt;BR /&gt;&lt;BR /&gt;First, I execute this commands to get the kernel source and to compile the kernel&lt;BR /&gt;&lt;BR /&gt;./ltib -p kernel -m prep&lt;BR /&gt;./ltib -p kernel -m scbuild&lt;BR /&gt;&lt;BR /&gt;Now I get the kernel source in rpm/BUILD/linux&lt;BR /&gt;&lt;BR /&gt;I create a subdir rpm/BUILD/test with two files: test.c (my hello driver) and Makefile (attached with extension&amp;nbsp; .txt)&lt;BR /&gt;&lt;BR /&gt;To compile the driver, I use LTIB in shell mode:&lt;BR /&gt;&lt;BR /&gt;./ltib -m shell&lt;BR /&gt;LTIB&amp;gt;cd rpm/BUILD/test&lt;BR /&gt;LTIB&amp;gt;make&lt;BR /&gt;&lt;BR /&gt;But the compiler fail because it can't found &amp;lt;platforms/83xx/mpc8349_itx.h&amp;gt; (this file exist) in the linux kernel source (attached the file result.txt with the output of the make command).&lt;BR /&gt;&lt;BR /&gt;What is the problem? How to build a driver using the LTIB?&lt;BR /&gt;Thanks.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.freescale.com/files/community_files/MCUCOMM/msg374_result.txt" rel="nofollow" target="_self"&gt;result.txt&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://www.freescale.com/files/community_files/MCUCOMM/msg374_Makefile.txt" rel="nofollow" target="_self"&gt;Makefile.txt&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://www.freescale.com/files/community_files/MCUCOMM/msg374_test.c" rel="nofollow" target="_self"&gt;test.c&lt;/A&gt;&lt;DIV class="message-edit-history"&gt;&lt;SPAN class="edit-author"&gt;Message Edited by t.dowe on&lt;/SPAN&gt; &lt;SPAN class="local-date"&gt;2009-09-04&lt;/SPAN&gt; &lt;SPAN class="local-time"&gt;12:43 PM&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Apr 2007 18:05:44 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Other-NXP-Products/LTIB-for-mpc8349itx/m-p/131068#M77</guid>
      <dc:creator>fjpse</dc:creator>
      <dc:date>2007-04-18T18:05:44Z</dc:date>
    </item>
    <item>
      <title>Re: LTIB for mpc8349itx</title>
      <link>https://community.nxp.com/t5/Other-NXP-Products/LTIB-for-mpc8349itx/m-p/131069#M78</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;I already had your problem in doing driver with ltib, I'm gonna try to explain you how i did.&lt;BR /&gt;First of all you have to add your module in the kernel subdirectory, for example if you want to add test, you can put it under drivers :&lt;BR /&gt;linux-XXXX/drivers/test/&lt;BR /&gt;there you can copy your test.c file and add a Makefile with written in it&amp;nbsp; :&lt;BR /&gt;&lt;SPAN&gt;&lt;SPAN class="msg_source_code"&gt;&lt;SPAN class="text_smallest"&gt;Code:&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;PRE&gt;obj-m += test.o&lt;/PRE&gt;you have to add your path at the end of the Makefile under the directory drivers :&lt;BR /&gt;&lt;SPAN&gt;&lt;SPAN class="msg_source_code"&gt;&lt;SPAN class="text_smallest"&gt;Code:&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;PRE&gt;obj-m += test/&lt;/PRE&gt;&lt;BR /&gt;just recompile with ltib : ./ltib&lt;BR /&gt;load the rootfs.ext2.gz&lt;BR /&gt;and if you want to load your module go into /lib/modules/.../test and do insmod test.ko&lt;BR /&gt;enjoy&lt;BR /&gt;let me know if you have troubles&lt;BR /&gt;I would appreciate to know more what you implemented on your mpc8349 platform, because I am trying unsuccessfully to change the value of registers but I can't . . .&lt;BR /&gt;&lt;SPAN&gt;&lt;SPAN class="msg_source_code"&gt;&lt;SPAN class="text_smallest"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN class="msg_source_code"&gt;&lt;SPAN class="text_smallest"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;P&gt;Message Edited by aurelihein on &lt;SPAN class="date_text"&gt;2007-04-18&lt;/SPAN&gt;&lt;SPAN class="time_text"&gt;01:01 PM&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Apr 2007 19:00:38 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Other-NXP-Products/LTIB-for-mpc8349itx/m-p/131069#M78</guid>
      <dc:creator>aurelihein</dc:creator>
      <dc:date>2007-04-18T19:00:38Z</dc:date>
    </item>
    <item>
      <title>Re: LTIB for mpc8349itx</title>
      <link>https://community.nxp.com/t5/Other-NXP-Products/LTIB-for-mpc8349itx/m-p/131070#M79</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;Hi,&lt;/DIV&gt;&lt;DIV&gt;I have the same problem.&lt;/DIV&gt;&lt;DIV&gt;Can you send your Makefile, please ?&lt;/DIV&gt;&lt;DIV&gt;Thanks&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Apr 2007 22:03:31 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Other-NXP-Products/LTIB-for-mpc8349itx/m-p/131070#M79</guid>
      <dc:creator>mii</dc:creator>
      <dc:date>2007-04-18T22:03:31Z</dc:date>
    </item>
    <item>
      <title>Re: LTIB for mpc8349itx</title>
      <link>https://community.nxp.com/t5/Other-NXP-Products/LTIB-for-mpc8349itx/m-p/131071#M80</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;please, help me.&lt;/DIV&gt;&lt;DIV&gt;I have problem to create a module with ltib.&lt;/DIV&gt;&lt;DIV&gt;How to compile ?&lt;/DIV&gt;&lt;DIV&gt;Thanks&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2007 15:07:50 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Other-NXP-Products/LTIB-for-mpc8349itx/m-p/131071#M80</guid>
      <dc:creator>mii</dc:creator>
      <dc:date>2007-04-19T15:07:50Z</dc:date>
    </item>
    <item>
      <title>Re: LTIB for mpc8349itx</title>
      <link>https://community.nxp.com/t5/Other-NXP-Products/LTIB-for-mpc8349itx/m-p/131072#M81</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;mii,&lt;BR /&gt;&lt;BR /&gt;the makefile that I use is attached to the first message I sent (but renamed to Makefile.txt because it's not possible to attach a file without extension).&lt;BR /&gt;&lt;BR /&gt;Well, I have been doing some probes.&lt;BR /&gt;&lt;BR /&gt;If I execute "make V=1" (see Makefile in linux source directory) instead of "make" (inside LTIB), I can see the commands that will be executed. I get the next output:&lt;BR /&gt;&lt;BR /&gt;gcc -m32 -Wp,-MD,/home/javier/ltib/rpm/BUILD/test/.test.o.d&amp;nbsp; -nostdinc -isystem /opt/mtwk/usr/local/powerpc-linux/gcc-3.4.3-glibc-2.3.3/lib/gcc/powerpc-linux/3.4.3/include -D__KERNEL__ -Iinclude&amp;nbsp; -Wall -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -ffreestanding -O2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -fomit-frame-pointer -pipe -msoft-float&amp;nbsp; -fno-unit-at-a-time&amp;nbsp; -Iinclude/asm-i386/mach-default -Wdeclaration-after-statement&amp;nbsp;&amp;nbsp;&amp;nbsp; -DMODULE -DKBUILD_BASENAME=test -DKBUILD_MODNAME=test -c -o /home/javier/ltib/rpm/BUILD/test/.tmp_test.o /home/javier/ltib/rpm/BUILD/test/test.c&lt;BR /&gt;&lt;BR /&gt;One strange thing is the flag -Iinclude/asm-i386/mach-default.&lt;BR /&gt;&lt;BR /&gt;My host is a i386, but my target is a POWERPC.&lt;BR /&gt;Well, then I try this "make V=1 ARCH=ppc" and.....voilà!&lt;BR /&gt;&lt;BR /&gt;IT'S COMPILE OK!!!!&lt;BR /&gt;&lt;BR /&gt;The command is gcc instead of powerpc-linux-gcc or some similar, strange, but I can load and unload the driver in the mpc8349itx platform (and the messages are output). I suppose that inside LTIB, gcc is really the powerpc compiler.&lt;BR /&gt;&lt;BR /&gt;Now, I want to make a driver that manipulates a hardware timer and its interrupt.&lt;BR /&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2007 16:30:37 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Other-NXP-Products/LTIB-for-mpc8349itx/m-p/131072#M81</guid>
      <dc:creator>fjpse</dc:creator>
      <dc:date>2007-04-19T16:30:37Z</dc:date>
    </item>
    <item>
      <title>Re: LTIB for mpc8349itx</title>
      <link>https://community.nxp.com/t5/Other-NXP-Products/LTIB-for-mpc8349itx/m-p/131073#M82</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;Thanks a lot, the compile is OK.&lt;/DIV&gt;&lt;DIV&gt;Now, I have&amp;nbsp;the&amp;nbsp;module&amp;nbsp;nammed &lt;EM&gt;&lt;STRONG&gt;test.ko&lt;/STRONG&gt;&lt;/EM&gt; (under rpm/BUILD/test/).&lt;/DIV&gt;&lt;DIV&gt;But after&amp;nbsp;the commands&amp;nbsp;: &lt;EM&gt;&lt;STRONG&gt;./ltib -p kernel -m scbuild&lt;/STRONG&gt;&lt;/EM&gt; and &lt;EM&gt;&lt;STRONG&gt;./ltib -p -m scdeploy&lt;/STRONG&gt;&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;this module &lt;EM&gt;&lt;STRONG&gt;test.ko&lt;/STRONG&gt;&lt;/EM&gt; is not present in the files :&amp;nbsp;rootfs.ext2.gz.uboot or uImage.&lt;/DIV&gt;&lt;DIV&gt;I load this files by tftp to boot (I supposed that you use NFS to boot).&lt;/DIV&gt;&lt;DIV&gt;Do you know how to include the module &lt;EM&gt;&lt;STRONG&gt;test.ko&lt;/STRONG&gt; (under rootfs/lib/module I supposed) ?&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;Thanks&lt;/DIV&gt;&lt;DIV&gt;Mii&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2007 17:29:08 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Other-NXP-Products/LTIB-for-mpc8349itx/m-p/131073#M82</guid>
      <dc:creator>mii</dc:creator>
      <dc:date>2007-04-19T17:29:08Z</dc:date>
    </item>
    <item>
      <title>Re: LTIB for mpc8349itx</title>
      <link>https://community.nxp.com/t5/Other-NXP-Products/LTIB-for-mpc8349itx/m-p/131074#M83</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;aurelihein posted a message indicating how to make it (the second message of this thread), but i don't probe that. (sorry)&lt;BR /&gt;&lt;BR /&gt;At the moment, I`m working with the small-ramfs (saved into flash memory), because I have to do some tests over the platform before beginning the deployment of the system.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2007 18:29:19 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Other-NXP-Products/LTIB-for-mpc8349itx/m-p/131074#M83</guid>
      <dc:creator>fjpse</dc:creator>
      <dc:date>2007-04-19T18:29:19Z</dc:date>
    </item>
    <item>
      <title>Re: LTIB for mpc8349itx</title>
      <link>https://community.nxp.com/t5/Other-NXP-Products/LTIB-for-mpc8349itx/m-p/131075#M84</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;I have seen the aurelihein message, but not understand.&lt;/DIV&gt;&lt;DIV&gt;My&amp;nbsp;directory &lt;STRONG&gt;&lt;EM&gt;/rootfs/lib/modules/2.6.13.4/sources&lt;/EM&gt;&lt;/STRONG&gt; is a link&lt;/DIV&gt;&lt;DIV&gt;to&amp;nbsp;&lt;EM&gt;&lt;STRONG&gt;/rpm/BUILD/linux-2.6.13&lt;/STRONG&gt;&lt;/EM&gt;.&lt;/DIV&gt;&lt;DIV&gt;To use small-ramfs, you must create rootfs.ext2.gz.uboot, I suppose ?&lt;/DIV&gt;&lt;DIV&gt;Do you have modified &lt;STRONG&gt;&lt;EM&gt;.lkc&lt;/EM&gt;&lt;/STRONG&gt; file to include &lt;STRONG&gt;&lt;EM&gt;test.ko&lt;/EM&gt;&lt;/STRONG&gt; in your small-ramfs ?&lt;/DIV&gt;&lt;DIV&gt;Thanks for your time.&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2007 18:48:56 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Other-NXP-Products/LTIB-for-mpc8349itx/m-p/131075#M84</guid>
      <dc:creator>mii</dc:creator>
      <dc:date>2007-04-19T18:48:56Z</dc:date>
    </item>
    <item>
      <title>Re: LTIB for mpc8349itx</title>
      <link>https://community.nxp.com/t5/Other-NXP-Products/LTIB-for-mpc8349itx/m-p/131076#M85</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;sorry fjpse, I figured out that i didn't answer your question actually ! But what you did will help me !&lt;BR /&gt;To add your module in the final rootfs.ext2.gz that you will download into your board you have to add your directory "test" into the kernel drivers's folder&lt;BR /&gt;I will try to explain the whole method :&lt;BR /&gt;when you are in your ltib folder do&lt;BR /&gt;&lt;B&gt;&lt;I&gt;./ltib -m prep -p kernel&lt;BR /&gt;&lt;/I&gt;&lt;/B&gt;now your kernel is decompressed into the rpm/BUILD directory(things that you already did)&lt;BR /&gt;&lt;I&gt;&lt;B&gt;cd rpm/BUILD/linux-2.6.13/drivers/&lt;BR /&gt;mkdir test&lt;BR /&gt;cd test&lt;BR /&gt;&lt;/B&gt;&lt;/I&gt;copy into this director your test.c and the Makefile i gave you before&lt;BR /&gt;&lt;I&gt;&lt;B&gt;cd ..&lt;BR /&gt;&lt;/B&gt;&lt;/I&gt;now your are in the drivers' directory, change the makefile to add the line i gave :&lt;BR /&gt;&lt;B&gt;&lt;I&gt;obj-m += test/&lt;BR /&gt;&lt;/I&gt;&lt;/B&gt;return into your ltib directory and do&lt;BR /&gt;&lt;B&gt;&lt;I&gt;./ltib&lt;BR /&gt;&lt;/I&gt;&lt;/B&gt;when it will be finished you should find your module into the /lib/modules.../test/test.ko&lt;BR /&gt;&lt;BR /&gt;let me know if you have trouble, I was kinda busy sorry if i didn't help you earlier&lt;BR /&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2007 21:13:20 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Other-NXP-Products/LTIB-for-mpc8349itx/m-p/131076#M85</guid>
      <dc:creator>aurelihein</dc:creator>
      <dc:date>2007-04-19T21:13:20Z</dc:date>
    </item>
    <item>
      <title>Re: LTIB for mpc8349itx</title>
      <link>https://community.nxp.com/t5/Other-NXP-Products/LTIB-for-mpc8349itx/m-p/131077#M86</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;i tried what you did, let me show you what i got :&lt;BR /&gt;&lt;I&gt;&lt;B&gt;abouin@FW04:~/ltib/rpm/BUILD/test$ make V=1 ARCH=ppc&lt;BR /&gt;make -C ../linux M=/home/abouin/ltib/rpm/BUILD/test&lt;BR /&gt;make[1]: entrant dans le répertoire « /home/abouin/ltib/rpm/BUILD/linux-2.6.13 »&lt;BR /&gt;mkdir -p /home/abouin/ltib/rpm/BUILD/test/.tmp_versions&lt;BR /&gt;make -f scripts/Makefile.build obj=/home/abouin/ltib/rpm/BUILD/test&lt;BR /&gt;&amp;nbsp;gcc -m32 -Wp,-MD,/home/abouin/ltib/rpm/BUILD/test/.test.o.d&amp;nbsp; -nostdinc -isystem /usr/lib/gcc/i486-linux-gnu/4.1.2/include -D__KERNEL__ -Iinclude&amp;nbsp; -Iarch/ppc -Wall -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -ffreestanding -O2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -fomit-frame-pointer -Iarch/ppc -msoft-float -pipe -ffixed-r2 -mmultiple -mstring -Wa,-maltivec&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -DMODULE -DKBUILD_BASENAME=test -DKBUILD_MODNAME=test -c -o /home/abouin/ltib/rpm/BUILD/test/.tmp_test.o /home/abouin/ltib/rpm/BUILD/test/test.c&lt;BR /&gt;cc1: error: unrecognized command line option "-mmultiple"&lt;BR /&gt;cc1: error: unrecognized command line option "-mstring"&lt;BR /&gt;cc1: warning: unknown register name: r2&lt;BR /&gt;as: option non reconnue « -maltivec »&lt;BR /&gt;make[2]: *** [/home/abouin/ltib/rpm/BUILD/test/test.o] Erreur 1&lt;BR /&gt;make[1]: *** [_module_/home/abouin/ltib/rpm/BUILD/test] Erreur 2&lt;BR /&gt;make[1]: quittant le répertoire « /home/abouin/ltib/rpm/BUILD/linux-2.6.13 »&lt;BR /&gt;make: *** [default] Erreur 2&lt;BR /&gt;&lt;BR /&gt;&lt;/B&gt;&lt;/I&gt;if you see what goes wrong . . .&lt;BR /&gt;thank you&lt;BR /&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2007 21:39:13 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Other-NXP-Products/LTIB-for-mpc8349itx/m-p/131077#M86</guid>
      <dc:creator>aurelihein</dc:creator>
      <dc:date>2007-04-19T21:39:13Z</dc:date>
    </item>
    <item>
      <title>Re: LTIB for mpc8349itx</title>
      <link>https://community.nxp.com/t5/Other-NXP-Products/LTIB-for-mpc8349itx/m-p/131078#M87</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;aurelihein, try the command '&lt;EM&gt;&lt;STRONG&gt;make V=1 ARCH=ppc&lt;/STRONG&gt;&lt;/EM&gt;' in a shell ltib (enter&amp;nbsp;by command '&lt;STRONG&gt;./ltib -m shell&lt;/STRONG&gt;').&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2007 21:57:45 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Other-NXP-Products/LTIB-for-mpc8349itx/m-p/131078#M87</guid>
      <dc:creator>mii</dc:creator>
      <dc:date>2007-04-19T21:57:45Z</dc:date>
    </item>
    <item>
      <title>Re: LTIB for mpc8349itx</title>
      <link>https://community.nxp.com/t5/Other-NXP-Products/LTIB-for-mpc8349itx/m-p/131079#M88</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;aurelihein, I haven't any problem adding the module to the root filesystem. Thanks for your explains.&lt;BR /&gt;&lt;BR /&gt;Now, I'm trying to access to the IMMR. The register IMMRBAR (offset 0h) indicates the physical address of the IMMR block, and the register SPRIDR (offset 108h) indicates the chip model and revision.&lt;BR /&gt;&lt;BR /&gt;I do this using VIRT_IMMRBAR, the virtual address associated with the IMMR.&lt;BR /&gt;&lt;BR /&gt;I've attached the new test.c file that do it.&lt;BR /&gt;&lt;BR /&gt;It works!. The physical address of IMMR is E0000000H, defined in the u-boot file include/configs/MPC8349ITX.h (CFG_IMMRBAR)&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.freescale.com/files/community_files/MCUCOMM/msg391_test.c" rel="nofollow" target="_self"&gt;test.c&lt;/A&gt;&lt;DIV class="message-edit-history"&gt;&lt;SPAN class="edit-author"&gt;Message Edited by t.dowe on&lt;/SPAN&gt; &lt;SPAN class="local-date"&gt;2009-09-04&lt;/SPAN&gt; &lt;SPAN class="local-time"&gt;12:44 PM&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Apr 2007 05:40:15 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Other-NXP-Products/LTIB-for-mpc8349itx/m-p/131079#M88</guid>
      <dc:creator>fjpse</dc:creator>
      <dc:date>2007-04-20T05:40:15Z</dc:date>
    </item>
    <item>
      <title>Re: LTIB for mpc8349itx</title>
      <link>https://community.nxp.com/t5/Other-NXP-Products/LTIB-for-mpc8349itx/m-p/131080#M89</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;aurelihein, thanks, it's OK for me too. The&lt;EM&gt;&lt;STRONG&gt;test.ko&lt;/STRONG&gt;&lt;/EM&gt; file is in the root file system.&lt;/DIV&gt;&lt;DIV&gt;Thanks you for your explain.&lt;/DIV&gt;&lt;DIV&gt;fjpse, thanks too. I will try your &lt;STRONG&gt;&lt;EM&gt;test.c&lt;/EM&gt;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV&gt;Mii&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;PS : I have post a other message on the subject "&lt;STRONG&gt;&lt;EM&gt;Add a PCI card on MPC8349E-mITX-GP board&lt;/EM&gt;&lt;/STRONG&gt; "&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;FONT color="#330000"&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Apr 2007 13:59:50 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Other-NXP-Products/LTIB-for-mpc8349itx/m-p/131080#M89</guid>
      <dc:creator>mii</dc:creator>
      <dc:date>2007-04-20T13:59:50Z</dc:date>
    </item>
    <item>
      <title>Re: LTIB for mpc8349itx</title>
      <link>https://community.nxp.com/t5/Other-NXP-Products/LTIB-for-mpc8349itx/m-p/131081#M90</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;Thank you all !&lt;BR /&gt;It's working perfectly, I can change the register that i wan't !!!&lt;BR /&gt;I'm glad i helped,&lt;BR /&gt;We should keep update of what we are all able to do with our board&lt;BR /&gt;:smileywink:&lt;BR /&gt;I already change the state of GPIOs with your help&lt;BR /&gt;The next step will be the local bus with all the parameters&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Apr 2007 14:59:22 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Other-NXP-Products/LTIB-for-mpc8349itx/m-p/131081#M90</guid>
      <dc:creator>aurelihein</dc:creator>
      <dc:date>2007-04-20T14:59:22Z</dc:date>
    </item>
    <item>
      <title>Re: LTIB for mpc8349itx</title>
      <link>https://community.nxp.com/t5/Other-NXP-Products/LTIB-for-mpc8349itx/m-p/131082#M91</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;FONT size="4"&gt;&lt;FONT face="Arial"&gt;I have the ltib implemented in my board MPC8343&lt;BR /&gt;&lt;BR /&gt;Now I have to activate the temperature sensor(partno. EMC1023) for our board.&lt;BR /&gt;&lt;BR /&gt;At present ltib have the support for the some other temperature sensor. I need to make it compactable to my board. For that what I need to do?&lt;BR /&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Oct 2007 19:48:26 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Other-NXP-Products/LTIB-for-mpc8349itx/m-p/131082#M91</guid>
      <dc:creator>Rekha</dc:creator>
      <dc:date>2007-10-24T19:48:26Z</dc:date>
    </item>
    <item>
      <title>Re: LTIB for mpc8349itx</title>
      <link>https://community.nxp.com/t5/Other-NXP-Products/LTIB-for-mpc8349itx/m-p/131083#M92</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Hi &lt;SPAN class="title_big"&gt;&lt;SPAN&gt;&lt;STRONG&gt;&lt;FONT size="2"&gt;aurelihein,&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN class="title_big"&gt;&lt;SPAN&gt;&lt;STRONG&gt;&lt;FONT size="2"&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN class="title_big"&gt;&lt;SPAN&gt;&lt;STRONG&gt;&lt;FONT size="2"&gt;I am new for Ltib.&amp;nbsp;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN class="title_big"&gt;&lt;SPAN&gt;&lt;STRONG&gt;&lt;FONT size="2"&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN class="title_big"&gt;&lt;SPAN&gt;&lt;STRONG&gt;&lt;FONT size="2"&gt;Can you send me the make file?&amp;nbsp; Thanks very much!&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN class="title_big"&gt;&lt;SPAN&gt;&lt;STRONG&gt;&lt;FONT size="2"&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN class="title_big"&gt;&lt;SPAN&gt;&lt;STRONG&gt;&lt;FONT size="2"&gt;Cathy&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Nov 2007 08:07:10 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Other-NXP-Products/LTIB-for-mpc8349itx/m-p/131083#M92</guid>
      <dc:creator>cathy</dc:creator>
      <dc:date>2007-11-14T08:07:10Z</dc:date>
    </item>
    <item>
      <title>Re: LTIB for mpc8349itx</title>
      <link>https://community.nxp.com/t5/Other-NXP-Products/LTIB-for-mpc8349itx/m-p/131084#M93</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;Hi,&lt;BR /&gt;Google is your friend don't forget it ! you can download the file here &lt;A href="http://download.savannah.nongnu.org/releases/ltib/ltib-6.2.2-sv.tar.gz" target="test_blank"&gt;http://download.savannah.nongnu.org/releases/ltib/ltib-6.2.2-sv.tar.gz&lt;/A&gt; afterwards you should read the README and the documents in generale...&lt;BR /&gt;good luck,&lt;BR /&gt;aurelien&lt;BR /&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Nov 2007 16:18:20 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Other-NXP-Products/LTIB-for-mpc8349itx/m-p/131084#M93</guid>
      <dc:creator>aurelihein</dc:creator>
      <dc:date>2007-11-14T16:18:20Z</dc:date>
    </item>
    <item>
      <title>Re:Adding new module to the ltib</title>
      <link>https://community.nxp.com/t5/Other-NXP-Products/LTIB-for-mpc8349itx/m-p/131085#M94</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;We have compiled the ltib for the powerpc mpc8343.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Its work fine.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Now we need to add a temperature sensor module to the existing ltib. (we have MPC1023 temperature sensor in our board, which is not supported by the ltib)&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Can any one tell me the steps to add the new module ot the ltib.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Note: I am new to the kernel development process&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Nov 2007 18:23:22 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Other-NXP-Products/LTIB-for-mpc8349itx/m-p/131085#M94</guid>
      <dc:creator>Rekha</dc:creator>
      <dc:date>2007-11-27T18:23:22Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Adding new module to the ltib</title>
      <link>https://community.nxp.com/t5/Other-NXP-Products/LTIB-for-mpc8349itx/m-p/131086#M95</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;you have to find a driver for your device or just make it and add your driver to the kernel tree, it doesn't depend of LTIB but the kernel.&lt;BR /&gt;To add your driver you have to read what i posted before on this section.&lt;BR /&gt;Good luck,&lt;BR /&gt;aurelien&lt;BR /&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Nov 2007 19:43:04 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Other-NXP-Products/LTIB-for-mpc8349itx/m-p/131086#M95</guid>
      <dc:creator>aurelihein</dc:creator>
      <dc:date>2007-11-27T19:43:04Z</dc:date>
    </item>
    <item>
      <title>Re: LTIB for mpc8349itx</title>
      <link>https://community.nxp.com/t5/Other-NXP-Products/LTIB-for-mpc8349itx/m-p/131087#M96</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;&lt;/FONT&gt;&lt;P&gt;&lt;FONT size="2"&gt;fjpse,&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;I have tried compiling the "hello" module as&amp;nbsp;you said, but I got error while compiling.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;I used the your&amp;nbsp;test.c and Makefile&amp;nbsp;only&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;Error is:&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;LTIB&amp;gt; cd rpm/BUILD/test/&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;LTIB&amp;gt; make V=1 ARCH=ppc&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;make -C ../linux-2.6.10/ M=/home/ppc/try/ltib-mpc8349emds-20060414/rpm/BUILD/test&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;make[1]: Entering directory `/home/ppc/try/ltib-mpc8349emds-20060414/rpm/BUILD/linux-2.6.10'&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;mkdir -p /home/ppc/try/ltib-mpc8349emds-20060414/rpm/BUILD/test/.tmp_versions&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;make -f scripts/Makefile.build obj=/home/ppc/try/ltib-mpc8349emds-20060414/rpm/BUILD/test&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;rm -f /home/ppc/try/ltib-mpc8349emds-20060414/rpm/BUILD/test/built-in.o; ar rcs /home/ppc/try/ltib-mpc8349emds-20060414/rpm/BUILD/test/built-in.o&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;gcc -g2 -gdwarf-2 -m32 -Wp,-MD,/home/ppc/try/ltib-mpc8349emds-20060414/rpm/BUILD/test/.test.o.d -nostdinc -isystem /home/ppc/try/ltib-mpc8349emds-20060414/rootfs/usr/lib//include -D__KERNEL__ -Iinclude -Iarch/ppc -Wall&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;-Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -ffreestanding -O1 -fomit-frame-pointer -Iarch/ppc -msoft-float -pipe -ffixed-r2 -mmultiple -mstring -Wa,-maltivec -Wdeclaration-after-statement -DMODULE -DKBUILD_BASENAME=test -DKBUILD_MODNAME=test -c -o /home/ppc/try/ltib-mpc8349emds-20060414/rpm/BUILD/test/test.o /home/ppc/try/ltib-mpc8349emds-20060414/rpm/BUILD/test/test.c&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;Building modules, stage 2.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;make -rR -f /home/ppc/try/ltib-mpc8349emds-20060414/rpm/BUILD/linux-2.6.10/scripts/Makefile.modpost&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;scripts/mod/modpost -i /home/ppc/try/ltib-mpc8349emds-20060414/rpm/BUILD/linux-2.6.10/Module.symvers vmlinux /home/ppc/try/ltib-mpc8349emds-20060414/rpm/BUILD/test/test.o&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;/bin/sh: line 1: scripts/mod/modpost: No such file or directory&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;make[2]: *** [__modpost] Error 127&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;make[1]: *** [modules] Error 2&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;make[1]: Leaving directory `/home/ppc/try/ltib-mpc8349emds-20060414/rpm/BUILD/linux-2.6.10'&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;make: *** [default] Error 2&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;Can&amp;nbsp;you tell me what mistake I am doing?&lt;/FONT&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Nov 2007 15:27:07 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Other-NXP-Products/LTIB-for-mpc8349itx/m-p/131087#M96</guid>
      <dc:creator>Rekha</dc:creator>
      <dc:date>2007-11-30T15:27:07Z</dc:date>
    </item>
  </channel>
</rss>

