1. 14 2月, 2013 1 次提交
    • A
      burying unused conditionals · d64008a8
      Al Viro 提交于
      __ARCH_WANT_SYS_RT_SIGACTION,
      __ARCH_WANT_SYS_RT_SIGSUSPEND,
      __ARCH_WANT_COMPAT_SYS_RT_SIGSUSPEND,
      __ARCH_WANT_COMPAT_SYS_SCHED_RR_GET_INTERVAL - not used anymore
      CONFIG_GENERIC_{SIGALTSTACK,COMPAT_RT_SIG{ACTION,QUEUEINFO,PENDING,PROCMASK}} -
      can be assumed always set.
      d64008a8
  2. 04 2月, 2013 3 次提交
  3. 08 1月, 2013 1 次提交
  4. 02 1月, 2013 1 次提交
  5. 20 12月, 2012 1 次提交
  6. 07 12月, 2012 1 次提交
  7. 02 12月, 2012 1 次提交
  8. 29 11月, 2012 1 次提交
  9. 27 11月, 2012 1 次提交
  10. 24 11月, 2012 2 次提交
  11. 22 11月, 2012 4 次提交
  12. 21 11月, 2012 1 次提交
  13. 20 11月, 2012 2 次提交
    • S
      ARM: dove: switch to DT clock providers · 5b03df9a
      Sebastian Hesselbarth 提交于
      With true DT clock providers available switch Dove clock setup in DT-
      enabled boards. While AUXDATA can be removed completely from bus probing,
      some devices still don't know about DT at all. Therefore, some clock
      aliases are created until the devices also move to DT.
      Signed-off-by: NSebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
      5b03df9a
    • C
      Add support for generic BCM SoC chipsets · 8ac49e04
      Christian Daudt 提交于
      In order to start upstreaming Broadcom SoC support, create
      a starting hierarchy, arch and dts files.
      The first support SoC family that is planned is the
      BCM281XX (BCM11130/11140/11351/28145/28155) family of dual A9 mobile
      SoC cores.
      This code is just the skeleton code for get the machine upstreamed. It
      has been made MULTIPLATFORM compatible.
      Next steps
      ----------
      Upstream a basic set of drivers - sufficient for a console boot to
      ramdisk. These will includer timer, gpio, i2c drivers.
      After this basic set, we will proceed with a more comprehensive set
      of drivers for the 281XX SoC family.
      
      v2 patch mods
      --------
       - Remove l2x0_of_init call as there were problems with the code.
         A separate patch will be submitted with cache init code
       - Rename capri files and refs to bcm281xx-based names
       - Add bcm281xx binding doc
       - various misc cleanups
      
      v3 patch mods
      -------------
       - Remove extra #include lines
       - Remove remaining references to capri
       - dt uart chipset string added
       - cleaned up chip # references
      
      v4 patch mods
      -------------
       - swap order of compatible definitions for uart
       - fix typo
      
      v5 patch mods
      -------------
       - Rename bcm281xx to bcm11351 in dts+code,
         leaving references to bcm281xx only in help+comments.
      
      v6 patch mods
      -------------
       - fix typo in uart 'compatible' string
      Signed-off-by: NChristian Daudt <csd@broadcom.com>
      Reviewed-by: NStephen Warren <swarren@nvidia.com>
      Signed-off-by: NOlof Johansson <olof@lixom.net>
      8ac49e04
  14. 19 11月, 2012 1 次提交
  15. 17 11月, 2012 2 次提交
  16. 15 11月, 2012 1 次提交
  17. 14 11月, 2012 1 次提交
  18. 05 11月, 2012 3 次提交
  19. 04 11月, 2012 1 次提交
  20. 03 11月, 2012 1 次提交
  21. 29 10月, 2012 2 次提交
    • S
      ARM: davinci: da850: add DT boot support · 689e331f
      Sekhar Nori 提交于
      Add support for booting DA850 using flattened device
      tree to describe the hardware. At this time only the
      very basic bootup using a serial console is supported.
      Signed-off-by: NSekhar Nori <nsekhar@ti.com>
      689e331f
    • J
      zynq: remove use of CLKDEV_LOOKUP · f7977939
      Josh Cartwright 提交于
      The Zynq support in mainline does not (yet) make use of any of the
      generic clk or clk lookup functionality.  Remove what is upstream for
      now, until the out-of-tree implementation is in suitable form for
      merging.
      
      An important side effect of this patch is that it allows the building of
      a Zynq kernel without running into unresolved symbol problems:
      
         drivers/built-in.o: In function `amba_get_enable_pclk':
         clkdev.c:(.text+0x444): undefined reference to `clk_enable'
         drivers/built-in.o: In function `amba_remove':
         clkdev.c:(.text+0x488): undefined reference to `clk_disable'
         drivers/built-in.o: In function `amba_probe':
         clkdev.c:(.text+0x540): undefined reference to `clk_disable'
         drivers/built-in.o: In function `amba_device_add':
         clkdev.c:(.text+0x77c): undefined reference to `clk_disable'
         drivers/built-in.o: In function `enable_clock':
         clkdev.c:(.text+0x29738): undefined reference to `clk_enable'
         drivers/built-in.o: In function `disable_clock':
         clkdev.c:(.text+0x29778): undefined reference to `clk_disable'
         drivers/built-in.o: In function `__pm_clk_remove':
         clkdev.c:(.text+0x297f8): undefined reference to `clk_disable'
         drivers/built-in.o: In function `pm_clk_suspend':
         clkdev.c:(.text+0x29bc8): undefined reference to `clk_disable'
         drivers/built-in.o: In function `pm_clk_resume':
         clkdev.c:(.text+0x29c28): undefined reference to `clk_enable'
         make[2]: *** [vmlinux] Error 1
         make[1]: *** [sub-make] Error 2
         make: *** [all] Error 2
      
      In addition, eliminate Zynq's "use" of the versatile platform, as it is
      no longer needed.  As Nick Bowler points out:
      
         For the record, I think this was introduced by commit 56a34b03
         ("ARM: versatile: Make plat-versatile clock optional") which forgot to
         select PLAT_VERSATILE_CLOCK on Zynq.  This is not all that surprising,
         because the fact that Zynq "uses" PLAT_VERSATILE is secretly hidden in
         the Makefile.
      
         Nevertheless, the only feature from versatile that Zynq needed was the
         clock support, so this patch should *also* delete the secret use of
         plat-versatile by removing this line from arch/arm/Makefile:
      
            plat-$(CONFIG_ARCH_ZYNQ)      += versatile
      Signed-off-by: NJosh Cartwright <josh.cartwright@ni.com>
      Cc: John Linn <john.linn@xilinx.com>
      Acked-by: NArnd Bergmann <arnd@arndb.de>
      Tested-by: NMichal Simek <michal.simek@xilinx.com>
      f7977939
  22. 26 10月, 2012 3 次提交
  23. 25 10月, 2012 1 次提交
  24. 23 10月, 2012 1 次提交
  25. 16 10月, 2012 1 次提交
  26. 15 10月, 2012 2 次提交
    • S
      ARM: imx: enable multi-platform build · c5a0d497
      Shawn Guo 提交于
      It enables multi-platform build for imx.  With ARCH_MULTI_* options
      coming to play, ARCH_MXC becomes an user invisible option, while
      ARCH_IMX_V4_V5 and ARCH_IMX_V6_V7 get removed.  Both imx_v4_v5_defconfig
      and imx_v6_v7_defconfig get updated to adopt the changes.
      
      AUTO_ZRELADDR and ARM_PATCH_PHYS_VIRT are selected by ARCH_MXC now to
      save the duplication.
      
      Headers timex.h and uncompress.h are not needed for multi-platform
      build.  Remove them.
      Signed-off-by: NShawn Guo <shawn.guo@linaro.org>
      c5a0d497
    • S
      ARM: imx: merge plat-mxc into mach-imx · 3995eb82
      Shawn Guo 提交于
      It's really unnecessary to have plat-mxc, and let's merge it into
      mach-imx.  It's pretty much just a bunch of file renaming and
      Kconfig/Makefile merge.
      
      To make the change less invasive, we keep using Kconfig symbol
      CONFIG_ARCH_MXC for mach-imx sub-architecture.
      Signed-off-by: NShawn Guo <shawn.guo@linaro.org>
      Acked-by: NSascha Hauer <s.hauer@pengutronix.de>
      Acked-by: NArnd Bergmann <arnd@arndb.de>
      3995eb82