<feed xmlns='http://www.w3.org/2005/Atom'>
<title>u-boot.git/cpu/mpc86xx, branch v1.3.0-rc2</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<id>http://cgit.235523.xyz/u-boot.git/atom/cpu/mpc86xx?h=v1.3.0-rc2</id>
<link rel='self' href='http://cgit.235523.xyz/u-boot.git/atom/cpu/mpc86xx?h=v1.3.0-rc2'/>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/'/>
<updated>2007-09-15T18:48:41Z</updated>
<entry>
<title>Fix cases where DECLARE_GLOBAL_DATA_PTR was not declared as global</title>
<updated>2007-09-15T18:48:41Z</updated>
<author>
<name>Wolfgang Denk</name>
<email>wd@denx.de</email>
</author>
<published>2007-09-15T18:48:41Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=1218abf1b5817a39a82399b4b928b00750575bda'/>
<id>urn:sha1:1218abf1b5817a39a82399b4b928b00750575bda</id>
<content type='text'>
Signed-off-by: Wolfgang Denk &lt;wd@denx.de&gt;
</content>
</entry>
<entry>
<title>cpu/86xx fixes.</title>
<updated>2007-08-10T16:02:32Z</updated>
<author>
<name>Jon Loeliger</name>
<email>jdl@freescale.com</email>
</author>
<published>2007-08-02T19:42:20Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=cfc7a7f5bb3273c9951173c788001d45118f141f'/>
<id>urn:sha1:cfc7a7f5bb3273c9951173c788001d45118f141f</id>
<content type='text'>
Remove rev 1 fixes.
Always set PICGCR_MODE.
Enable machine check and provide board config option
to set and handle SoC error interrupts.

Include MSSSR0 in error message.

Isolate a RAMBOOT bit of code with #ifdef CFG_RAMBOOT.

Signed-off-by: Ed Swarthout &lt;Ed.Swarthout@freescale.com&gt;
Signed-off-by: Jon Loeliger &lt;jdl@freescale.com&gt;
</content>
</entry>
<entry>
<title>Make MPC8641's PCI/PCI-E driver a common driver for many FSL parts.</title>
<updated>2007-08-05T22:22:24Z</updated>
<author>
<name>Ed Swarthout</name>
<email>Ed.Swarthout@freescale.com</email>
</author>
<published>2007-08-02T19:09:49Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=63cec5814fab5d2b1c86982327433807a5ac0249'/>
<id>urn:sha1:63cec5814fab5d2b1c86982327433807a5ac0249</id>
<content type='text'>
All of the PCI/PCI-Express driver and initialization code that
was in the MPC8641HPCN port has now been moved into the common
drivers/fsl_pci_init.c.  In a subsequent patch, this will be
utilized by the 85xx ports as well.

Common PCI-E IMMAP register blocks for FSL 85xx/86xx are added.

Also enable the second PCI-Express controller on 8641
by getting its BATS and CFG_ setup right.

Fixed a u16 vendor compiler warning in AHCI driver too.

Signed-off-by: Ed Swarthout &lt;Ed.Swarthout@freescale.com&gt;
Signed-off-by: Zhang Wei &lt;wei.zhang@freescale.com&gt;
Signed-off-by: Jon Loeliger &lt;jdl@freescale.com&gt;
</content>
</entry>
<entry>
<title>Fix build errors and warnings / code cleanup.</title>
<updated>2007-08-01T22:48:45Z</updated>
<author>
<name>Wolfgang Denk</name>
<email>wd@denx.de</email>
</author>
<published>2007-08-01T22:48:45Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=cdd917a43da6fa7fc8f54a3cc9f420ce5ecf3197'/>
<id>urn:sha1:cdd917a43da6fa7fc8f54a3cc9f420ce5ecf3197</id>
<content type='text'>
Signed-off-by: Wolfgang Denk &lt;wd@denx.de&gt;
</content>
</entry>
<entry>
<title>mpc86xx: Remove old CFG_CMD_* references.</title>
<updated>2007-07-05T01:41:40Z</updated>
<author>
<name>Jon Loeliger</name>
<email>jdl@jdl.com</email>
</author>
<published>2007-06-13T18:23:15Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=b24629fa377214d63bb40d1360e354b6d3e4af56'/>
<id>urn:sha1:b24629fa377214d63bb40d1360e354b6d3e4af56</id>
<content type='text'>
Signed-off-by: Jon Loeliger &lt;jdl@freescale.com&gt;
</content>
</entry>
<entry>
<title>cpu/mpc*/ : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).</title>
<updated>2007-07-03T22:23:18Z</updated>
<author>
<name>Jon Loeliger</name>
<email>jdl@jdl.com</email>
</author>
<published>2007-06-12T00:03:08Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=f48070fe5fe440dfb5ee5268c920de70e48ea327'/>
<id>urn:sha1:f48070fe5fe440dfb5ee5268c920de70e48ea327</id>
<content type='text'>
This is a compatibility step that allows both the older form
and the new form to co-exist for a while until the older can
be removed entirely.

