<feed xmlns='http://www.w3.org/2005/Atom'>
<title>u-boot.git/drivers/mtd/nand, branch v2012.07</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<id>http://cgit.235523.xyz/u-boot.git/atom/drivers/mtd/nand?h=v2012.07</id>
<link rel='self' href='http://cgit.235523.xyz/u-boot.git/atom/drivers/mtd/nand?h=v2012.07'/>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/'/>
<updated>2012-07-07T12:07:38Z</updated>
<entry>
<title>mtd/NAND: Remove obsolete SPEAr specific NAND drivers</title>
<updated>2012-07-07T12:07:38Z</updated>
<author>
<name>Vipin KUMAR</name>
<email>vipin.kumar@st.com</email>
</author>
<published>2012-05-22T00:15:56Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=0def98e7be905e4e02eb22cb312bb4e3b327d2fa'/>
<id>urn:sha1:0def98e7be905e4e02eb22cb312bb4e3b327d2fa</id>
<content type='text'>
Since, SPEAr platform uses generic FSMC driver now, so spear specific files
drivers/mtd/nand/spr_nand.c, arch/arm/include/asm/arch-spear/spr_nand.h are
removed

Signed-off-by: Vipin Kumar &lt;vipin.kumar@st.com&gt;
Signed-off-by: Amit Virdi &lt;amit.virdi@st.com&gt;
Signed-off-by: Stefan Roese &lt;sr@denx.de&gt;
Acked-by: Scott Wood &lt;scottwood@freescale.com&gt;
</content>
</entry>
<entry>
<title>mtd/NAND: Add FSMC driver support</title>
<updated>2012-07-07T12:07:38Z</updated>
<author>
<name>Vipin KUMAR</name>
<email>vipin.kumar@st.com</email>
</author>
<published>2012-05-22T00:15:54Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=7f0730a02e412015b0fc4e78dc41aef14e8a3d8c'/>
<id>urn:sha1:7f0730a02e412015b0fc4e78dc41aef14e8a3d8c</id>
<content type='text'>
Flexible static memory controller is a peripheral provided by ST,
which controls the access to NAND chips along with many other
memory device chips eg NOR, SRAM.

This patch adds the driver support for FSMC controller interfacing
with NAND memory.

Signed-off-by: Vipin Kumar &lt;vipin.kumar@st.com&gt;
Signed-off-by: Amit Virdi &lt;amit.virdi@st.com&gt;
Signed-off-by: Stefan Roese &lt;sr@denx.de&gt;
Acked-by: Scott Wood &lt;scottwood@freescale.com&gt;
</content>
</entry>
<entry>
<title>Merge branch 'master' of git://git.denx.de/u-boot-nand-flash</title>
<updated>2012-05-20T20:47:40Z</updated>
<author>
<name>Wolfgang Denk</name>
<email>wd@denx.de</email>
</author>
<published>2012-05-20T20:47:40Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=8fa3d2b8161bb73b759c9db5c811c885ca5ec60c'/>
<id>urn:sha1:8fa3d2b8161bb73b759c9db5c811c885ca5ec60c</id>
<content type='text'>
* 'master' of git://git.denx.de/u-boot-nand-flash:
  NAND: Remove ONFI detection message to from bootup log
  driver/mtd:IFC: Fix possible memory leak
  driver/mtd: IFC NAND: Add support of ONFI NAND flash
  mtd, nand: move some printfs to debug output.
  nand_util: correct YAFFS image write function
  powerpc/85xx: fix NAND boot linker scripts for -fpic
  nand: extend .raw accesses to work on multiple pages
</content>
</entry>
<entry>
<title>NAND: Remove ONFI detection message to from bootup log</title>
<updated>2012-05-18T23:17:06Z</updated>
<author>
<name>Stefan Roese</name>
<email>sr@denx.de</email>
</author>
<published>2012-05-07T21:29:30Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=e52fee9b04157c3f5bd73bb122e95d0c6ebb2270'/>
<id>urn:sha1:e52fee9b04157c3f5bd73bb122e95d0c6ebb2270</id>
<content type='text'>
Without this patch, boot shows this messages upon NAND detection:

NAND:  ONFI flash detected
ONFI param page 0 valid
ONFI flash detected
ONFI param page 0 valid
128 MiB

With this patch, its back to the U-Boot "standard":

NAND:  128 MiB

Tested on x600 (SPEAr600).

Signed-off-by: Stefan Roese &lt;sr@denx.de&gt;
Cc: Amit Virdi &lt;amit.virdi@st.com&gt;
Cc: Vipin Kumar &lt;vipin.kumar@st.com&gt;
Cc: Scott Wood &lt;scottwood@freescale.com&gt;
Acked-by: Amit Virdi &lt;amit.virdi@st.com&gt;
Signed-off-by: Scott Wood &lt;scott@tyr.buserror.net&gt;
</content>
</entry>
<entry>
<title>driver/mtd:IFC: Fix possible memory leak</title>
<updated>2012-05-18T23:15:24Z</updated>
<author>
<name>Prabhakar Kushwaha</name>
<email>prabhakar@freescale.com</email>
</author>
<published>2012-04-10T22:48:27Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=76d067ac33947f08fbbdea27bae5f3a263eda3f3'/>
<id>urn:sha1:76d067ac33947f08fbbdea27bae5f3a263eda3f3</id>
<content type='text'>
if priv-&gt;bank &gt;= MAX_BANK, priv should be freed before returning ENODEV.

