Linux-ARM-Kernel Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: paul@pwsan.com (Paul Walmsley)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 00/12] OMAP: clock/SRAM: patches for 2.6.38, part one
Date: Mon, 13 Dec 2010 23:34:43 -0700	[thread overview]
Message-ID: <20101214063308.21555.76050.stgit@twilight.localdomain> (raw)

This clock/SRAM patch series, based on v2.6.37-rc5:

- fixes some problems and missing data with OMAP4 clocks,

- adds SCRM IP block data (part of the OMAP4 PRCM collection of modules),

- cleans up the way that OMAP3 clock data CK_* and RATE_IN_* flags are
  used,

- adds some comments to the SRAM code,

- prepares part of the OMAP1 clock code for a combined OMAP1 defconfig
  (although more work is left to be done before a combined OMAP1
   defconfig is safe, from a clock framework perspective),

- and fixes a few minor bugs in the OMAP2/3 clock code.


Boot-tested on OSK 5912, N800, OMAP35xx Beagle, and OMAP37xx Beagle-XM.

This series is also available from git://git.pwsan.com/linux-2.6
branch 'clk_a_2.6.38'.


- Paul

---

clk_a_2.6.38
   text	   data	    bss	    dec	    hex	filename
5733349	 471616	5608768	11813733	 b44365	vmlinux.orig
5734273	 473728	5608768	11816769	 b44f41	vmlinux.patched


Benoit Cousson (3):
      OMAP4: clock data: Add control for pad_clks_ck and slimbus_clk
      OMAP3: clock data: Add "wkup_clkdm" in sr1_fck and sr2_fck
      OMAP4: PRCM: Add SCRM header file

Janusz Krzysztofik (1):
      OMAP1: clock_data: use runtime cpu / machine checks

Jonathan Bergsagel (1):
      OMAP4: clock data: Add missing fields in iva_hsd_byp_clk_mux_ck

Paul Walmsley (4):
      OMAP2xxx clock: fix dss2_fck recalc to use clksel
      OMAP3: clock: clarify usage of struct clksel_rate.flags and struct omap_clk.cpu
      OMAP3: clock: fix incorrect rate display when switching MPU rate at boot
      OMAP2/3: SRAM: add comment about crashes during a TLB miss

Rajendra Nayak (2):
      OMAP4: clock data: Add SCRM auxiliary clock nodes
      OMAP4: clock data: Export control to enable/disable CORE/PER M3 clocks

Thara Gopinath (1):
      OMAP4: clock data: Add missing DPLL x2 clock nodes


 arch/arm/mach-omap1/clock_data.c              |   17 -
 arch/arm/mach-omap2/clock2420_data.c          |    2 
 arch/arm/mach-omap2/clock2430_data.c          |    2 
 arch/arm/mach-omap2/clock3xxx.c               |    2 
 arch/arm/mach-omap2/clock3xxx_data.c          |  218 ++++-----
 arch/arm/mach-omap2/clock44xx_data.c          |  620 ++++++++++++++++++-------
 arch/arm/mach-omap2/scrm44xx.h                |  176 +++++++
 arch/arm/mach-omap2/sram242x.S                |    6 
 arch/arm/mach-omap2/sram243x.S                |    6 
 arch/arm/mach-omap2/sram34xx.S                |    6 
 arch/arm/plat-omap/include/plat/clkdev_omap.h |   20 -
 arch/arm/plat-omap/include/plat/clock.h       |   11 
 12 files changed, 772 insertions(+), 314 deletions(-)
 create mode 100644 arch/arm/mach-omap2/scrm44xx.h

             reply	other threads:[~2010-12-14  6:34 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-12-14  6:34 Paul Walmsley [this message]
2010-12-14  6:34 ` [PATCH 01/12] OMAP4: clock data: Add control for pad_clks_ck and slimbus_clk Paul Walmsley
2010-12-14  6:34 ` [PATCH 02/12] OMAP3: clock data: Add "wkup_clkdm" in sr1_fck and sr2_fck Paul Walmsley
2010-12-14  6:34 ` [PATCH 03/12] OMAP4: clock data: Add missing DPLL x2 clock nodes Paul Walmsley
2010-12-22  1:47   ` Paul Walmsley
2010-12-30  4:52     ` Gopinath, Thara
2010-12-14  6:34 ` [PATCH 04/12] OMAP4: clock data: Add missing fields in iva_hsd_byp_clk_mux_ck Paul Walmsley
2010-12-14  6:34 ` [PATCH 05/12] OMAP4: PRCM: Add SCRM header file Paul Walmsley
2010-12-14 13:59   ` Cousson, Benoit
2010-12-14 18:13     ` Paul Walmsley
2010-12-14 20:16       ` Cousson, Benoit
2010-12-15  1:15         ` Paul Walmsley
2010-12-15  1:17   ` Paul Walmsley
2010-12-14  6:34 ` [PATCH 06/12] OMAP4: clock data: Add SCRM auxiliary clock nodes Paul Walmsley
2010-12-14  6:34 ` [PATCH 07/12] OMAP4: clock data: Export control to enable/disable CORE/PER M3 clocks Paul Walmsley
2010-12-14  6:34 ` [PATCH 08/12] OMAP2xxx clock: fix dss2_fck recalc to use clksel Paul Walmsley
2010-12-14  6:34 ` [PATCH 09/12] OMAP3: clock: clarify usage of struct clksel_rate.flags and struct omap_clk.cpu Paul Walmsley
2010-12-14  6:34 ` [PATCH 10/12] OMAP3: clock: fix incorrect rate display when switching MPU rate at boot Paul Walmsley
2010-12-14  6:34 ` [PATCH 11/12] OMAP2/3: SRAM: add comment about crashes during a TLB miss Paul Walmsley
2010-12-14  6:34 ` [PATCH 12/12] OMAP1: clock_data: use runtime cpu / machine checks Paul Walmsley
2010-12-14  6:49 ` [PATCH 00/12] OMAP: clock/SRAM: patches for 2.6.38, part one Santosh Shilimkar
2010-12-14  6:53   ` Paul Walmsley
2010-12-14  6:53   ` Santosh Shilimkar
2010-12-14 20:05 ` Kevin Hilman

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=20101214063308.21555.76050.stgit@twilight.localdomain \
    --to=paul@pwsan.com \
    --cc=linux-arm-kernel@lists.infradead.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox