public inbox for linux-omap@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/22] omap2 clock: Bugfixes and cleanups in OMAP2 clock framework
@ 2007-08-02 18:10 Paul Walmsley
  2007-08-02 18:10 ` [PATCH 01/22] omap2 clock: drop meaningless RATE_CKCTLs Paul Walmsley
                   ` (21 more replies)
  0 siblings, 22 replies; 32+ messages in thread
From: Paul Walmsley @ 2007-08-02 18:10 UTC (permalink / raw)
  To: linux-omap-open-source

Hello,

this patch series contains bugfixes and code cleanups for the OMAP2
clock framework.  Highlights include:

- VLYNQ clock fixes

- Addition of "fixed divisor" clock setup, for clocks that follow their
  parents' rates divided by a fixed divisor, like iva1_mpu_int_ifck and
  func_12m_ck

- Removal of several 2420-only clocks from 2430

- Fix "clock.c: Enable for dpll_ck without enable code" boot message

- osc_ck/sys_ck rate initialization fixes in omap2_get_crystal_rate()

- And many other minor fixes

These patches have been boot-tested on N800.  Comments, review, and
further testing are welcome.

- Paul


diffstat:

 arch/arm/mach-omap2/clock.c                      |  777 +++++++++++------------
 arch/arm/mach-omap2/clock.h                      |  362 ++++------
 include/asm-arm/arch-omap/clock.h                |    7
 linux-omap/arch/arm/mach-omap2/clock.c           |    5
 linux-omap/arch/arm/mach-omap2/clock.h           |   10
 linux-omap/arch/arm/mach-omap2/cm_regbits_24xx.h |    4
 linux-omap/arch/arm/mach-omap2/memory.c          |   50 +
 linux-omap/arch/arm/mach-omap2/memory.h          |    2
 linux-omap/include/asm-arm/arch-omap/clock.h     |    7
 9 files changed, 635 insertions(+), 589 deletions(-)

Object size change:

  text    data     bss     dec     hex filename
2839692  142692  138404 3120788  2f9e94 vmlinux.orig
2840280  143180  138404 3121864  2fa2c8 vmlinux.patched

--

^ permalink raw reply	[flat|nested] 32+ messages in thread

end of thread, other threads:[~2007-08-13  7:03 UTC | newest]

Thread overview: 32+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-08-02 18:10 [PATCH 00/22] omap2 clock: Bugfixes and cleanups in OMAP2 clock framework Paul Walmsley
2007-08-02 18:10 ` [PATCH 01/22] omap2 clock: drop meaningless RATE_CKCTLs Paul Walmsley
2007-08-02 18:10 ` [PATCH 02/22] omap2 clock: fix incorrect rate calculation for osc_ck, sys_ck Paul Walmsley
2007-08-10 21:08   ` [PATCH 02/22 - Reverse] omap2 osc & sys clock calculation Woodruff, Richard
2007-08-13  7:03     ` Tony Lindgren
2007-08-02 18:10 ` [PATCH 03/22] omap2 clock: fix clksel divisor bug Paul Walmsley
2007-08-02 18:10 ` [PATCH 04/22] omap2 clock: vlynq_fck recalc should be clksel, not followparent Paul Walmsley
2007-08-02 18:10 ` [PATCH 05/22] omap2 clock: fix CodingStyle issues Paul Walmsley
2007-08-02 18:10 ` [PATCH 06/22] omap2 clock: drop unnecessary variable in omap2_clk_round_rate() Paul Walmsley
2007-08-02 18:10 ` [PATCH 07/22] omap2 clock: get rid of sleep_ck Paul Walmsley
2007-08-02 18:10 ` [PATCH 08/22] omap2 clock: clean up dss2_fck clock flags Paul Walmsley
2007-08-02 18:10 ` [PATCH 09/22] omap2 clock: move SDRC-related code from clock.c to memory.c Paul Walmsley
2007-08-02 18:10 ` [PATCH 10/22] omap2 clock: use symbolic constants in clock.h rate_offset/src_offset fields Paul Walmsley
2007-08-02 18:10 ` [PATCH 11/22] omap2 clock: fix some clocks incorrectly marked as present on OMAP2430 Paul Walmsley
2007-08-02 18:45   ` [PATCH 11/22] omap2 clock: fix some clocks incorrectly marked aspresent " Woodruff, Richard
2007-08-02 19:05   ` Woodruff, Richard
2007-08-03 18:09     ` Paul Walmsley
2007-08-03 18:47       ` Woodruff, Richard
2007-08-04 15:56         ` Paul Walmsley
2007-08-04 22:02           ` Woodruff, Richard
2007-08-10  9:43             ` Tony Lindgren
2007-08-02 18:10 ` [PATCH 12/22] omap2 clock: vlynq_fck is missing clksel divider code Paul Walmsley
2007-08-02 18:10 ` [PATCH 13/22] omap2 clock: convert PARENT_CONTROLS_CLOCK into a clock flag Paul Walmsley
2007-08-02 18:10 ` [PATCH 14/22] omap2 clock: omap2 clock.c: Consolidate wait-for-lock code Paul Walmsley
2007-08-02 18:10 ` [PATCH 15/22] omap2 clock: return -EINVAL if no clock enable code; fix dpll_ck enable Paul Walmsley
2007-08-02 18:10 ` [PATCH 16/22] omap2 clock: From: Paul Walmsley <paul@pwsan.com> Subject: Paul Walmsley
2007-08-02 18:10 ` [PATCH 17/22] omap2 clock: Cleanup in clksel-related code; add sys_clkout2 divisor handling Paul Walmsley
2007-08-02 18:10 ` [PATCH 18/22] omap2 clock: Use symbolic constants in clock.c Paul Walmsley
2007-08-02 18:10 ` [PATCH 19/22] omap2 clock: use dedicated omap2_dpll_recalc() for DPLL recalc func Paul Walmsley
2007-08-02 18:10 ` [PATCH 20/22] omap2 clock: add fixed divisor clock code Paul Walmsley
2007-08-02 18:10 ` [PATCH 21/22] omap2 clock: remove fixed rate from mdm_osc_ck Paul Walmsley
2007-08-02 18:10 ` [PATCH 22/22] omap2 clock: get rid of omap2_followparent_recalc() Paul Walmsley

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox