<feed xmlns='http://www.w3.org/2005/Atom'>
<title>u-boot.git/cpu/mpc5xxx, branch v1.3.2</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<id>http://cgit.235523.xyz/u-boot.git/atom/cpu/mpc5xxx?h=v1.3.2</id>
<link rel='self' href='http://cgit.235523.xyz/u-boot.git/atom/cpu/mpc5xxx?h=v1.3.2'/>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/'/>
<updated>2008-02-14T21:43:22Z</updated>
<entry>
<title>PPC: Use r2 instead of r29 as global data pointer</title>
<updated>2008-02-14T21:43:22Z</updated>
<author>
<name>Wolfgang Denk</name>
<email>wd@denx.de</email>
</author>
<published>2008-02-14T21:43:22Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=e7670f6c1e52ae6d2a43ff75a8bcfa7a5c86e47b'/>
<id>urn:sha1:e7670f6c1e52ae6d2a43ff75a8bcfa7a5c86e47b</id>
<content type='text'>
R29 was an unlucky choice as with recent toolchains (gcc-4.2.x) gcc
will refuse to use load/store multiple insns; instead, it issues a
list of simple load/store instructions upon function entry and exit,
resulting in bigger code size, which in turn makes the build for a
few boards fail.

Use r2 instead.

Signed-off-by: Wolfgang Denk &lt;wd@denx.de&gt;
</content>
</entry>
<entry>
<title>MPC5200: don't use hardcoded MBAR address in Bestcomm firmware</title>
<updated>2008-01-12T20:19:01Z</updated>
<author>
<name>Oliver Weber</name>
<email>almoeli@gmx.de</email>
</author>
<published>2008-01-09T16:04:38Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=2ad4d3999fe801aa716221d7d9a4c5bdad74783a'/>
<id>urn:sha1:2ad4d3999fe801aa716221d7d9a4c5bdad74783a</id>
<content type='text'>
Signed-off-by: Oliver Weber &lt;almoeli@gmx.de&gt;
</content>
</entry>
<entry>
<title>Fix linker scripts: add NOLOAD atribute to .bss/.sbss sections</title>
<updated>2008-01-12T19:31:39Z</updated>
<author>
<name>Wolfgang Denk</name>
<email>wd@denx.de</email>
</author>
<published>2008-01-12T19:31:39Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=64134f011254123618798ff77c42ba196b2ec485'/>
<id>urn:sha1:64134f011254123618798ff77c42ba196b2ec485</id>
<content type='text'>
With recent toolchain versions, some boards would not build because
or errors like this one (here for ocotea board when building with
ELDK 4.2 beta):
ppc_4xx-ld: section .bootpg [fffff000 -&gt; fffff23b] overlaps section .bss [fffee900 -&gt; fffff8ab]

For many boards, the .bss section is big enough that it wraps around
at the end of the address space (0xFFFFFFFF), so the problem will not
be visible unless you use a 64 bit tool chain for development. On
some boards however, changes to the code size (due to different
optimizations) we bail out with section overlaps like above.

The fix is to add the NOLOAD attribute to the .bss and .sbss
sections, telling the linker that .bss does not consume any space in
the image.

Signed-off-by: Wolfgang Denk &lt;wd@denx.de&gt;
</content>
</entry>
<entry>
<title>added basic support for the MUNICes board.</title>
<updated>2008-01-11T23:41:22Z</updated>
<author>
<name>Heiko Schocher</name>
<email>hs@denx.de</email>
</author>
<published>2008-01-11T14:15:14Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=6341d9d723b71b4c0bf86f979e4cb228c02fd09d'/>
<id>urn:sha1:6341d9d723b71b4c0bf86f979e4cb228c02fd09d</id>
<content type='text'>
Signed-off-by: Heiko Schocher &lt;hs@denx.de&gt;
</content>
</entry>
<entry>
<title>Move do_fixup* for libfdt into common code</title>
<updated>2007-11-21T20:01:49Z</updated>
<author>
<name>Kumar Gala</name>
<email>galak@kernel.crashing.org</email>
</author>
<published>2007-11-04T00:46:28Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=e93becf80d732b64aef81b23e8b6ece02c40533d'/>
<id>urn:sha1:e93becf80d732b64aef81b23e8b6ece02c40533d</id>
<content type='text'>
Moved the generic fixup handling code out of cpu/mpc5xxx and cpu/mpc8260
into common/fdt_support.c and renamed:

