<feed xmlns='http://www.w3.org/2005/Atom'>
<title>u-boot.git/drivers/serial/mcfuart.c, branch v2011.09-rc2</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/ausil/public_git/u-boot.git/'/>
<entry>
<title>ColdFire: Update uart_port_conf in serial driver</title>
<updated>2010-03-24T16:09:08+00:00</updated>
<author>
<name>TsiChung Liew</name>
<email>tsicliew@gmail.com</email>
</author>
<published>2010-03-10T01:24:43+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/ausil/public_git/u-boot.git/commit/?id=fa9da596212d7f28eb26a3257d79d9515f9838cd'/>
<id>fa9da596212d7f28eb26a3257d79d9515f9838cd</id>
<content type='text'>
Provide proper port passing from serial_init to uart_part_conf.

Signed-off-by: TsiChung Liew &lt;tsicliew@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Provide proper port passing from serial_init to uart_part_conf.

Signed-off-by: TsiChung Liew &lt;tsicliew@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Coldfire: Applied baudrate formula of serial_init to serial_setbrg</title>
<updated>2009-02-06T21:54:47+00:00</updated>
<author>
<name>Richard Retanubun</name>
<email>RichardRetanubun@RuggedCom.com</email>
</author>
<published>2009-01-23T16:44:30+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/ausil/public_git/u-boot.git/commit/?id=92d3e6e0ffcbb7224c83104f8d87b5b4bf39a38f'/>
<id>92d3e6e0ffcbb7224c83104f8d87b5b4bf39a38f</id>
<content type='text'>
Applied the patch for baudrate divider value truncation for
serial_init to serial_setbrg as well.

Signed-off-by: Richard Retanubun &lt;RichardRetanubun@RuggedCom.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Applied the patch for baudrate divider value truncation for
serial_init to serial_setbrg as well.

Signed-off-by: Richard Retanubun &lt;RichardRetanubun@RuggedCom.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>rename CFG_ macros to CONFIG_SYS</title>
<updated>2008-10-18T19:54:03+00:00</updated>
<author>
<name>Jean-Christophe PLAGNIOL-VILLARD</name>
<email>plagnioj@jcrosoft.com</email>
</author>
<published>2008-10-16T13:01:15+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/ausil/public_git/u-boot.git/commit/?id=6d0f6bcf337c5261c08fabe12982178c2c489d76'/>
<id>6d0f6bcf337c5261c08fabe12982178c2c489d76</id>
<content type='text'>
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD &lt;plagnioj@jcrosoft.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD &lt;plagnioj@jcrosoft.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix merge problems</title>
<updated>2008-08-06T12:05:38+00:00</updated>
<author>
<name>Stefan Roese</name>
<email>sr@denx.de</email>
</author>
<published>2008-08-06T12:05:38+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/ausil/public_git/u-boot.git/commit/?id=f2302d4430e7f3f48308d6a585320fe96af8afbd'/>
<id>f2302d4430e7f3f48308d6a585320fe96af8afbd</id>
<content type='text'>
Signed-off-by: Stefan Roese &lt;sr@denx.de&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Stefan Roese &lt;sr@denx.de&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>ColdFire: Fix UART baudrate formula</title>
<updated>2008-07-11T16:45:56+00:00</updated>
<author>
<name>TsiChung Liew</name>
<email>Tsi-Chung.Liew@freescale.com</email>
</author>
<published>2008-05-29T17:21:54+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/ausil/public_git/u-boot.git/commit/?id=81cc32322acb1b3225ee45606ced48e2a14824dc'/>
<id>81cc32322acb1b3225ee45606ced48e2a14824dc</id>
<content type='text'>
The formula "counter = (u32) (gd-&gt;bus_clk / gd-&gt;baudrate) / 32"
can generate the wrong divisor due to integer division truncation.
Round the calculated divisor value by adding 1/2 the baudrate
before dividing by the baudrate.

Signed-off-by: TsiChung Liew &lt;Tsi-Chung.Liew@freescale.com&gt;
Acked-by: Gerald Van Baren &lt;vanbaren@cideas.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The formula "counter = (u32) (gd-&gt;bus_clk / gd-&gt;baudrate) / 32"
can generate the wrong divisor due to integer division truncation.
Round the calculated divisor value by adding 1/2 the baudrate
before dividing by the baudrate.

Signed-off-by: TsiChung Liew &lt;Tsi-Chung.Liew@freescale.com&gt;
Acked-by: Gerald Van Baren &lt;vanbaren@cideas.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix some build errors.</title>
<updated>2007-08-19T08:27:34+00:00</updated>
<author>
<name>Wolfgang Denk</name>
<email>wd@denx.de</email>
</author>
<published>2007-08-19T08:27:34+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/ausil/public_git/u-boot.git/commit/?id=3e66c078003607a7d1d214c15a5f262bc1b4032f'/>
<id>3e66c078003607a7d1d214c15a5f262bc1b4032f</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>Added uart_gpio_conf() in serial_init(), seperated uart port configuration from cpu_init() to uart_gpio_conf()</title>
<updated>2007-08-08T07:47:25+00:00</updated>
<author>
<name>TsiChungLiew</name>
<email>Tsi-Chung.Liew@freescale.com</email>
</author>
<published>2007-08-05T08:55:21+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/ausil/public_git/u-boot.git/commit/?id=8d1d66af54d305de29d0bbf4aa8c9e6375f7f731'/>
<id>8d1d66af54d305de29d0bbf4aa8c9e6375f7f731</id>
<content type='text'>
Signed-off-by: TsiChungLiew &lt;Tsi-Chung.Liew@freescale.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: TsiChungLiew &lt;Tsi-Chung.Liew@freescale.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Renamed CONFIG_MCFSERIAL to CONFIG_MCFUART</title>
<updated>2007-08-08T07:46:55+00:00</updated>
<author>
<name>TsiChungLiew</name>
<email>Tsi-Chung.Liew@freescale.com</email>
</author>
<published>2007-08-05T08:19:10+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/ausil/public_git/u-boot.git/commit/?id=9998bd37ead85e93953559720710d3b0685c81e6'/>
<id>9998bd37ead85e93953559720710d3b0685c81e6</id>
<content type='text'>
Signed-off-by: TsiChungLiew &lt;Tsi-Chung.Liew@freescale.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: TsiChungLiew &lt;Tsi-Chung.Liew@freescale.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Rename mcfserial.c. Update include header</title>
<updated>2007-07-10T20:29:09+00:00</updated>
<author>
<name>TsiChungLiew</name>
<email>Tsi-Chung.Liew@freescale.com</email>
</author>
<published>2007-07-06T04:17:36+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/ausil/public_git/u-boot.git/commit/?id=2bd806fe4fc23958b8f78778199e7a6e3f8f6ad5'/>
<id>2bd806fe4fc23958b8f78778199e7a6e3f8f6ad5</id>
<content type='text'>
Renamed mcfserial.c to mcfuart.c. Modified Makefile for mcfuart.o from mcfserial.o. Replace immap_5329.h and m5329.h to immap.h

Signed-off-by: TsiChungLiew &lt;Tsi-Chung.Liew@freescale.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Renamed mcfserial.c to mcfuart.c. Modified Makefile for mcfuart.o from mcfserial.o. Replace immap_5329.h and m5329.h to immap.h

Signed-off-by: TsiChungLiew &lt;Tsi-Chung.Liew@freescale.com&gt;
</pre>
</div>
</content>
</entry>
</feed>
