u-boot-brain/board/siemens/common
Jon Loeliger 9107ebe0d3 board/[k-z]*: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
This is a compatibility step that allows both the older form
and the new form to co-exist for a while until the older can
be removed entirely.

All transformations are of the form:
Before:
    #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
After:
    #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)

Signed-off-by: Jon Loeliger <jdl@freescale.com>
2007-07-04 00:35:03 +02:00
..
fpga.c board/[k-z]*: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*). 2007-07-04 00:35:03 +02:00
fpga.h Initial revision 2002-06-10 16:09:10 +00:00
README Change all '$(...)' variable references into '${...}' 2005-11-20 21:40:11 +01:00

CCM/SCM-Ergaenzungen fuer U-Boot und Linux:
-------------------------------------------

Es gibt nun ein gemeinsames Kommando zum Laden der FPGAs:

  => help fpga
  fpga fpga status [name] - print FPGA status
  fpga reset  [name] - reset FPGA
  fpga load [name] addr - load FPGA configuration data

Der Name kann beim CCM-Module auch weggelassen werden.
Die Laengenangabe und damit "puma_len" ist nicht mehr
noetig:

  => fpga load puma 40600000
  FPGA load PUMA: addr 40600000: (00000005)... done

Die MTD-Partitionierung kann nun mittels "bootargs" ueber-
geben werden:

  => printenv addmtd
  addmtd=setenv bootargs ${bootargs}
    mtdparts=0:256k(U-Boot)ro,768k(Kernel),-(Rest)\;1:-(myJFFS2)

Die Portierung auf SMC ist natuerlich noch nicht getestet.

Wolfgang Grandegger (04.06.2002)