01 Nov, 2013

2 commits


24 Jul, 2013

1 commit


09 Mar, 2013

2 commits


13 Jan, 2013

1 commit


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
     

11 Nov, 2011

1 commit


04 Nov, 2011

2 commits


28 Oct, 2011

3 commits

  • Fix checkpatch warning and errors in several i.MX related files.

    While at it also address a checkpatch warning at arch/arm/cpu/armv7/mx5/soc.c
    regarding the usage of extern in a C file.

    Signed-off-by: Fabio Estevam

    Fabio Estevam
     
  • Switch to new pmic generic driver.

    Signed-off-by: Stefano Babic

    Stefano Babic
     
  • setup_weimcs() and some macros are added to support the setup
    for i.MX31 WEIM chip selects. As a compromise between verbosity
    and readability an ASCII-art'ish bit comment is used instead of
    bitfields.
    All i.MX31 boards have been patched to use this approach using a
    helper program to verify the changes.

    Signed-off-by: Helmut Raiger
    Acked-by: Stefano Babic

    Helmut Raiger
     

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
     

04 Sep, 2011

1 commit


17 Jul, 2011

1 commit


22 Jun, 2011

1 commit


28 Apr, 2011

2 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
     

28 Oct, 2010

1 commit


19 Oct, 2010

2 commits

  • Clean up Makefile, and drop a lot of the config.mk files on the way.

    We now also automatically pick all boards that are listed in
    boards.cfg (and with all configurations), so we can drop the redundant
    entries from MAKEALL to avoid building these twice.

    Signed-off-by: Wolfgang Denk

    Wolfgang Denk
     
  • The change is currently needed to be able to remove the board
    configuration scripting from the top level Makefile and replace it by
    a simple, table driven script.

    Moving this configuration setting into the "CONFIG_*" name space is
    also desirable because it is needed if we ever should move forward to
    a Kconfig driven configuration system.

    Signed-off-by: Wolfgang Denk

    Wolfgang Denk
     

18 Oct, 2010

1 commit


14 Oct, 2010

2 commits


11 Oct, 2010

1 commit


29 Sep, 2010

1 commit


25 Sep, 2010

1 commit


20 Sep, 2010

1 commit


05 May, 2010

1 commit


30 Apr, 2010

3 commits


09 Dec, 2009

1 commit


25 Sep, 2009

1 commit

  • Signed-off-by: Martha M Stan

    Minor cleanup:

    Re-ordered default_mddrc_config[] to have matching indices.

    This allows to use the same index "N" for source and target fields;
    before, we had code like this

    out_be32(&im->mddrc.ddr_time_config2, mddrc_config[3]);

    which always looked like a copy & paste error because 2 != 3.

    Also, use NULL when meaning a null pointer.

    Signed-off-by: Wolfgang Denk

    Martha M Stan
     

14 Jul, 2009

2 commits


13 Jun, 2009

2 commits