project:cfg:BoardConfig_IPC: Added fastboot BoardConfig file and firmware post-scripts, distinguishing between the BoardConfigs for Luckfox Pico Pro and Luckfox Pico Max. project:app: Added fastboot_client and rk_smart_door for quick boot applications; updated rkipc app to adapt to the latest media library. media:samples: Added more usage examples. media:rockit: Fixed bugs; removed support for retrieving data frames from VPSS. media:isp: Updated rkaiq library and related tools to support connection to RKISP_Tuner. sysdrv:Makefile: Added support for compiling drv_ko on Luckfox Pico Ultra W using Ubuntu; added support for custom root filesystem. sysdrv:tools:board: Updated Buildroot optional mirror sources, updated some software versions, and stored device tree files and configuration files that undergo multiple modifications for U-Boot and kernel separately. sysdrv:source:mcu: Used RISC-V MCU SDK with RT-Thread system, mainly for initializing camera AE during quick boot. sysdrv:source:uboot: Added support for fastboot; added high baud rate DDR bin for serial firmware upgrades. sysdrv:source:kernel: Upgraded to version 5.10.160; increased NPU frequency for RV1106G3; added support for fastboot. Signed-off-by: luckfox-eng29 <eng29@luckfox.com>
83 lines
1.8 KiB
C
83 lines
1.8 KiB
C
/*
|
|
* File : mipscfg.c
|
|
* This file is part of RT-Thread RTOS
|
|
* COPYRIGHT (C) 2006 - 2011, RT-Thread Development Team
|
|
*
|
|
* The license and distribution terms for this file may be
|
|
* found in the file LICENSE in this distribution or at
|
|
* http://www.rt-thread.org/license/LICENSE
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
* 2010-05-27 swkyer first version
|
|
*/
|
|
#include <rtthread.h>
|
|
#include "../common/mipsregs.h"
|
|
#include "../common/mipscfg.h"
|
|
|
|
mips32_core_cfg_t g_mips_core =
|
|
{
|
|
16, /* icache_line_size */
|
|
256, /* icache_lines_per_way */
|
|
4, /* icache_ways */
|
|
16, /* dcache_line_size */
|
|
256, /* dcache_lines_per_way */
|
|
4, /* dcache_ways */
|
|
16, /* max_tlb_entries */
|
|
};
|
|
|
|
static rt_uint16_t m_pow(rt_uint16_t b, rt_uint16_t n)
|
|
{
|
|
rt_uint16_t rets = 1;
|
|
|
|
while (n--)
|
|
rets *= b;
|
|
|
|
return rets;
|
|
}
|
|
|
|
static rt_uint16_t m_log2(rt_uint16_t b)
|
|
{
|
|
rt_uint16_t rets = 0;
|
|
|
|
while (b != 1)
|
|
{
|
|
b /= 2;
|
|
rets++;
|
|
}
|
|
|
|
return rets;
|
|
}
|
|
|
|
/**
|
|
* read core attribute
|
|
*/
|
|
void mips32_cfg_init(void)
|
|
{
|
|
rt_uint16_t val;
|
|
rt_uint32_t cp0_config1;
|
|
|
|
cp0_config1 = read_c0_config();
|
|
if (cp0_config1 & 0x80000000)
|
|
{
|
|
cp0_config1 = read_c0_config1();
|
|
|
|
val = (cp0_config1 & (7<<22))>>22;
|
|
g_mips_core.icache_lines_per_way = 64 * m_pow(2, val);
|
|
val = (cp0_config1 & (7<<19))>>19;
|
|
g_mips_core.icache_line_size = 2 * m_pow(2, val);
|
|
val = (cp0_config1 & (7<<16))>>16;
|
|
g_mips_core.icache_ways = val + 1;
|
|
|
|
val = (cp0_config1 & (7<<13))>>13;
|
|
g_mips_core.dcache_lines_per_way = 64 * m_pow(2, val);
|
|
val = (cp0_config1 & (7<<10))>>10;
|
|
g_mips_core.dcache_line_size = 2 * m_pow(2, val);
|
|
val = (cp0_config1 & (7<<7))>>7;
|
|
g_mips_core.dcache_ways = val + 1;
|
|
|
|
val = (cp0_config1 & (0x3F<<25))>>25;
|
|
g_mips_core.max_tlb_entries = val + 1;
|
|
}
|
|
}
|