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>
165 lines
2.2 KiB
C
165 lines
2.2 KiB
C
/*
|
|
* Copyright (c) 2006-2018, RT-Thread Development Team
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
* 2011-09-15 Bernard first version
|
|
*/
|
|
|
|
#include <rthw.h>
|
|
#include <rtthread.h>
|
|
#include "am33xx.h"
|
|
|
|
/**
|
|
* @addtogroup AM33xx
|
|
*/
|
|
/*@{*/
|
|
|
|
#define ICACHE_MASK (rt_uint32_t)(1 << 12)
|
|
#define DCACHE_MASK (rt_uint32_t)(1 << 2)
|
|
|
|
#if defined(__CC_ARM)
|
|
rt_inline rt_uint32_t cp15_rd(void)
|
|
{
|
|
rt_uint32_t i;
|
|
|
|
__asm
|
|
{
|
|
mrc p15, 0, i, c1, c0, 0
|
|
}
|
|
|
|
return i;
|
|
}
|
|
|
|
rt_inline void cache_enable(rt_uint32_t bit)
|
|
{
|
|
rt_uint32_t value;
|
|
|
|
__asm
|
|
{
|
|
mrc p15, 0, value, c1, c0, 0
|
|
orr value, value, bit
|
|
mcr p15, 0, value, c1, c0, 0
|
|
}
|
|
}
|
|
|
|
rt_inline void cache_disable(rt_uint32_t bit)
|
|
{
|
|
rt_uint32_t value;
|
|
|
|
__asm
|
|
{
|
|
mrc p15, 0, value, c1, c0, 0
|
|
bic value, value, bit
|
|
mcr p15, 0, value, c1, c0, 0
|
|
}
|
|
}
|
|
#elif defined(__GNUC__)
|
|
rt_inline rt_uint32_t cp15_rd(void)
|
|
{
|
|
rt_uint32_t i;
|
|
|
|
asm ("mrc p15, 0, %0, c1, c0, 0":"=r" (i));
|
|
return i;
|
|
}
|
|
|
|
rt_inline void cache_enable(rt_uint32_t bit)
|
|
{
|
|
__asm__ __volatile__( \
|
|
"mrc p15,0,r0,c1,c0,0\n\t" \
|
|
"orr r0,r0,%0\n\t" \
|
|
"mcr p15,0,r0,c1,c0,0" \
|
|
: \
|
|
:"r" (bit) \
|
|
:"memory");
|
|
}
|
|
|
|
rt_inline void cache_disable(rt_uint32_t bit)
|
|
{
|
|
__asm__ __volatile__( \
|
|
"mrc p15,0,r0,c1,c0,0\n\t" \
|
|
"bic r0,r0,%0\n\t" \
|
|
"mcr p15,0,r0,c1,c0,0" \
|
|
: \
|
|
:"r" (bit) \
|
|
:"memory");
|
|
}
|
|
#endif
|
|
|
|
|
|
#if defined(__CC_ARM)|(__GNUC__)
|
|
/**
|
|
* enable I-Cache
|
|
*
|
|
*/
|
|
void rt_hw_cpu_icache_enable()
|
|
{
|
|
cache_enable(ICACHE_MASK);
|
|
}
|
|
|
|
/**
|
|
* disable I-Cache
|
|
*
|
|
*/
|
|
void rt_hw_cpu_icache_disable()
|
|
{
|
|
cache_disable(ICACHE_MASK);
|
|
}
|
|
|
|
/**
|
|
* return the status of I-Cache
|
|
*
|
|
*/
|
|
rt_base_t rt_hw_cpu_icache_status()
|
|
{
|
|
return (cp15_rd() & ICACHE_MASK);
|
|
}
|
|
|
|
/**
|
|
* enable D-Cache
|
|
*
|
|
*/
|
|
void rt_hw_cpu_dcache_enable()
|
|
{
|
|
cache_enable(DCACHE_MASK);
|
|
}
|
|
|
|
/**
|
|
* disable D-Cache
|
|
*
|
|
*/
|
|
void rt_hw_cpu_dcache_disable()
|
|
{
|
|
cache_disable(DCACHE_MASK);
|
|
}
|
|
|
|
/**
|
|
* return the status of D-Cache
|
|
*
|
|
*/
|
|
rt_base_t rt_hw_cpu_dcache_status()
|
|
{
|
|
return (cp15_rd() & DCACHE_MASK);
|
|
}
|
|
#endif
|
|
|
|
/**
|
|
* shutdown CPU
|
|
*
|
|
*/
|
|
void rt_hw_cpu_shutdown()
|
|
{
|
|
rt_uint32_t level;
|
|
rt_kprintf("shutdown...\n");
|
|
|
|
level = rt_hw_interrupt_disable();
|
|
while (level)
|
|
{
|
|
RT_ASSERT(0);
|
|
}
|
|
}
|
|
|
|
/*@}*/
|