<feed xmlns='http://www.w3.org/2005/Atom'>
<title>u-boot.git/nand_spl, branch v2012.04</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>Changes to move hawkboard to the new spl infrastructure</title>
<updated>2012-02-12T09:11:33+00:00</updated>
<author>
<name>Sughosh Ganu</name>
<email>urwithsughosh@gmail.com</email>
</author>
<published>2012-02-02T00:44:41+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=6b873dcabd85ca4109a76c488c653609ea71c848'/>
<id>6b873dcabd85ca4109a76c488c653609ea71c848</id>
<content type='text'>
This patch moves hawkboard to the new spl infrastructure from the
older nand_spl one.

Removed the hawkboard_nand_config build option -- The spl code now
gets compiled with hawkboard_config, after building the main u-boot
image, using the CONFIG_SPL_TEXT_BASE. Modified the README.hawkboard
to reflect the same.

Signed-off-by: Sughosh Ganu &lt;urwithsughosh@gmail.com&gt;
Signed-off-by: Heiko Schocher &lt;hs@denx.de&gt;
Cc: Heiko Schocher &lt;hs@denx.de&gt;
Cc: Christian Riesch &lt;christian.riesch@omicron.at&gt;
Cc: Sudhakar Rajashekhara &lt;sudhakar.raj@ti.com&gt;
Cc: Tom Rini &lt;trini@ti.com&gt;
Acked-by: Christian Riesch &lt;christian.riesch@omicron.at&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This patch moves hawkboard to the new spl infrastructure from the
older nand_spl one.

Removed the hawkboard_nand_config build option -- The spl code now
gets compiled with hawkboard_config, after building the main u-boot
image, using the CONFIG_SPL_TEXT_BASE. Modified the README.hawkboard
to reflect the same.

Signed-off-by: Sughosh Ganu &lt;urwithsughosh@gmail.com&gt;
Signed-off-by: Heiko Schocher &lt;hs@denx.de&gt;
Cc: Heiko Schocher &lt;hs@denx.de&gt;
Cc: Christian Riesch &lt;christian.riesch@omicron.at&gt;
Cc: Sudhakar Rajashekhara &lt;sudhakar.raj@ti.com&gt;
Cc: Tom Rini &lt;trini@ti.com&gt;
Acked-by: Christian Riesch &lt;christian.riesch@omicron.at&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>nand_spl: store ecc data on the stack</title>
<updated>2012-01-26T22:09:06+00:00</updated>
<author>
<name>Scott Wood</name>
<email>scottwood@freescale.com</email>
</author>
<published>2012-01-11T21:41:01+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=25efd99dbb1352314c9eacdfae42064c2ca15499'/>
<id>25efd99dbb1352314c9eacdfae42064c2ca15499</id>
<content type='text'>
Adapt the following patch from spl to nand_spl:

  Author: Stefano Babic &lt;sbabic@denx.de&gt;
  Date:   Thu Dec 15 10:55:37 2011 +0100

      nand_spl_simple: store ecc data on the stack

      Currently nand_spl_simple puts it's temp data at 0x10000 offset in SDRAM
      which is likely to contain already loaded data.
      The patch saves the oob data and the ecc on the stack replacing
      the fixed address in RAM.

      Signed-off-by: Stefano Babic &lt;sbabic@denx.de&gt;
      CC: Ilya Yanok &lt;yanok@emcraft.com&gt;
      CC: Scott Wood &lt;scottwood@freescale.com&gt;
      CC: Tom Rini &lt;tom.rini@gmail.com&gt;
      CC: Simon Schwarz &lt;simonschwarzcor@googlemail.com&gt;
      CC: Wolfgang Denk &lt;wd@denx.de&gt;
      Signed-off-by: Scott Wood &lt;scottwood@freescale.com&gt;

While nand_spl is on its way out, in favor of spl, there are still
many boards using it, and conversions are gradual.  This allows us
to get rid of CONFIG_SYS_NAND_ECCSTEPS and CONFIG_SYS_NAND_ECCTOTAL now,
which would otherwise be likely to linger unreferenced after a conversion.

It also eliminates a temporary error in the hawkboard_nand build, since
the spl version of the patch removed ECCSTEPS/TOTAL from hawkboard.h, but
the spl conversion is pending (and may be merged via a different tree).

