<feed xmlns='http://www.w3.org/2005/Atom'>
<title>u-boot.git/cpu/mpc512x/fec.c, branch master</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.
</subtitle>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/'/>
<entry>
<title>Move MPC512x_FEC driver to drivers/net</title>
<updated>2008-08-29T19:58:12+00:00</updated>
<author>
<name>Ben Warren</name>
<email>biggerbadderben@gmail.com</email>
</author>
<published>2008-08-29T06:58:30+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=6b5049d056cd8ef72d1f2f461ceb2d033d93f759'/>
<id>6b5049d056cd8ef72d1f2f461ceb2d033d93f759</id>
<content type='text'>
Signed-off-by: Ben Warren &lt;biggerbadderben@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Ben Warren &lt;biggerbadderben@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Consolidate ADS5121 IO Pin configuration</title>
<updated>2008-07-10T17:36:32+00:00</updated>
<author>
<name>Martha Marx</name>
<email>mmarx@silicontkx.com</email>
</author>
<published>2008-05-29T19:37:21+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=16bee7b0dc294ee01ca2434aa1dd3bd717a69615'/>
<id>16bee7b0dc294ee01ca2434aa1dd3bd717a69615</id>
<content type='text'>
Consolidate ADS5121 IO Pin configuration to one file
board/ads5121/iopin.c.

Remove pin config from cpu/mpc512x/fec.c

Signed-off-by: Martha Marx &lt;mmarx@silicontkx.com&gt;
Acked-by: Grant Likely &lt;grant.likely@secretlab.ca&gt;
Acked-by: John Rigby &lt;jrigby@freescale.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Consolidate ADS5121 IO Pin configuration to one file
board/ads5121/iopin.c.

Remove pin config from cpu/mpc512x/fec.c

Signed-off-by: Martha Marx &lt;mmarx@silicontkx.com&gt;
Acked-by: Grant Likely &lt;grant.likely@secretlab.ca&gt;
Acked-by: John Rigby &lt;jrigby@freescale.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>MPC512X: Cleanup bus clock names.</title>
<updated>2008-01-12T14:37:49+00:00</updated>
<author>
<name>Grzegorz Bernacki</name>
<email>gjb@semihalf.com</email>
</author>
<published>2008-01-11T11:03:43+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=5d49e0e152a8b81cc0602271e8fd259371f559b7'/>
<id>5d49e0e152a8b81cc0602271e8fd259371f559b7</id>
<content type='text'>
Signed-off-by: Grzegorz Bernacki &lt;gjb@semihalf.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Grzegorz Bernacki &lt;gjb@semihalf.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>[MPC512x] Streamline frame handling in the FEC driver</title>
<updated>2007-09-10T15:39:08+00:00</updated>
<author>
<name>Grzegorz Bernacki</name>
<email>gjb@semihalf.com</email>
</author>
<published>2007-09-10T15:39:08+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=7a888d6b3c32a126dbb504ef146bb4c26574ca7b'/>
<id>7a888d6b3c32a126dbb504ef146bb4c26574ca7b</id>
<content type='text'>
- convert frame size settings to be derived from a single base
- set frame size to the recommended default value

Signed-off-by: Grzegorz Bernacki &lt;gjb@semihalf.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- convert frame size settings to be derived from a single base
- set frame size to the recommended default value

Signed-off-by: Grzegorz Bernacki &lt;gjb@semihalf.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>[MPC512x] Proper handling of larger frames in the FEC driver</title>
<updated>2007-09-07T15:09:21+00:00</updated>
<author>
<name>Grzegorz Bernacki</name>
<email>gjb@semihalf.com</email>
</author>
<published>2007-09-07T15:09:21+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=08e2e5fcd2e06670b62e1680a3934c0e55c72810'/>
<id>08e2e5fcd2e06670b62e1680a3934c0e55c72810</id>
<content type='text'>
When frame larger than local RX buffer is received, it is split and handled
by two buffer descriptors. Prior to this patch the FEC driver discarded
contents of a buffer descriptor without the 'LAST' bit set, so the first
part of the frame was lost in case of larger frames. This fix allows to
safely combine the two pieces into the whole frame.

Signed-off-by: Grzegorz Bernacki &lt;gjb@semihalf.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When frame larger than local RX buffer is received, it is split and handled
by two buffer descriptors. Prior to this patch the FEC driver discarded
contents of a buffer descriptor without the 'LAST' bit set, so the first
part of the frame was lost in case of larger frames. This fix allows to
safely combine the two pieces into the whole frame.

Signed-off-by: Grzegorz Bernacki &lt;gjb@semihalf.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Clean up some remaining CFG_CMD_ -&gt; CONFIG_CMD_ issues.</title>
<updated>2007-08-12T12:27:39+00:00</updated>
<author>
<name>Wolfgang Denk</name>
<email>wd@denx.de</email>
</author>
<published>2007-08-12T12:27:39+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=afaac86fe2948ac84cd9a12bbed883b3c683e7d9'/>
<id>afaac86fe2948ac84cd9a12bbed883b3c683e7d9</id>
<content type='text'>
Signed-off-by: Wolfgang Denk &lt;wd@denx.de&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Wolfgang Denk &lt;wd@denx.de&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Coding style cleanup, update CHANGELOG</title>
<updated>2007-08-02T19:27:46+00:00</updated>
<author>
<name>Wolfgang Denk</name>
<email>wd@denx.de</email>
</author>
<published>2007-08-02T19:27:46+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=b1b54e352028ed370c3aa95d6fdeb9d64c5d2f86'/>
<id>b1b54e352028ed370c3aa95d6fdeb9d64c5d2f86</id>
<content type='text'>
Signed-off-by: Wolfgang Denk &lt;wd@denx.de&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Wolfgang Denk &lt;wd@denx.de&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>[ADS5121] Support for the ADS5121 board</title>
<updated>2007-07-27T12:43:59+00:00</updated>
<author>
<name>Rafal Jaworowski</name>
<email>raj@semihalf.com</email>
</author>
<published>2007-07-27T12:43:59+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=8993e54b6f397973794f3d6f47d3b3c0c98dd4f6'/>
<id>8993e54b6f397973794f3d6f47d3b3c0c98dd4f6</id>
<content type='text'>
The following MPC5121e subsystems are supported:

- low-level CPU init
- NOR Boot Flash (common CFI driver)
- DDR SDRAM
- FEC
- I2C
- Watchdog

Signed-off-by: Grzegorz Bernacki &lt;gjb@semihalf.com&gt;
Signed-off-by: Rafal Jaworowski &lt;raj@semihalf.com&gt;
Signed-off-by: Jan Wrobel &lt;wrr@semihalf.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The following MPC5121e subsystems are supported:

- low-level CPU init
- NOR Boot Flash (common CFI driver)
- DDR SDRAM
- FEC
- I2C
- Watchdog

Signed-off-by: Grzegorz Bernacki &lt;gjb@semihalf.com&gt;
Signed-off-by: Rafal Jaworowski &lt;raj@semihalf.com&gt;
Signed-off-by: Jan Wrobel &lt;wrr@semihalf.com&gt;
</pre>
</div>
</content>
</entry>
</feed>
