apq8064: Add support for Crypto Engine 3.

Change-Id: Iaf899719dbb2dee266d77b155ad9d91c8d65805c
diff --git a/platform/msm_shared/include/crypto4_eng.h b/platform/msm_shared/include/crypto4_eng.h
index c1597e4..dde7794 100644
--- a/platform/msm_shared/include/crypto4_eng.h
+++ b/platform/msm_shared/include/crypto4_eng.h
@@ -1,4 +1,4 @@
-/* Copyright (c) 2011, Code Aurora Forum. All rights reserved.
+/* Copyright (c) 2012, The Linux Foundation. All rights reserved.
 
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions are
@@ -9,7 +9,7 @@
  *     copyright notice, this list of conditions and the following
  *     disclaimer in the documentation and/or other materials provided
  *     with the distribution.
- *   * Neither the name of Code Aurora Forum, Inc. nor the names of its
+ *   * Neither the name of The Linux Foundation nor the names of its
  *     contributors may be used to endorse or promote products derived
  *     from this software without specific prior written permission.
  *
@@ -29,10 +29,7 @@
 #ifndef __CRYPTO4_ENG_H__
 #define __CRYPYO4_ENG_H__
 
-#define CRYPTO_ENG_REG(offset)		(MSM_CRYPTO_BASE + offset)
-
-#define wr_ce(val,reg)				writel(val,CRYPTO_ENG_REG(reg))
-#define rd_ce(reg)					readl(CRYPTO_ENG_REG(reg))
+#define CRYPTO_ENG_REG(base, offset)    ((base) + offset)
 
 #define IS_ALIGNED(ptr)				(!(((unsigned int)ptr) & 0x03))