[PATCH 6/16] cell: abstract spu management routines

Geoff Levand geoffrey.levand at am.sony.com
Tue Nov 14 13:56:32 EST 2006


Michael Ellerman wrote:
>> > Why can't your PS3 platform code fake-up device nodes for SPUs? It seems
>> > that would simplify this quite a lot.
>> 
>> 
>> Seems like a hack to me.  My concern is that I just have to keep adding some
>> extra hack for every new spu feature that comes out.  I would prefer to make
>> a proper design from the start, but if anyone can be more convincing I am
>> open to suggestions.
> 
> Well the whole thrust of the flattened-device-tree model, is that we do
> as much platform-specific hackery in a boot-loader/early-init, and
> present the hardware in as standard a way as possible to the kernel via


The thing is that the spus are visualized, so to create one takes up
HV resources, mainly HV memory.  Creating spus in the bootloader has
several problems.  One is that you could be allocating HV memory that would
never be used if the kernel is not configured for spu support, and this
is memory could be used for other HV support.  Another problem is the
management of those HV resources across kernel reloads, with kexec for
example.  If the management is split then both entities need to have
knowledge of the other, which complicates things.


> The hope is that this isolates most of the kernel from platform specific
> details, as far as is possible - there will always be some things that
> need to be abstracted out - for that we have ppc_md and a few other
> callbacks.
> 
> The priv1_ops serve that purpose, providing callbacks, and there's
> really no way around that - you can't tap the priv1 area when you're
> running under a HV - fine. But for just finding the spus it strikes me
> that it would be _nicer_, perhaps not easier :), to have your
> "enumerate_spus" populate the flat device tree early on - which would
> leave more of the spu code untouched by the hv/bare-metal issue.


And how many would you like to find? 1? 5? 400? Although there is
a current limitation in the HV implementation, these are logical
spus.  It would seem the kernel could create spus based on the need,
and thus better balance resource usage, but this is not at all how
the current spu code works though.  I don't plan to do any work on
this, but it would be nice to keep it open.

-Geoff



More information about the Linuxppc-dev mailing list