10 Jan, 2014

12 commits


09 Jan, 2014

11 commits


08 Jan, 2014

6 commits


06 Jan, 2014

5 commits


03 Jan, 2014

6 commits

  • Enable fuse supply before fuse programming and disable after.

    Signed-off-by: Sergey Alyoshin
    Reviewed-by: Benoît Thébaudeau

    Sergey Alyoshin
     
  • The enable_fec_anatop_clock method should be available for all MX6
    variant as it is not MX6 SoloLite specific. This moves the code out of
    the #ifdef/#endif and we make it conditional to CONFIG_FEC_MXC
    instead.

    Signed-off-by: Otavio Salvador
    Acked-by: Stefano Babic

    Otavio Salvador
     
  • This patch fixes allow for the DeviceTree and initrd relocation fixing
    the boot of FSL 3.10.9-1.0.0-alpha kernel.

    This changes following boards:

    - mx6sabreauto
    - mx6sabresd
    - wandboard
    - udoo
    - nitrogen6x
    - cgtqmx6eval

    The reasoning, as explained by Hui Liu, is:

    ,----
    | The FDT blob will be placed at DDR physical addr: 0x11000000. When Linux kernel
    | Boot up, it will decompress the compressed kernel image and place the decompressed
    | kernel image at the low end of the DDR memory and start running from it. If the
    | decompressed kernel image is bigger for example than 16M, it may over written the
    | fdt blob which u-boot loaded to the DDR memory @0x11000000 with fdt_addr=0x11000000
    |
    | To expand the fdt_addr from 0x11000000 to 0x18000000, which can avoid the override
    | Since we will not likely have one kernel image larger than 128MB.
    `----

    Signed-off-by: Otavio Salvador
    Acked-by: Stefano Babic

    Otavio Salvador
     
  • This adds following new targets:

    - update_nand_kernel
    - update_nand_fdt
    - update_nand_filesystem

    and to avoid confusion, the 'update_nand_full' has been renamed to
    'update_nand_firmware_full'.

    Signed-off-by: Otavio Salvador

    Otavio Salvador
     
  • This reads the kernel, ftd and boot into ubifs filesystem. While on
    that, the SD firmware filename definition has been moved next to the
    other SD related commands.

    Signed-off-by: Otavio Salvador
    Reviewed-by: Fabio Estevam

    Otavio Salvador
     
  • Using 512k for fdt partition allow it to be aligned with the other
    small partitions and 512k erase block size.

    Signed-off-by: Otavio Salvador
    Acked-by: Stefano Babic

    Otavio Salvador