From: Stephen Boyd <sboyd@codeaurora.org>
To: linux-arm-msm@vger.kernel.org
Cc: linux-kernel@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
"David Brown" <davidb@codeaurora.org>,
"Brian Swetland" <swetland@google.com>,
"Arve Hj�nnev�g" <arve@android.com>,
"Saravana Kannan" <skannan@codeaurora.org>
Subject: [PATCH 00/22] MSM clock driver updates
Date: Thu, 16 Dec 2010 16:49:44 -0800 [thread overview]
Message-ID: <1292547006-19741-1-git-send-email-sboyd@codeaurora.org> (raw)
This series of patches syncs the MSM clock code in Linus' tree with
the MSM tree @ codeaurora.org. They're prepared against the msm-core
tree (git://codeaurora.org/quic/kernel/davidb/linux-msm.git msm-core).
* 1 - 4 are cleanups and minor additions to the existing clock driver
* 5 - 6 add support for the 7x30 local clock driver
* 7 - 10 add support for the 8x60 local clock driver; refactor the
7x30 driver into a generic driver and remove the dummy clock
driver in use by 8x60
* 11 - 12 add debugfs aides for locally controlled clocks
* 13 - 17 implement clock rate voting for clocks with multiple
consumers where each consumer requires different minimum rates
* 18 moves the clock driver to clkdev
* 19 - 22 moves the iommu driver to proper usage of the clock driver
I understand the diffstat is rather large, but please review. All feedback
is welcome.
Matt Wagantall (5):
msm: clock: Move debugfs code from clock.c to clock-debug.c
msm: clock: Refactor clock-7x30 into generic clock-local driver
msm: clock-8x60: Add msm8x60 local clock driver
msm: clock Add debugfs interface to measure clock rates
msm: clock: Add list_rate debugfs nodes for locally-controlled clocks
Saravana Kannan (1):
msm: clock-7x30: Add 7x30 local clock driver
Stepan Moskovchenko (3):
msm: iommu: Add bus clocks to platform data
msm: iommu: Clock control for the IOMMU driver
msm: iommu: Rework clock logic and add IOMMU bus clock control
Stephen Boyd (13):
msm: clock: Remove unused code and definitions
msm: clock: Invert debugfs directory layout
msm: clock: Add support for more proc_comm clocks
msm: clock-7x30: Update clock table
msm: clock: Remove references to clk_ops_pcom
msm: Move 8x60 to the real clock driver
msm: clock: Push down clock count and locking into sub drivers
msm: clock: Support clk_set_parent() clk_ops
msm: clock-pcom: Add pbus specific clock ops
msm: clock: Implement rate voting
msm: Migrate to clock rate voting
msm: clock: Migrate to clkdev
msm: clock-8x60: Don't keep IOMMU clocks on at boot
arch/arm/Kconfig | 1 +
arch/arm/mach-msm/Makefile | 10 +-
arch/arm/mach-msm/board-msm8x60.c | 8 +-
arch/arm/mach-msm/clock-7x30.c | 1166 ++++++++++++++
arch/arm/mach-msm/clock-7x30.h | 265 ++--
arch/arm/mach-msm/clock-8x60.c | 1896 +++++++++++++++++++++++
arch/arm/mach-msm/clock-8x60.h | 218 +++
arch/arm/mach-msm/clock-debug.c | 176 +++
arch/arm/mach-msm/clock-local.c | 696 +++++++++
arch/arm/mach-msm/clock-local.h | 233 +++
arch/arm/mach-msm/clock-pcom.c | 102 ++-
arch/arm/mach-msm/clock-pcom.h | 21 +-
arch/arm/mach-msm/clock-voter.c | 202 +++
arch/arm/mach-msm/clock-voter.h | 54 +
arch/arm/mach-msm/clock.c | 244 +---
arch/arm/mach-msm/clock.h | 70 +-
arch/arm/mach-msm/devices-msm7x00.c | 32 +-
arch/arm/mach-msm/devices-msm7x30.c | 170 ++-
arch/arm/mach-msm/devices-msm8x60-iommu.c | 5 -
arch/arm/mach-msm/devices-msm8x60.c | 183 +++
arch/arm/mach-msm/devices-qsd8x50.c | 29 +-
arch/arm/mach-msm/devices.h | 9 +-
arch/arm/mach-msm/include/mach/board.h | 4 +-
arch/arm/mach-msm/include/mach/clkdev.h | 23 +
arch/arm/mach-msm/include/mach/iommu.h | 12 +-
arch/arm/mach-msm/include/mach/msm_iomap-8x60.h | 12 +
arch/arm/mach-msm/io.c | 3 +
arch/arm/mach-msm/iommu.c | 57 +-
arch/arm/mach-msm/iommu_dev.c | 204 ++-
arch/arm/mach-msm/proc_comm.h | 1 +
30 files changed, 5524 insertions(+), 582 deletions(-)
create mode 100644 arch/arm/mach-msm/clock-7x30.c
create mode 100644 arch/arm/mach-msm/clock-8x60.c
create mode 100644 arch/arm/mach-msm/clock-8x60.h
create mode 100644 arch/arm/mach-msm/clock-debug.c
create mode 100644 arch/arm/mach-msm/clock-local.c
create mode 100644 arch/arm/mach-msm/clock-local.h
create mode 100644 arch/arm/mach-msm/clock-voter.c
create mode 100644 arch/arm/mach-msm/clock-voter.h
create mode 100644 arch/arm/mach-msm/devices-msm8x60.c
create mode 100644 arch/arm/mach-msm/include/mach/clkdev.h
--
Sent by an employee of the Qualcomm Innovation Center, Inc.
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum.
WARNING: multiple messages have this Message-ID (diff)
From: sboyd@codeaurora.org (Stephen Boyd)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 00/22] MSM clock driver updates
Date: Thu, 16 Dec 2010 16:49:44 -0800 [thread overview]
Message-ID: <1292547006-19741-1-git-send-email-sboyd@codeaurora.org> (raw)
This series of patches syncs the MSM clock code in Linus' tree with
the MSM tree @ codeaurora.org. They're prepared against the msm-core
tree (git://codeaurora.org/quic/kernel/davidb/linux-msm.git msm-core).
* 1 - 4 are cleanups and minor additions to the existing clock driver
* 5 - 6 add support for the 7x30 local clock driver
* 7 - 10 add support for the 8x60 local clock driver; refactor the
7x30 driver into a generic driver and remove the dummy clock
driver in use by 8x60
* 11 - 12 add debugfs aides for locally controlled clocks
* 13 - 17 implement clock rate voting for clocks with multiple
consumers where each consumer requires different minimum rates
* 18 moves the clock driver to clkdev
* 19 - 22 moves the iommu driver to proper usage of the clock driver
I understand the diffstat is rather large, but please review. All feedback
is welcome.
Matt Wagantall (5):
msm: clock: Move debugfs code from clock.c to clock-debug.c
msm: clock: Refactor clock-7x30 into generic clock-local driver
msm: clock-8x60: Add msm8x60 local clock driver
msm: clock Add debugfs interface to measure clock rates
msm: clock: Add list_rate debugfs nodes for locally-controlled clocks
Saravana Kannan (1):
msm: clock-7x30: Add 7x30 local clock driver
Stepan Moskovchenko (3):
msm: iommu: Add bus clocks to platform data
msm: iommu: Clock control for the IOMMU driver
msm: iommu: Rework clock logic and add IOMMU bus clock control
Stephen Boyd (13):
msm: clock: Remove unused code and definitions
msm: clock: Invert debugfs directory layout
msm: clock: Add support for more proc_comm clocks
msm: clock-7x30: Update clock table
msm: clock: Remove references to clk_ops_pcom
msm: Move 8x60 to the real clock driver
msm: clock: Push down clock count and locking into sub drivers
msm: clock: Support clk_set_parent() clk_ops
msm: clock-pcom: Add pbus specific clock ops
msm: clock: Implement rate voting
msm: Migrate to clock rate voting
msm: clock: Migrate to clkdev
msm: clock-8x60: Don't keep IOMMU clocks on at boot
arch/arm/Kconfig | 1 +
arch/arm/mach-msm/Makefile | 10 +-
arch/arm/mach-msm/board-msm8x60.c | 8 +-
arch/arm/mach-msm/clock-7x30.c | 1166 ++++++++++++++
arch/arm/mach-msm/clock-7x30.h | 265 ++--
arch/arm/mach-msm/clock-8x60.c | 1896 +++++++++++++++++++++++
arch/arm/mach-msm/clock-8x60.h | 218 +++
arch/arm/mach-msm/clock-debug.c | 176 +++
arch/arm/mach-msm/clock-local.c | 696 +++++++++
arch/arm/mach-msm/clock-local.h | 233 +++
arch/arm/mach-msm/clock-pcom.c | 102 ++-
arch/arm/mach-msm/clock-pcom.h | 21 +-
arch/arm/mach-msm/clock-voter.c | 202 +++
arch/arm/mach-msm/clock-voter.h | 54 +
arch/arm/mach-msm/clock.c | 244 +---
arch/arm/mach-msm/clock.h | 70 +-
arch/arm/mach-msm/devices-msm7x00.c | 32 +-
arch/arm/mach-msm/devices-msm7x30.c | 170 ++-
arch/arm/mach-msm/devices-msm8x60-iommu.c | 5 -
arch/arm/mach-msm/devices-msm8x60.c | 183 +++
arch/arm/mach-msm/devices-qsd8x50.c | 29 +-
arch/arm/mach-msm/devices.h | 9 +-
arch/arm/mach-msm/include/mach/board.h | 4 +-
arch/arm/mach-msm/include/mach/clkdev.h | 23 +
arch/arm/mach-msm/include/mach/iommu.h | 12 +-
arch/arm/mach-msm/include/mach/msm_iomap-8x60.h | 12 +
arch/arm/mach-msm/io.c | 3 +
arch/arm/mach-msm/iommu.c | 57 +-
arch/arm/mach-msm/iommu_dev.c | 204 ++-
arch/arm/mach-msm/proc_comm.h | 1 +
30 files changed, 5524 insertions(+), 582 deletions(-)
create mode 100644 arch/arm/mach-msm/clock-7x30.c
create mode 100644 arch/arm/mach-msm/clock-8x60.c
create mode 100644 arch/arm/mach-msm/clock-8x60.h
create mode 100644 arch/arm/mach-msm/clock-debug.c
create mode 100644 arch/arm/mach-msm/clock-local.c
create mode 100644 arch/arm/mach-msm/clock-local.h
create mode 100644 arch/arm/mach-msm/clock-voter.c
create mode 100644 arch/arm/mach-msm/clock-voter.h
create mode 100644 arch/arm/mach-msm/devices-msm8x60.c
create mode 100644 arch/arm/mach-msm/include/mach/clkdev.h
--
Sent by an employee of the Qualcomm Innovation Center, Inc.
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum.
next reply other threads:[~2010-12-17 0:50 UTC|newest]
Thread overview: 46+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-12-17 0:49 Stephen Boyd [this message]
2010-12-17 0:49 ` [PATCH 00/22] MSM clock driver updates Stephen Boyd
2010-12-17 0:49 ` [PATCH 01/22] msm: clock: Remove unused code and definitions Stephen Boyd
2010-12-17 0:49 ` Stephen Boyd
2010-12-17 0:49 ` [PATCH 02/22] msm: clock: Move debugfs code from clock.c to clock-debug.c Stephen Boyd
2010-12-17 0:49 ` Stephen Boyd
2010-12-17 0:49 ` [PATCH 03/22] msm: clock: Invert debugfs directory layout Stephen Boyd
2010-12-17 0:49 ` Stephen Boyd
2010-12-17 0:49 ` [PATCH 04/22] msm: clock: Add support for more proc_comm clocks Stephen Boyd
2010-12-17 0:49 ` Stephen Boyd
2010-12-17 0:49 ` [PATCH 05/22] msm: clock-7x30: Add 7x30 local clock driver Stephen Boyd
2010-12-17 0:49 ` Stephen Boyd
2010-12-17 0:49 ` [PATCH 06/22] msm: clock-7x30: Update clock table Stephen Boyd
2010-12-17 0:49 ` Stephen Boyd
2010-12-17 0:49 ` [PATCH 07/22] msm: clock: Refactor clock-7x30 into generic clock-local driver Stephen Boyd
2010-12-17 0:49 ` Stephen Boyd
2010-12-17 0:49 ` [PATCH 08/22] msm: clock-8x60: Add msm8x60 local clock driver Stephen Boyd
2010-12-17 0:49 ` Stephen Boyd
2010-12-17 0:49 ` [PATCH 09/22] msm: clock: Remove references to clk_ops_pcom Stephen Boyd
2010-12-17 0:49 ` Stephen Boyd
2010-12-17 0:49 ` [PATCH 10/22] msm: Move 8x60 to the real clock driver Stephen Boyd
2010-12-17 0:49 ` Stephen Boyd
2010-12-17 0:49 ` [PATCH 11/22] msm: clock Add debugfs interface to measure clock rates Stephen Boyd
2010-12-17 0:49 ` Stephen Boyd
2010-12-17 0:49 ` [PATCH 12/22] msm: clock: Add list_rate debugfs nodes for locally-controlled clocks Stephen Boyd
2010-12-17 0:49 ` Stephen Boyd
2010-12-17 0:49 ` [PATCH 13/22] msm: clock: Push down clock count and locking into sub drivers Stephen Boyd
2010-12-17 0:49 ` Stephen Boyd
2010-12-17 0:49 ` [PATCH 14/22] msm: clock: Support clk_set_parent() clk_ops Stephen Boyd
2010-12-17 0:49 ` Stephen Boyd
2010-12-17 0:49 ` [PATCH 15/22] msm: clock-pcom: Add pbus specific clock ops Stephen Boyd
2010-12-17 0:49 ` Stephen Boyd
2010-12-17 0:50 ` [PATCH 16/22] msm: clock: Implement rate voting Stephen Boyd
2010-12-17 0:50 ` Stephen Boyd
2010-12-17 0:50 ` [PATCH 17/22] msm: Migrate to clock " Stephen Boyd
2010-12-17 0:50 ` Stephen Boyd
2010-12-17 0:50 ` [PATCH 18/22] msm: clock: Migrate to clkdev Stephen Boyd
2010-12-17 0:50 ` Stephen Boyd
2010-12-17 0:50 ` [PATCH 19/22] msm: iommu: Add bus clocks to platform data Stephen Boyd
2010-12-17 0:50 ` Stephen Boyd
2010-12-17 0:50 ` [PATCH 20/22] msm: iommu: Clock control for the IOMMU driver Stephen Boyd
2010-12-17 0:50 ` Stephen Boyd
2010-12-17 0:50 ` [PATCH 21/22] msm: iommu: Rework clock logic and add IOMMU bus clock control Stephen Boyd
2010-12-17 0:50 ` Stephen Boyd
2010-12-17 0:50 ` [PATCH 22/22] msm: clock-8x60: Don't keep IOMMU clocks on at boot Stephen Boyd
2010-12-17 0:50 ` Stephen Boyd
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=1292547006-19741-1-git-send-email-sboyd@codeaurora.org \
--to=sboyd@codeaurora.org \
--cc=arve@android.com \
--cc=davidb@codeaurora.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=skannan@codeaurora.org \
--cc=swetland@google.com \
/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.