26 Sep, 2012

1 commit


22 Sep, 2012

1 commit


21 Sep, 2012

1 commit


20 Sep, 2012

6 commits


19 Sep, 2012

5 commits


18 Sep, 2012

1 commit


17 Sep, 2012

3 commits


14 Sep, 2012

2 commits


13 Sep, 2012

1 commit


11 Sep, 2012

2 commits


10 Sep, 2012

2 commits


08 Sep, 2012

5 commits

  • Ventana always pulls in files from the Seaboard directory, so needs to
    mkdir $(obj)../seaboard unconditionally. This fixes:

    git clean -f -d -x
    ./MAKEALL ventana

    "MAKEALL -s tegra20" passes without this change, because Seaboard
    happens to be built before Ventana, and hence the directory has already
    been created.

    I believe the mkdir is only needed for out-of-tree builds, since the
    seaboard directory is part of the source tree. However, since we always
    build an SPL for Tegra now, which I believe is effectively an out-of-tree
    build, we will always need this at some time. The overhead of just
    uncondtionally executing the mkdir is minimal, and simplifies the
    Makefile, since we don't need to code up the exact minimal condition to
    execute the mkdir.

    Signed-off-by: Stephen Warren
    Signed-off-by: Tom Warren

    Stephen Warren
     
  • None of harmony, seaboard, ventana, whistler directly build files from
    ../common/, so there's no need to mkdir the obj directory for such files.

    Signed-off-by: Stephen Warren
    Signed-off-by: Tom Warren

    Stephen Warren
     
  • This commit enables NAND support on the Tamonten Evaluation Carrier and
    adds the corresponding device tree nodes. Furthermore, the U-Boot
    environment can now be stored in NAND.

    Signed-off-by: Thierry Reding
    Signed-off-by: Tom Warren

    Thierry Reding
     
  • Signed-off-by: Stephen Warren
    Signed-off-by: Tom Warren

    Stephen Warren
     
  • Add a flash node to handle the NAND, including memory timings and
    page / block size information.

    Signed-off-by: Simon Glass
    Signed-off-by: Tom Warren

    Simon Glass
     

06 Sep, 2012

1 commit


05 Sep, 2012

6 commits


04 Sep, 2012

3 commits

  • Because of the way USB pad settings are handled it doesn't make sense to
    be able to build the Efika MX board support without CONFIG_CMD_USB turned
    on. So, we change the build to always compile in USB support.

    We do not need to check for CONFIG_CMD_USB like we do with CONFIG_MXC_SPI
    since the USB subsystem will error out of the compile for us.

    Additionally, the following behaviors have changed;

    * Smartbook "preboot" should not set input and output to USB keyboard as
    there is no display support
    * board_eth_init is implemented such that it does not cause U-Boot to
    report an explicit failure ("CPU Net Initialization Failed").

    Since Ethernet is implemented via USB (fixed on Smarttop, pluggable on
    Smartbook, and handled by "usb start") - the warning that is left
    ("No ethernet found") is perfectly reasonable at the point it is printed
    since the USB system hasn't been started and nothing has been probed yet.

    Signed-off-by: Matt Sealey
    Cc: Stefano Babic
    Cc: Marek Vasut

    Matt Sealey
     
  • Recent conversion from mx28_adjust_memory_params to mxs_adjust_memory_params
    missed to update mx28evk, which caused the board not to boot.

    Apply the conversion so that the board can boot again.

    Signed-off-by: Fabio Estevam
    Acked-by: Marek Vasut

    Fabio Estevam
     
  • Align the SSP clock speed with oscilator to achieve higher transfer
    stability.

    Signed-off-by: Otavio Salvador
    Acked-by: Marek Vasut

    Otavio Salvador