mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
9b8320167e
Isp-camera preview image will be broken when dual screen display mode. This patch set isp/vop qos level higher to solve this problem. We have verified this patch on rk3288-miniarm board. Signed-off-by: Nickey Yang <nickey.yang@rock-chips.com>
20 lines
467 B
C
20 lines
467 B
C
/*
|
|
* Copyright 2016 Rockchip Inc.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
#ifndef _ASM_ARCH_QOS_RK3288_H
|
|
#define _ASM_ARCH_QOS_RK3288_H
|
|
|
|
#define PRIORITY_HIGH_SHIFT 2
|
|
#define PRIORITY_LOW_SHIFT 0
|
|
|
|
#define CPU_AXI_QOS_PRIORITY 0x08
|
|
|
|
#define VIO0_VOP_QOS 0xffad0400
|
|
#define VIO1_VOP_QOS 0xffad0000
|
|
#define VIO1_ISP_R_QOS 0xffad0900
|
|
#define VIO1_ISP_W0_QOS 0xffad0100
|
|
#define VIO1_ISP_W1_QOS 0xffad0180
|
|
|
|
#endif
|