From: Paul Mundt <lethal@linux-sh.org>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: linux-sh@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: [GIT PULL] genesis updates for 2.6.35-rc1
Date: Thu, 20 May 2010 06:51:33 +0000 [thread overview]
Message-ID: <20100520065132.GA13004@linux-sh.org> (raw)
Please pull from:
master.kernel.org:/pub/scm/linux/kernel/git/lethal/genesis-2.6.git
Which contains:
Kuninori Morimoto (10):
ARM: mach-shmobile: sh7372: Add I2C0, I2C1 support
ARM: mach-shmobile: ap4evb: Add TouchScreen support
ARM: mach-shmobile: ap4evb: Add SW43, SW3 tiny document
ARM: mach-shmobile: ap4evb: Add R2025S RTC support
ARM: mach-shmobile: intc-sh7377: Add INTCS support
ARM: mach-shmobile: Add missing __initdata on intcs sh7367/sh7377
ARM: mach-shmobile: Add SDHI support
ARM: mach-shmobile: intc-sh7372: modify wrong address
ARM: mach-shmobile: ap4evb: Add USB host support
ARM: mach-shmobile: g3evm: Add IrDA support
Magnus Damm (13):
dmaengine: shdma: Enable on SH-Mobile ARM
i2c: i2c-sh_mobile register access code break out
i2c: i2c-sh_mobile support for new ICIC bits
i2c: i2c-sh_mobile kconfig update for SH-Mobile ARM
ARM: mach-shmobile: add INTCS macros
ARM: mach-shmobile: sh7367 INTCS support
ARM: mach-shmobile: Use 0x2200 as INTCS_VECT_BASE
ARM: mach-shmobile: sh7372 INTCS support
ARM: mach-shmobile: Enable TMU driver build
ARM: mach-shmobile: Use shared clock framework
ARM: mach-shmobile: sh7372 clock framework support V2
ARM: mach-shmobile: Set CONSISTENT_DMA_SIZE to 158 MB
ARM: mach-shmobile: Update VMALLOC_END
Paul Mundt (2):
MAINTAINERS: Add a patchwork entry for ARM/SH-Mobile.
ARM: mach-shmobile: update defconfigs.
MAINTAINERS | 3 +-
arch/arm/configs/ap4evb_defconfig | 71 ++++-
arch/arm/configs/g3evm_defconfig | 73 ++++-
arch/arm/configs/g4evm_defconfig | 72 ++++-
arch/arm/mach-shmobile/Kconfig | 10 +
arch/arm/mach-shmobile/Makefile | 4 +-
arch/arm/mach-shmobile/board-ap4evb.c | 122 ++++++++-
arch/arm/mach-shmobile/board-g3evm.c | 33 ++
arch/arm/mach-shmobile/board-g4evm.c | 127 ++++++++
arch/arm/mach-shmobile/clock-sh7367.c | 36 +---
arch/arm/mach-shmobile/clock-sh7372.c | 387 +++++++++++++++++++++++++
arch/arm/mach-shmobile/clock.c | 44 +++
arch/arm/mach-shmobile/include/mach/common.h | 3 +
arch/arm/mach-shmobile/include/mach/irqs.h | 6 +
arch/arm/mach-shmobile/include/mach/memory.h | 3 +
arch/arm/mach-shmobile/include/mach/vmalloc.h | 3 +-
arch/arm/mach-shmobile/intc-sh7367.c | 178 +++++++++++-
arch/arm/mach-shmobile/intc-sh7372.c | 232 ++++++++++++++-
arch/arm/mach-shmobile/intc-sh7377.c | 300 +++++++++++++++++++-
arch/arm/mach-shmobile/setup-sh7372.c | 55 +++-
drivers/dma/Kconfig | 2 +-
drivers/dma/shdma.c | 8 +-
drivers/i2c/busses/Kconfig | 2 +-
drivers/i2c/busses/i2c-sh_mobile.c | 121 ++++++---
drivers/sh/Makefile | 5 +-
include/linux/serial_sci.h | 2 +-
26 files changed, 1754 insertions(+), 148 deletions(-)
create mode 100644 arch/arm/mach-shmobile/clock-sh7372.c
create mode 100644 arch/arm/mach-shmobile/clock.c
WARNING: multiple messages have this Message-ID (diff)
From: Paul Mundt <lethal@linux-sh.org>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: linux-sh@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: [GIT PULL] genesis updates for 2.6.35-rc1
Date: Thu, 20 May 2010 15:51:33 +0900 [thread overview]
Message-ID: <20100520065132.GA13004@linux-sh.org> (raw)
Please pull from:
master.kernel.org:/pub/scm/linux/kernel/git/lethal/genesis-2.6.git
Which contains:
Kuninori Morimoto (10):
ARM: mach-shmobile: sh7372: Add I2C0, I2C1 support
ARM: mach-shmobile: ap4evb: Add TouchScreen support
ARM: mach-shmobile: ap4evb: Add SW43, SW3 tiny document
ARM: mach-shmobile: ap4evb: Add R2025S RTC support
ARM: mach-shmobile: intc-sh7377: Add INTCS support
ARM: mach-shmobile: Add missing __initdata on intcs sh7367/sh7377
ARM: mach-shmobile: Add SDHI support
ARM: mach-shmobile: intc-sh7372: modify wrong address
ARM: mach-shmobile: ap4evb: Add USB host support
ARM: mach-shmobile: g3evm: Add IrDA support
Magnus Damm (13):
dmaengine: shdma: Enable on SH-Mobile ARM
i2c: i2c-sh_mobile register access code break out
i2c: i2c-sh_mobile support for new ICIC bits
i2c: i2c-sh_mobile kconfig update for SH-Mobile ARM
ARM: mach-shmobile: add INTCS macros
ARM: mach-shmobile: sh7367 INTCS support
ARM: mach-shmobile: Use 0x2200 as INTCS_VECT_BASE
ARM: mach-shmobile: sh7372 INTCS support
ARM: mach-shmobile: Enable TMU driver build
ARM: mach-shmobile: Use shared clock framework
ARM: mach-shmobile: sh7372 clock framework support V2
ARM: mach-shmobile: Set CONSISTENT_DMA_SIZE to 158 MB
ARM: mach-shmobile: Update VMALLOC_END
Paul Mundt (2):
MAINTAINERS: Add a patchwork entry for ARM/SH-Mobile.
ARM: mach-shmobile: update defconfigs.
MAINTAINERS | 3 +-
arch/arm/configs/ap4evb_defconfig | 71 ++++-
arch/arm/configs/g3evm_defconfig | 73 ++++-
arch/arm/configs/g4evm_defconfig | 72 ++++-
arch/arm/mach-shmobile/Kconfig | 10 +
arch/arm/mach-shmobile/Makefile | 4 +-
arch/arm/mach-shmobile/board-ap4evb.c | 122 ++++++++-
arch/arm/mach-shmobile/board-g3evm.c | 33 ++
arch/arm/mach-shmobile/board-g4evm.c | 127 ++++++++
arch/arm/mach-shmobile/clock-sh7367.c | 36 +---
arch/arm/mach-shmobile/clock-sh7372.c | 387 +++++++++++++++++++++++++
arch/arm/mach-shmobile/clock.c | 44 +++
arch/arm/mach-shmobile/include/mach/common.h | 3 +
arch/arm/mach-shmobile/include/mach/irqs.h | 6 +
arch/arm/mach-shmobile/include/mach/memory.h | 3 +
arch/arm/mach-shmobile/include/mach/vmalloc.h | 3 +-
arch/arm/mach-shmobile/intc-sh7367.c | 178 +++++++++++-
arch/arm/mach-shmobile/intc-sh7372.c | 232 ++++++++++++++-
arch/arm/mach-shmobile/intc-sh7377.c | 300 +++++++++++++++++++-
arch/arm/mach-shmobile/setup-sh7372.c | 55 +++-
drivers/dma/Kconfig | 2 +-
drivers/dma/shdma.c | 8 +-
drivers/i2c/busses/Kconfig | 2 +-
drivers/i2c/busses/i2c-sh_mobile.c | 121 ++++++---
drivers/sh/Makefile | 5 +-
include/linux/serial_sci.h | 2 +-
26 files changed, 1754 insertions(+), 148 deletions(-)
create mode 100644 arch/arm/mach-shmobile/clock-sh7372.c
create mode 100644 arch/arm/mach-shmobile/clock.c
next reply other threads:[~2010-05-20 6:51 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-05-20 6:51 Paul Mundt [this message]
2010-05-20 6:51 ` [GIT PULL] genesis updates for 2.6.35-rc1 Paul Mundt
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20100520065132.GA13004@linux-sh.org \
--to=lethal@linux-sh.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-sh@vger.kernel.org \
--cc=torvalds@linux-foundation.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.