* Hiroshi DOYU <Hiroshi.DOYU@xxxxxxxxx> [081003 09:24]: > Hi David, > > From: "ext David Brownell" <david-b@xxxxxxxxxxx> > Subject: Re: [PATCH 1/3] [RFC] clk: introduce clk_associate > Date: Thu, 2 Oct 2008 13:50:02 -0700 > > > On Wednesday 01 October 2008, Hiroshi DOYU wrote: > > > Or, this feature itself can be covered by 'virtual clock(vclk)'? > > > > > > http://marc.info/?l=linux-omap&m=122066992729949&w=2 > > > > > > which means that, > > > in this case, if 'vclk' just has a single child, not multiple, it can > > > be used just as 'aliasing' of clock names, without touching the > > > contents of 'struct clk', since 'vclk' is a inhritance of 'struct clk'. > > > <snip> > > > > > Some driver may need to control multiple clocks at > > > once. Some may need a clock which has different names between omap1, > > > omap2/3 or target boards. Or some may need to control multiple clock > > > groups from the functional perspective. So I think that a *flexible* > > > infrastructure would be better to afford such requiments, keeping > > > 'struct clk' as simple as possible. > > > > That vclk stuff looked a bit less obvious than I like. > > Maybe I just haven't seen the need for those particular > > flavors of flexibility. > > I've looked around for some examples;). For this abstruction (or > logical clock view), one of the case which clk_associate doesn't deal > with is to handle multiple clocks together. There are some cases, > where multiple clocks are handled(enable/disable) at once as below: > > drivers/usb/gadget/omap_udc.c: omap_udc_enable_clock() > drivers/video/omap/rfbi.c: rfbi_enable_clocks() > arch/arm/mach-omap2/mcbsp.c: omap_mcbsp_clk_enable()*1 > arch/arm/mach-omap2/serial.c: omap_serial_enable_clocks() > sound/arm/omap/eac.c: eac_enable_clocks() > > With vclk, all the above home-brewed functions, *_enable_clocks(), can > be replaced by a normal clk_enable(), with grouping the logical set of > clocks in advance. Adding something like the enable_clocks() we've already gotten comments on, and it's considered abuse of the clock framework. So the drivers should just use clk_enable/disable() and that's it. Since some drivers may need to set fck and ick separately from PM point of view, I think it's OK for the driver to handle multiple clocks in the driver. But maybe we can find a way to treat multiple clocks as one clock still with clk_associate? > For some of the above drivers, omap's "functional clock" and > "interface clock" doesn't make sense. For such device drivers, those > clocks may look just a single necessary clock and there's no "one to > one" correspondence from the omap clock functionality definitions > ("ick"/"fck") perspective. I think that this is one of the examples, > where the flexibily is required. Since required functionaliies for > clocks depends on each device drivers, I think that it would give a > wider solution to let device drivers to define their logical > clocks(functionality) flexibly(not 1-to-1), rather than statically > pre-defined standardized functional names, which is the 1-to-1 > correspondence of ick and fck in the TRM with aliasing. Maybe a combination of clk_associate() and adding a vclk in some cases is the way to go? Adding a vclk has the issue Paul pointed out on how to figure out the parent. So the vclk would always have to implement custom set_rate() and parent. The main advantage I see with clk_associate() is that it solves the trying to match struct device to struct clk with the name and instance. Getting the instance right is not obvious as some clocks start numbering at 0 and some at 1... If the driver does any logic on the instance, things break easily in mysterious ways. Like the MMC did for hsmmc with my recent MMC init patches. > But I agree on that 'vclk' is too flexible and I think that's why Paul > hasn't taken it yet;) Or it should be used carefully and only when really needed. Tony > *1: http://marc.info/?l=linux-omap&m=122066992729951&w=2 -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html