Signed-off-by: Scott Wood &lt;scottwood@freescale.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Adapt the following patch from spl to nand_spl:

  Author: Stefano Babic &lt;sbabic@denx.de&gt;
  Date:   Thu Dec 15 10:55:37 2011 +0100

      nand_spl_simple: store ecc data on the stack

      Currently nand_spl_simple puts it's temp data at 0x10000 offset in SDRAM
      which is likely to contain already loaded data.
      The patch saves the oob data and the ecc on the stack replacing
      the fixed address in RAM.

      Signed-off-by: Stefano Babic &lt;sbabic@denx.de&gt;
      CC: Ilya Yanok &lt;yanok@emcraft.com&gt;
      CC: Scott Wood &lt;scottwood@freescale.com&gt;
      CC: Tom Rini &lt;tom.rini@gmail.com&gt;
      CC: Simon Schwarz &lt;simonschwarzcor@googlemail.com&gt;
      CC: Wolfgang Denk &lt;wd@denx.de&gt;
      Signed-off-by: Scott Wood &lt;scottwood@freescale.com&gt;

While nand_spl is on its way out, in favor of spl, there are still
many boards using it, and conversions are gradual.  This allows us
to get rid of CONFIG_SYS_NAND_ECCSTEPS and CONFIG_SYS_NAND_ECCTOTAL now,
which would otherwise be likely to linger unreferenced after a conversion.

It also eliminates a temporary error in the hawkboard_nand build, since
the spl version of the patch removed ECCSTEPS/TOTAL from hawkboard.h, but
the spl conversion is pending (and may be merged via a different tree).

Signed-off-by: Scott Wood &lt;scottwood@freescale.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>nand_spl/nand_boot.c: Fix build warning</title>
<updated>2011-12-07T22:13:17+00:00</updated>
<author>
<name>Anatolij Gustschin</name>
<email>agust@denx.de</email>
</author>
<published>2011-12-07T11:58:56+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=40a0682d4ae69bdd8b6aa10b6dcb57a489ae875c'/>
<id>40a0682d4ae69bdd8b6aa10b6dcb57a489ae875c</id>
<content type='text'>
Fix:
nand_boot.c: In function 'nand_read_page':
nand_boot.c:150:6: warning: variable 'stat' set but not used
[-Wunused-but-set-variable]

Signed-off-by: Anatolij Gustschin &lt;agust@denx.de&gt;
Signed-off-by: Scott Wood &lt;scottwood@freescale.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix:
nand_boot.c: In function 'nand_read_page':
nand_boot.c:150:6: warning: variable 'stat' set but not used
[-Wunused-but-set-variable]

Signed-off-by: Anatolij Gustschin &lt;agust@denx.de&gt;
Signed-off-by: Scott Wood &lt;scottwood@freescale.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>davinci: Remove unwanted memsize.c from hawkboard's nand spl build</title>
<updated>2011-12-06T22:59:41+00:00</updated>
<author>
<name>Sughosh Ganu</name>
<email>urwithsughosh@gmail.com</email>
</author>
<published>2011-12-06T03:45:28+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=15422043c4a213dc5d7d59a337be1ab34c9b2e7f'/>
<id>15422043c4a213dc5d7d59a337be1ab34c9b2e7f</id>
<content type='text'>
dram_init function in board/davinci/common/misc.c does not get
compiled for spl builds, thus rendering inclusion of memsize.c
useless.

Signed-off-by: Sughosh Ganu &lt;urwithsughosh@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
dram_init function in board/davinci/common/misc.c does not get
compiled for spl builds, thus rendering inclusion of memsize.c
useless.

Signed-off-by: Sughosh Ganu &lt;urwithsughosh@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>arm, davinci: move misc function in arch tree</title>
<updated>2011-12-06T22:59:37+00:00</updated>
<author>
<name>Heiko Schocher</name>
<email>hs@denx.de</email>
</author>
<published>2011-11-29T02:33:46+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=5b51e7f3ca36f1ba445f9079835bf66304e16562'/>
<id>5b51e7f3ca36f1ba445f9079835bf66304e16562</id>
<content type='text'>
move the board/davinci/common/misc.c file to
arch/arm/cpu/arm926ejs/davinci/misc.c, so all
davinci boards can use this functions.

Signed-off-by: Heiko Schocher &lt;hs@denx.de&gt;
Cc: Sandeep Paulraj &lt;s-paulraj@ti.com&gt;
Cc: Tom Rini &lt;tom.rini@gmail.com&gt;
Cc: Albert ARIBAUD &lt;albert.u.boot@aribaud.net&gt;
Cc: Christian Riesch &lt;christian.riesch@omicron.at&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
move the board/davinci/common/misc.c file to
arch/arm/cpu/arm926ejs/davinci/misc.c, so all
davinci boards can use this functions.

