aboutsummaryrefslogtreecommitdiffstats
path: root/os/ports
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2013-04-29 09:17:13 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2013-04-29 09:17:13 +0000
commit9bbb4ac554e3a32d5d9ffad9b4901e2e8ddb99ed (patch)
treed3c5dffc446bb6e962a0203a37928c732b088e45 /os/ports
parent406621d200096fd2881f66ba16ffbc896308de4f (diff)
downloadChibiOS-9bbb4ac554e3a32d5d9ffad9b4901e2e8ddb99ed.tar.gz
ChibiOS-9bbb4ac554e3a32d5d9ffad9b4901e2e8ddb99ed.tar.bz2
ChibiOS-9bbb4ac554e3a32d5d9ffad9b4901e2e8ddb99ed.zip
Added wait states to the RAM accesses as specified on the DS.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5643 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/ports')
-rw-r--r--os/ports/GCC/PPC/SPC564Axx/core.s2
1 files changed, 1 insertions, 1 deletions
diff --git a/os/ports/GCC/PPC/SPC564Axx/core.s b/os/ports/GCC/PPC/SPC564Axx/core.s
index eb07085ae..da14e7236 100644
--- a/os/ports/GCC/PPC/SPC564Axx/core.s
+++ b/os/ports/GCC/PPC/SPC564Axx/core.s
@@ -111,7 +111,7 @@
*/
#define TLB0_MAS0 (MAS0_TBLMAS_TBL | MAS0_ESEL(0))
#define TLB0_MAS1 (MAS1_VALID | MAS1_IPROT | MAS1_TSISE_256K)
-#define TLB0_MAS2 (MAS2_EPN(0x40000000) | MAS2_VLE | MAS2_I)
+#define TLB0_MAS2 (MAS2_EPN(0x40000000) | MAS2_VLE)
#define TLB0_MAS3 (MAS3_RPN(0x40000000) | \
MAS3_UX | MAS3_SX | MAS3_UW | MAS3_SW | \
MAS3_UR | MAS3_SR)