do_fixup()	-&gt; do_fixup_by_path()
do_fixup_u32() 	-&gt; do_fixup_by_path_u32()

Signed-off-by: Kumar Gala &lt;galak@kernel.crashing.org&gt;
</content>
</entry>
<entry>
<title>Revert "Correct fixup relocation for MPC5xxx"</title>
<updated>2007-11-15T15:31:22Z</updated>
<author>
<name>Grant Likely</name>
<email>grant.likely@secretlab.ca</email>
</author>
<published>2007-11-15T15:24:32Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=e15633888a058aacb31a62d2cf1278e1e4c236ab'/>
<id>urn:sha1:e15633888a058aacb31a62d2cf1278e1e4c236ab</id>
<content type='text'>
This reverts commit 6f7576b20ecf0d040c3ac3b032b5cbc860e38a90.
Signed-off-by: Grant Likely &lt;grant.likely@secretlab.ca&gt;
</content>
</entry>
<entry>
<title>Migrate 5xxx boards from CONFIG_OF_FLAT_TREE to CONFIG_OF_LIBFDT</title>
<updated>2007-09-06T15:46:23Z</updated>
<author>
<name>Grant Likely</name>
<email>grant.likely@secretlab.ca</email>
</author>
<published>2007-09-06T15:46:23Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=cf2817a84c2e9bea2c5dfc084bce2f2d2563ac43'/>
<id>urn:sha1:cf2817a84c2e9bea2c5dfc084bce2f2d2563ac43</id>
<content type='text'>
Affects boards: icecube (lite5200), jupiter, motionpro, tqm5200

Tested on: lite5200b

Note: the fixup functions have not been moved to a common place.  This
patch is targeted for immediate merging as in solves a build issue, but
the final name/location of the fixups is still subject to debate.  I
propose to merge this now, and move the fixups in the next merge window
to be usable by all targets.

Signed-off-by: Grant Likely &lt;grant.likely@secretlab.ca&gt;
</content>
</entry>
<entry>
<title>MPC5xxx: fix some compiler warnings in USB code</title>
<updated>2007-08-29T00:09:58Z</updated>
<author>
<name>Martin Krause</name>
<email>martin.krause@tqs.de</email>
</author>
<published>2007-08-21T10:40:34Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=4a8527ef086ec7c89f40674ef024ae6f988a614a'/>
<id>urn:sha1:4a8527ef086ec7c89f40674ef024ae6f988a614a</id>
<content type='text'>
Fix the following warnings:
- usb.c:xx: warning: function declaration isn't a prototype
- usb_ohci.c:xxx: warning: passing argument 1 of '__fswab32' makes integer
  from pointer wihtout a cast

Signed-off-by: Martin Krause &lt;martin.krase@tqs.de&gt;
</content>
</entry>
<entry>
<title>Minor coding style cleanup.</title>
<updated>2007-08-28T23:32:05Z</updated>
<author>
<name>Wolfgang Denk</name>
<email>wd@denx.de</email>
</author>
<published>2007-08-28T23:32:05Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=6af2eeb1e99c2dcc584d4c5ab7fcae30a325f4de'/>
<id>urn:sha1:6af2eeb1e99c2dcc584d4c5ab7fcae30a325f4de</id>
<content type='text'>
Signed-off-by: Wolfgang Denk &lt;wd@denx.de&gt;
</content>
</entry>
<entry>
<title>[UC101] Fix: if no CF in the board, U-Boot resets sometimes.</title>
<updated>2007-08-28T15:40:33Z</updated>
<author>
<name>Heiko Schocher</name>
<email>hs@pollux.denx.de</email>
</author>
<published>2007-08-28T15:40:33Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=a861558c65f65f1cf1302f3a35e9db7686b9e1a3'/>
<id>urn:sha1:a861558c65f65f1cf1302f3a35e9db7686b9e1a3</id>
<content type='text'>
Signed-off-by: Heiko Schocher &lt;hs@denx.de&gt;
</content>
</entry>
</feed>
