summaryrefslogtreecommitdiff
path: root/include/util.h
diff options
context:
space:
mode:
authorNicolas Boichat <drinkcat@google.com>2017-03-03 10:12:07 -0800
committerChromeOS Commit Bot <chromeos-commit-bot@chromium.org>2018-06-01 06:22:06 +0000
commit6cd014b2658f2a709f22b16d06982ff5444cd6db (patch)
treea45f5e1cc9ef917f426b82a4ba6fcbb881fec879 /include/util.h
parent29db6c1226288ea3eca333503a0d4a70c2729388 (diff)
downloadchrome-ec-6cd014b2658f2a709f22b16d06982ff5444cd6db.tar.gz
rsa: Optimization of multiplications for Cortex-M0
We multiply 2 32-bit numbers (and not 64-bit numbers), and then add another 32-bit number, which makes it possible to optimize the assembly and save a few instructions. With -O3, 3072-bit exponent, lower verification time from 122 ms to 104 ms on STM32F072 @48Mhz. Optimized mac function from Dmitry Grinberg <dmitrygr@google.com>. BRANCH=poppy BUG=b:35647963 BUG=b:77608104 TEST=On staff, flash, verification successful TEST=make test-rsa, make test-rsa3 TEST=Flash test-utils and test-rsa to hammer => pass Change-Id: I584c54c631a3f59f691849a279b308e8d4b4b22d Signed-off-by: Nicolas Boichat <drinkcat@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/449024 Reviewed-by: Vincent Palatin <vpalatin@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/1080583
Diffstat (limited to 'include/util.h')
-rw-r--r--include/util.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/include/util.h b/include/util.h
index 453ff8c739..2670d4e5ad 100644
--- a/include/util.h
+++ b/include/util.h
@@ -182,4 +182,22 @@ static inline int cond_went_true(cond_t *c) { return cond_went(c, 1); }
int parse_offset_size(int argc, char **argv, int shift,
int *offset, int *size);
+#ifdef CONFIG_ASSEMBLY_MULA32
+/*
+ * Compute (a*b)+c, where a, b, c are 32-bit integers, and the result is
+ * 64-bit long.
+ */
+uint64_t mula32(uint32_t a, uint32_t b, uint32_t c);
+#else
+static inline uint64_t mula32(uint32_t a, uint32_t b, uint32_t c)
+{
+ uint64_t ret = a;
+
+ ret *= b;
+ ret += c;
+
+ return ret;
+}
+#endif
+
#endif /* __CROS_EC_UTIL_H */