From mboxrd@z Thu Jan 1 00:00:00 1970 From: Paul Walmsley Subject: [PATCH 00/27] omap2 clock: resend: framework generalization, cleanup Date: Mon, 27 Aug 2007 02:38:56 -0600 Message-ID: <20070827083856.549249288@pwsan.com> Return-path: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: linux-omap-open-source-bounces+gplao-linux-omap-open-source=gmane.org@linux.omap.com Errors-To: linux-omap-open-source-bounces+gplao-linux-omap-open-source=gmane.org@linux.omap.com To: linux-omap-open-source@linux.omap.com List-Id: linux-omap@vger.kernel.org Hello, this patch set is the same set that I sent before, but some style issues have been cleaned up, and the last autoidle patch dropped for now. I've updated the diffstat and size output, and refreshed the patches against current git HEAD, 3c5639c. Should be ready to apply. - Paul ----- Hello, This set of patches contains some significant changes to the OMAP2 clock framework. The main goal of these patches is to generalize the framework enough to be usable for the OMAP3430 clock tree, although in the process I think the OMAP2 clock code is improved quite a bit - I hope you'll agree. The major change in this patch set is the rewrite of clksel clock handling, which: * enables clksel parent clocks to be updated at clock framework init, from whatever the bootloader configured, * properly encodes platform restrictions for particular rates, * generalizes the clksel code to be useful for OMAP3430 clocks, * facilitates future improved clock state reporting, * and improves readability and maintainability. The clksel patches are patches 6 through 20. A few other notable changes in this patchset: * Cleanups/bug fixes: patches 1, 3, 4, 5 * Generalize root clock propagation at clock framework init: patch 2 * Use OMAP clock framework enable/disable fns for osc_ck, APLLs: patches 21, 22, 23 * Recalculate osc_ck and sys_ck via recalculate fns, rather than omap2_get_crystal_rate(): patch 24 * Generalize DPLL multiplier, divider handling: patches 25 * Generalize clocks enabled at init via ENABLE_ON_INIT clock flag: patch 26 * Generalize clock autoidle configuration: patches 27 The patches were boot-tested on N800. Comments and testing are appreciated. In particular, any testing on 2430SDP is particularly welcome, since I don't have one here. Patches apply cleanly against current git head 3c5639c, and seem to run fine, but I've been doing most of my testing against 2.6.22-omap1, since my N800 touchscreen does not work consistently with recent 2.6.23 revs. These changes increase uncompressed kernel memory footprint by about 5kB: text data bss dec hex filename 2848436 147732 85992 3082160 2f07b0 vmlinux.orig 2851388 149740 85992 3087120 2f1b10 vmlinux diffstat: arch/arm/mach-omap2/clock.c | 880 ++++++++------------ arch/arm/mach-omap2/clock.h | 957 ++++++++++++++++------ arch/arm/plat-omap/clock.c | 11 include/asm-arm/arch-omap/clock.h | 21 linux-omap/arch/arm/mach-omap2/board-n800-audio.c | 13 linux-omap/arch/arm/mach-omap2/clock.c | 8 linux-omap/arch/arm/mach-omap2/clock.h | 24 linux-omap/arch/arm/plat-omap/clock.c | 17 linux-omap/include/asm-arm/arch-omap/clock.h | 25 9 files changed, 1227 insertions(+), 729 deletions(-) My apologies in advance for the double 'Index:' lines in some of the patches - must be some quilt bug - it seems harmless and I have not yet had the chance to track it down. - Paul