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>
37 lines
1.1 KiB
C
37 lines
1.1 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
#include <unistd.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <internal/lib.h> // page_size
|
|
#include "machine.h"
|
|
#include "api/fs/fs.h"
|
|
#include "debug.h"
|
|
#include "symbol.h"
|
|
|
|
int arch__fix_module_text_start(u64 *start, u64 *size, const char *name)
|
|
{
|
|
u64 m_start = *start;
|
|
char path[PATH_MAX];
|
|
|
|
snprintf(path, PATH_MAX, "module/%.*s/sections/.text",
|
|
(int)strlen(name) - 2, name + 1);
|
|
if (sysfs__read_ull(path, (unsigned long long *)start) < 0) {
|
|
pr_debug2("Using module %s start:%#lx\n", path, m_start);
|
|
*start = m_start;
|
|
} else {
|
|
/* Successful read of the modules segment text start address.
|
|
* Calculate difference between module start address
|
|
* in memory and module text segment start address.
|
|
* For example module load address is 0x3ff8011b000
|
|
* (from /proc/modules) and module text segment start
|
|
* address is 0x3ff8011b870 (from file above).
|
|
*
|
|
* Adjust the module size and subtract the GOT table
|
|
* size located at the beginning of the module.
|
|
*/
|
|
*size -= (*start - m_start);
|
|
}
|
|
|
|
return 0;
|
|
}
|