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>
86 lines
1.6 KiB
C
86 lines
1.6 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* From split of dump_linuxpagetables.c
|
|
* Copyright 2016, Rashmica Gupta, IBM Corp.
|
|
*
|
|
*/
|
|
#include <linux/kernel.h>
|
|
#include <linux/pgtable.h>
|
|
|
|
#include "ptdump.h"
|
|
|
|
static const struct flag_info flag_array[] = {
|
|
{
|
|
.mask = _PAGE_USER,
|
|
.val = _PAGE_USER,
|
|
.set = "user",
|
|
.clear = " ",
|
|
}, {
|
|
.mask = _PAGE_RW,
|
|
.val = 0,
|
|
.set = "r ",
|
|
.clear = "rw",
|
|
}, {
|
|
.mask = _PAGE_EXEC,
|
|
.val = _PAGE_EXEC,
|
|
.set = " X ",
|
|
.clear = " ",
|
|
}, {
|
|
.mask = _PAGE_PRESENT,
|
|
.val = _PAGE_PRESENT,
|
|
.set = "present",
|
|
.clear = " ",
|
|
}, {
|
|
.mask = _PAGE_COHERENT,
|
|
.val = _PAGE_COHERENT,
|
|
.set = "coherent",
|
|
.clear = " ",
|
|
}, {
|
|
.mask = _PAGE_GUARDED,
|
|
.val = _PAGE_GUARDED,
|
|
.set = "guarded",
|
|
.clear = " ",
|
|
}, {
|
|
.mask = _PAGE_DIRTY,
|
|
.val = _PAGE_DIRTY,
|
|
.set = "dirty",
|
|
.clear = " ",
|
|
}, {
|
|
.mask = _PAGE_ACCESSED,
|
|
.val = _PAGE_ACCESSED,
|
|
.set = "accessed",
|
|
.clear = " ",
|
|
}, {
|
|
.mask = _PAGE_WRITETHRU,
|
|
.val = _PAGE_WRITETHRU,
|
|
.set = "write through",
|
|
.clear = " ",
|
|
}, {
|
|
.mask = _PAGE_NO_CACHE,
|
|
.val = _PAGE_NO_CACHE,
|
|
.set = "no cache",
|
|
.clear = " ",
|
|
}, {
|
|
.mask = _PAGE_SPECIAL,
|
|
.val = _PAGE_SPECIAL,
|
|
.set = "special",
|
|
}
|
|
};
|
|
|
|
struct pgtable_level pg_level[5] = {
|
|
{
|
|
}, { /* pgd */
|
|
.flag = flag_array,
|
|
.num = ARRAY_SIZE(flag_array),
|
|
}, { /* pud */
|
|
.flag = flag_array,
|
|
.num = ARRAY_SIZE(flag_array),
|
|
}, { /* pmd */
|
|
.flag = flag_array,
|
|
.num = ARRAY_SIZE(flag_array),
|
|
}, { /* pte */
|
|
.flag = flag_array,
|
|
.num = ARRAY_SIZE(flag_array),
|
|
},
|
|
};
|