Signed-off-by: Prabhakar Kushwaha &lt;prabhakar@freescale.com&gt;
Signed-off-by: Scott Wood &lt;scott@tyr.buserror.net&gt;
</content>
</entry>
<entry>
<title>driver/mtd: IFC NAND: Add support of ONFI NAND flash</title>
<updated>2012-05-18T23:13:50Z</updated>
<author>
<name>Prabhakar Kushwaha</name>
<email>prabhakar@freescale.com</email>
</author>
<published>2012-04-08T18:57:18Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=807fc702e0b09ac7bc335acfd3b0f54f9f08b643'/>
<id>urn:sha1:807fc702e0b09ac7bc335acfd3b0f54f9f08b643</id>
<content type='text'>
- Fix NAND_CMD_READID command for ONFI detect.
  - Add NAND_CMD_PARAM command to read the ONFI parameter page.

Signed-off-by: Prabhakar Kushwaha &lt;prabhakar@freescale.com&gt;
Acked-by: Scott Wood &lt;scottwood@freescale.com&gt;
Signed-off-by: Scott Wood &lt;scott@tyr.buserror.net&gt;
</content>
</entry>
<entry>
<title>mtd, nand: move some printfs to debug output.</title>
<updated>2012-05-18T23:11:37Z</updated>
<author>
<name>Heiko Schocher</name>
<email>hs@denx.de</email>
</author>
<published>2012-02-14T22:34:05Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=a35ea8070cd1e222a7c55bc32acf2e4efe80dbbb'/>
<id>urn:sha1:a35ea8070cd1e222a7c55bc32acf2e4efe80dbbb</id>
<content type='text'>
current U-Boot shows on startup (for example on the enbw_cmc
board) the following printfs from the nand subsystem:

Flash: 2 MiB
NAND:  Bad block table found at page 65472, version 0x01
Bad block table found at page 65408, version 0x01
nand_read_bbt: Bad block at 0x000002980000
nand_read_bbt: Bad block at 0x000003240000
128 MiB
MMC:   davinci: 0

remove them to debug output, so it shows with this patch:

Flash: 2 MiB
NAND:  128 MiB
MMC:   davinci: 0

Signed-off-by: Heiko Schocher &lt;hs@denx.de&gt;
Cc: Scott Wood &lt;scottwood@freescale.com&gt;
Signed-off-by: Scott Wood &lt;scott@tyr.buserror.net&gt;
</content>
</entry>
<entry>
<title>nand_util: correct YAFFS image write function</title>
<updated>2012-05-18T23:08:45Z</updated>
<author>
<name>Liu, Wentao</name>
<email>wentao.liu@intel.com</email>
</author>
<published>2012-01-17T19:55:02Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=65683026a5eb07d6186dc02b33b1e5874dbb6591'/>
<id>urn:sha1:65683026a5eb07d6186dc02b33b1e5874dbb6591</id>
<content type='text'>
In function nand_write_skip_bad(),for YAFFS filesystem part,
write_oob() will return 0 when success, so when rval equals 0,
it should continue to write the next page, and no break.

Signed-off-by: Wentao, Liu &lt;wentao.liu@intel.com&gt;
Acked-by: Lei Wen &lt;leiwen@marvell.com&gt;
Signed-off-by: Scott Wood &lt;scott@tyr.buserror.net&gt;
</content>
</entry>
<entry>
<title>imx: nand: Support flash based BBT</title>
<updated>2012-05-15T06:31:33Z</updated>
<author>
<name>Timo Ketola</name>
<email>timo@exertus.fi</email>
</author>
<published>2012-04-18T22:55:31Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=a1028730b5a5f8266fc3a198cd626bf73e157e6c'/>
<id>urn:sha1:a1028730b5a5f8266fc3a198cd626bf73e157e6c</id>
<content type='text'>
Signed-off-by: Timo Ketola &lt;timo@exertus.fi&gt;
Acked-by: Scott Wood &lt;scottwood@freescale.com&gt;
</content>
</entry>
<entry>
<title>linux/compat.h: rename from linux/mtd/compat.h</title>
<updated>2012-04-30T14:54:51Z</updated>
<author>
<name>Mike Frysinger</name>
<email>vapier@gentoo.org</email>
</author>
<published>2012-04-09T13:39:55Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=7b15e2bb9b1026925f0f98243cd6cf80bd3fb47d'/>
<id>urn:sha1:7b15e2bb9b1026925f0f98243cd6cf80bd3fb47d</id>
<content type='text'>
This lets us use it in more places than just mtd code.

Signed-off-by: Mike Frysinger &lt;vapier@gentoo.org&gt;
</content>
</entry>
</feed>
