[Cbe-oss-dev] powerpc/cell/cpufreq: add spu aware cpufreq governor

Arnd Bergmann arnd at arndb.de
Tue Jul 8 07:02:53 EST 2008


On Monday 07 July 2008, Eric Blossom wrote:
> I've got a basic question about this idea:
> 
> Does it throttle only idle spus or is there a single control for
> the entire PPE + SPE complex?

There is one setting per socket, i.e. 8 SPUs and 1 PPU. In IBM speak,
that is slow mode, which would be C states in Intel speak.

There is also throttling (IBM), which can be applied to each core
seperately, and is the rough equivalent of T states in Intel terminology,
but it's almost useless for power saving purposes, so we don't do it
except for emergency (thermal overload) throttling.

> I can think of many situations in our code where at certain times we
> may only be able to keep N out of M spes occupied (because of how
> we've expressed our task-specific parallelism), but we're counting on
> the ones we're using running at full speed so that we can maintain our
> real-time throughput.  (Our application does real-time signal
> processing of continuously streaming data)
> 
> Is there a way to disable the "throttling SPEs" feature short of
> configuring it out of the kernel?

By default, Linux always uses the "performance" governor, you have
to enable the spu aware governor manually to get the slow mode feature
in the first place.

Also, the idea of this code is to enter slow mode only if none of the
SPEs is constantly busy. As soon as you have a single thread hogging
one SPE, it will behave just like the performance governor, i.e.
do nothing.

	Arnd <><



More information about the Linuxppc-dev mailing list