RE: [PATCH] dmtimer posting

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi,
 
> * Tony Lindgren <tony@xxxxxxxxxxx> [080320 13:58]:
> > * Woodruff, Richard <r-woodruff2@xxxxxx> [080320 00:14]:
> > >
> > > One note is some more optimization could happen later on with
> > > reordering.  The current usage in gptimer has dmtimer_set_load()
> > > followed by a dm_timer_start().  This causes a
read/write/read/write
> of
> > > the CTRL register.  Those writes could be collapsed into each
other.
> > > With a load_start().  Others maybe elsewhere.
> >
> > OK. We might also want to optimize the timer reload function. I'll
post
> > a separate patch on that to experiment with.
> 
> Here's an experimental patch that attempts to optimize the timer
> reloading for gp_timer0. I don't know if this improves the latency
> or performance, but might be worth testing.
> 
> I guess there's no way to update the timer without having to write
> TCLR to (re)start it?

If its been stopped you need to write.

> If the patch helps, then we can clean it up a bit more.

This seems good. It does boot and suppress ticks and keep time on my
3430-ES2.1 SDP.

With ETB trace I can't even see it show up in profiling.  As I said in
the last thread I don't have ETM right now to get the real external
time.  But as it is written you get full posting and little need to
synchronize after the write.  If this works reliably it should remove
the overhead completely.

Question: don't you think you need to also update the TLDR in
GP_TIMER0_RELOAD?  Your patch directly writes to the count register, and
forces auto-reload mode in the TLCR.  If the wrong value is in the TLDR
when it overflows you could be here for a while.  Skipping the trigger
write to WTGR for the kick off is ok as is done.

If its in autoreload mode, I'm not sure if it will always call back to
this call.  Perhaps only when changing modes?  I've not so familiar with
the flow above this.  When I look in the debugger, it does have expected
values in all registers (including TLDR) but I'm not sure of the
ordering of the set.

+#define GP_TIMER0_RELOAD(cycles, base)
\
+{
\
+	while ((__raw_readl(IO_ADDRESS((base) + GP_TIMER_TWPS)) &
TWPS_MASK))	\
+		cpu_relax();
\
+	__raw_writel(0xffffffff - (cycles),
\
+			IO_ADDRESS((base) + GP_TIMER_TCRR));
\
+	__raw_writel(0x3, IO_ADDRESS((base) + GP_TIMER_TCLR));
\
+}
+

I'll try a quick back port to CDP kernel and see the effect.  The
previous patch reduced load and saved a few mA at run time which was
good.  This might get another couple mA and MHz back.

Regards,
Richard W.
--
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

[Index of Archives]     [Linux Arm (vger)]     [ARM Kernel]     [ARM MSM]     [Linux Tegra]     [Linux WPAN Networking]     [Linux Wireless Networking]     [Maemo Users]     [Linux USB Devel]     [Video for Linux]     [Linux Audio Users]     [Yosemite Trails]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux