From: Arnd Bergmann Date: Fri, 20 Jul 2007 19:39:45 +0000 (+0200) Subject: [CELL] cell: add vicinity information on spus X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=9d92af621f193c1c889ac8b6fd8c987ccd8aae1f;p=linux-beck.git [CELL] cell: add vicinity information on spus This patch adds affinity data to each spu instance. A doubly linked list is created, meant to connect the spus in the physical order they are placed in the BE. SPUs near to memory should be marked as having memory affinity. Adjustments of the fields acording to FW properties is done in separate patches, one for CPBW, one for Malta (patch for Malta under testing). Signed-off-by: Andre Detsch Signed-off-by: Arnd Bergmann --- diff --git a/arch/powerpc/platforms/cell/spu_base.c b/arch/powerpc/platforms/cell/spu_base.c index dd632e5feff3..0fc2e12a3c85 100644 --- a/arch/powerpc/platforms/cell/spu_base.c +++ b/arch/powerpc/platforms/cell/spu_base.c @@ -593,6 +593,8 @@ static int __init create_spu(void *data) ktime_get_ts(&ts); spu->stats.tstamp = timespec_to_ns(&ts); + INIT_LIST_HEAD(&spu->aff_list); + goto out; out_free_irqs: diff --git a/include/asm-powerpc/spu.h b/include/asm-powerpc/spu.h index 2f2fe9f1c097..18e558bef98e 100644 --- a/include/asm-powerpc/spu.h +++ b/include/asm-powerpc/spu.h @@ -166,6 +166,9 @@ struct spu { struct sys_device sysdev; + int has_mem_affinity; + struct list_head aff_list; + struct { /* protected by interrupt reentrancy */ enum spu_utilization_state util_state;