Signed-off-by: Heiko Schocher &lt;hs@denx.de&gt;
Cc: Sandeep Paulraj &lt;s-paulraj@ti.com&gt;
Cc: Tom Rini &lt;tom.rini@gmail.com&gt;
Cc: Albert ARIBAUD &lt;albert.u.boot@aribaud.net&gt;
Cc: Christian Riesch &lt;christian.riesch@omicron.at&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>arm, hawkboard: Use the pinmux configurations defined in the arch tree</title>
<updated>2011-12-06T22:59:37+00:00</updated>
<author>
<name>Christian Riesch</name>
<email>christian.riesch@omicron.at</email>
</author>
<published>2011-11-28T23:46:19+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=e8c856d28814a4ee52c84f3c7a92bb8c561a9b4c'/>
<id>e8c856d28814a4ee52c84f3c7a92bb8c561a9b4c</id>
<content type='text'>
The boards in board/davinci/da8xxevm/ define pinmux_config[] vectors
that contain pinmux configurations for emac, uarts, memory controllers...
In an earlier patch such pinmux configurations were added to the arch
tree. This patch makes the hawkboard use these definitions instead of
defining its own.

Signed-off-by: Christian Riesch &lt;christian.riesch@omicron.at&gt;
Cc: Sandeep Paulraj &lt;s-paulraj@ti.com&gt;
Cc: Heiko Schocher &lt;hs@denx.de&gt;
Cc: Syed Mohammed Khasim &lt;sm.khasim@gmail.com&gt;
Cc: Sughosh Ganu &lt;urwithsughosh@gmail.com&gt;
Cc: Mike Frysinger &lt;vapier@gentoo.org&gt;
Acked-by: Heiko Schocher &lt;hs@denx.de&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The boards in board/davinci/da8xxevm/ define pinmux_config[] vectors
that contain pinmux configurations for emac, uarts, memory controllers...
In an earlier patch such pinmux configurations were added to the arch
tree. This patch makes the hawkboard use these definitions instead of
defining its own.

Signed-off-by: Christian Riesch &lt;christian.riesch@omicron.at&gt;
Cc: Sandeep Paulraj &lt;s-paulraj@ti.com&gt;
Cc: Heiko Schocher &lt;hs@denx.de&gt;
Cc: Syed Mohammed Khasim &lt;sm.khasim@gmail.com&gt;
Cc: Sughosh Ganu &lt;urwithsughosh@gmail.com&gt;
Cc: Mike Frysinger &lt;vapier@gentoo.org&gt;
Acked-by: Heiko Schocher &lt;hs@denx.de&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>arm, davinci: Move pinmux functions from board to arch tree</title>
<updated>2011-12-06T22:59:36+00:00</updated>
<author>
<name>Christian Riesch</name>
<email>christian.riesch@omicron.at</email>
</author>
<published>2011-11-28T23:46:14+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=964930bcfdc67112ea76727163f3408bcf40f614'/>
<id>964930bcfdc67112ea76727163f3408bcf40f614</id>
<content type='text'>
Signed-off-by: Christian Riesch &lt;christian.riesch@omicron.at&gt;
Cc: Sandeep Paulraj &lt;s-paulraj@ti.com&gt;
Cc: Heiko Schocher &lt;hs@denx.de&gt;
Cc: Sudhakar Rajashekhara &lt;sudhakar.raj@ti.com&gt;
Cc: Syed Mohammed Khasim &lt;sm.khasim@gmail.com&gt;
Cc: Sughosh Ganu &lt;urwithsughosh@gmail.com&gt;
Cc: Nick Thompson &lt;nick.thompson@ge.com&gt;
Cc: Stefano Babic &lt;sbabic@denx.de&gt;
Acked-by: Heiko Schocher &lt;hs@denx.de&gt;
Acked-by: Nick Thompson &lt;nick.thompson@ge.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Christian Riesch &lt;christian.riesch@omicron.at&gt;
Cc: Sandeep Paulraj &lt;s-paulraj@ti.com&gt;
Cc: Heiko Schocher &lt;hs@denx.de&gt;
Cc: Sudhakar Rajashekhara &lt;sudhakar.raj@ti.com&gt;
Cc: Syed Mohammed Khasim &lt;sm.khasim@gmail.com&gt;
Cc: Sughosh Ganu &lt;urwithsughosh@gmail.com&gt;
Cc: Nick Thompson &lt;nick.thompson@ge.com&gt;
Cc: Stefano Babic &lt;sbabic@denx.de&gt;
Acked-by: Heiko Schocher &lt;hs@denx.de&gt;
Acked-by: Nick Thompson &lt;nick.thompson@ge.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix regression in SMDK6400</title>
<updated>2011-12-06T22:59:31+00:00</updated>
<author>
<name>Simon Schwarz</name>
<email>simonschwarzcor@googlemail.com</email>
</author>
<published>2011-10-31T06:34:45+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=56c91bc3b6be0551113df0eb1f0c8b1a597b9da1'/>
<id>56c91bc3b6be0551113df0eb1f0c8b1a597b9da1</id>
<content type='text'>
s3c64xx.c implemented its own nand_read_byte, nand_write_buf and
nand_read_buf functions. This provoked a regression when these functions
were made public by patch 55f429bb39614a16b1bacc9a8bea9ac01a60bfc8.

