1
0
mirror of https://github.com/physwizz/a155-U-u1.git synced 2025-08-25 21:42:22 +00:00
Files
a155-U-u1/kernel-5.10/drivers/misc/mediatek/sspm/v2/sspm_reservedmem_define.h
physwizz 99537be4e2 first
2024-03-11 06:53:12 +11:00

81 lines
1.5 KiB
C

/* SPDX-License-Identifier: GPL-2.0 */
/*
* Copyright (C) 2016 MediaTek Inc.
*/
#ifndef _SSPM_RESERVEDMEM_DEFINE_H_
#define _SSPM_RESERVEDMEM_DEFINE_H_
#include <sspm_reservedmem.h>
enum {
SSPM_MEM_ID = 0,
PWRAP_MEM_ID,
PMIC_MEM_ID,
UPD_MEM_ID,
QOS_MEM_ID,
SWPM_MEM_ID,
#if defined(CONFIG_MTK_GMO_RAM_OPTIMIZE) || defined(CONFIG_MTK_MET_MEM_ALLOC)
#else
MET_MEM_ID,
#endif
SMI_MEM_ID,
GPU_MEM_ID,
NUMS_MEM_ID,
};
#define SSPM_PLT_LOGGER_BUF_LEN 0x100000
#ifdef _SSPM_INTERNAL_
/* The total size of sspm_reserve_mblock should less equal than
* reserve-memory-sspm_share of device tree
*/
static struct sspm_reserve_mblock sspm_reserve_mblock[NUMS_MEM_ID] = {
{
.num = SSPM_MEM_ID,
.size = 0x100 + SSPM_PLT_LOGGER_BUF_LEN,
/* logger header + 1M log buffer */
},
{
.num = PWRAP_MEM_ID,
.size = 0x300, /* 768 bytes */
},
{
.num = PMIC_MEM_ID,
.size = 0xC00, /* 3K */
},
{
.num = UPD_MEM_ID,
.size = 0x1800, /* 6K */
},
{
.num = QOS_MEM_ID,
.size = 0x1000, /* 4K */
},
{
.num = SWPM_MEM_ID,
.size = 0x1800, /* 6K */
},
#if defined(CONFIG_MTK_GMO_RAM_OPTIMIZE) || defined(CONFIG_MTK_MET_MEM_ALLOC)
#else
{
.num = MET_MEM_ID,
.size = 0x400000, /* 4M */
},
#endif
{
.num = SMI_MEM_ID,
.size = 0x9000, /* 36K */
},
{
.num = GPU_MEM_ID,
.size = 0x1000, /* 4K */
},
/* TO align 64K, total is 1M(5M)+64K. The remaining size = 0x2000. */
};
#endif
#endif
#ifdef SSPM_SHARE_BUFFER_SUPPORT
#define SSPM_SHARE_REGION_BASE 0x20000
#define SSPM_SHARE_REGION_SIZE 0x8000
#endif