一、修改频率方法 首先通过cboot0命令,跳转到boot0的代码中,路径为:
${root_dir}/lichee/brandy-2.0/spl/ 找到lspsram的代码,路径为:
${root_dir}/lichee/brandy-2.0/spl/drivers/psram 修改头文件,将200M的宏打开,修改如下: vi hal_psramctrl.hdiff --git a/drivers/psram/hal_psramctrl.h b/drivers/psram/hal_psramctrl.hindex a552a0e..114e330 100644--- a/drivers/psram/hal_psramctrl.h+++ b/drivers/psram/hal_psramctrl.h@@ -39,7 +39,7 @@ * definition CONFIG_PSRAM_200M. */-// #define CONFIG_PSRAM_200M+#define CONFIG_PSRAM_200M /* CLK CTRL MODULE */ #define BUS_CLK_GATING_CTRL0 0x4003c004然后重新编译boot0,就可以让lspsram初始化为200M了。 mboot0 && pack##二、根据log查看频率 根据boot0的系统log,可以查看到当前lspsram加载的频率,如下图所示: psram chip APS64 init ok!, freq 192000000证明当前加载的是lspsram型号为APS64,频率为192MHz。若将频率切换成200MHz,此处的打印就会改成"freq 200000000"。
|