<feed xmlns='http://www.w3.org/2005/Atom'>
<title>u-boot.git/drivers/mtd/onenand, branch v1.3.4</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<id>http://cgit.235523.xyz/u-boot.git/atom/drivers/mtd/onenand?h=v1.3.4</id>
<link rel='self' href='http://cgit.235523.xyz/u-boot.git/atom/drivers/mtd/onenand?h=v1.3.4'/>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/'/>
<updated>2008-08-11T20:07:46Z</updated>
<entry>
<title>OneNAND: Remove unused parameters to onenand_verify_page</title>
<updated>2008-08-11T20:07:46Z</updated>
<author>
<name>Steve Sakoman</name>
<email>steve@sakoman.com</email>
</author>
<published>2008-08-11T18:26:16Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=4d57b0fb2927d4f50d834884b4ec4a7ca01708b0'/>
<id>urn:sha1:4d57b0fb2927d4f50d834884b4ec4a7ca01708b0</id>
<content type='text'>
The block and page parameters of onenand_verify_page() are not used. This causes a compiler error when CONFIG_MTD_ONENAND_VERIFY_WRITE is enabled.

Signed-off-by: Steve Sakoman &lt;steve@sakoman.com&gt;
Signed-off-by: Dirk Behme &lt;dirk.behme@gmail.com&gt;
</content>
</entry>
<entry>
<title>NAND: Rename DEBUG to MTDDEBUG to avoid namespace pollution.</title>
<updated>2008-07-09T22:24:47Z</updated>
<author>
<name>Scott Wood</name>
<email>scottwood@freescale.com</email>
</author>
<published>2008-06-20T17:38:57Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=3167c5386ea1c98b638be5d8763ef6d5938ef1bd'/>
<id>urn:sha1:3167c5386ea1c98b638be5d8763ef6d5938ef1bd</id>
<content type='text'>
This is particularly problematic now that non-NAND-specific code is
including &lt;nand.h&gt;, and thus all debugging code is being compiled
regardless of whether it was requested, as reported by Scott McNutt
&lt;smcnutt@psyent.com&gt;.

Signed-off-by: Scott Wood &lt;scottwood@freescale.com&gt;
</content>
</entry>
<entry>
<title>onenand: rename 16 bit memory copy into memcpy_16() to avoid conflicts</title>
<updated>2008-05-01T19:30:16Z</updated>
<author>
<name>Wolfgang Denk</name>
<email>wd@denx.de</email>
</author>
<published>2008-05-01T19:30:16Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=d2c6fbec4397c936b18cd42482b6973cd6781bdf'/>
<id>urn:sha1:d2c6fbec4397c936b18cd42482b6973cd6781bdf</id>
<content type='text'>
Onenand needs a version of memcpy() which performs 16 bit accesses
only; make sure the name does not conflict with the standard
function.

Signed-off-by: Wolfgang Denk &lt;wd@denx.de&gt;
</content>
</entry>
<entry>
<title>Fix OneNAND read</title>
<updated>2008-04-14T06:11:16Z</updated>
<author>
<name>Kyungmin Park</name>
<email>kmpark@infradead.org</email>
</author>
<published>2008-03-31T01:40:36Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=77e475cc0ed1832160017d364be32a0be9ff02a9'/>
<id>urn:sha1:77e475cc0ed1832160017d364be32a0be9ff02a9</id>
<content type='text'>
It should access with 16-bit instead of 8-bit

Now it uses the generic memcpy with 8-bit access. It means it reads wrong data from OneNAND.

Signed-off-by: Kyungmin Park &lt;kyungmin.park@samsung.com&gt;
</content>
</entry>
<entry>
<title>Add Flex-OneNAND booting support</title>
<updated>2008-03-25T23:05:32Z</updated>
<author>
<name>Kyungmin Park</name>
<email>kmpark@infradead.org</email>
</author>
<published>2008-03-16T23:54:06Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=1bb707c39a0833e91d9f797dd862aaaaf4af264d'/>
<id>urn:sha1:1bb707c39a0833e91d9f797dd862aaaaf4af264d</id>
<content type='text'>
Flex-OneNAND is a monolithic integrated circuit with a NAND Flash array
using a NOR Flash interface. This on-chip integration enables system designers
to reduce external system logic and use high-density NAND Flash
in applications that would otherwise have to use more NOR components.

Flex-OneNAND enables users to configure to partition it into SLC and MLC areas
in more flexible way. While MLC area of Flex-OneNAND can be used to store data
that require low reliability and high density, SLC area of Flex-OneNAND
to store data that need high reliability and high performance. Flex-OneNAND
can let users take advantage of storing these two different types of data
into one chip, which is making Flex-OneNAND more cost- and space-effective.

Signed-off-by: Kyungmin Park &lt;kyungmin.park@samsung.com&gt;
</content>
</entry>
<entry>
<title>OneNAND: Separate U-Boot dependent code from OneNAND</title>
<updated>2008-01-16T13:10:15Z</updated>
<author>
<name>Kyungmin Park</name>
<email>kmpark@infradead.org</email>
</author>
<published>2008-01-14T23:59:44Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=6cb2239ae76faee64434286c4f8fc71374702dd2'/>
<id>urn:sha1:6cb2239ae76faee64434286c4f8fc71374702dd2</id>
<content type='text'>
OneNAND: Separate U-Boot dependent code from OneNAND

Signed-off-by: Kyungmin Park &lt;kyungmin.park@samsung.com&gt;
</content>
</entry>
<entry>
<title>drivers/mtd : move mtd drivers to drivers/mtd</title>
<updated>2007-11-25T22:28:52Z</updated>
<author>
<name>Jean-Christophe PLAGNIOL-VILLARD</name>
<email>plagnioj@jcrosoft.com</email>
</author>
<published>2007-11-24T20:26:56Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=59829cc189378c142c13d2aa8d9a897d8bef3961'/>
<id>urn:sha1:59829cc189378c142c13d2aa8d9a897d8bef3961</id>
<content type='text'>
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD &lt;plagnioj@jcrosoft.com&gt;
</content>
</entry>
</feed>
