On Wed, Jul 11, 2007 at 10:02:54AM -0700, David Brownell wrote: > On Wednesday 11 July 2007, Christoph Hellwig wrote: > > On Wed, Jul 11, 2007 at 08:56:58AM -0700, David Brownell wrote: > > > > Umm, this is about the fifth almost identical implementation of > > > > the clk_ functions. Please, please put it into common code. > > > > > > > > And talk to the mips folks which just got a similar comment from me. > > > > > > You mean like a lib/clock.c core, rather than an opsvector? > > > > I mean an ops vector and surrounding wrappers. Every architecture > > is reimplementing their own dispatch table which is rather annoying. > > ARM doesn't. :) > > But then, nobody expects one kernel to support more than one > vendor's ARM chips; or usually, more than one generation of > that vendor's chips. So any dispatch table is specific to > a given platform, and tuned to its quirks. Not much to share > between OMAP and AT91, for example, except in some cases maybe > an arm926ejs block.
And also the information stored within a 'struct clk' is very platform dependent. In the most basic situation, 'struct clk' may not actually be a structure, but the clock rate. All functions with the exception of clk_get() and clk_get_rate() could well be no-ops, clk_get() just returns the 'struct clk' representing the rate and 'clk_get_rate' returns that as an integer. More complex setups might want 'struct clk' to contain the address of a clock enable register, the bit position to enable that clock source, the clock rate, a refcount, and so on, all of which would be utterly useless for a platform which had fixed rate clocks. > I've not seen a solid proposal for such a thing, and it's not > clear to me how that would play with with older code (e.g. any > of the ARM implementations). If people are implementing their own incompatible changes without reference to the API they're invalid implementations as far as I'm concerned. If they can't bothered to lift a finger to even _talk_ to me about their requirements they just don't have any say concerning any future developments IMO. IOW, talk to me and I'll talk back. Ignore me and I'll ignore them. -- Russell King Linux kernel 2.6 ARM Linux - http://www.arm.linux.org.uk/ maintainer of: _______________________________________________ Linuxppc-dev mailing list Linuxppc-dev@ozlabs.org https://ozlabs.org/mailman/listinfo/linuxppc-dev