This deletes these duplicated functions from s3c64xx.c and adds the generic
implementations in nand_base.c to the spl Makefile. It also adds
-ffcuntion-sections and -gc-sections to the compilation flags of the SPL to
avoid errors originating from unused functions in nand_base.c.

Description of the regression:
http://article.gmane.org/gmane.comp.boot-loaders.u-boot/108873

Signed-off-by: Simon Schwarz &lt;simonschwarzcor@gmail.com&gt;
Cc: scottwood@freescale.com
Cc: s-paulraj@ti.com
Cc: albert.u.boot@aribaud.net
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
s3c64xx.c implemented its own nand_read_byte, nand_write_buf and
nand_read_buf functions. This provoked a regression when these functions
were made public by patch 55f429bb39614a16b1bacc9a8bea9ac01a60bfc8.

This deletes these duplicated functions from s3c64xx.c and adds the generic
implementations in nand_base.c to the spl Makefile. It also adds
-ffcuntion-sections and -gc-sections to the compilation flags of the SPL to
avoid errors originating from unused functions in nand_base.c.

Description of the regression:
http://article.gmane.org/gmane.comp.boot-loaders.u-boot/108873

Signed-off-by: Simon Schwarz &lt;simonschwarzcor@gmail.com&gt;
Cc: scottwood@freescale.com
Cc: s-paulraj@ti.com
Cc: albert.u.boot@aribaud.net
</pre>
</div>
</content>
</entry>
<entry>
<title>nand_boot.c: Fix GCC 4.6 build warnings</title>
<updated>2011-11-16T20:16:49+00:00</updated>
<author>
<name>Stefan Roese</name>
<email>sr@denx.de</email>
</author>
<published>2011-11-15T08:02:54+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=6d68621ceaca2513fefd7759dd3f7719e951e56a'/>
<id>6d68621ceaca2513fefd7759dd3f7719e951e56a</id>
<content type='text'>
Fix:
nand_boot.c: In function 'nand_read_page':
nand_boot.c:190:6: warning: variable 'stat' set but not used [-Wunused-but-set-variable]
nand_boot.c: In function 'nand_boot':
nand_boot.c:271:6: warning: variable 'ret' set but not used [-Wunused-but-set-variable]

Signed-off-by: Stefan Roese &lt;sr@denx.de&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix:
nand_boot.c: In function 'nand_read_page':
nand_boot.c:190:6: warning: variable 'stat' set but not used [-Wunused-but-set-variable]
nand_boot.c: In function 'nand_boot':
nand_boot.c:271:6: warning: variable 'ret' set but not used [-Wunused-but-set-variable]

Signed-off-by: Stefan Roese &lt;sr@denx.de&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'master' of git://git.denx.de/u-boot-nand-flash</title>
<updated>2011-10-04T20:20:25+00:00</updated>
<author>
<name>Wolfgang Denk</name>
<email>wd@denx.de</email>
</author>
<published>2011-10-04T20:20:25+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=4f7549d2dc00023c5f33d1adc7fee0a77575fcb2'/>
<id>4f7549d2dc00023c5f33d1adc7fee0a77575fcb2</id>
<content type='text'>
* 'master' of git://git.denx.de/u-boot-nand-flash:
  PPC: Fix socrates NAND problem
  PPC: Fix fsl_upm.c by renaming nand handling functions
  NAND: Make page, erase, oob size available via cmd_nand
  mtd: eLBC NAND: remove elbc_fcm_ctrl-&gt;oob_poi
  NAND: Add -y option to nand scrub command
  NAND: Add nand read.raw and write.raw commands
  NAND: Really ignore bad blocks when scrubbing
  spl, nand: add 4bit HW ecc oob first nand_read_page function
  mxc_nand: fix a problem writing more than 32MB
  mxc_nand: fixed some typos (cosmetic)
  nand: increase chip_delay in mv kirkwood nand driver
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* 'master' of git://git.denx.de/u-boot-nand-flash:
  PPC: Fix socrates NAND problem
  PPC: Fix fsl_upm.c by renaming nand handling functions
  NAND: Make page, erase, oob size available via cmd_nand
  mtd: eLBC NAND: remove elbc_fcm_ctrl-&gt;oob_poi
  NAND: Add -y option to nand scrub command
  NAND: Add nand read.raw and write.raw commands
  NAND: Really ignore bad blocks when scrubbing
  spl, nand: add 4bit HW ecc oob first nand_read_page function
  mxc_nand: fix a problem writing more than 32MB
  mxc_nand: fixed some typos (cosmetic)
  nand: increase chip_delay in mv kirkwood nand driver
</pre>
</div>
</content>
</entry>
</feed>
