29 Sep, 2017

1 commit


15 Sep, 2017

1 commit


12 Jul, 2017

1 commit


10 May, 2017

1 commit


14 Apr, 2017

4 commits


04 Jun, 2016

1 commit

  • nand_info[] is now an array of pointers, with the actual mtd_info
    instance embedded in struct nand_chip.

    This is in preparation for syncing the NAND code with Linux 4.6,
    which makes the same change to struct nand_chip. It's in a separate
    commit due to the large amount of changes required to accommodate the
    change to nand_info[].

    Signed-off-by: Scott Wood

    Scott Wood
     

19 Feb, 2016

2 commits


02 Feb, 2016

1 commit


21 Aug, 2015

2 commits


01 Apr, 2015

1 commit


21 Feb, 2015

1 commit

  • The board select menu in arch/arm/Kconfig is still big.
    To slim down it, this commit moves AT91 boards to
    arch/arm/mach-at91/Kconfig.
    Also, consolidate "config SYS_SOC" in each board Kconfig.

    The Kconfig files under board/ directory were modified with the
    following command:

    find board -name Kconfig | xargs sed -i -e '
    /config SYS_SOC/ {
    N
    /default "at91"/ {
    N
    d
    }
    }
    '

    Signed-off-by: Masahiro Yamada
    Acked-by: Andreas Bießmann

    Masahiro Yamada
     

08 Feb, 2015

1 commit


19 Jan, 2015

1 commit


12 Jan, 2015

1 commit


11 Jan, 2015

1 commit


17 Nov, 2014

1 commit

  • The code for this board supports following features:
    - Boot media support: NAND flash/SD card/SPI flash
    - Support LCD display
    - Support ethernet
    - Support USB mass storage

    Signed-off-by: Bo Shen
    Signed-off-by: Andreas Bießmann

    Bo Shen