[RFC 1/3] cryptoapi: AES with AltiVec support
Benjamin Herrenschmidt
benh at kernel.crashing.org
Thu Apr 12 08:22:06 EST 2007
> ==================================================================
> --- ps3-linux.orig/crypto/Makefile
> +++ ps3-linux/crypto/Makefile
> @@ -48,3 +48,7 @@ obj-$(CONFIG_CRYPTO_MICHAEL_MIC) += mich
> obj-$(CONFIG_CRYPTO_CRC32C) += crc32c.o
>
> obj-$(CONFIG_CRYPTO_TEST) += tcrypt.o
> +
> +CFLAGS_aes-altivec.o += -O3 -maltivec -mcpu=cell
> +aes_altivec-objs := aes-alti.o aes-altivec.o
> +obj-$(CONFIG_CRYPTO_AES_ALTIVEC) += aes_altivec.o
Ideally (and I know the RAID6 code isnt doing it), the
code that contains enable_kernel_altivec/disable_kernel_altivec should
-not- itself be compiled with -malitvec. You don't want the compiler to
"inadvertently" generate altivec instructions outside of those calls (in
the function prolog for example).
I noticed quite a bit of memcpy's around too... see if you can limit
usage of these.
Ben.
More information about the Linuxppc-dev
mailing list