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>
47 lines
2.1 KiB
C
47 lines
2.1 KiB
C
#ifndef _LINUX_FBCON_H
|
|
#define _LINUX_FBCON_H
|
|
|
|
#ifdef CONFIG_FRAMEBUFFER_CONSOLE
|
|
void __init fb_console_init(void);
|
|
void __exit fb_console_exit(void);
|
|
int fbcon_fb_registered(struct fb_info *info);
|
|
void fbcon_fb_unregistered(struct fb_info *info);
|
|
void fbcon_fb_unbind(struct fb_info *info);
|
|
void fbcon_suspended(struct fb_info *info);
|
|
void fbcon_resumed(struct fb_info *info);
|
|
int fbcon_mode_deleted(struct fb_info *info,
|
|
struct fb_videomode *mode);
|
|
void fbcon_new_modelist(struct fb_info *info);
|
|
void fbcon_get_requirement(struct fb_info *info,
|
|
struct fb_blit_caps *caps);
|
|
void fbcon_fb_blanked(struct fb_info *info, int blank);
|
|
int fbcon_modechange_possible(struct fb_info *info,
|
|
struct fb_var_screeninfo *var);
|
|
void fbcon_update_vcs(struct fb_info *info, bool all);
|
|
void fbcon_remap_all(struct fb_info *info);
|
|
int fbcon_set_con2fb_map_ioctl(void __user *argp);
|
|
int fbcon_get_con2fb_map_ioctl(void __user *argp);
|
|
#else
|
|
static inline void fb_console_init(void) {}
|
|
static inline void fb_console_exit(void) {}
|
|
static inline int fbcon_fb_registered(struct fb_info *info) { return 0; }
|
|
static inline void fbcon_fb_unregistered(struct fb_info *info) {}
|
|
static inline void fbcon_fb_unbind(struct fb_info *info) {}
|
|
static inline void fbcon_suspended(struct fb_info *info) {}
|
|
static inline void fbcon_resumed(struct fb_info *info) {}
|
|
static inline int fbcon_mode_deleted(struct fb_info *info,
|
|
struct fb_videomode *mode) { return 0; }
|
|
static inline void fbcon_new_modelist(struct fb_info *info) {}
|
|
static inline void fbcon_get_requirement(struct fb_info *info,
|
|
struct fb_blit_caps *caps) {}
|
|
static inline void fbcon_fb_blanked(struct fb_info *info, int blank) {}
|
|
static inline int fbcon_modechange_possible(struct fb_info *info,
|
|
struct fb_var_screeninfo *var) { return 0; }
|
|
static inline void fbcon_update_vcs(struct fb_info *info, bool all) {}
|
|
static inline void fbcon_remap_all(struct fb_info *info) {}
|
|
static inline int fbcon_set_con2fb_map_ioctl(void __user *argp) { return 0; }
|
|
static inline int fbcon_get_con2fb_map_ioctl(void __user *argp) { return 0; }
|
|
#endif
|
|
|
|
#endif /* _LINUX_FBCON_H */
|