unplugged-kernel/drivers/misc/mediatek/scp/rv/scp_reservedmem_define.h

93 lines
1.4 KiB
C

/* SPDX-License-Identifier: GPL-2.0 */
/*
* Copyright (c) 2020 MediaTek Inc.
*/
#ifndef __SCP_RESERVEDMEM_DEFINE_H__
#define __SCP_RESERVEDMEM_DEFINE_H__
static struct scp_reserve_mblock scp_reserve_mblock[] = {
{
.num = SCP_A_SECDUMP_MEM_ID,
.start_phys = 0,
.start_virt = 0,
.size = 0, /* could be 3.5 MB */
},
{
.num = VOW_MEM_ID,
.start_phys = 0x0,
.start_virt = 0x0,
.size = 0x0,
},
{
.num = SENS_MEM_ID,
.start_phys = 0x0,
.start_virt = 0x0,
.size = 0x0,
},
{
.num = SCP_A_LOGGER_MEM_ID,
.start_phys = 0x0,
.start_virt = 0x0,
.size = 0x0,
},
{
.num = AUDIO_IPI_MEM_ID,
.start_phys = 0x0,
.start_virt = 0x0,
.size = 0x0,
},
{
.num = VOW_BARGEIN_MEM_ID,
.start_phys = 0x0,
.start_virt = 0x0,
.size = 0x0,
},
{
.num = SCP_DRV_PARAMS_MEM_ID,
.start_phys = 0x0,
.start_virt = 0x0,
.size = 0x0,
},
{
.num = ULTRA_MEM_ID,
.start_phys = 0,
.start_virt = 0,
.size = 0x0,
},
{
.num = SENS_SUPER_MEM_ID,
.start_phys = 0x0,
.start_virt = 0x0,
.size = 0x0,
},
{
.num = SENS_LIST_MEM_ID,
.start_phys = 0x0,
.start_virt = 0x0,
.size = 0x0,
},
{
.num = SENS_DEBUG_MEM_ID,
.start_phys = 0x0,
.start_virt = 0x0,
.size = 0x0,
},
{
.num = SENS_CUSTOM_W_MEM_ID,
.start_phys = 0x0,
.start_virt = 0x0,
.size = 0x0,
},
{
.num = SENS_CUSTOM_R_MEM_ID,
.start_phys = 0x0,
.start_virt = 0x0,
.size = 0x0,
},
};
#endif