* [GIT PULL] Samsung devel-1 for v3.5
@ 2012-05-13 0:33 Kukjin Kim
2012-05-13 5:27 ` Olof Johansson
0 siblings, 1 reply; 5+ messages in thread
From: Kukjin Kim @ 2012-05-13 0:33 UTC (permalink / raw)
To: linux-arm-kernel
Hi Arnd, Olof
Please pull Samsung devel for v3.5
This is including exynos/iommu, platform of drm and fimc-lite, dma for
exynos5250 and s3c24xx-hsspi.
Note, the exynos/iommu patch got the ack from Joerg and this should be
sent to upstream via arm tree and since it depends on
cleanup-samsung-iommu, the cleanup branch is included(merged) in here.
If any problems, please let me know.
Thanks.
Best regards,
Kgene.
--
Kukjin Kim <kgene.kim@samsung.com>, Senior Engineer,
SW Solution Development Team, Samsung Electronics Co., Ltd.
The following changes since commit d48b97b403d23f6df0b990cee652bdf9a52337a3:
Linux 3.4-rc6 (2012-05-06 15:07:32 -0700)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/kgene/linux-samsung.git
next/devel-samsung
Boojin Kim (1):
ARM: EXYNOS: Support DMA for EXYNOS5250 SoC
Heiko Stuebner (6):
ARM: S3C24XX: Add forgotten clock lookup table to S3C2443
ARM: S3C24XX: claim spi channels for hsspi in dma-s3c2443
ARM: S3C24XX: Add map entries needed by the s3c64xx-spi devices
ARM: S3C24XX: Add clock-lookup entries required by s3c64xx-spi
ARM: S3C24XX: Add HSSPI setup callback for s3c64xx-spi driver
spi/s3c64xx: Allow usage for ARCH_S3C24XX
Kukjin Kim (2):
Merge branch 'next/devel-samsung-iommu' into next/devel-samsung
Merge branch 'next/devel-s3c24xx-hsspi' into next/devel-samsung
KyongHo Cho (3):
S5P: SYSMMU: Remove System MMU device driver
ARM: EXYNOS: Change System MMU platform device definitions
iommu/exynos: Add iommu driver for EXYNOS Platforms
Kyoungil Kim (1):
ARM: EXYNOS: To use common config for EXYNOS4 and EXYNOS5 SPI
Lukasz Majewski (1):
ARM: EXYNOS: Add usb otg phy control for EXYNOS4210
Marek Szyprowski (1):
ARM: EXYNOS: add platform device for core DRM subsystem
Olof Johansson (1):
ARM: EXYNOS: add dts files to dtbs target
Sylwester Nawrocki (1):
ARM: EXYNOS: Add platform resource definitions for FIMC-LITE
arch/arm/mach-exynos/Kconfig | 24 +-
arch/arm/mach-exynos/Makefile | 7 +-
arch/arm/mach-exynos/Makefile.boot | 3 +
arch/arm/mach-exynos/clock-exynos4.c | 79 +-
arch/arm/mach-exynos/clock-exynos4.h | 2 +
arch/arm/mach-exynos/clock-exynos4210.c | 11 +
arch/arm/mach-exynos/clock-exynos4212.c | 38 +-
arch/arm/mach-exynos/clock-exynos5.c | 90 ++
arch/arm/mach-exynos/dev-drm.c | 29 +
arch/arm/mach-exynos/dev-sysmmu.c | 457 ++++++-----
arch/arm/mach-exynos/dma.c | 141 +++-
arch/arm/mach-exynos/include/mach/irqs.h | 26 +-
arch/arm/mach-exynos/include/mach/map.h | 45 +
arch/arm/mach-exynos/include/mach/regs-clock.h | 5 +
arch/arm/mach-exynos/include/mach/regs-pmu.h | 3 +
arch/arm/mach-exynos/include/mach/regs-sysmmu.h | 28 -
arch/arm/mach-exynos/include/mach/spi-clocks.h | 2 +-
arch/arm/mach-exynos/include/mach/sysmmu.h | 88 ++-
arch/arm/mach-exynos/mach-armlex4210.c | 1 -
arch/arm/mach-exynos/mach-smdkv310.c | 1 -
arch/arm/mach-exynos/setup-usb-phy.c | 95 ++-
arch/arm/mach-s3c24xx/Kconfig | 5 +
arch/arm/mach-s3c24xx/Makefile | 1 +
arch/arm/mach-s3c24xx/clock-s3c2416.c | 1 +
arch/arm/mach-s3c24xx/clock-s3c2443.c | 6 +
arch/arm/mach-s3c24xx/common-s3c2443.c | 15 +-
arch/arm/mach-s3c24xx/dma-s3c2443.c | 16 +-
arch/arm/mach-s3c24xx/include/mach/dma.h | 4 +
arch/arm/mach-s3c24xx/include/mach/map.h | 5 +
arch/arm/mach-s3c24xx/setup-spi.c | 39 +
arch/arm/plat-s5p/Kconfig | 8 -
arch/arm/plat-s5p/Makefile | 1 -
arch/arm/plat-s5p/sysmmu.c | 313 -------
arch/arm/plat-samsung/Kconfig | 2 +-
arch/arm/plat-samsung/include/plat/devs.h | 3 +-
arch/arm/plat-samsung/include/plat/dma-pl330.h | 1 +
arch/arm/plat-samsung/include/plat/sysmmu.h | 95 --
drivers/iommu/Kconfig | 21 +
drivers/iommu/Makefile | 1 +
drivers/iommu/exynos-iommu.c | 1076
+++++++++++++++++++++++
drivers/spi/Kconfig | 2 +-
41 files changed, 1966 insertions(+), 824 deletions(-)
create mode 100644 arch/arm/mach-exynos/dev-drm.c
delete mode 100644 arch/arm/mach-exynos/include/mach/regs-sysmmu.h
create mode 100644 arch/arm/mach-s3c24xx/setup-spi.c
delete mode 100644 arch/arm/plat-s5p/sysmmu.c
delete mode 100644 arch/arm/plat-samsung/include/plat/sysmmu.h
create mode 100644 drivers/iommu/exynos-iommu.c
^ permalink raw reply [flat|nested] 5+ messages in thread
* [GIT PULL] Samsung devel-1 for v3.5
2012-05-13 0:33 [GIT PULL] Samsung devel-1 for v3.5 Kukjin Kim
@ 2012-05-13 5:27 ` Olof Johansson
2012-05-14 7:47 ` Kukjin Kim
0 siblings, 1 reply; 5+ messages in thread
From: Olof Johansson @ 2012-05-13 5:27 UTC (permalink / raw)
To: linux-arm-kernel
On Sat, May 12, 2012 at 5:33 PM, Kukjin Kim <kgene.kim@samsung.com> wrote:
> Hi Arnd, Olof
>
> Please pull Samsung devel for v3.5
>
> This is including exynos/iommu, platform of drm and fimc-lite, dma for
> exynos5250 and s3c24xx-hsspi.
>
> Note, the exynos/iommu patch got the ack from Joerg and this should be sent
> to upstream via arm tree and since it depends on cleanup-samsung-iommu, the
> cleanup branch is included(merged) in here.
>
> If any problems, please let me know.
Same here, I'll hold off pulling this until we've sorted out the
cleanup-samsung-iommu request.
Thanks,
-Olof
^ permalink raw reply [flat|nested] 5+ messages in thread
* [GIT PULL] Samsung devel-1 for v3.5
2012-05-13 5:27 ` Olof Johansson
@ 2012-05-14 7:47 ` Kukjin Kim
2012-05-15 9:06 ` Kukjin Kim
0 siblings, 1 reply; 5+ messages in thread
From: Kukjin Kim @ 2012-05-14 7:47 UTC (permalink / raw)
To: linux-arm-kernel
Olof Johansson wrote:
>
> On Sat, May 12, 2012 at 5:33 PM, Kukjin Kim <kgene.kim@samsung.com> wrote:
> > Hi Arnd, Olof
> >
> > Please pull Samsung devel for v3.5
> >
> > This is including exynos/iommu, platform of drm and fimc-lite, dma for
> > exynos5250 and s3c24xx-hsspi.
> >
> > Note, the exynos/iommu patch got the ack from Joerg and this should be
> sent
> > to upstream via arm tree and since it depends on cleanup-samsung-iommu,
> the
> > cleanup branch is included(merged) in here.
> >
> > If any problems, please let me know.
>
> Same here, I'll hold off pulling this until we've sorted out the
> cleanup-samsung-iommu request.
>
Please hold this off for a moment because I need to sort out regarding
s3c-hsotg patches which cause build error because some patches have been
already in usb tree for it.
If required, I will send separate branch to you.
Thanks.
Best regards,
Kgene.
--
Kukjin Kim <kgene.kim@samsung.com>, Senior Engineer,
SW Solution Development Team, Samsung Electronics Co., Ltd.
^ permalink raw reply [flat|nested] 5+ messages in thread
* [GIT PULL] Samsung devel-1 for v3.5
2012-05-14 7:47 ` Kukjin Kim
@ 2012-05-15 9:06 ` Kukjin Kim
2012-05-15 14:53 ` Arnd Bergmann
0 siblings, 1 reply; 5+ messages in thread
From: Kukjin Kim @ 2012-05-15 9:06 UTC (permalink / raw)
To: linux-arm-kernel
Kukjin Kim wrote:
>
> Olof Johansson wrote:
> >
> > On Sat, May 12, 2012 at 5:33 PM, Kukjin Kim <kgene.kim@samsung.com>
> wrote:
> > > Hi Arnd, Olof
> > >
> > > Please pull Samsung devel for v3.5
> > >
> > > This is including exynos/iommu, platform of drm and fimc-lite, dma for
> > > exynos5250 and s3c24xx-hsspi.
> > >
> > > Note, the exynos/iommu patch got the ack from Joerg and this should be
> > sent
> > > to upstream via arm tree and since it depends on
cleanup-samsung-iommu,
> > the
> > > cleanup branch is included(merged) in here.
> > >
> > > If any problems, please let me know.
> >
> > Same here, I'll hold off pulling this until we've sorted out the
> > cleanup-samsung-iommu request.
> >
> Please hold this off for a moment because I need to sort out regarding
> s3c-hsotg patches which cause build error because some patches have been
> already in usb tree for it.
>
> If required, I will send separate branch to you.
>
Hi Arnd and Olof,
I updated the next/devel-samsung branch. As I said, I separate out the
regarding s3c-hsotg patches from here and it will be sent to usb tree. And
added support suspend/resume for EXYNOS4412, others same as before.
Please pull Samsung devel-1 for v3.5 from:
git://git.kernel.org/pub/scm/linux/kernel/git/kgene/linux-samsung.git
next/devel-samsung
If any problems, please kindly let me know.
Thanks.
Best regards,
Kgene.
--
Kukjin Kim <kgene.kim@samsung.com>, Senior Engineer,
SW Solution Development Team, Samsung Electronics Co., Ltd.
The following changes since commit d48b97b403d23f6df0b990cee652bdf9a52337a3:
Linux 3.4-rc6 (2012-05-06 15:07:32 -0700)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/kgene/linux-samsung.git
next/devel-samsung
Boojin Kim (1):
ARM: EXYNOS: Support DMA for EXYNOS5250 SoC
Heiko Stuebner (6):
ARM: S3C24XX: Add forgotten clock lookup table to S3C2443
ARM: S3C24XX: claim spi channels for hsspi in dma-s3c2443
ARM: S3C24XX: Add map entries needed by the s3c64xx-spi devices
ARM: S3C24XX: Add clock-lookup entries required by s3c64xx-spi
ARM: S3C24XX: Add HSSPI setup callback for s3c64xx-spi driver
spi/s3c64xx: Allow usage for ARCH_S3C24XX
Inderpal Singh (1):
ARM: EXYNOS: Support Suspend/Resume for EXYNOS4412
Kukjin Kim (2):
Merge branch 'next/devel-samsung-iommu' into next/devel-samsung
Merge branch 'next/devel-s3c24xx-hsspi' into next/devel-samsung
KyongHo Cho (3):
S5P: SYSMMU: Remove System MMU device driver
ARM: EXYNOS: Change System MMU platform device definitions
iommu/exynos: Add iommu driver for EXYNOS Platforms
Kyoungil Kim (1):
ARM: EXYNOS: To use common config for EXYNOS4 and EXYNOS5 SPI
Marek Szyprowski (1):
ARM: EXYNOS: add platform device for core DRM subsystem
Olof Johansson (1):
ARM: EXYNOS: add dts files to dtbs target
Sylwester Nawrocki (1):
ARM: EXYNOS: Add platform resource definitions for FIMC-LITE
arch/arm/mach-exynos/Kconfig | 24 +-
arch/arm/mach-exynos/Makefile | 7 +-
arch/arm/mach-exynos/Makefile.boot | 3 +
arch/arm/mach-exynos/clock-exynos4.c | 79 +-
arch/arm/mach-exynos/clock-exynos4.h | 2 +
arch/arm/mach-exynos/clock-exynos4210.c | 11 +
arch/arm/mach-exynos/clock-exynos4212.c | 38 +-
arch/arm/mach-exynos/clock-exynos5.c | 90 ++
arch/arm/mach-exynos/dev-drm.c | 29 +
arch/arm/mach-exynos/dev-sysmmu.c | 457 ++++++-----
arch/arm/mach-exynos/dma.c | 141 +++-
arch/arm/mach-exynos/include/mach/irqs.h | 25 +-
arch/arm/mach-exynos/include/mach/map.h | 41 +
arch/arm/mach-exynos/include/mach/regs-clock.h | 5 +
arch/arm/mach-exynos/include/mach/regs-pmu.h | 10 +-
arch/arm/mach-exynos/include/mach/regs-sysmmu.h | 28 -
arch/arm/mach-exynos/include/mach/spi-clocks.h | 2 +-
arch/arm/mach-exynos/include/mach/sysmmu.h | 88 ++-
arch/arm/mach-exynos/mach-armlex4210.c | 1 -
arch/arm/mach-exynos/mach-smdkv310.c | 1 -
arch/arm/mach-exynos/pm.c | 2 +-
arch/arm/mach-exynos/pmu.c | 24 +-
arch/arm/mach-s3c24xx/Kconfig | 5 +
arch/arm/mach-s3c24xx/Makefile | 1 +
arch/arm/mach-s3c24xx/clock-s3c2416.c | 1 +
arch/arm/mach-s3c24xx/clock-s3c2443.c | 6 +
arch/arm/mach-s3c24xx/common-s3c2443.c | 15 +-
arch/arm/mach-s3c24xx/dma-s3c2443.c | 16 +-
arch/arm/mach-s3c24xx/include/mach/dma.h | 4 +
arch/arm/mach-s3c24xx/include/mach/map.h | 5 +
arch/arm/mach-s3c24xx/setup-spi.c | 39 +
arch/arm/plat-s5p/Kconfig | 8 -
arch/arm/plat-s5p/Makefile | 1 -
arch/arm/plat-s5p/sysmmu.c | 313 -------
arch/arm/plat-samsung/Kconfig | 2 +-
arch/arm/plat-samsung/include/plat/devs.h | 3 +-
arch/arm/plat-samsung/include/plat/dma-pl330.h | 1 +
arch/arm/plat-samsung/include/plat/sysmmu.h | 95 --
drivers/iommu/Kconfig | 21 +
drivers/iommu/Makefile | 1 +
drivers/iommu/exynos-iommu.c | 1076
+++++++++++++++++++++++
drivers/spi/Kconfig | 2 +-
42 files changed, 1918 insertions(+), 805 deletions(-)
create mode 100644 arch/arm/mach-exynos/dev-drm.c
delete mode 100644 arch/arm/mach-exynos/include/mach/regs-sysmmu.h
create mode 100644 arch/arm/mach-s3c24xx/setup-spi.c
delete mode 100644 arch/arm/plat-s5p/sysmmu.c
delete mode 100644 arch/arm/plat-samsung/include/plat/sysmmu.h
create mode 100644 drivers/iommu/exynos-iommu.c
^ permalink raw reply [flat|nested] 5+ messages in thread
* [GIT PULL] Samsung devel-1 for v3.5
2012-05-15 9:06 ` Kukjin Kim
@ 2012-05-15 14:53 ` Arnd Bergmann
0 siblings, 0 replies; 5+ messages in thread
From: Arnd Bergmann @ 2012-05-15 14:53 UTC (permalink / raw)
To: linux-arm-kernel
On Tuesday 15 May 2012, Kukjin Kim wrote:
> Hi Arnd and Olof,
>
> I updated the next/devel-samsung branch. As I said, I separate out the
> regarding s3c-hsotg patches from here and it will be sent to usb tree. And
> added support suspend/resume for EXYNOS4412, others same as before.
>
> Please pull Samsung devel-1 for v3.5 from:
> git://git.kernel.org/pub/scm/linux/kernel/git/kgene/linux-samsung.git
> next/devel-samsung
>
> If any problems, please kindly let me know.
Ok, pulled into next/soc2 now to get the dependencies handled first.
Arnd
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2012-05-15 14:53 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-13 0:33 [GIT PULL] Samsung devel-1 for v3.5 Kukjin Kim
2012-05-13 5:27 ` Olof Johansson
2012-05-14 7:47 ` Kukjin Kim
2012-05-15 9:06 ` Kukjin Kim
2012-05-15 14:53 ` Arnd Bergmann
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox