diff options
author | Tom Rini <trini@konsulko.com> | 2017-01-12 13:16:02 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-01-20 15:38:01 -0500 |
commit | 40d5534cff720d566cd52f532f26eea2bd86c1ae (patch) | |
tree | 14647f1aaaa49a0591c1c13d184cf435caaa323c /configs/omap4_sdp4430_defconfig | |
parent | a4a35934c7e0475e968e82ded33ef8ad47f10bc7 (diff) | |
download | u-boot-imx-40d5534cff720d566cd52f532f26eea2bd86c1ae.zip u-boot-imx-40d5534cff720d566cd52f532f26eea2bd86c1ae.tar.gz u-boot-imx-40d5534cff720d566cd52f532f26eea2bd86c1ae.tar.bz2 |
ARM: Default to using optimized memset and memcpy routines
We have long had available optimized versions of the memset and memcpy
functions that are borrowed from the Linux kernel. We should use these
in normal conditions as the speed wins in many workflows outweigh the
relatively minor size increase. However, we have a number of places
where we're simply too close to size limits in SPL and must be able to
make the size vs performance trade-off in those cases.
Cc: Philippe Reynes <tremyfr@yahoo.fr>
Cc: Eric Jarrige <eric.jarrige@armadeus.org>
Cc: Heiko Schocher <hs@denx.de>
Cc: Magnus Lilja <lilja.magnus@gmail.com>
Cc: Lokesh Vutla <lokeshvutla@ti.com>
Cc: Chander Kashyap <k.chander@samsung.com>
Cc: Akshay Saraswat <akshay.s@samsung.com>
Cc: Simon Glass <sjg@chromium.org>
Cc: Stefan Roese <sr@denx.de>
Signed-off-by: Tom Rini <trini@konsulko.com>
Acked-by: Stefan Roese <sr@denx.de>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'configs/omap4_sdp4430_defconfig')
-rw-r--r-- | configs/omap4_sdp4430_defconfig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configs/omap4_sdp4430_defconfig b/configs/omap4_sdp4430_defconfig index f3a8b0c..862f3f0 100644 --- a/configs/omap4_sdp4430_defconfig +++ b/configs/omap4_sdp4430_defconfig @@ -1,4 +1,6 @@ CONFIG_ARM=y +# CONFIG_SPL_USE_ARCH_MEMCPY is not set +# CONFIG_SPL_USE_ARCH_MEMSET is not set CONFIG_OMAP44XX=y # CONFIG_SPL_I2C_SUPPORT is not set # CONFIG_SPL_NAND_SUPPORT is not set |