Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
rt-thread
提交
0f33da3f
R
rt-thread
项目概览
BaiXuePrincess
/
rt-thread
与 Fork 源项目一致
Fork自
RT-Thread / rt-thread
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
R
rt-thread
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
0f33da3f
编写于
4月 27, 2019
作者:
misonyo
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[libcpu/cortex-m7]add cache driver
上级
c0a400cc
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
24 addition
and
79 deletion
+24
-79
bsp/imxrt/Libraries/imxrt1021/drivers/SConscript
bsp/imxrt/Libraries/imxrt1021/drivers/SConscript
+0
-1
bsp/imxrt/Libraries/imxrt1050/drivers/SConscript
bsp/imxrt/Libraries/imxrt1050/drivers/SConscript
+0
-1
bsp/imxrt/Libraries/imxrt1050/drivers/drv_cache.c
bsp/imxrt/Libraries/imxrt1050/drivers/drv_cache.c
+0
-71
libcpu/arm/cortex-m7/cpu_cache.c
libcpu/arm/cortex-m7/cpu_cache.c
+24
-6
未找到文件。
bsp/imxrt/Libraries/imxrt1021/drivers/SConscript
浏览文件 @
0f33da3f
...
@@ -5,7 +5,6 @@ cwd = GetCurrentDir()
...
@@ -5,7 +5,6 @@ cwd = GetCurrentDir()
# add the general drivers.
# add the general drivers.
src
=
Split
(
"""
src
=
Split
(
"""
drv_uart.c
drv_uart.c
drv_cache.c
"""
)
"""
)
CPPPATH
=
[
cwd
]
CPPPATH
=
[
cwd
]
...
...
bsp/imxrt/Libraries/imxrt1050/drivers/SConscript
浏览文件 @
0f33da3f
...
@@ -5,7 +5,6 @@ cwd = GetCurrentDir()
...
@@ -5,7 +5,6 @@ cwd = GetCurrentDir()
# add the general drivers.
# add the general drivers.
src
=
Split
(
"""
src
=
Split
(
"""
drv_uart.c
drv_uart.c
drv_cache.c
"""
)
"""
)
CPPPATH
=
[
cwd
]
CPPPATH
=
[
cwd
]
...
...
bsp/imxrt/Libraries/imxrt1050/drivers/drv_cache.c
已删除
100644 → 0
浏览文件 @
c0a400cc
/*
* Copyright (c) 2006-2018, RT-Thread Development Team
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
* 2018-04-02 tanek first implementation
*/
#include <rtthread.h>
#include <rthw.h>
#include <fsl_cache.h>
void
rt_hw_cpu_icache_enable
(
void
)
{
SCB_EnableICache
();
}
void
rt_hw_cpu_icache_disable
(
void
)
{
SCB_DisableICache
();
}
rt_base_t
rt_hw_cpu_icache_status
(
void
)
{
return
0
;
}
void
rt_hw_cpu_icache_ops
(
int
ops
,
void
*
addr
,
int
size
)
{
if
(
ops
&
RT_HW_CACHE_INVALIDATE
)
{
ICACHE_InvalidateByRange
((
uint32_t
)
addr
,
size
);
}
}
void
rt_hw_cpu_dcache_enable
(
void
)
{
SCB_EnableDCache
();
}
void
rt_hw_cpu_dcache_disable
(
void
)
{
SCB_DisableDCache
();
}
rt_base_t
rt_hw_cpu_dcache_status
(
void
)
{
return
0
;
}
void
rt_hw_cpu_dcache_ops
(
int
ops
,
void
*
addr
,
int
size
)
{
if
(
ops
&
(
RT_HW_CACHE_FLUSH
|
RT_HW_CACHE_INVALIDATE
))
{
DCACHE_CleanInvalidateByRange
((
uint32_t
)
addr
,
size
);
}
else
if
(
ops
&
RT_HW_CACHE_FLUSH
)
{
DCACHE_CleanByRange
((
uint32_t
)
addr
,
size
);
}
else
if
(
ops
&
RT_HW_CACHE_INVALIDATE
)
{
DCACHE_InvalidateByRange
((
uint32_t
)
addr
,
size
);
}
else
{
RT_ASSERT
(
0
);
}
}
bsp/imxrt/Libraries/imxrt1021/drivers/drv
_cache.c
→
libcpu/arm/cortex-m7/cpu
_cache.c
浏览文件 @
0f33da3f
...
@@ -6,11 +6,15 @@
...
@@ -6,11 +6,15 @@
* Change Logs:
* Change Logs:
* Date Author Notes
* Date Author Notes
* 2018-04-02 tanek first implementation
* 2018-04-02 tanek first implementation
* 2019-04-27 misonyo update to cortex-m7 series
*/
*/
#include <rtthread.h>
#include <rthw.h>
#include <rthw.h>
#include <fsl_cache.h>
#include <rtdef.h>
#include <board.h>
/* The L1-caches on all Cortex®-M7s are divided into lines of 32 bytes. */
#define L1CACHE_LINESIZE_BYTE (32)
void
rt_hw_cpu_icache_enable
(
void
)
void
rt_hw_cpu_icache_enable
(
void
)
{
{
...
@@ -29,9 +33,20 @@ rt_base_t rt_hw_cpu_icache_status(void)
...
@@ -29,9 +33,20 @@ rt_base_t rt_hw_cpu_icache_status(void)
void
rt_hw_cpu_icache_ops
(
int
ops
,
void
*
addr
,
int
size
)
void
rt_hw_cpu_icache_ops
(
int
ops
,
void
*
addr
,
int
size
)
{
{
rt_uint32_t
address
=
(
rt_uint32_t
)
addr
&
(
rt_uint32_t
)
~
(
L1CACHE_LINESIZE_BYTE
-
1
);
rt_int32_t
size_byte
=
size
+
address
-
(
rt_uint32_t
)
addr
;
rt_uint32_t
linesize
=
32U
;
if
(
ops
&
RT_HW_CACHE_INVALIDATE
)
if
(
ops
&
RT_HW_CACHE_INVALIDATE
)
{
{
ICACHE_InvalidateByRange
((
uint32_t
)
addr
,
size
);
__DSB
();
while
(
size_byte
>
0
)
{
SCB
->
ICIMVAU
=
address
;
address
+=
linesize
;
size_byte
-=
linesize
;
}
__DSB
();
__ISB
();
}
}
}
}
...
@@ -52,17 +67,20 @@ rt_base_t rt_hw_cpu_dcache_status(void)
...
@@ -52,17 +67,20 @@ rt_base_t rt_hw_cpu_dcache_status(void)
void
rt_hw_cpu_dcache_ops
(
int
ops
,
void
*
addr
,
int
size
)
void
rt_hw_cpu_dcache_ops
(
int
ops
,
void
*
addr
,
int
size
)
{
{
rt_uint32_t
startAddr
=
(
rt_uint32_t
)
addr
&
(
rt_uint32_t
)
~
(
L1CACHE_LINESIZE_BYTE
-
1
);
rt_uint32_t
size_byte
=
size
+
(
rt_uint32_t
)
addr
-
startAddr
;
if
(
ops
&
(
RT_HW_CACHE_FLUSH
|
RT_HW_CACHE_INVALIDATE
))
if
(
ops
&
(
RT_HW_CACHE_FLUSH
|
RT_HW_CACHE_INVALIDATE
))
{
{
DCACHE_CleanInvalidateByRange
((
uint32_t
)
addr
,
siz
e
);
SCB_CleanInvalidateDCache_by_Addr
((
rt_uint32_t
*
)
startAddr
,
size_byt
e
);
}
}
else
if
(
ops
&
RT_HW_CACHE_FLUSH
)
else
if
(
ops
&
RT_HW_CACHE_FLUSH
)
{
{
DCACHE_CleanByRange
((
uint32_t
)
addr
,
siz
e
);
SCB_CleanDCache_by_Addr
((
rt_uint32_t
*
)
startAddr
,
size_byt
e
);
}
}
else
if
(
ops
&
RT_HW_CACHE_INVALIDATE
)
else
if
(
ops
&
RT_HW_CACHE_INVALIDATE
)
{
{
DCACHE_InvalidateByRange
((
uint32_t
)
addr
,
siz
e
);
SCB_InvalidateDCache_by_Addr
((
rt_uint32_t
*
)
startAddr
,
size_byt
e
);
}
}
else
else
{
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录