changeset 3175:7e86d66e57e3

Bug fix: Do not refer external memory if Platform startup is not selected. [ Bugzilla 1001590 ]
author vae
date Fri, 18 May 2012 18:32:15 +0000
parents 7446751761c7
children 7c9ce2220671
files packages/hal/cortexm/kinetis/var/current/ChangeLog packages/hal/cortexm/kinetis/var/current/cdl/hal_cortexm_kinetis.cdl
diffstat 2 files changed, 12 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/packages/hal/cortexm/kinetis/var/current/ChangeLog
+++ b/packages/hal/cortexm/kinetis/var/current/ChangeLog
@@ -1,3 +1,9 @@
+2012-05-17  Ilija Kocho  <ilijak@siva.com.mk>
+
+	* cdl/hal_cortexm_kinetis.cdl:
+	Bug fix: Do not refer external memory if Platform startup is
+	not selected.  [ Bugzilla 1001590 ]
+
 2012-05-04  Ilija Kocho  <ilijak@siva.com.mk>
 
 	* cdl/hal_cortexm_kinetis.cdl:
--- a/packages/hal/cortexm/kinetis/var/current/cdl/hal_cortexm_kinetis.cdl
+++ b/packages/hal/cortexm/kinetis/var/current/cdl/hal_cortexm_kinetis.cdl
@@ -100,8 +100,7 @@ cdl_package CYGPKG_HAL_CORTEXM_KINETIS {
         cdl_option CYGHWR_HAL_CORTEXM_KINETIS_FPU {
             display          "Floating Point Unit option"
             flavor           bool
-            implements       CYGINT_HAL_CORTEXM_FPV4_SP_D16
-            default_value    { CYGINT_HAL_CORTEXM_FPV4_SP_D16 }
+            default_value 0
             description "Select whether the chip has Floating Point Unit."
         }
 
@@ -505,11 +504,14 @@ cdl_package CYGPKG_HAL_CORTEXM_KINETIS {
             active_if (CYGINT_HAL_CACHE)
 
             cdl_component CYGHWR_HAL_NON_CACHABLE {
-                display "Non cacheable memory regions"
+                display "Non cacheable RAM memory regions"
                 flavor data
-                active_if CYGINT_HAL_HAS_NONCACHEABLE
+                active_if  CYGINT_HAL_HAS_NONCACHEABLE
                 legal_values { "\".sram\"" "\".noncache\"" }
                 default_value { "\".noncache\"" }
+                description "
+                    Non cacheable memory sections may be used as shared memory
+                    between CPU and other bus masters such as DMA, ENET, etc."
 
                 cdl_option CYGHWR_HAL_ENET_TCD_SECTION {
                     display "Ethernet buffer descriptor memory section"