c05564c4d8
Android 13
57 lines
1.2 KiB
C
Executable file
57 lines
1.2 KiB
C
Executable file
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Copyright (C) 2016 MediaTek Inc.
|
|
*/
|
|
#ifndef __SSPM_DEFINE_H__
|
|
#define __SSPM_DEFINE_H__
|
|
|
|
#include <linux/param.h> /* for HZ */
|
|
#include <asm/arch_timer.h>
|
|
|
|
#define SSPM_MBOX_MAX 5
|
|
#define SSPM_MBOX_IN_IRQ_OFS 0x0
|
|
#define SSPM_MBOX_OUT_IRQ_OFS 0x4
|
|
#define SSPM_MBOX_SLOT_SIZE 0x4
|
|
|
|
#define SSPM_CFG_OFS_SEMA 0x048
|
|
#define SSPM_MPU_REGION_ID 9
|
|
|
|
#define SSPM_PLT_SERV_SUPPORT (1)
|
|
#define SSPM_LOGGER_SUPPORT (1)
|
|
#define SSPM_LASTK_SUPPORT (0)
|
|
#define SSPM_COREDUMP_SUPPORT (0)
|
|
#define SSPM_EMI_PROTECTION_SUPPORT (1)
|
|
|
|
#if defined(CONFIG_MACH_MT6768) || defined(CONFIG_MACH_MT6785)
|
|
#define SSPM_TIMESYNC_SUPPORT (0)
|
|
#else
|
|
#define SSPM_TIMESYNC_SUPPORT (1)
|
|
#endif
|
|
|
|
#define TIMESYNC_TIMEOUT (60 * 60 * HZ)
|
|
|
|
#define PLT_INIT 0x504C5401
|
|
#define PLT_LOG_ENABLE 0x504C5402
|
|
#define PLT_TIMESYNC_SYNC 0x504C5405
|
|
#define PLT_TIMESYNC_SRAM_TEST 0x504C5406
|
|
|
|
#define mtk_timer_src_count(...) arch_counter_get_cntvct(__VA_ARGS__)
|
|
|
|
struct plt_ipi_data_s {
|
|
unsigned int cmd;
|
|
union {
|
|
struct {
|
|
unsigned int phys;
|
|
unsigned int size;
|
|
} ctrl;
|
|
struct {
|
|
unsigned int enable;
|
|
} logger;
|
|
struct {
|
|
unsigned int mode;
|
|
} ts;
|
|
} u;
|
|
};
|
|
|
|
#endif
|