25 Nov, 2015

1 commit


19 Nov, 2015

1 commit


30 Oct, 2015

1 commit


25 Oct, 2015

2 commits


13 Aug, 2015

2 commits

  • Remove spurious new line in configuration file.

    Signed-off-by: Marcel Ziswiler
    Tested-by: Marek Vasut
    Acked-by: Marek Vasut

    Marcel Ziswiler
     
  • Add option to set shell prompt string from menuconfig and migrate
    boards globally.

    The migration is done as follows:
    - Boards that explicitly and unconditionally set CONFIG_SYS_PROMPT had the
    entry moved to their defconfig files.
    - Boards that defined some kind of #ifdef logic which selects the
    CONFIG_SYS_PROMPT (for example qemu-mips) got an #undef CONFIG_SYS_PROMPT
    right before the #ifdef logic and were left alone.
    - This change forces CONFIG_SYS_PROMPT to be a per board decision, and thus
    CONFIG_SYS_PROMPT was removed from all _common.h and _common.h
    files. This results in a streamlined default value across platforms, and
    includes the following files: spear-common, sunxi-common, mv-common,
    ti_armv7_common, tegra-common, at91-sama5_common, and zynq-common.
    - Boards that relied on _common.h values of CONFIG_SYS_PROMPT were
    not updated in their respective defconfig files under the assumption that
    since they did not explicitly define a value, they're fine with whatever
    the default is.
    - On the other hand, boards that relied on a value defined in some
    _common.h file such as woodburn_common, rpi-common,
    bur_am335x_common, ls2085a_common, siemens_am33x_common, and
    omap3_evm_common, had their values moved to the respective defconfig files.
    - The define V_PROMPT was removed, since it is not used anywhere except for
    assigning a value for CONFIG_SYS_PROMPT.

    Cc: Tom Rini
    Cc: Masahiro Yamada
    Cc: Stefano Babic
    Cc: Igor Grinberg
    Signed-off-by: Nikita Kiryanov
    [trini: Add spring, sniper, smartweb to conversion]
    Signed-off-by: Tom Rini

    Nikita Kiryanov
     

22 Jul, 2015

1 commit

  • This introduces a coherent scheme for naming USB download gadget and functions
    config options. The download USB gadget config option is moved to
    CONFIG_USB_GADGET_DOWNLOAD for better consistency with other gadgets and each
    function's config option is moved to a CONFIG_USB_FUNCTION_ prefix.

    Signed-off-by: Paul Kocialkowski
    Tested-by: Lukasz Majewski

    Test HW: Odroid_XU3 (Exynos5422), trats (Exynos4210)

    Paul Kocialkowski
     

03 Jul, 2015

2 commits


26 Jun, 2015

1 commit


08 Jun, 2015

3 commits


01 Jun, 2015

1 commit


25 May, 2015

2 commits

  • This changes enable ONFI detection. The Read ID command now allows
    one address byte which is needed for ONFI detection. To read the
    ONFI parameter page, the NAND_CMD_PARAM need to be supported. The
    CMD code enables one command and one address byte along with reading
    data from flash using R/B#, as specified by ONFI.

    Signed-off-by: Stefan Agner

    Stefan Agner
     
  • This commit allows users to enable/disable the Freescale NFC
    controller found in systems like Vybrid (VF610), MPC5125, MCF54418
    or Kinetis K70 via Kconfig with more detailed help docs.

    Signed-off-by: Stefan Agner
    Acked-by: Stefano Babic
    [scottwood: updated vf610twr_nand_defconfig]
    Signed-off-by: Scott Wood

    Stefan Agner
     

24 Apr, 2015

2 commits

  • Enable USB support on Toradex Colibri Vybrid Modules.

    Signed-off-by: Sanchayan Maity
    Acked-by: Marek Vasut

    Sanchayan Maity
     
  • This adds initial support for Colibri VF50/VF61 based on Freescale
    Vybrid SoC.

    - CPU clocked at 396/500 MHz
    - DDR3 at 396MHz
    - for VF50, use PLL2 as memory clock (synchronous mode)
    - for VF61, use PLL1 as memory clock (asynchronous mode)
    - Console on UART0 (Colibri UART_A)
    - Ethernet on FEC1
    - PLL5 based RMII clocking (E.g. No external crystal)
    - UART_A and UART_C I/O muxing
    - Boot from NAND by default

    Tested on Colibri VF50/VF61 booting using serial loader over UART.

    Signed-off-by: Sanchayan Maity
    Acked-by: Stefan Agner

    Sanchayan Maity