<feed xmlns='http://www.w3.org/2005/Atom'>
<title>u-boot.git/board/sbc8548, 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/board/sbc8548?h=v1.3.2</id>
<link rel='self' href='http://cgit.235523.xyz/u-boot.git/atom/board/sbc8548?h=v1.3.2'/>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/'/>
<updated>2008-03-04T23:17:43Z</updated>
<entry>
<title>Remove erroneous or extra spd.h #includers.</title>
<updated>2008-03-04T23:17:43Z</updated>
<author>
<name>Jon Loeliger</name>
<email>jdl@freescale.com</email>
</author>
<published>2008-03-04T16:03:03Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=a30a549a3553032d809e0356306b62de0b125901'/>
<id>urn:sha1:a30a549a3553032d809e0356306b62de0b125901</id>
<content type='text'>
Many of the spd.h #includers don't need it,
and wanted to have spd_sdram() declared instead.
Since they didn't get that, some also had open
coded extern declarations of it instead or as well.
Fix it all up by using spd_sdram.h where needed.

Signed-off-by: Jon Loeliger &lt;jdl@freescale.com&gt;
</content>
</entry>
<entry>
<title>sbc8548: Fix Revision reading and unused variable 'path'</title>
<updated>2008-02-27T22:27:16Z</updated>
<author>
<name>Jean-Christophe PLAGNIOL-VILLARD</name>
<email>plagnioj@jcrosoft.com</email>
</author>
<published>2008-02-17T21:56:17Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=347b7938d3e561eb215aa386c37fb5acb5a383c6'/>
<id>urn:sha1:347b7938d3e561eb215aa386c37fb5acb5a383c6</id>
<content type='text'>
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD &lt;plagnioj@jcrosoft.com&gt;
</content>
</entry>
<entry>
<title>85xx: Convert SBC8540/SBC8560/SBC8548 to new TLB setup</title>
<updated>2008-01-17T08:10:42Z</updated>
<author>
<name>Kumar Gala</name>
<email>galak@kernel.crashing.org</email>
</author>
<published>2008-01-17T07:44:34Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=143b518d9125b54f96f1d7f1afc640b8aae81ff0'/>
<id>urn:sha1:143b518d9125b54f96f1d7f1afc640b8aae81ff0</id>
<content type='text'>
Signed-off-by: Kumar Gala &lt;galak@kernel.crashing.org&gt;
</content>
</entry>
<entry>
<title>85xx: Use proper defines for PCI addresses</title>
<updated>2008-01-17T05:21:56Z</updated>
<author>
<name>Kumar Gala</name>
<email>galak@kernel.crashing.org</email>
</author>
<published>2008-01-16T16:04:42Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=c8c41d4a80b1a8ad5984a287d81ea780496259f8'/>
<id>urn:sha1:c8c41d4a80b1a8ad5984a287d81ea780496259f8</id>
<content type='text'>
We should be using the _MEM_PHYS for LAW and TLB setup and not _MEM_BASE.
While _MEM_BASE &amp; _MEM_PHYS are normally the same, _MEM_BASE should only
be used for configuring the PCI ATMU.

Signed-off-by: Kumar Gala &lt;galak@kernel.crashing.org&gt;
</content>
</entry>
<entry>
<title>85xx: convert SBC8540/SBC8560/SBC8548 over to use new LAW init code</title>
<updated>2008-01-17T05:21:55Z</updated>
<author>
<name>Kumar Gala</name>
<email>galak@kernel.crashing.org</email>
</author>
<published>2008-01-16T15:05:27Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=e2b159d0070ee06e4ac7e2f9381d3e8e542e614a'/>
<id>urn:sha1:e2b159d0070ee06e4ac7e2f9381d3e8e542e614a</id>
<content type='text'>
Signed-off-by: Kumar Gala &lt;galak@kernel.crashing.org&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>Coding Style cleanup; update CHANGELOG</title>
<updated>2008-01-09T23:55:14Z</updated>
<author>
<name>Wolfgang Denk</name>
<email>wd@denx.de</email>
</author>
<published>2008-01-09T23:55:14Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=d3a6532cbe263d992f49e86ac95bede28e96f9c8'/>
<id>urn:sha1:d3a6532cbe263d992f49e86ac95bede28e96f9c8</id>
<content type='text'>
Signed-off-by: Wolfgang Denk &lt;wd@denx.de&gt;
</content>
</entry>
<entry>
<title>mpc85xx: Add support for SBC8548 (updated)</title>
<updated>2008-01-09T22:25:03Z</updated>
<author>
<name>Joe Hamman</name>
<email>joe.hamman@embeddedspecialties.com</email>
</author>
<published>2007-12-13T12:45:14Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=9e3ed392d2c8965e24c942b58796c31c644c2f70'/>
<id>urn:sha1:9e3ed392d2c8965e24c942b58796c31c644c2f70</id>
<content type='text'>
Add support for Wind River's SBC8548 reference board.

Signed-off by: Joe Hamman &lt;joe.hamman@embeddedspecialties.com&gt;
</content>
</entry>
<entry>
<title>mpc85xx: Add support for SBC8548 (updated)</title>
<updated>2008-01-09T22:25:03Z</updated>
<author>
<name>Joe Hamman</name>
<email>joe.hamman@embeddedspecialties.com</email>
</author>
<published>2007-12-13T12:45:08Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=11c45ebd46d6517b51b7a92dd52a618b2f4e5586'/>
<id>urn:sha1:11c45ebd46d6517b51b7a92dd52a618b2f4e5586</id>
<content type='text'>
Add support for Wind River's SBC8548 reference board.

Signed-off by: Joe Hamman &lt;joe.hamman@embeddedspecialties.com&gt;
Signed-off by: Andy Fleming &lt;afleming@freescale.com&gt;
</content>
</entry>
</feed>
