lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:	Sat, 5 Nov 2011 01:05:18 +0100
From:	Arnd Bergmann <arnd@...db.de>
To:	Linus Torvalds <torvalds@...ux-foundation.org>
Cc:	linux-kernel@...r.kernel.org, linux-arm-kernel@...ts.infradead.org,
	Vinod Koul <vinod.koul@...el.com>,
	Kukjin Kim <kgene.kim@...sung.com>
Subject: [GIT PULL] arm-soc features for samsung and pxa

These are patches for new development changes for the samsung and pxa platforms.
The samsung changes depend on the cleanup branch I just sent (including the
dma-slave series). The pxa patches were sent to me relatively late, so I
put them in this branch rather than the first next/devel branch you already
pulled. There should be no further conflicts if you pull this branch
after next/cleanup3.

	Arnd

The following changes since commit 8f7e34205f6ff50bfb30908af8aae5fd65a95d5f:

  Merge branch 'next/cleanup3' into for-next (2011-11-02 03:16:14 +0100)

are available in the git repository at:

  git://git.linaro.org/people/arnd/arm-soc.git next/devel2

Arnd Bergmann (4):
      Merge branch 'samsung/devel' of git+ssh://git.linaro.org/home/arndbergmann/public_git/arm-soc into next/devel2
      Merge branch 'samsung/devel' into next/devel2
      Merge branch 'pxa/devel' into next/devel2

Axel Lin (1):
      ARM: S3C2443: Remove redundant s3c_register_clocks call for init_clocks

Heiko St?bner (2):
      ARM: S3C2443: Move clk_arm and clk_armdiv to common code
      ARM: S3C2416: Add comment describing the armdiv/armclk

Heiko Stuebner (12):
      ARM: SAMSUNG: Add adc registers for S3C2443/S3C2416
      ARM: SAMSUNG: Fix mux bit modification in s3c_adc_select
      ARM: SAMSUNG: Allow overriding of adc device name for S3C24XX
      ARM: SAMSUNG: Add support s3c2443-adc for S3C2443
      ARM: SAMSUNG: Add support s3c2416-adc for S3C2416/S3C2450
      ARM: S3C2416: Add armdiv_mask constant
      ARM: S3C24XX: Add infrastructure to transmit armdiv to common code
      ARM: S3C2443: Add get_rate operation for clk_armdiv
      ARM: S3C2443: handle unset armdiv values gracefully
      ARM: S3C2443: Accommodate cpufreq frequency scheme in armdiv
      ARM: S3C24XX: use clk_get_rate to init fclk in common_setup_clocks
      ARM: S3C24XX: Add devname for hsmmc1 pclk

Kukjin Kim (1):
      ARM: EXYNOS4: Remove useless codes on NURI board

Leo Yan (3):
      ARM: mmp: add sram allocator
      ARM: mmp: register audio sram bank
      ARM: mmp: register internal sram bank

Mark Brown (3):
      ARM: S3C64XX: Enable TCM support
      ARM: S3C64XX: Fix SoC identification for S3C64xx devices
      gpio/samsung: Complain loudly if we don't know the SoC

Peter Korsgaard (2):
      ARM: S3C2410: fix S3C_GPIO_SPACE #error message to match reality
      gpio/samsung: only register available gpio banks

Sachin Kamat (3):
      ARM: EXYNOS4: Enable regulator support for HDMI on ORIGEN
      ARM: EXYNOS4: Register power domains on ORIGEN
      ARM: EXYNOS4: Enable MFC on ORIGEN

Sylwester Nawrocki (1):
      ARM: EXYNOS4: Add support for M-5MOLS camera on Nuri board

Thomas Abraham (1):
      gpio/samsung: Fix incorrect gpio pull up/down callback for EXYNOS4

Tushar Behera (1):
      gpio/samsung: Move SoC specific codes within macro

 arch/arm/Kconfig                                   |    2 +
 arch/arm/mach-exynos4/Kconfig                      |   12 ++-
 arch/arm/mach-exynos4/mach-nuri.c                  |  158 ++++++++++++++++++-
 arch/arm/mach-exynos4/mach-origen.c                |   21 +++
 arch/arm/mach-mmp/Makefile                         |    2 +-
 arch/arm/mach-mmp/brownstone.c                     |   11 ++
 arch/arm/mach-mmp/include/mach/mmp2.h              |   13 ++
 arch/arm/mach-mmp/include/mach/sram.h              |   35 ++++
 arch/arm/mach-mmp/mmp2.c                           |    3 +
 arch/arm/mach-mmp/sram.c                           |  168 ++++++++++++++++++++
 arch/arm/mach-s3c2410/include/mach/gpio-nrs.h      |    2 +-
 .../mach-s3c2410/include/mach/regs-s3c2443-clock.h |    1 +
 arch/arm/mach-s3c2416/clock.c                      |   21 ++-
 arch/arm/mach-s3c2416/s3c2416.c                    |    3 +
 arch/arm/mach-s3c2443/clock.c                      |  105 +------------
 arch/arm/mach-s3c2443/s3c2443.c                    |    3 +
 arch/arm/plat-s3c24xx/s3c2443-clock.c              |  135 +++++++++++++++-
 arch/arm/plat-samsung/adc.c                        |   43 ++++--
 arch/arm/plat-samsung/include/plat/adc-core.h      |    2 +-
 arch/arm/plat-samsung/include/plat/cpu.h           |    6 +-
 arch/arm/plat-samsung/include/plat/regs-adc.h      |    3 +
 arch/arm/plat-samsung/include/plat/s3c2443.h       |    7 +-
 drivers/gpio/gpio-samsung.c                        |   48 ++++--
 23 files changed, 651 insertions(+), 153 deletions(-)
 create mode 100644 arch/arm/mach-mmp/include/mach/sram.h
 create mode 100644 arch/arm/mach-mmp/sram.c
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