All transformations are of the form:
Before:
    #if (CONFIG_COMMANDS &amp; CFG_CMD_AUTOSCRIPT)
After:
    #if (CONFIG_COMMANDS &amp; CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)

Signed-off-by: Jon Loeliger &lt;jdl@freescale.com&gt;
</content>
</entry>
<entry>
<title>Merge with /home/wd/git/u-boot/custodian/u-boot-testing</title>
<updated>2007-07-03T13:07:56Z</updated>
<author>
<name>Wolfgang Denk</name>
<email>wd@denx.de</email>
</author>
<published>2007-07-03T13:07:56Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=98c440bee623ecdd5322852732b883e696fb2140'/>
<id>urn:sha1:98c440bee623ecdd5322852732b883e696fb2140</id>
<content type='text'>
</content>
</entry>
<entry>
<title>[ppc] Fix build breakage for all non-4xx PowerPC variants.</title>
<updated>2007-06-22T12:58:04Z</updated>
<author>
<name>Rafal Jaworowski</name>
<email>raj@semihalf.com</email>
</author>
<published>2007-06-22T12:58:04Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=02032e8f14751a1a751b09240a4f1cf9f8a2077f'/>
<id>urn:sha1:02032e8f14751a1a751b09240a4f1cf9f8a2077f</id>
<content type='text'>
- adapt to the more generic EXCEPTION_PROLOG and CRIT_EXCEPTION macros
- minor 4xx cleanup
</content>
</entry>
<entry>
<title>mpc8641 image size cleanup</title>
<updated>2007-06-05T18:27:34Z</updated>
<author>
<name>Ed Swarthout</name>
<email>Ed.Swarthout@freescale.com</email>
</author>
<published>2007-06-05T17:30:52Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=32922cdc470fdfd39bea0c1c4f582d3fb340421e'/>
<id>urn:sha1:32922cdc470fdfd39bea0c1c4f582d3fb340421e</id>
<content type='text'>
e600 does not have a bootpg restriction.
Move the version string to beginning of image at fff00000.
Resetvec.S is not needed.
Update flash copy instructions.
Add tftpflash env variable

Signed-off-by: Ed Swarthout &lt;Ed.Swarthout@freescale.com&gt;
Signed-off-by: Jon Loeliger &lt;jdl@freescale.com&gt;
</content>
</entry>
<entry>
<title>Reduce CONFIG_MPC8YXX_TSECx to CONFIG_TSECx</title>
<updated>2007-05-16T22:07:21Z</updated>
<author>
<name>Kim Phillips</name>
<email>kim.phillips@freescale.com</email>
</author>
<published>2007-05-16T21:52:19Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=255a3577c848706441daee0174543efe205a77f8'/>
<id>urn:sha1:255a3577c848706441daee0174543efe205a77f8</id>
<content type='text'>
For all practical u-boot purposes, TSECs don't differ throughout the
mpc8[356]xx families; reduce CONFIG_MPC8YXX_TSECx to CONFIG_TSECx.

Signed-off-by: Kim Phillips &lt;kim.phillips@freescale.com&gt;
</content>
</entry>
</feed>
