<feed xmlns='http://www.w3.org/2005/Atom'>
<title>u-boot.git/drivers/spi, branch v2014.07</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>arm: ep9315: Return back Cirrus Logic EDB9315A board support</title>
<updated>2014-07-04T21:45:48+00:00</updated>
<author>
<name>Sergey Kostanbaev</name>
<email>sergey.kostanbaev@gmail.com</email>
</author>
<published>2014-06-25T19:44:29+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=7237d22baac9ebeffc946dfd30b9f61aaf0bfdbc'/>
<id>7237d22baac9ebeffc946dfd30b9f61aaf0bfdbc</id>
<content type='text'>
This patch returns back support for old ep93xx processors family

Signed-off-by: Sergey Kostanbaev &lt;sergey.kostanbaev@gmail.com&gt;
Cc: albert.u.boot@aribaud.net
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This patch returns back support for old ep93xx processors family

Signed-off-by: Sergey Kostanbaev &lt;sergey.kostanbaev@gmail.com&gt;
Cc: albert.u.boot@aribaud.net
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge remote-tracking branch 'u-boot-samsung/master'</title>
<updated>2014-07-01T18:52:51+00:00</updated>
<author>
<name>Albert ARIBAUD</name>
<email>albert.u.boot@aribaud.net</email>
</author>
<published>2014-07-01T18:52:51+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=304f936aeaab0c3cc9d5af438fd3498ac7682991'/>
<id>304f936aeaab0c3cc9d5af438fd3498ac7682991</id>
<content type='text'>
Conflicts:
	boards.cfg

Conflict was trivial between goni maintainer change and
lager_nor removal.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Conflicts:
	boards.cfg

Conflict was trivial between goni maintainer change and
lager_nor removal.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'u-boot-ti/master' into 'u-boot-arm/master'</title>
<updated>2014-07-01T13:11:18+00:00</updated>
<author>
<name>Albert ARIBAUD</name>
<email>albert.u.boot@aribaud.net</email>
</author>
<published>2014-07-01T13:11:18+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=e99f30e105a253ee64bef1ef83b86a47e0d3b6f1'/>
<id>e99f30e105a253ee64bef1ef83b86a47e0d3b6f1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'u-boot/master' into 'u-boot-arm/master'</title>
<updated>2014-06-25T08:39:58+00:00</updated>
<author>
<name>Albert ARIBAUD</name>
<email>albert.u.boot@aribaud.net</email>
</author>
<published>2014-06-25T08:39:58+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=ed1d98d801dfb6384d0f2fff45ce1ebf884944ca'/>
<id>ed1d98d801dfb6384d0f2fff45ce1ebf884944ca</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Exynos: SPI: Fix reading data from SPI flash</title>
<updated>2014-06-22T22:47:05+00:00</updated>
<author>
<name>Akshay Saraswat</name>
<email>akshay.s@samsung.com</email>
</author>
<published>2014-06-18T12:22:41+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=e76d2a81bc350aebf4ae56753fb75983c7a4efdd'/>
<id>e76d2a81bc350aebf4ae56753fb75983c7a4efdd</id>
<content type='text'>
SPI recieve and transfer code in exynos_spi driver has a logical bug.
We read data in a variable which can hold an integer. Then we assign
this integer 32 bit value to another variable which has data type uchar.
Latter represents a unit of our recieve buffer. Everytime when we write
a value to our recieve buffer we step ahead by 4 units when actually we
wrote to one unit. This results in the loss of 3 bytes out of every 4
bytes recieved. This patch intends to fix this bug.

Signed-off-by: Akshay Saraswat &lt;akshay.s@samsung.com&gt;
Acked-by: Simon Glass &lt;sjg@chromium.org&gt;
Tested-by: Simon Glass &lt;sjg@chromium.org&gt;
Signed-off-by: Minkyu Kang &lt;mk7.kang@samsung.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
SPI recieve and transfer code in exynos_spi driver has a logical bug.
We read data in a variable which can hold an integer. Then we assign
this integer 32 bit value to another variable which has data type uchar.
Latter represents a unit of our recieve buffer. Everytime when we write
a value to our recieve buffer we step ahead by 4 units when actually we
wrote to one unit. This results in the loss of 3 bytes out of every 4
bytes recieved. This patch intends to fix this bug.

