* [RFC PATCH v2 0/2] ARM: MPIDR linearization
@ 2013-06-06 15:22 Lorenzo Pieralisi
2013-06-06 15:22 ` [RFC PATCH v2 1/2] ARM: kernel: build MPIDR hash function data structure Lorenzo Pieralisi
` (2 more replies)
0 siblings, 3 replies; 21+ messages in thread
From: Lorenzo Pieralisi @ 2013-06-06 15:22 UTC (permalink / raw)
To: linux-arm-kernel
This patchset is v2 of a previous posting:
http://lists.infradead.org/pipermail/linux-arm-kernel/2013-June/172873.html
v2 changes:
- rescheduled registers usage in compute_mpidr_hash macro
Cores in ARM SMP systems are identified through coprocessor registers,
so that every core, by executing a coprocessor read, can detect its own
identifier. The CPU identifier evolved from a simple CPU ID on ARM 11 MPcore
SMP, where the CPU ID was split in two subfields (CPU ID and CLUSTER ID)
to the v7 MPIDR, where the MPIDR[23:0] bits define three affinity levels
that can describe thread, core, cluster topology identifiers.
According to the ARM 11 MPcore TRM and for architecture versions later
than v7 (MPIDR), to the ARM ARM, the identifier registers format is as follows:
NR: non-relevant for identification
ARM11 MPCORE: CPU ID register
31 12 11 8 7 4 3 0
---------------------------------------------------------------------------
| NR | CLUSTER ID | NR | CPU ID |
--------------------------------------------------------------------------
ARM v7: MPIDR
31 24 23 16 15 8 7 0
---------------------------------------------------------------------------
| NR | AFFINITY 2 | AFFINITY 1 | AFFINITY 0 |
---------------------------------------------------------------------------
The split of CPU identifiers in multiple affinity levels implies that
the CPU ID, and later the MPIDR, cannot be used as simple indexes, since
the bit representation can contain holes:
eg 4 CPUs, in two separate clusters with two CPUs each:
CPU0: MPIDR = 0x0
CPU1: MPIDR = 0x1
CPU2: MPIDR = 0x100
CPU3: MPIDR = 0x101
In order to carry out operations that rely on the HW CPUID/MPIDR (CCI
disabling, context save/restore) the association of the CPU ID, or MPIDR
to an index is needed so that the CPU can be associated with a set of
resources. Resources look-up through the HW CPU ID is carried out in
code paths usually executed in power down procedures, that have to be
fast and look-up should be performed with few instructions that may be
executing in physical address space, with the MMU off.
In order to provide a fast conversion from [CPU ID, MPIDR] values to indexes
this set provides methods to build a simple collision-free hash function based
on shifting and OR'ing of CPU ID values, with shifts precomputed at boot by
scanning the cpu_logical_map entries (that contain the CPUID/MPIDR) of
possible CPUs.
By scanning the cpu_logical_map, the boot code detects how many bits are really
required to represent HW identifiers in the system and map them to a set of
buckets that actually represent the given index a HW id correspond to. The
hashing algorithm inherently takes advantage of a-priori knowledge of the
CPUIDs/MPIDRs allowed bits layout and it can be executed with few instructions
even in code paths where caching and the MMU are turned off (e.g resuming from
idle, S2R, hibernation).
One drawback of the current hashing algorithm is that it may result in a big
number of buckets if the recommendations on the CPUID/MPIDR layout are not
respected in the CPUID/MPIDR configuration; code warns on hash table
sizes bigger than 4 times the number of possible CPUs, which is a
symptom of a weird CPUID/MPIDR HW configuration and should be the exception
not the rule.
The first patch in the series provides a function that precomputes all
required hashing parameters by scanning the cpu_logical_map (that
contains HW identifiers), computes and stashes the hash parameters in a
structure exported to all kernel components for further usage.
The second patch fixes the current cpu_{suspend}/{resume} functionality,
so that all levels of CPUID/MPIDR are supported and cpu_{suspend}/{resume}
can be used on systems where affinity levels 1 and 2 are actually populated.
The fix carries out dynamic allocation of the array used to save the context
pointers, with size equal to the number of precomputed CPUID/MPIDR hash
buckets. To access the array, the CPUID/MPIDR values are hashed through the
algorithm built in patch 1 so that a hash value is retrieved and the array can
be indexed properly through it.
Context pointer array is allocated through kmalloc, so that it is made
up of a contiguous chunk of memory whose virtual address can be safely
converted to physical address (used in the MMU off path) through a
static mapping translation valid for all pages (if more than one) making
up the context pointer array. Context pointer array base address is
stashed in a structure easily retrieved in assembly through a pc relative
load that provides both virtual and physical address so that address
translation is not needed in the cpu_resume path, saving a few instructions.
Code will be improved later through dynamic patching so that the mask
and shifts in the hashing algorithm will be embedded in the assembly
instructions as immediates, removing the need for multiple loads to
memory to retrieve them at every given cpu_{suspend}/{resume} cycle.
Tested on TC2 (dual cluster 2x3 A15/A7 system) through CPU idle deep C-states
allowing A15 and A7 shutdown modes on both SMP and UP configurations.
Lorenzo Pieralisi (2):
ARM: kernel: build MPIDR hash function data structure
ARM: kernel: implement stack pointer save array through MPIDR hashing
arch/arm/include/asm/smp_plat.h | 18 ++++++++
arch/arm/include/asm/suspend.h | 5 +++
arch/arm/kernel/asm-offsets.c | 6 +++
arch/arm/kernel/setup.c | 67 ++++++++++++++++++++++++++++
arch/arm/kernel/sleep.S | 97 +++++++++++++++++++++++++++++++++--------
arch/arm/kernel/suspend.c | 20 +++++++++
6 files changed, 195 insertions(+), 18 deletions(-)
--
1.8.2.2
^ permalink raw reply [flat|nested] 21+ messages in thread
* [RFC PATCH v2 1/2] ARM: kernel: build MPIDR hash function data structure
2013-06-06 15:22 [RFC PATCH v2 0/2] ARM: MPIDR linearization Lorenzo Pieralisi
@ 2013-06-06 15:22 ` Lorenzo Pieralisi
2013-06-06 15:22 ` [RFC PATCH v2 2/2] ARM: kernel: implement stack pointer save array through MPIDR hashing Lorenzo Pieralisi
2013-06-11 9:58 ` [RFC PATCH v2 0/2] ARM: MPIDR linearization Lorenzo Pieralisi
2 siblings, 0 replies; 21+ messages in thread
From: Lorenzo Pieralisi @ 2013-06-06 15:22 UTC (permalink / raw)
To: linux-arm-kernel
On ARM SMP systems, cores are identified by their MPIDR register.
The MPIDR guidelines in the ARM ARM do not provide strict enforcement of
MPIDR layout, only recommendations that, if followed, split the MPIDR
on ARM 32 bit platforms in three affinity levels. In multi-cluster
systems like big.LITTLE, if the affinity guidelines are followed, the
MPIDR can not be considered an index anymore. This means that the
association between logical CPU in the kernel and the HW CPU identifier
becomes somewhat more complicated requiring methods like hashing to
associate a given MPIDR to a CPU logical index, in order for the look-up
to be carried out in an efficient and scalable way.
This patch provides a function in the kernel that starting from the
cpu_logical_map, implement collision-free hashing of MPIDR values by checking
all significative bits of MPIDR affinity level bitfields. The hashing
can then be carried out through bits shifting and ORing; the resulting
hash algorithm is a collision-free though not minimal hash that can be
executed with few assembly instructions. The mpidr is filtered through a
mpidr mask that is built by checking all bits that toggle in the set of
MPIDRs corresponding to possible CPUs. Bits that do not toggle do not carry
information so they do not contribute to the resulting hash.
Pseudo code:
/* check all bits that toggle, so they are required */
for (i = 1, mpidr_mask = 0; i < num_possible_cpus(); i++)
mpidr_mask |= (cpu_logical_map(i) ^ cpu_logical_map(0));
/*
* Build shifts to be applied to aff0, aff1, aff2 values to hash the mpidr
* fls() returns the last bit set in a word, 0 if none
* ffs() returns the first bit set in a word, 0 if none
*/
fs0 = mpidr_mask[7:0] ? ffs(mpidr_mask[7:0]) - 1 : 0;
fs1 = mpidr_mask[15:8] ? ffs(mpidr_mask[15:8]) - 1 : 0;
fs2 = mpidr_mask[23:16] ? ffs(mpidr_mask[23:16]) - 1 : 0;
ls0 = fls(mpidr_mask[7:0]);
ls1 = fls(mpidr_mask[15:8]);
ls2 = fls(mpidr_mask[23:16]);
bits0 = ls0 - fs0;
bits1 = ls1 - fs1;
bits2 = ls2 - fs2;
aff0_shift = fs0;
aff1_shift = 8 + fs1 - bits0;
aff2_shift = 16 + fs2 - (bits0 + bits1);
u32 hash(u32 mpidr) {
u32 l0, l1, l2;
u32 mpidr_masked = mpidr & mpidr_mask;
l0 = mpidr_masked & 0xff;
l1 = mpidr_masked & 0xff00;
l2 = mpidr_masked & 0xff0000;
return (l0 >> aff0_shift | l1 >> aff1_shift | l2 >> aff2_shift);
}
The hashing algorithm relies on the inherent properties set in the ARM ARM
recommendations for the MPIDR. Exotic configurations, where for instance the
MPIDR values at a given affinity level have large holes, can end up requiring
big hash tables since the compression of values that can be achieved through
shifting is somewhat crippled when holes are present. Kernel warns if
the number of buckets of the resulting hash table exceeds the number of
possible CPUs by a factor of 4, which is a symptom of a very sparse HW
MPIDR configuration.
The hash algorithm is quite simple and can easily be implemented in assembly
code, to be used in code paths where the kernel virtual address space is
not set-up (ie cpu_resume) and instruction and data fetches are strongly
ordered so code must be compact and must carry out few data accesses.
Cc: Will Deacon <will.deacon@arm.com>
Cc: Catalin Marinas <catalin.marinas@arm.com>
Cc: Russell King <linux@arm.linux.org.uk>
Cc: Colin Cross <ccross@android.com>
Cc: Santosh Shilimkar <santosh.shilimkar@ti.com>
Cc: Daniel Lezcano <daniel.lezcano@linaro.org>
Cc: Amit Kucheria <amit.kucheria@linaro.org>
Signed-off-by: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
Reviewed-by: Dave Martin <Dave.Martin@arm.com>
Reviewed-by: Nicolas Pitre <nico@linaro.org>
---
arch/arm/include/asm/smp_plat.h | 12 ++++++++
arch/arm/kernel/setup.c | 67 +++++++++++++++++++++++++++++++++++++++++
2 files changed, 79 insertions(+)
diff --git a/arch/arm/include/asm/smp_plat.h b/arch/arm/include/asm/smp_plat.h
index aaa61b6..d933b03 100644
--- a/arch/arm/include/asm/smp_plat.h
+++ b/arch/arm/include/asm/smp_plat.h
@@ -66,4 +66,16 @@ static inline int get_logical_index(u32 mpidr)
return -EINVAL;
}
+struct mpidr_hash {
+ u32 mask;
+ u32 shift_aff[3];
+ u32 bits;
+};
+
+extern struct mpidr_hash mpidr_hash;
+
+static inline u32 mpidr_hash_size(void)
+{
+ return 1 << mpidr_hash.bits;
+}
#endif
diff --git a/arch/arm/kernel/setup.c b/arch/arm/kernel/setup.c
index 6f5bdd6..74dce64 100644
--- a/arch/arm/kernel/setup.c
+++ b/arch/arm/kernel/setup.c
@@ -473,6 +473,72 @@ void __init smp_setup_processor_id(void)
printk(KERN_INFO "Booting Linux on physical CPU 0x%x\n", mpidr);
}
+struct mpidr_hash mpidr_hash;
+#ifdef CONFIG_SMP
+/**
+ * smp_build_mpidr_hash - Pre-compute shifts required at each affinity
+ * level in order to build a linear index from an
+ * MPIDR value. Resulting algorithm is a collision
+ * free hash carried out through shifting and ORing
+ */
+static void __init smp_build_mpidr_hash(void)
+{
+ u32 i, affinity;
+ u32 fs[3], bits[3], ls, mask = 0;
+ /*
+ * Pre-scan the list of MPIDRS and filter out bits that do
+ * not contribute to affinity levels, ie they never toggle.
+ */
+ for_each_possible_cpu(i)
+ mask |= (cpu_logical_map(i) ^ cpu_logical_map(0));
+ pr_debug("mask of set bits 0x%x\n", mask);
+ /*
+ * Find and stash the last and first bit set at all affinity levels to
+ * check how many bits are required to represent them.
+ */
+ for (i = 0; i < 3; i++) {
+ affinity = MPIDR_AFFINITY_LEVEL(mask, i);
+ /*
+ * Find the MSB bit and LSB bits position
+ * to determine how many bits are required
+ * to express the affinity level.
+ */
+ ls = fls(affinity);
+ fs[i] = affinity ? ffs(affinity) - 1 : 0;
+ bits[i] = ls - fs[i];
+ }
+ /*
+ * An index can be created from the MPIDR by isolating the
+ * significant bits@each affinity level and by shifting
+ * them in order to compress the 24 bits values space to a
+ * compressed set of values. This is equivalent to hashing
+ * the MPIDR through shifting and ORing. It is a collision free
+ * hash though not minimal since some levels might contain a number
+ * of CPUs that is not an exact power of 2 and their bit
+ * representation might contain holes, eg MPIDR[7:0] = {0x2, 0x80}.
+ */
+ mpidr_hash.shift_aff[0] = fs[0];
+ mpidr_hash.shift_aff[1] = MPIDR_LEVEL_BITS + fs[1] - bits[0];
+ mpidr_hash.shift_aff[2] = 2*MPIDR_LEVEL_BITS + fs[2] -
+ (bits[1] + bits[0]);
+ mpidr_hash.mask = mask;
+ mpidr_hash.bits = bits[2] + bits[1] + bits[0];
+ pr_debug("MPIDR hash: aff0[%u] aff1[%u] aff2[%u] mask[0x%x] bits[%u]\n",
+ mpidr_hash.shift_aff[0],
+ mpidr_hash.shift_aff[1],
+ mpidr_hash.shift_aff[2],
+ mpidr_hash.mask,
+ mpidr_hash.bits);
+ /*
+ * 4x is an arbitrary value used to warn on a hash table much bigger
+ * than expected on most systems.
+ */
+ if (mpidr_hash_size() > 4 * num_possible_cpus())
+ pr_warn("Large number of MPIDR hash buckets detected\n");
+ sync_cache_w(&mpidr_hash);
+}
+#endif
+
static void __init setup_processor(void)
{
struct proc_info_list *list;
@@ -820,6 +886,7 @@ void __init setup_arch(char **cmdline_p)
smp_set_ops(mdesc->smp);
}
smp_init_cpus();
+ smp_build_mpidr_hash();
}
#endif
--
1.8.2.2
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [RFC PATCH v2 2/2] ARM: kernel: implement stack pointer save array through MPIDR hashing
2013-06-06 15:22 [RFC PATCH v2 0/2] ARM: MPIDR linearization Lorenzo Pieralisi
2013-06-06 15:22 ` [RFC PATCH v2 1/2] ARM: kernel: build MPIDR hash function data structure Lorenzo Pieralisi
@ 2013-06-06 15:22 ` Lorenzo Pieralisi
2013-06-11 9:58 ` [RFC PATCH v2 0/2] ARM: MPIDR linearization Lorenzo Pieralisi
2 siblings, 0 replies; 21+ messages in thread
From: Lorenzo Pieralisi @ 2013-06-06 15:22 UTC (permalink / raw)
To: linux-arm-kernel
Current implementation of cpu_{suspend}/cpu_{resume} relies on the MPIDR
to index the array of pointers where the context is saved and restored.
The current approach works as long as the MPIDR can be considered a
linear index, so that the pointers array can simply be dereferenced by
using the MPIDR[7:0] value.
On ARM multi-cluster systems, where the MPIDR may not be a linear index,
to properly dereference the stack pointer array, a mapping function should
be applied to it so that it can be used for arrays look-ups.
This patch adds code in the cpu_{suspend}/cpu_{resume} implementation
that relies on shifting and ORing hashing method to map a MPIDR value to a
set of buckets precomputed at boot to have a collision free mapping from
MPIDR to context pointers.
The hashing algorithm must be simple, fast, and implementable with few
instructions since in the cpu_resume path the mapping is carried out with
the MMU off and the I-cache off, hence code and data are fetched from DRAM
with no-caching available. Simplicity is counterbalanced with a little
increase of memory (allocated dynamically) for stack pointers buckets, that
should be anyway fairly limited on most systems.
Memory for context pointers is allocated in a early_initcall with
size precomputed and stashed previously in kernel data structures.
Memory for context pointers is allocated through kmalloc; this
guarantees contiguous physical addresses for the allocated memory which
is fundamental to the correct functioning of the resume mechanism that
relies on the context pointer array to be a chunk of contiguous physical
memory. Virtual to physical address conversion for the context pointer
array base is carried out at boot to avoid fiddling with virt_to_phys
conversions in the cpu_resume path which is quite fragile and should be
optimized to execute as few instructions as possible.
Virtual and physical context pointer base array addresses are stashed in a
struct that is accessible from assembly using values generated through the
asm-offsets.c mechanism.
Cc: Will Deacon <will.deacon@arm.com>
Cc: Catalin Marinas <catalin.marinas@arm.com>
Cc: Russell King <linux@arm.linux.org.uk>
Cc: Colin Cross <ccross@android.com>
Cc: Santosh Shilimkar <santosh.shilimkar@ti.com>
Cc: Daniel Lezcano <daniel.lezcano@linaro.org>
Cc: Amit Kucheria <amit.kucheria@linaro.org>
Signed-off-by: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
Reviewed-by: Dave Martin <Dave.Martin@arm.com>
Reviewed-by: Nicolas Pitre <nico@linaro.org>
---
arch/arm/include/asm/smp_plat.h | 10 ++++-
arch/arm/include/asm/suspend.h | 5 +++
arch/arm/kernel/asm-offsets.c | 6 +++
arch/arm/kernel/sleep.S | 97 +++++++++++++++++++++++++++++++++--------
arch/arm/kernel/suspend.c | 20 +++++++++
5 files changed, 118 insertions(+), 20 deletions(-)
diff --git a/arch/arm/include/asm/smp_plat.h b/arch/arm/include/asm/smp_plat.h
index d933b03..f15eb6e 100644
--- a/arch/arm/include/asm/smp_plat.h
+++ b/arch/arm/include/asm/smp_plat.h
@@ -66,9 +66,15 @@ static inline int get_logical_index(u32 mpidr)
return -EINVAL;
}
+/*
+ * NOTE ! Assembly code relies on the following
+ * structure memory layout in order to carry out load
+ * multiple from its base address. For more
+ * information check arch/arm/kernel/sleep.S
+ */
struct mpidr_hash {
- u32 mask;
- u32 shift_aff[3];
+ u32 mask; /* used by sleep.S */
+ u32 shift_aff[3]; /* used by sleep.S */
u32 bits;
};
diff --git a/arch/arm/include/asm/suspend.h b/arch/arm/include/asm/suspend.h
index 1c0a551..cd20029 100644
--- a/arch/arm/include/asm/suspend.h
+++ b/arch/arm/include/asm/suspend.h
@@ -1,6 +1,11 @@
#ifndef __ASM_ARM_SUSPEND_H
#define __ASM_ARM_SUSPEND_H
+struct sleep_save_sp {
+ u32 *save_ptr_stash;
+ u32 save_ptr_stash_phys;
+};
+
extern void cpu_resume(void);
extern int cpu_suspend(unsigned long, int (*)(unsigned long));
diff --git a/arch/arm/kernel/asm-offsets.c b/arch/arm/kernel/asm-offsets.c
index ee68cce..ded0417 100644
--- a/arch/arm/kernel/asm-offsets.c
+++ b/arch/arm/kernel/asm-offsets.c
@@ -23,6 +23,7 @@
#include <asm/thread_info.h>
#include <asm/memory.h>
#include <asm/procinfo.h>
+#include <asm/suspend.h>
#include <asm/hardware/cache-l2x0.h>
#include <linux/kbuild.h>
@@ -145,6 +146,11 @@ int main(void)
#ifdef MULTI_CACHE
DEFINE(CACHE_FLUSH_KERN_ALL, offsetof(struct cpu_cache_fns, flush_kern_all));
#endif
+#ifdef CONFIG_ARM_CPU_SUSPEND
+ DEFINE(SLEEP_SAVE_SP_SZ, sizeof(struct sleep_save_sp));
+ DEFINE(SLEEP_SAVE_SP_PHYS, offsetof(struct sleep_save_sp, save_ptr_stash_phys));
+ DEFINE(SLEEP_SAVE_SP_VIRT, offsetof(struct sleep_save_sp, save_ptr_stash));
+#endif
BLANK();
DEFINE(DMA_BIDIRECTIONAL, DMA_BIDIRECTIONAL);
DEFINE(DMA_TO_DEVICE, DMA_TO_DEVICE);
diff --git a/arch/arm/kernel/sleep.S b/arch/arm/kernel/sleep.S
index 987dcf3..db1536b 100644
--- a/arch/arm/kernel/sleep.S
+++ b/arch/arm/kernel/sleep.S
@@ -7,6 +7,49 @@
.text
/*
+ * Implementation of MPIDR hash algorithm through shifting
+ * and OR'ing.
+ *
+ * @dst: register containing hash result
+ * @rs0: register containing affinity level 0 bit shift
+ * @rs1: register containing affinity level 1 bit shift
+ * @rs2: register containing affinity level 2 bit shift
+ * @mpidr: register containing MPIDR value
+ * @mask: register containing MPIDR mask
+ *
+ * Pseudo C-code:
+ *
+ *u32 dst;
+ *
+ *compute_mpidr_hash(u32 rs0, u32 rs1, u32 rs2, u32 mpidr, u32 mask) {
+ * u32 aff0, aff1, aff2;
+ * u32 mpidr_masked = mpidr & mask;
+ * aff0 = mpidr_masked & 0xff;
+ * aff1 = mpidr_masked & 0xff00;
+ * aff2 = mpidr_masked & 0xff0000;
+ * dst = (aff0 >> rs0 | aff1 >> rs1 | aff2 >> rs2);
+ *}
+ * Input registers: rs0, rs1, rs2, mpidr, mask
+ * Output register: dst
+ * Note: input and output registers must be disjoint register sets
+ (eg: a macro instance with mpidr = r1 and dst = r1 is invalid)
+ */
+ .macro compute_mpidr_hash dst, rs0, rs1, rs2, mpidr, mask
+ and \mpidr, \mpidr, \mask @ mask out MPIDR bits
+ and \dst, \mpidr, #0xff @ mask=aff0
+ ARM( mov \dst, \dst, lsr \rs0 ) @ dst=aff0>>rs0
+ THUMB( lsr \dst, \dst, \rs0 )
+ and \mask, \mpidr, #0xff00 @ mask = aff1
+ ARM( orr \dst, \dst, \mask, lsr \rs1 ) @ dst|=(aff1>>rs1)
+ THUMB( lsr \mask, \mask, \rs1 )
+ THUMB( orr \dst, \dst, \mask )
+ and \mask, \mpidr, #0xff0000 @ mask = aff2
+ ARM( orr \dst, \dst, \mask, lsr \rs2 ) @ dst|=(aff2>>rs2)
+ THUMB( lsr \mask, \mask, \rs2 )
+ THUMB( orr \dst, \dst, \mask )
+ .endm
+
+/*
* Save CPU state for a suspend. This saves the CPU general purpose
* registers, and allocates space on the kernel stack to save the CPU
* specific registers and some other data for resume.
@@ -29,12 +72,18 @@ ENTRY(__cpu_suspend)
mov r1, r4 @ size of save block
mov r2, r5 @ virtual SP
ldr r3, =sleep_save_sp
-#ifdef CONFIG_SMP
- ALT_SMP(mrc p15, 0, lr, c0, c0, 5)
- ALT_UP(mov lr, #0)
- and lr, lr, #15
+ ldr r3, [r3, #SLEEP_SAVE_SP_VIRT]
+ ALT_SMP(mrc p15, 0, r9, c0, c0, 5)
+ ALT_UP_B(1f)
+ ldr r8, =mpidr_hash
+ /*
+ * This ldmia relies on the memory layout of the mpidr_hash
+ * struct mpidr_hash.
+ */
+ ldmia r8, {r4-r7} @ r4 = mpidr mask (r5,r6,r7) = l[0,1,2] shifts
+ compute_mpidr_hash lr, r5, r6, r7, r9, r4
add r3, r3, lr, lsl #2
-#endif
+1:
bl __cpu_suspend_save
adr lr, BSYM(cpu_suspend_abort)
ldmfd sp!, {r0, pc} @ call suspend fn
@@ -81,15 +130,23 @@ ENDPROC(cpu_resume_after_mmu)
.data
.align
ENTRY(cpu_resume)
-#ifdef CONFIG_SMP
- adr r0, sleep_save_sp
- ALT_SMP(mrc p15, 0, r1, c0, c0, 5)
- ALT_UP(mov r1, #0)
- and r1, r1, #15
- ldr r0, [r0, r1, lsl #2] @ stack phys addr
-#else
- ldr r0, sleep_save_sp @ stack phys addr
-#endif
+ mov r1, #0
+ ALT_SMP(mrc p15, 0, r0, c0, c0, 5)
+ ALT_UP_B(1f)
+ adr r2, mpidr_hash_ptr
+ ldr r3, [r2]
+ add r2, r2, r3 @ r2 = struct mpidr_hash phys address
+ /*
+ * This ldmia relies on the memory layout of the mpidr_hash
+ * struct mpidr_hash.
+ */
+ ldmia r2, { r3-r6 } @ r3 = mpidr mask (r4,r5,r6) = l[0,1,2] shifts
+ compute_mpidr_hash r1, r4, r5, r6, r0, r3
+1:
+ adr r0, _sleep_save_sp
+ ldr r0, [r0, #SLEEP_SAVE_SP_PHYS]
+ ldr r0, [r0, r1, lsl #2]
+
setmode PSR_I_BIT | PSR_F_BIT | SVC_MODE, r1 @ set SVC, irqs off
@ load phys pgd, stack, resume fn
ARM( ldmia r0!, {r1, sp, pc} )
@@ -98,7 +155,11 @@ THUMB( mov sp, r2 )
THUMB( bx r3 )
ENDPROC(cpu_resume)
-sleep_save_sp:
- .rept CONFIG_NR_CPUS
- .long 0 @ preserve stack phys ptr here
- .endr
+ .align 2
+mpidr_hash_ptr:
+ .long mpidr_hash - . @ mpidr_hash struct offset
+
+ .type sleep_save_sp, #object
+ENTRY(sleep_save_sp)
+_sleep_save_sp:
+ .space SLEEP_SAVE_SP_SZ @ struct sleep_save_sp
diff --git a/arch/arm/kernel/suspend.c b/arch/arm/kernel/suspend.c
index c59c97e..17d02f6 100644
--- a/arch/arm/kernel/suspend.c
+++ b/arch/arm/kernel/suspend.c
@@ -1,9 +1,12 @@
#include <linux/init.h>
+#include <linux/slab.h>
+#include <asm/cacheflush.h>
#include <asm/idmap.h>
#include <asm/pgalloc.h>
#include <asm/pgtable.h>
#include <asm/memory.h>
+#include <asm/smp_plat.h>
#include <asm/suspend.h>
#include <asm/tlbflush.h>
@@ -74,3 +77,20 @@ int cpu_suspend(unsigned long arg, int (*fn)(unsigned long))
return ret;
}
+
+extern struct sleep_save_sp sleep_save_sp;
+
+static int cpu_suspend_alloc_sp(void)
+{
+ void *ctx_ptr;
+ /* ctx_ptr is an array of physical addresses */
+ ctx_ptr = kcalloc(mpidr_hash_size(), sizeof(u32), GFP_KERNEL);
+
+ if (WARN_ON(!ctx_ptr))
+ return -ENOMEM;
+ sleep_save_sp.save_ptr_stash = ctx_ptr;
+ sleep_save_sp.save_ptr_stash_phys = virt_to_phys(ctx_ptr);
+ sync_cache_w(&sleep_save_sp);
+ return 0;
+}
+early_initcall(cpu_suspend_alloc_sp);
--
1.8.2.2
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [RFC PATCH v2 0/2] ARM: MPIDR linearization
2013-06-06 15:22 [RFC PATCH v2 0/2] ARM: MPIDR linearization Lorenzo Pieralisi
2013-06-06 15:22 ` [RFC PATCH v2 1/2] ARM: kernel: build MPIDR hash function data structure Lorenzo Pieralisi
2013-06-06 15:22 ` [RFC PATCH v2 2/2] ARM: kernel: implement stack pointer save array through MPIDR hashing Lorenzo Pieralisi
@ 2013-06-11 9:58 ` Lorenzo Pieralisi
2013-06-11 15:56 ` Stephen Warren
` (3 more replies)
2 siblings, 4 replies; 21+ messages in thread
From: Lorenzo Pieralisi @ 2013-06-11 9:58 UTC (permalink / raw)
To: linux-arm-kernel
Hi Russell, all,
even though I think this set is ready to get merged, it would be great
if we can test it on as many platforms as possible since it touches core
suspend/resume operations on ARM platforms relying on CONFIG_ARM_CPU_SUSPEND,
and there are many.
I pushed out a branch:
git://linux-arm.org/linux-2.6-lp.git mpidr-linearization
if anyone has time to test the set that would be really great, thank you
very much.
Comments and further review appreciated.
Thanks a lot,
Lorenzo
On Thu, Jun 06, 2013 at 04:22:03PM +0100, Lorenzo Pieralisi wrote:
> This patchset is v2 of a previous posting:
>
> http://lists.infradead.org/pipermail/linux-arm-kernel/2013-June/172873.html
>
> v2 changes:
>
> - rescheduled registers usage in compute_mpidr_hash macro
>
> Cores in ARM SMP systems are identified through coprocessor registers,
> so that every core, by executing a coprocessor read, can detect its own
> identifier. The CPU identifier evolved from a simple CPU ID on ARM 11 MPcore
> SMP, where the CPU ID was split in two subfields (CPU ID and CLUSTER ID)
> to the v7 MPIDR, where the MPIDR[23:0] bits define three affinity levels
> that can describe thread, core, cluster topology identifiers.
> According to the ARM 11 MPcore TRM and for architecture versions later
> than v7 (MPIDR), to the ARM ARM, the identifier registers format is as follows:
>
> NR: non-relevant for identification
>
> ARM11 MPCORE: CPU ID register
>
> 31 12 11 8 7 4 3 0
> ---------------------------------------------------------------------------
> | NR | CLUSTER ID | NR | CPU ID |
> --------------------------------------------------------------------------
>
> ARM v7: MPIDR
>
> 31 24 23 16 15 8 7 0
> ---------------------------------------------------------------------------
> | NR | AFFINITY 2 | AFFINITY 1 | AFFINITY 0 |
> ---------------------------------------------------------------------------
>
> The split of CPU identifiers in multiple affinity levels implies that
> the CPU ID, and later the MPIDR, cannot be used as simple indexes, since
> the bit representation can contain holes:
>
> eg 4 CPUs, in two separate clusters with two CPUs each:
>
> CPU0: MPIDR = 0x0
> CPU1: MPIDR = 0x1
> CPU2: MPIDR = 0x100
> CPU3: MPIDR = 0x101
>
> In order to carry out operations that rely on the HW CPUID/MPIDR (CCI
> disabling, context save/restore) the association of the CPU ID, or MPIDR
> to an index is needed so that the CPU can be associated with a set of
> resources. Resources look-up through the HW CPU ID is carried out in
> code paths usually executed in power down procedures, that have to be
> fast and look-up should be performed with few instructions that may be
> executing in physical address space, with the MMU off.
> In order to provide a fast conversion from [CPU ID, MPIDR] values to indexes
> this set provides methods to build a simple collision-free hash function based
> on shifting and OR'ing of CPU ID values, with shifts precomputed at boot by
> scanning the cpu_logical_map entries (that contain the CPUID/MPIDR) of
> possible CPUs.
>
> By scanning the cpu_logical_map, the boot code detects how many bits are really
> required to represent HW identifiers in the system and map them to a set of
> buckets that actually represent the given index a HW id correspond to. The
> hashing algorithm inherently takes advantage of a-priori knowledge of the
> CPUIDs/MPIDRs allowed bits layout and it can be executed with few instructions
> even in code paths where caching and the MMU are turned off (e.g resuming from
> idle, S2R, hibernation).
>
> One drawback of the current hashing algorithm is that it may result in a big
> number of buckets if the recommendations on the CPUID/MPIDR layout are not
> respected in the CPUID/MPIDR configuration; code warns on hash table
> sizes bigger than 4 times the number of possible CPUs, which is a
> symptom of a weird CPUID/MPIDR HW configuration and should be the exception
> not the rule.
>
> The first patch in the series provides a function that precomputes all
> required hashing parameters by scanning the cpu_logical_map (that
> contains HW identifiers), computes and stashes the hash parameters in a
> structure exported to all kernel components for further usage.
>
> The second patch fixes the current cpu_{suspend}/{resume} functionality,
> so that all levels of CPUID/MPIDR are supported and cpu_{suspend}/{resume}
> can be used on systems where affinity levels 1 and 2 are actually populated.
> The fix carries out dynamic allocation of the array used to save the context
> pointers, with size equal to the number of precomputed CPUID/MPIDR hash
> buckets. To access the array, the CPUID/MPIDR values are hashed through the
> algorithm built in patch 1 so that a hash value is retrieved and the array can
> be indexed properly through it.
>
> Context pointer array is allocated through kmalloc, so that it is made
> up of a contiguous chunk of memory whose virtual address can be safely
> converted to physical address (used in the MMU off path) through a
> static mapping translation valid for all pages (if more than one) making
> up the context pointer array. Context pointer array base address is
> stashed in a structure easily retrieved in assembly through a pc relative
> load that provides both virtual and physical address so that address
> translation is not needed in the cpu_resume path, saving a few instructions.
>
> Code will be improved later through dynamic patching so that the mask
> and shifts in the hashing algorithm will be embedded in the assembly
> instructions as immediates, removing the need for multiple loads to
> memory to retrieve them at every given cpu_{suspend}/{resume} cycle.
>
> Tested on TC2 (dual cluster 2x3 A15/A7 system) through CPU idle deep C-states
> allowing A15 and A7 shutdown modes on both SMP and UP configurations.
>
> Lorenzo Pieralisi (2):
> ARM: kernel: build MPIDR hash function data structure
> ARM: kernel: implement stack pointer save array through MPIDR hashing
>
> arch/arm/include/asm/smp_plat.h | 18 ++++++++
> arch/arm/include/asm/suspend.h | 5 +++
> arch/arm/kernel/asm-offsets.c | 6 +++
> arch/arm/kernel/setup.c | 67 ++++++++++++++++++++++++++++
> arch/arm/kernel/sleep.S | 97 +++++++++++++++++++++++++++++++++--------
> arch/arm/kernel/suspend.c | 20 +++++++++
> 6 files changed, 195 insertions(+), 18 deletions(-)
>
> --
> 1.8.2.2
>
^ permalink raw reply [flat|nested] 21+ messages in thread
* [RFC PATCH v2 0/2] ARM: MPIDR linearization
2013-06-11 9:58 ` [RFC PATCH v2 0/2] ARM: MPIDR linearization Lorenzo Pieralisi
@ 2013-06-11 15:56 ` Stephen Warren
2013-06-11 16:12 ` Nicolas Pitre
2013-06-11 16:22 ` Lorenzo Pieralisi
2013-06-11 15:58 ` Nicolas Pitre
` (2 subsequent siblings)
3 siblings, 2 replies; 21+ messages in thread
From: Stephen Warren @ 2013-06-11 15:56 UTC (permalink / raw)
To: linux-arm-kernel
On 06/11/2013 03:58 AM, Lorenzo Pieralisi wrote:
> Hi Russell, all,
>
> even though I think this set is ready to get merged, it would be great
> if we can test it on as many platforms as possible since it touches core
> suspend/resume operations on ARM platforms relying on CONFIG_ARM_CPU_SUSPEND,
> and there are many.
FWIW, I booted a Tegra system with these patches applied and didn't see
any issue in very brief testing. I'm not sure what targeted testing
would be useful?
^ permalink raw reply [flat|nested] 21+ messages in thread
* [RFC PATCH v2 0/2] ARM: MPIDR linearization
2013-06-11 9:58 ` [RFC PATCH v2 0/2] ARM: MPIDR linearization Lorenzo Pieralisi
2013-06-11 15:56 ` Stephen Warren
@ 2013-06-11 15:58 ` Nicolas Pitre
2013-06-19 15:59 ` Lorenzo Pieralisi
2013-06-12 8:36 ` Shawn Guo
2013-06-19 20:41 ` Kevin Hilman
3 siblings, 1 reply; 21+ messages in thread
From: Nicolas Pitre @ 2013-06-11 15:58 UTC (permalink / raw)
To: linux-arm-kernel
On Tue, 11 Jun 2013, Lorenzo Pieralisi wrote:
> Hi Russell, all,
>
> even though I think this set is ready to get merged, it would be great
> if we can test it on as many platforms as possible since it touches core
> suspend/resume operations on ARM platforms relying on CONFIG_ARM_CPU_SUSPEND,
> and there are many.
>
> I pushed out a branch:
>
> git://linux-arm.org/linux-2.6-lp.git mpidr-linearization
>
> if anyone has time to test the set that would be really great, thank you
> very much.
Since a lot of big.LITTLE related code, including proper TC2 support, is
being withheld by this, I would suggest we wait say a week for people to
test and report any issue they might have, after which it should simply
be merged. Some people will test such code only after it is merged
anyway.
@Lorenzo: Why not ask for this branch to be included in linux-next right
away? This way you'll get implicit testing.
Nicolas
^ permalink raw reply [flat|nested] 21+ messages in thread
* [RFC PATCH v2 0/2] ARM: MPIDR linearization
2013-06-11 15:56 ` Stephen Warren
@ 2013-06-11 16:12 ` Nicolas Pitre
2013-06-11 16:22 ` Lorenzo Pieralisi
1 sibling, 0 replies; 21+ messages in thread
From: Nicolas Pitre @ 2013-06-11 16:12 UTC (permalink / raw)
To: linux-arm-kernel
On Tue, 11 Jun 2013, Stephen Warren wrote:
> On 06/11/2013 03:58 AM, Lorenzo Pieralisi wrote:
> > Hi Russell, all,
> >
> > even though I think this set is ready to get merged, it would be great
> > if we can test it on as many platforms as possible since it touches core
> > suspend/resume operations on ARM platforms relying on CONFIG_ARM_CPU_SUSPEND,
> > and there are many.
>
> FWIW, I booted a Tegra system with these patches applied and didn't see
> any issue in very brief testing. I'm not sure what targeted testing
> would be useful?
Deep idle mode where the CPU is turned off and has to re-enter the
kernel via cpu_resume.
Nicolas
^ permalink raw reply [flat|nested] 21+ messages in thread
* [RFC PATCH v2 0/2] ARM: MPIDR linearization
2013-06-11 15:56 ` Stephen Warren
2013-06-11 16:12 ` Nicolas Pitre
@ 2013-06-11 16:22 ` Lorenzo Pieralisi
2013-06-11 16:48 ` Stephen Warren
1 sibling, 1 reply; 21+ messages in thread
From: Lorenzo Pieralisi @ 2013-06-11 16:22 UTC (permalink / raw)
To: linux-arm-kernel
Hi Stephen,
On Tue, Jun 11, 2013 at 04:56:43PM +0100, Stephen Warren wrote:
> On 06/11/2013 03:58 AM, Lorenzo Pieralisi wrote:
> > Hi Russell, all,
> >
> > even though I think this set is ready to get merged, it would be great
> > if we can test it on as many platforms as possible since it touches core
> > suspend/resume operations on ARM platforms relying on CONFIG_ARM_CPU_SUSPEND,
> > and there are many.
>
> FWIW, I booted a Tegra system with these patches applied and didn't see
> any issue in very brief testing. I'm not sure what targeted testing
> would be useful?
That's great thanks. CPUidle deep C-states (when CPUs resume from reset
through cpu_resume) are the main triggers of this code, so you should be
running with them enabled to test it.
Thank you very much !!
Lorenzo
^ permalink raw reply [flat|nested] 21+ messages in thread
* [RFC PATCH v2 0/2] ARM: MPIDR linearization
2013-06-11 16:22 ` Lorenzo Pieralisi
@ 2013-06-11 16:48 ` Stephen Warren
2013-06-12 9:07 ` Lorenzo Pieralisi
0 siblings, 1 reply; 21+ messages in thread
From: Stephen Warren @ 2013-06-11 16:48 UTC (permalink / raw)
To: linux-arm-kernel
On 06/11/2013 10:22 AM, Lorenzo Pieralisi wrote:
> Hi Stephen,
>
> On Tue, Jun 11, 2013 at 04:56:43PM +0100, Stephen Warren wrote:
>> On 06/11/2013 03:58 AM, Lorenzo Pieralisi wrote:
>>> Hi Russell, all,
>>>
>>> even though I think this set is ready to get merged, it would be great
>>> if we can test it on as many platforms as possible since it touches core
>>> suspend/resume operations on ARM platforms relying on CONFIG_ARM_CPU_SUSPEND,
>>> and there are many.
>>
>> FWIW, I booted a Tegra system with these patches applied and didn't see
>> any issue in very brief testing. I'm not sure what targeted testing
>> would be useful?
>
> That's great thanks. CPUidle deep C-states (when CPUs resume from reset
> through cpu_resume) are the main triggers of this code, so you should be
> running with them enabled to test it.
OK, in that case I believe I tested that; I had our "LP2" CPU
power-management mode enabled as always, and that powers off the CPUs
and resumes them, and didn't see any issue.
^ permalink raw reply [flat|nested] 21+ messages in thread
* [RFC PATCH v2 0/2] ARM: MPIDR linearization
2013-06-11 9:58 ` [RFC PATCH v2 0/2] ARM: MPIDR linearization Lorenzo Pieralisi
2013-06-11 15:56 ` Stephen Warren
2013-06-11 15:58 ` Nicolas Pitre
@ 2013-06-12 8:36 ` Shawn Guo
2013-06-12 9:13 ` Lorenzo Pieralisi
2013-06-19 16:43 ` Lorenzo Pieralisi
2013-06-19 20:41 ` Kevin Hilman
3 siblings, 2 replies; 21+ messages in thread
From: Shawn Guo @ 2013-06-12 8:36 UTC (permalink / raw)
To: linux-arm-kernel
On Tue, Jun 11, 2013 at 10:58:48AM +0100, Lorenzo Pieralisi wrote:
> Hi Russell, all,
>
> even though I think this set is ready to get merged, it would be great
> if we can test it on as many platforms as possible since it touches core
> suspend/resume operations on ARM platforms relying on CONFIG_ARM_CPU_SUSPEND,
> and there are many.
>
> I pushed out a branch:
>
> git://linux-arm.org/linux-2.6-lp.git mpidr-linearization
>
> if anyone has time to test the set that would be really great, thank you
> very much.
I tested the branch on imx6q, and system suspend/resume works fine with
it.
Shawn
^ permalink raw reply [flat|nested] 21+ messages in thread
* [RFC PATCH v2 0/2] ARM: MPIDR linearization
2013-06-11 16:48 ` Stephen Warren
@ 2013-06-12 9:07 ` Lorenzo Pieralisi
2013-06-12 15:55 ` Stephen Warren
0 siblings, 1 reply; 21+ messages in thread
From: Lorenzo Pieralisi @ 2013-06-12 9:07 UTC (permalink / raw)
To: linux-arm-kernel
On Tue, Jun 11, 2013 at 05:48:53PM +0100, Stephen Warren wrote:
> On 06/11/2013 10:22 AM, Lorenzo Pieralisi wrote:
> > Hi Stephen,
> >
> > On Tue, Jun 11, 2013 at 04:56:43PM +0100, Stephen Warren wrote:
> >> On 06/11/2013 03:58 AM, Lorenzo Pieralisi wrote:
> >>> Hi Russell, all,
> >>>
> >>> even though I think this set is ready to get merged, it would be great
> >>> if we can test it on as many platforms as possible since it touches core
> >>> suspend/resume operations on ARM platforms relying on CONFIG_ARM_CPU_SUSPEND,
> >>> and there are many.
> >>
> >> FWIW, I booted a Tegra system with these patches applied and didn't see
> >> any issue in very brief testing. I'm not sure what targeted testing
> >> would be useful?
> >
> > That's great thanks. CPUidle deep C-states (when CPUs resume from reset
> > through cpu_resume) are the main triggers of this code, so you should be
> > running with them enabled to test it.
>
> OK, in that case I believe I tested that; I had our "LP2" CPU
> power-management mode enabled as always, and that powers off the CPUs
> and resumes them, and didn't see any issue.
Great, thanks, I guess this also means you did not notice any suspicious
warnings at boot (ie "Large number of MPIDR hash buckets detected").
Can I add your tested-by please ?
Thanks a lot,
Lorenzo
^ permalink raw reply [flat|nested] 21+ messages in thread
* [RFC PATCH v2 0/2] ARM: MPIDR linearization
2013-06-12 8:36 ` Shawn Guo
@ 2013-06-12 9:13 ` Lorenzo Pieralisi
2013-06-12 11:33 ` Shawn Guo
2013-06-19 16:43 ` Lorenzo Pieralisi
1 sibling, 1 reply; 21+ messages in thread
From: Lorenzo Pieralisi @ 2013-06-12 9:13 UTC (permalink / raw)
To: linux-arm-kernel
Hi Shawn,
On Wed, Jun 12, 2013 at 09:36:20AM +0100, Shawn Guo wrote:
> On Tue, Jun 11, 2013 at 10:58:48AM +0100, Lorenzo Pieralisi wrote:
> > Hi Russell, all,
> >
> > even though I think this set is ready to get merged, it would be great
> > if we can test it on as many platforms as possible since it touches core
> > suspend/resume operations on ARM platforms relying on CONFIG_ARM_CPU_SUSPEND,
> > and there are many.
> >
> > I pushed out a branch:
> >
> > git://linux-arm.org/linux-2.6-lp.git mpidr-linearization
> >
> > if anyone has time to test the set that would be really great, thank you
> > very much.
>
> I tested the branch on imx6q, and system suspend/resume works fine with
> it.
Thanks a lot. If you can enable idle deep C-states that would be grand,
S2R exercises that code path just on one CPU whilst idle clobbers it on
all CPUs at once and ensures the hash is working properly on your platform.
Anyway, thank you very much !
Lorenzo
^ permalink raw reply [flat|nested] 21+ messages in thread
* [RFC PATCH v2 0/2] ARM: MPIDR linearization
2013-06-12 9:13 ` Lorenzo Pieralisi
@ 2013-06-12 11:33 ` Shawn Guo
0 siblings, 0 replies; 21+ messages in thread
From: Shawn Guo @ 2013-06-12 11:33 UTC (permalink / raw)
To: linux-arm-kernel
On Wed, Jun 12, 2013 at 10:13:55AM +0100, Lorenzo Pieralisi wrote:
> Thanks a lot. If you can enable idle deep C-states that would be grand,
We haven't added the power gating support in cpuidle, but only clock
gating so far.
Shawn
> S2R exercises that code path just on one CPU whilst idle clobbers it on
> all CPUs at once and ensures the hash is working properly on your platform.
^ permalink raw reply [flat|nested] 21+ messages in thread
* [RFC PATCH v2 0/2] ARM: MPIDR linearization
2013-06-12 9:07 ` Lorenzo Pieralisi
@ 2013-06-12 15:55 ` Stephen Warren
0 siblings, 0 replies; 21+ messages in thread
From: Stephen Warren @ 2013-06-12 15:55 UTC (permalink / raw)
To: linux-arm-kernel
On 06/12/2013 03:07 AM, Lorenzo Pieralisi wrote:
> On Tue, Jun 11, 2013 at 05:48:53PM +0100, Stephen Warren wrote:
>> On 06/11/2013 10:22 AM, Lorenzo Pieralisi wrote:
>>> Hi Stephen,
>>>
>>> On Tue, Jun 11, 2013 at 04:56:43PM +0100, Stephen Warren wrote:
>>>> On 06/11/2013 03:58 AM, Lorenzo Pieralisi wrote:
>>>>> Hi Russell, all,
>>>>>
>>>>> even though I think this set is ready to get merged, it would be great
>>>>> if we can test it on as many platforms as possible since it touches core
>>>>> suspend/resume operations on ARM platforms relying on CONFIG_ARM_CPU_SUSPEND,
>>>>> and there are many.
>>>>
>>>> FWIW, I booted a Tegra system with these patches applied and didn't see
>>>> any issue in very brief testing. I'm not sure what targeted testing
>>>> would be useful?
>>>
>>> That's great thanks. CPUidle deep C-states (when CPUs resume from reset
>>> through cpu_resume) are the main triggers of this code, so you should be
>>> running with them enabled to test it.
>>
>> OK, in that case I believe I tested that; I had our "LP2" CPU
>> power-management mode enabled as always, and that powers off the CPUs
>> and resumes them, and didn't see any issue.
>
> Great, thanks, I guess this also means you did not notice any suspicious
> warnings at boot (ie "Large number of MPIDR hash buckets detected").
I didn't, although I didn't look that hard for them!
> Can I add your tested-by please ?
Sure.
^ permalink raw reply [flat|nested] 21+ messages in thread
* [RFC PATCH v2 0/2] ARM: MPIDR linearization
2013-06-11 15:58 ` Nicolas Pitre
@ 2013-06-19 15:59 ` Lorenzo Pieralisi
2013-06-19 16:05 ` Nicolas Pitre
0 siblings, 1 reply; 21+ messages in thread
From: Lorenzo Pieralisi @ 2013-06-19 15:59 UTC (permalink / raw)
To: linux-arm-kernel
Hi Russell, all,
On Tue, Jun 11, 2013 at 04:58:45PM +0100, Nicolas Pitre wrote:
> On Tue, 11 Jun 2013, Lorenzo Pieralisi wrote:
>
> > Hi Russell, all,
> >
> > even though I think this set is ready to get merged, it would be great
> > if we can test it on as many platforms as possible since it touches core
> > suspend/resume operations on ARM platforms relying on CONFIG_ARM_CPU_SUSPEND,
> > and there are many.
> >
> > I pushed out a branch:
> >
> > git://linux-arm.org/linux-2.6-lp.git mpidr-linearization
> >
> > if anyone has time to test the set that would be really great, thank you
> > very much.
>
> Since a lot of big.LITTLE related code, including proper TC2 support, is
> being withheld by this, I would suggest we wait say a week for people to
> test and report any issue they might have, after which it should simply
> be merged. Some people will test such code only after it is merged
> anyway.
>
> @Lorenzo: Why not ask for this branch to be included in linux-next right
> away? This way you'll get implicit testing.
The series was added to -next last Monday, so far just a merge conflict
reported, no issues raised. Can I request a pull or should we wait one
week more, leave it in -next to enable further testing and then proceed ?
Thanks a lot,
Lorenzo
^ permalink raw reply [flat|nested] 21+ messages in thread
* [RFC PATCH v2 0/2] ARM: MPIDR linearization
2013-06-19 15:59 ` Lorenzo Pieralisi
@ 2013-06-19 16:05 ` Nicolas Pitre
0 siblings, 0 replies; 21+ messages in thread
From: Nicolas Pitre @ 2013-06-19 16:05 UTC (permalink / raw)
To: linux-arm-kernel
On Wed, 19 Jun 2013, Lorenzo Pieralisi wrote:
> Hi Russell, all,
>
> On Tue, Jun 11, 2013 at 04:58:45PM +0100, Nicolas Pitre wrote:
> > On Tue, 11 Jun 2013, Lorenzo Pieralisi wrote:
> >
> > > Hi Russell, all,
> > >
> > > even though I think this set is ready to get merged, it would be great
> > > if we can test it on as many platforms as possible since it touches core
> > > suspend/resume operations on ARM platforms relying on CONFIG_ARM_CPU_SUSPEND,
> > > and there are many.
> > >
> > > I pushed out a branch:
> > >
> > > git://linux-arm.org/linux-2.6-lp.git mpidr-linearization
> > >
> > > if anyone has time to test the set that would be really great, thank you
> > > very much.
> >
> > Since a lot of big.LITTLE related code, including proper TC2 support, is
> > being withheld by this, I would suggest we wait say a week for people to
> > test and report any issue they might have, after which it should simply
> > be merged. Some people will test such code only after it is merged
> > anyway.
> >
> > @Lorenzo: Why not ask for this branch to be included in linux-next right
> > away? This way you'll get implicit testing.
>
> The series was added to -next last Monday, so far just a merge conflict
> reported, no issues raised. Can I request a pull or should we wait one
> week more, leave it in -next to enable further testing and then proceed ?
With the positive test results that were posted so far I would be
confident enough to send a pull request now.
Nicolas
^ permalink raw reply [flat|nested] 21+ messages in thread
* [RFC PATCH v2 0/2] ARM: MPIDR linearization
2013-06-12 8:36 ` Shawn Guo
2013-06-12 9:13 ` Lorenzo Pieralisi
@ 2013-06-19 16:43 ` Lorenzo Pieralisi
2013-06-20 0:43 ` Shawn Guo
1 sibling, 1 reply; 21+ messages in thread
From: Lorenzo Pieralisi @ 2013-06-19 16:43 UTC (permalink / raw)
To: linux-arm-kernel
On Wed, Jun 12, 2013 at 09:36:20AM +0100, Shawn Guo wrote:
> On Tue, Jun 11, 2013 at 10:58:48AM +0100, Lorenzo Pieralisi wrote:
> > Hi Russell, all,
> >
> > even though I think this set is ready to get merged, it would be great
> > if we can test it on as many platforms as possible since it touches core
> > suspend/resume operations on ARM platforms relying on CONFIG_ARM_CPU_SUSPEND,
> > and there are many.
> >
> > I pushed out a branch:
> >
> > git://linux-arm.org/linux-2.6-lp.git mpidr-linearization
> >
> > if anyone has time to test the set that would be really great, thank you
> > very much.
>
> I tested the branch on imx6q, and system suspend/resume works fine with
> it.
Can I add your tested-by please ?
Thank you very much,
Lorenzo
^ permalink raw reply [flat|nested] 21+ messages in thread
* [RFC PATCH v2 0/2] ARM: MPIDR linearization
2013-06-11 9:58 ` [RFC PATCH v2 0/2] ARM: MPIDR linearization Lorenzo Pieralisi
` (2 preceding siblings ...)
2013-06-12 8:36 ` Shawn Guo
@ 2013-06-19 20:41 ` Kevin Hilman
2013-06-20 10:19 ` Lorenzo Pieralisi
3 siblings, 1 reply; 21+ messages in thread
From: Kevin Hilman @ 2013-06-19 20:41 UTC (permalink / raw)
To: linux-arm-kernel
Hi Lorenzo,
Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> writes:
> Hi Russell, all,
>
> even though I think this set is ready to get merged, it would be great
> if we can test it on as many platforms as possible since it touches core
> suspend/resume operations on ARM platforms relying on CONFIG_ARM_CPU_SUSPEND,
> and there are many.
>
> I pushed out a branch:
>
> git://linux-arm.org/linux-2.6-lp.git mpidr-linearization
>
> if anyone has time to test the set that would be really great, thank you
> very much.
I'm a little late to the party, but I tested this on OMAP4 with the CPUs
hitting off in the lower C-states.
Tested-by: Kevin Hilman <khilman@linaro.org>
Kevin
^ permalink raw reply [flat|nested] 21+ messages in thread
* [RFC PATCH v2 0/2] ARM: MPIDR linearization
2013-06-19 16:43 ` Lorenzo Pieralisi
@ 2013-06-20 0:43 ` Shawn Guo
2013-06-20 14:57 ` Lorenzo Pieralisi
0 siblings, 1 reply; 21+ messages in thread
From: Shawn Guo @ 2013-06-20 0:43 UTC (permalink / raw)
To: linux-arm-kernel
On Wed, Jun 19, 2013 at 05:43:38PM +0100, Lorenzo Pieralisi wrote:
> On Wed, Jun 12, 2013 at 09:36:20AM +0100, Shawn Guo wrote:
> > On Tue, Jun 11, 2013 at 10:58:48AM +0100, Lorenzo Pieralisi wrote:
> > > Hi Russell, all,
> > >
> > > even though I think this set is ready to get merged, it would be great
> > > if we can test it on as many platforms as possible since it touches core
> > > suspend/resume operations on ARM platforms relying on CONFIG_ARM_CPU_SUSPEND,
> > > and there are many.
> > >
> > > I pushed out a branch:
> > >
> > > git://linux-arm.org/linux-2.6-lp.git mpidr-linearization
> > >
> > > if anyone has time to test the set that would be really great, thank you
> > > very much.
> >
> > I tested the branch on imx6q, and system suspend/resume works fine with
> > it.
>
> Can I add your tested-by please ?
Sure.
Tested-by: Shawn Guo <shawn.guo@linaro.org>
^ permalink raw reply [flat|nested] 21+ messages in thread
* [RFC PATCH v2 0/2] ARM: MPIDR linearization
2013-06-19 20:41 ` Kevin Hilman
@ 2013-06-20 10:19 ` Lorenzo Pieralisi
0 siblings, 0 replies; 21+ messages in thread
From: Lorenzo Pieralisi @ 2013-06-20 10:19 UTC (permalink / raw)
To: linux-arm-kernel
Hi Kevin,
On Wed, Jun 19, 2013 at 09:41:10PM +0100, Kevin Hilman wrote:
> Hi Lorenzo,
>
> Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> writes:
>
> > Hi Russell, all,
> >
> > even though I think this set is ready to get merged, it would be great
> > if we can test it on as many platforms as possible since it touches core
> > suspend/resume operations on ARM platforms relying on CONFIG_ARM_CPU_SUSPEND,
> > and there are many.
> >
> > I pushed out a branch:
> >
> > git://linux-arm.org/linux-2.6-lp.git mpidr-linearization
> >
> > if anyone has time to test the set that would be really great, thank you
> > very much.
>
> I'm a little late to the party, but I tested this on OMAP4 with the CPUs
> hitting off in the lower C-states.
>
> Tested-by: Kevin Hilman <khilman@linaro.org>
That's great, thank you very much !
Lorenzo
^ permalink raw reply [flat|nested] 21+ messages in thread
* [RFC PATCH v2 0/2] ARM: MPIDR linearization
2013-06-20 0:43 ` Shawn Guo
@ 2013-06-20 14:57 ` Lorenzo Pieralisi
0 siblings, 0 replies; 21+ messages in thread
From: Lorenzo Pieralisi @ 2013-06-20 14:57 UTC (permalink / raw)
To: linux-arm-kernel
On Thu, Jun 20, 2013 at 01:43:04AM +0100, Shawn Guo wrote:
> On Wed, Jun 19, 2013 at 05:43:38PM +0100, Lorenzo Pieralisi wrote:
> > On Wed, Jun 12, 2013 at 09:36:20AM +0100, Shawn Guo wrote:
> > > On Tue, Jun 11, 2013 at 10:58:48AM +0100, Lorenzo Pieralisi wrote:
> > > > Hi Russell, all,
> > > >
> > > > even though I think this set is ready to get merged, it would be great
> > > > if we can test it on as many platforms as possible since it touches core
> > > > suspend/resume operations on ARM platforms relying on CONFIG_ARM_CPU_SUSPEND,
> > > > and there are many.
> > > >
> > > > I pushed out a branch:
> > > >
> > > > git://linux-arm.org/linux-2.6-lp.git mpidr-linearization
> > > >
> > > > if anyone has time to test the set that would be really great, thank you
> > > > very much.
> > >
> > > I tested the branch on imx6q, and system suspend/resume works fine with
> > > it.
> >
> > Can I add your tested-by please ?
>
> Sure.
>
> Tested-by: Shawn Guo <shawn.guo@linaro.org>
Thanks a lot,
Lorenzo
^ permalink raw reply [flat|nested] 21+ messages in thread
end of thread, other threads:[~2013-06-20 14:57 UTC | newest]
Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-06 15:22 [RFC PATCH v2 0/2] ARM: MPIDR linearization Lorenzo Pieralisi
2013-06-06 15:22 ` [RFC PATCH v2 1/2] ARM: kernel: build MPIDR hash function data structure Lorenzo Pieralisi
2013-06-06 15:22 ` [RFC PATCH v2 2/2] ARM: kernel: implement stack pointer save array through MPIDR hashing Lorenzo Pieralisi
2013-06-11 9:58 ` [RFC PATCH v2 0/2] ARM: MPIDR linearization Lorenzo Pieralisi
2013-06-11 15:56 ` Stephen Warren
2013-06-11 16:12 ` Nicolas Pitre
2013-06-11 16:22 ` Lorenzo Pieralisi
2013-06-11 16:48 ` Stephen Warren
2013-06-12 9:07 ` Lorenzo Pieralisi
2013-06-12 15:55 ` Stephen Warren
2013-06-11 15:58 ` Nicolas Pitre
2013-06-19 15:59 ` Lorenzo Pieralisi
2013-06-19 16:05 ` Nicolas Pitre
2013-06-12 8:36 ` Shawn Guo
2013-06-12 9:13 ` Lorenzo Pieralisi
2013-06-12 11:33 ` Shawn Guo
2013-06-19 16:43 ` Lorenzo Pieralisi
2013-06-20 0:43 ` Shawn Guo
2013-06-20 14:57 ` Lorenzo Pieralisi
2013-06-19 20:41 ` Kevin Hilman
2013-06-20 10:19 ` Lorenzo Pieralisi
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).