11 Sep, 2014

1 commit


11 Feb, 2014

1 commit


13 Nov, 2013

1 commit


05 Nov, 2013

1 commit


15 Oct, 2013

1 commit


24 Jul, 2013

1 commit


08 Mar, 2013

1 commit


10 Dec, 2012

1 commit


28 Nov, 2012

1 commit


10 Nov, 2012

1 commit


27 Oct, 2012

1 commit


23 Oct, 2012

1 commit


20 Oct, 2012

1 commit


16 Oct, 2012

1 commit


01 Sep, 2012

1 commit


07 Jul, 2012

1 commit


21 Jun, 2012

2 commits


15 May, 2012

1 commit


16 Apr, 2012

1 commit


12 Feb, 2012

1 commit

  • To be able to load the device tree and initrd correctly, set
    the fdt_high and initrd_high environment variables.

    Using 0xffffffff implies that the device tree and the initrd
    are initially copied to working addresses. This will avoid an
    additional copy.

    Loading the device tree to 0x30000000 and the initrd to 0x3c000000
    should work for both boards, the ARM2 and SabreLite.

    Example (SabreLite):

    fatload mmc 0:2 0x10000000 uImage
    fatload mmc 0:2 0x3c000000 uInitrd
    fatload mmc 0:2 0x30000000 board.dtb
    bootm 0x10000000 0x3c000000 0x30000000

    Note: This requires that the kernel has CONFIG_HIGHMEM enabled.

    Signed-off-by: Dirk Behme
    CC: Jason Liu
    CC: Stefano Babic
    Acked-by: Jason Liu

    Dirk Behme
     

16 Jan, 2012

1 commit


10 Dec, 2011

1 commit

  • Add the initial support for Freescale i.MX6Q Armadillo2 board
    Support: MMC boot from slot 0/1, debug UART(UART4), usdhc.

    There is two MMC slots on the boards:
    mmc dev 0 -> connect USDHC3 -> the lower slot on the board,
    mmc dev 1 -> connect USDHC4 -> the upper slot on the board,

    Signed-off-by: Jason Liu
    Cc: Stefano Babic
    Tested-by: Dirk Behme

    Jason Liu