Signed-off-by: Akshay Saraswat &lt;akshay.s@samsung.com&gt;
Acked-by: Simon Glass &lt;sjg@chromium.org&gt;
Tested-by: Simon Glass &lt;sjg@chromium.org&gt;
Signed-off-by: Minkyu Kang &lt;mk7.kang@samsung.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>spi: davinci: Fix register address for SPI1_BUS</title>
<updated>2014-06-19T21:53:59+00:00</updated>
<author>
<name>Axel Lin</name>
<email>axel.lin@ingics.com</email>
</author>
<published>2014-06-18T01:09:34+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=7a4861fad0f6adc5d59a2c95899e47a0759af2b7'/>
<id>7a4861fad0f6adc5d59a2c95899e47a0759af2b7</id>
<content type='text'>
Fix a trivial copy-paste bug.

Signed-off-by: Axel Lin &lt;axel.lin@ingics.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix a trivial copy-paste bug.

Signed-off-by: Axel Lin &lt;axel.lin@ingics.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'master' of git://git.denx.de/u-boot-spi</title>
<updated>2014-06-11T15:40:11+00:00</updated>
<author>
<name>Tom Rini</name>
<email>trini@ti.com</email>
</author>
<published>2014-06-11T15:40:11+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=28b62f0de361ae640eb286969536a236cc8febda'/>
<id>28b62f0de361ae640eb286969536a236cc8febda</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>arm: vf610: Add QSPI driver support</title>
<updated>2014-06-09T07:18:09+00:00</updated>
<author>
<name>Alison Wang</name>
<email>b18965@freescale.com</email>
</author>
<published>2014-05-06T01:13:01+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=6b57ff6fd5111840dd4787f3d08596076e752676'/>
<id>6b57ff6fd5111840dd4787f3d08596076e752676</id>
<content type='text'>
Add Freescale QSPI driver support for VF610.

Signed-off-by: Alison Wang &lt;Huan.Wang@freescale.com&gt;
Signed-off-by: Chao Fu &lt;b44548@freescale.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add Freescale QSPI driver support for VF610.

Signed-off-by: Alison Wang &lt;Huan.Wang@freescale.com&gt;
Signed-off-by: Chao Fu &lt;b44548@freescale.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>spi: soft_spi: Support NULL din/dout buffers</title>
<updated>2014-06-08T17:42:27+00:00</updated>
<author>
<name>Andrew Ruder</name>
<email>andrew.ruder@elecsyscorp.com</email>
</author>
<published>2014-04-24T18:39:32+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=c1c0dd2644d6bdd64f5d36528d801d14832f6394'/>
<id>c1c0dd2644d6bdd64f5d36528d801d14832f6394</id>
<content type='text'>
This mirrors the conventions used in other SPI drivers (kirkwood,
davinci, atmel, et al) where the din/dout buffer can be NULL when the
received/transmitted data isn't important.  This reduces the need for
allocating additional buffers when write-only/read-only functionality is
needed.

In the din == NULL case, the received data is simply not stored.  In the
dout == NULL case, zeroes are transmitted.

Signed-off-by: Andrew Ruder &lt;andrew.ruder@elecsyscorp.com&gt;
Cc: Jean-Christophe PLAGNIOL-VILLARD &lt;plagnioj@jcrosoft.com&gt;
Reviewed-by: Jagannadha Sutradharudu Teki &lt;jaganna@xilinx.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This mirrors the conventions used in other SPI drivers (kirkwood,
davinci, atmel, et al) where the din/dout buffer can be NULL when the
received/transmitted data isn't important.  This reduces the need for
allocating additional buffers when write-only/read-only functionality is
needed.

In the din == NULL case, the received data is simply not stored.  In the
dout == NULL case, zeroes are transmitted.

Signed-off-by: Andrew Ruder &lt;andrew.ruder@elecsyscorp.com&gt;
Cc: Jean-Christophe PLAGNIOL-VILLARD &lt;plagnioj@jcrosoft.com&gt;
Reviewed-by: Jagannadha Sutradharudu Teki &lt;jaganna@xilinx.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'master' of git://git.denx.de/u-boot-arm</title>
<updated>2014-06-08T11:58:41+00:00</updated>
<author>
<name>Tom Rini</name>
<email>trini@ti.com</email>
</author>
<published>2014-06-08T11:58:41+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=55e8250bd3cfd996d1caa04f520160a89ec04754'/>
<id>55e8250bd3cfd996d1caa04f520160a89ec04754</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
