01 Nov, 2013

1 commit


24 Jul, 2013

1 commit


30 May, 2013

1 commit


10 May, 2013

1 commit

  • Many boot image configuration files refer to the
    appropriate documentation file, but these references
    contain typos in the directory and file name. Fix
    them. Also fix reference to doc/README.SPL file.

    Signed-off-by: Anatolij Gustschin
    Cc: Prafulla Wadaskar
    Cc: Stefano Babic
    Acked-by: Stefano Babic

    Anatolij Gustschin
     

05 May, 2013

1 commit


22 Jan, 2013

1 commit

  • The '#' used as comments in the files cause the preprocessor
    trouble, so change to /* */.

    The mkimage command which uses this preprocessor output
    was moved to arch/arm/imx-common/Makefile

    .gitignore was updated to ignore .cfgtmp files.

    Signed-off-by: Troy Kisky

    Troy Kisky
     

14 Nov, 2012

1 commit

  • The PMIC framework has been extended to support multiple instances of
    the variety of devices responsible for power management.
    This change allows supporting of e.g. fuel gauge, charger, MUIC (Micro USB
    Interface Circuit).
    Power related includes have been moved to ./include/power directory.
    This is a first of a series of patches - in the future "pmic" will be
    replaced with "power".

    Two important issues:
    1. The PMIC needs to be initialized just after malloc is configured
    2. It uses list to hold information about available PMIC devices

    Signed-off-by: Lukasz Majewski
    Signed-off-by: Kyungmin Park
    Cc: Stefano Babic

    Łukasz Majewski
     

16 Oct, 2012

2 commits


01 Sep, 2012

2 commits

  • The cache snooping feature of Freescale's eSDHC IP is not available on i.MX, so
    disable it globally for this architecture. This avoids setting no_snoop for all
    i.MX boards, and it prevents setting a reserved bit of a reserved register if
    fsl_esdhc_mmc_init() is used on i.MX, like in
    arch/arm/cpu/armv7/imx-common/cpu.c/cpu_mmc_init().

    Since no_snoop was only used on i.MX, get rid of it BTW.

    Signed-off-by: Benoît Thébaudeau
    Cc: Andy Fleming
    Cc: Stefano Babic
    Cc: Kim Phillips

    Benoît Thébaudeau
     
  • On this board, the console is always set to the serial line.
    Do not allow to overwrite it when video is enabled.

    Signed-off-by: Fabio Estevam

    Fabio Estevam
     

07 Jul, 2012

1 commit


25 May, 2012

1 commit

  • The ipuv3 driver is currently only used on mx51, but it can be extended to work
    on mx53 and mx6 as well.

    Rename mx51_fb_init(), so that it can be used by other SoCs.

    Signed-off-by: Fabio Estevam
    Acked-by: Jason Liu

    Fabio Estevam
     

24 Dec, 2011

1 commit


05 Nov, 2011

1 commit


04 Nov, 2011

1 commit


28 Oct, 2011

1 commit


18 Oct, 2011

1 commit

  • * 'master' of git://git.denx.de/u-boot-video:
    video: Moving mx3fb.c to CONFIG_VIDEO
    mx31: make HSP clock for mx3fb driver available
    MX5: Make IPU display output and pixel format configurable
    VIDEO: MX5: export pix format
    VIDEO: MX5: Switch MX5 to CONFIG_VIDEO
    video: update the Freescale DIU driver to use linux/fb.h

    Wolfgang Denk
     

16 Oct, 2011

1 commit

  • The top level Makefile does not do any recursion into subdirs when
    cleaning, so these clean/distclean targets in random arch/board dirs
    never get used. Punt them all.

    MAKEALL didn't report any errors related to this that I could see.

    Signed-off-by: Mike Frysinger

    Mike Frysinger
     

13 Oct, 2011

2 commits

  • Signed-off-by: Marek Vasut
    Signed-off-by: Stefano Babic
    Tested-by: Stefano Babic
    Signed-off-by: Anatolij Gustschin

    Marek Vasut
     
  • The framebuffer driver for MX5 is based on CONFIG_LCD.
    In the current implementation, there is a serious bug
    because the required memory is allocated before
    relocation, but the driver knows only later which is
    the resolution of the display. The patch switches the driver
    to CONFIG_VIDEO and the memory is allocated by the driver itself.

    We also need to switch the vision2 board code and config file
    in the same commit so that this commit will be bisectable.

    Signed-off-by: Stefano Babic
    CC: Anatolij Gustschin
    Tested-by: Stefano Babic
    Signed-off-by: Anatolij Gustschin

    Stefano Babic
     

01 Oct, 2011

1 commit


04 Sep, 2011

1 commit


04 Jul, 2011

1 commit


23 May, 2011

3 commits


18 Nov, 2010

1 commit

  • Before this commit, weak symbols were not overridden by non-weak symbols
    found in archive libraries when linking with recent versions of
    binutils. As stated in the System V ABI, "the link editor does not
    extract archive members to resolve undefined weak symbols".

    This commit changes all Makefiles to use partial linking (ld -r) instead
    of creating library archives, which forces all symbols to participate in
    linking, allowing non-weak symbols to override weak symbols as intended.
    This approach is also used by Linux, from which the gmake function
    cmd_link_o_target (defined in config.mk and used in all Makefiles) is
    inspired.

    The name of each former library archive is preserved except for
    extensions which change from ".a" to ".o". This commit updates
    references accordingly where needed, in particular in some linker
    scripts.

    This commit reveals board configurations that exclude some features but
    include source files that depend these disabled features in the build,
    resulting in undefined symbols. Known such cases include:
    - disabling CMD_NET but not CMD_NFS;
    - enabling CONFIG_OF_LIBFDT but not CONFIG_QE.

    Signed-off-by: Sebastien Carlier

    Sebastien Carlier
     

30 Oct, 2010

2 commits

  • Wolfgang Denk
     
  • When this define was introduced, the idea was to provide a soft
    migration path for ARM boards to get adapted to the new relocation
    support. However, other recent changes led to a different
    implementation (ELF relocation), where this no longer works. By now
    CONFIG_SYS_ARM_WITHOUT_RELOC does not only not help any more, but it
    actually hurts because it obfuscates the actual code by sprinkling it
    with lots of dead and non-working debris.

    So let's make a clean cut and drop CONFIG_SYS_ARM_WITHOUT_RELOC.

    Signed-off-by: Wolfgang Denk
    Tested-by: Heiko Schocher
    Tested-by: Reinhard Meyer

    Wolfgang Denk
     

28 Oct, 2010

1 commit


22 Oct, 2010

1 commit


18 Oct, 2010

1 commit


07 Oct, 2010

1 commit