From 01573e231f18eb2d99162747186f59511f56b64d Mon Sep 17 00:00:00 2001
From: hc <hc@nodka.com>
Date: Fri, 08 Dec 2023 10:40:48 +0000
Subject: [PATCH] 移去rt
---
kernel/include/linux/rockchip/rockchip_sip.h | 158 +++++++++++++++++++++++++++++++++++++++++++---------
1 files changed, 131 insertions(+), 27 deletions(-)
diff --git a/kernel/include/linux/rockchip/rockchip_sip.h b/kernel/include/linux/rockchip/rockchip_sip.h
index 6682ffb..a0ff5c7 100644
--- a/kernel/include/linux/rockchip/rockchip_sip.h
+++ b/kernel/include/linux/rockchip/rockchip_sip.h
@@ -52,6 +52,12 @@
#define SIP_SDEI_FIQ_DBG_SWITCH_CPU 0x82000020
#define SIP_SDEI_FIQ_DBG_GET_EVENT_ID 0x82000021
#define RK_SIP_AMP_CFG 0x82000022
+#define RK_SIP_FIQ_CTRL 0x82000024
+#define SIP_HDCP_CONFIG 0x82000025
+#define SIP_WDT_CFG 0x82000026
+#define SIP_HDMIRX_CFG 0x82000027
+
+#define TRUSTED_OS_HDCPKEY_INIT 0xB7000003
/* Rockchip Sip version */
#define SIP_IMPLEMENT_V1 (1)
@@ -100,6 +106,8 @@
#define VIRTUAL_POWEROFF 0x07
#define SUSPEND_WFI_TIME_MS 0x08
#define LINUX_PM_STATE 0x09
+#define SUSPEND_IO_RET_CONFIG 0x0a
+#define SLEEP_PIN_CONFIG 0x0b
/* SIP_REMOTECTL_CFG call types */
#define REMOTECTL_SET_IRQ 0xf0
@@ -109,6 +117,16 @@
#define REMOTECTL_ENABLE 0xf4
/* wakeup state */
#define REMOTECTL_PWRKEY_WAKEUP 0xdeadbeaf
+
+struct dram_addrmap_info {
+ u64 ch_mask[2];
+ u64 bk_mask[4];
+ u64 bg_mask[2];
+ u64 cs_mask[2];
+ u32 reserved[20];
+ u32 bank_bit_first;
+ u32 bank_bit_mask;
+};
/* AMP Ctrl */
enum {
@@ -120,16 +138,6 @@
RK_AMP_SUB_FUNC_RSV, /* for RTOS */
RK_AMP_SUB_FUNC_CPU_ON,
RK_AMP_SUB_FUNC_END,
-};
-
-struct dram_addrmap_info {
- u64 ch_mask[2];
- u64 bk_mask[4];
- u64 bg_mask[2];
- u64 cs_mask[2];
- u32 reserved[20];
- u32 bank_bit_first;
- u32 bank_bit_mask;
};
enum {
@@ -150,8 +158,49 @@
SHARE_PAGE_TYPE_DDRFSP,
SHARE_PAGE_TYPE_DDR_ADDRMAP,
SHARE_PAGE_TYPE_LAST_LOG,
+ SHARE_PAGE_TYPE_HDCP,
SHARE_PAGE_TYPE_MAX,
} share_page_type_t;
+
+/* fiq control sub func */
+enum {
+ RK_SIP_FIQ_CTRL_FIQ_EN = 1,
+ RK_SIP_FIQ_CTRL_FIQ_DIS,
+ RK_SIP_FIQ_CTRL_SET_AFF
+};
+
+/* hdcp function types */
+enum {
+ HDCP_FUNC_STORAGE_INCRYPT = 1,
+ HDCP_FUNC_KEY_LOAD,
+ HDCP_FUNC_ENCRYPT_MODE
+};
+
+/* support hdcp device list */
+enum {
+ DP_TX0,
+ DP_TX1,
+ EDP_TX0,
+ EDP_TX1,
+ HDMI_TX0,
+ HDMI_TX1,
+ HDMI_RX,
+ MAX_DEVICE,
+};
+
+/* SIP_WDT_CONFIG call types */
+enum {
+ WDT_START = 0,
+ WDT_STOP = 1,
+ WDT_PING = 2,
+};
+
+/* SIP_HDMIRX_CONFIG child configs */
+enum {
+ HDMIRX_AUTO_TOUCH_EN = 0,
+ HDMIRX_REG_PRE_FETCH = 1,
+ HDMIRX_INFO_NOTIFY = 2,
+};
struct pt_regs;
typedef void (*sip_fiq_debugger_uart_irq_tf_cb_t)(struct pt_regs *_pt_regs, unsigned long cpu);
@@ -162,7 +211,7 @@
* a0: error code(0: success, !0: error);
* a1~a3: data
*/
-#if IS_ENABLED(CONFIG_ROCKCHIP_SIP)
+#if IS_REACHABLE(CONFIG_ROCKCHIP_SIP)
struct arm_smccc_res sip_smc_get_atf_version(void);
struct arm_smccc_res sip_smc_get_sip_version(void);
struct arm_smccc_res sip_smc_dram(u32 arg0, u32 arg1, u32 arg2);
@@ -180,10 +229,13 @@
int sip_smc_secure_reg_write(u32 addr_phy, u32 val);
u32 sip_smc_secure_reg_read(u32 addr_phy);
struct arm_smccc_res sip_smc_bus_config(u32 arg0, u32 arg1, u32 arg2);
+struct dram_addrmap_info *sip_smc_get_dram_map(void);
int sip_smc_amp_config(u32 sub_func_id, u32 arg1, u32 arg2, u32 arg3);
struct arm_smccc_res sip_smc_get_amp_info(u32 sub_func_id, u32 arg1);
-struct dram_addrmap_info *sip_smc_get_dram_map(void);
+void __iomem *sip_hdcp_request_share_memory(int id);
+struct arm_smccc_res sip_hdcp_config(u32 arg0, u32 arg1, u32 arg2);
+ulong sip_cpu_logical_map_mpidr(u32 cpu);
/***************************fiq debugger **************************************/
void sip_fiq_debugger_enable_fiq(bool enable, uint32_t tgt_cpu);
void sip_fiq_debugger_enable_debug(bool enable);
@@ -195,49 +247,59 @@
int sip_fiq_debugger_sdei_switch_cpu(u32 cur_cpu, u32 target_cpu, u32 flag);
int sip_fiq_debugger_is_enabled(void);
int sip_fiq_debugger_sdei_get_event_id(u32 *fiq, u32 *sw_cpu, u32 *flag);
+int sip_fiq_control(u32 sub_func, u32 irq, unsigned long data);
+int sip_wdt_config(u32 sub_func, u32 arg1, u32 arg2, u32 arg3);
+int sip_hdmirx_config(u32 sub_func, u32 arg1, u32 arg2, u32 arg3);
+int sip_hdcpkey_init(u32 hdcp_id);
#else
static inline struct arm_smccc_res sip_smc_get_atf_version(void)
{
- struct arm_smccc_res tmp = {0};
+ struct arm_smccc_res tmp = { .a0 = SIP_RET_NOT_SUPPORTED };
return tmp;
}
static inline struct arm_smccc_res sip_smc_get_sip_version(void)
{
- struct arm_smccc_res tmp = {0};
+ struct arm_smccc_res tmp = { .a0 = SIP_RET_NOT_SUPPORTED };
return tmp;
}
static inline struct arm_smccc_res sip_smc_dram(u32 arg0, u32 arg1, u32 arg2)
{
- struct arm_smccc_res tmp = {0};
+ struct arm_smccc_res tmp = { .a0 = SIP_RET_NOT_SUPPORTED };
return tmp;
}
static inline struct arm_smccc_res sip_smc_request_share_mem
(u32 page_num, share_page_type_t page_type)
{
- struct arm_smccc_res tmp = {0};
+ struct arm_smccc_res tmp = { .a0 = SIP_RET_NOT_SUPPORTED };
return tmp;
}
static inline struct arm_smccc_res sip_smc_mcu_el3fiq
(u32 arg0, u32 arg1, u32 arg2)
{
- struct arm_smccc_res tmp = {0};
+ struct arm_smccc_res tmp = { .a0 = SIP_RET_NOT_SUPPORTED };
return tmp;
}
static inline struct arm_smccc_res
sip_smc_vpu_reset(u32 arg0, u32 arg1, u32 arg2)
{
- struct arm_smccc_res tmp = {0};
+ struct arm_smccc_res tmp = { .a0 = SIP_RET_NOT_SUPPORTED };
+ return tmp;
+}
+
+static inline struct arm_smccc_res sip_smc_get_suspend_info(u32 info)
+{
+ struct arm_smccc_res tmp = { .a0 = SIP_RET_NOT_SUPPORTED };
return tmp;
}
static inline struct arm_smccc_res sip_smc_lastlog_request(void)
{
- struct arm_smccc_res tmp = {0};
+ struct arm_smccc_res tmp = { .a0 = SIP_RET_NOT_SUPPORTED };
return tmp;
}
@@ -246,19 +308,17 @@
return 0;
}
-static inline int sip_smc_get_suspend_info(u32 info)
-{
- return 0;
-}
-
static inline int sip_smc_virtual_poweroff(void) { return 0; }
static inline int sip_smc_remotectl_config(u32 func, u32 data) { return 0; }
-static inline u32 sip_smc_secure_reg_read(u32 addr_phy) { return 0; }
static inline int sip_smc_secure_reg_write(u32 addr_phy, u32 val) { return 0; }
-static inline int sip_smc_soc_bus_div(u32 arg0, u32 arg1, u32 arg2)
+static inline u32 sip_smc_secure_reg_read(u32 addr_phy) { return 0; }
+
+static inline struct arm_smccc_res sip_smc_bus_config(u32 arg0, u32 arg1, u32 arg2)
{
- return 0;
+ struct arm_smccc_res tmp = { .a0 = SIP_RET_NOT_SUPPORTED };
+ return tmp;
}
+
static inline struct dram_addrmap_info *sip_smc_get_dram_map(void)
{
return NULL;
@@ -279,6 +339,20 @@
return tmp;
}
+
+static inline void __iomem *sip_hdcp_request_share_memory(int id)
+{
+ return NULL;
+}
+
+static inline struct arm_smccc_res sip_hdcp_config(u32 arg0, u32 arg1, u32 arg2)
+{
+ struct arm_smccc_res tmp = { .a0 = SIP_RET_NOT_SUPPORTED };
+
+ return tmp;
+}
+
+static inline ulong sip_cpu_logical_map_mpidr(u32 cpu) { return 0; }
/***************************fiq debugger **************************************/
static inline void sip_fiq_debugger_enable_fiq
@@ -303,6 +377,36 @@
static inline int sip_fiq_debugger_sdei_switch_cpu(u32 cur_cpu, u32 target_cpu,
u32 flag) { return 0; }
static inline int sip_fiq_debugger_is_enabled(void) { return 0; }
+static inline int sip_fiq_debugger_sdei_get_event_id(u32 *fiq, u32 *sw_cpu, u32 *flag)
+{
+ return SIP_RET_NOT_SUPPORTED;
+}
+
+static inline int sip_fiq_control(u32 sub_func, u32 irq, unsigned long data)
+{
+ return 0;
+}
+
+static inline int sip_wdt_config(u32 sub_func,
+ u32 arg1,
+ u32 arg2,
+ u32 arg3)
+{
+ return 0;
+}
+
+static inline int sip_hdmirx_config(u32 sub_func,
+ u32 arg1,
+ u32 arg2,
+ u32 arg3)
+{
+ return SIP_RET_NOT_SUPPORTED;
+}
+
+static inline int sip_hdcpkey_init(u32 hdcp_id)
+{
+ return 0;
+}
#endif
/* 32-bit OP-TEE context, never change order of members! */
--
Gitblit v1.6.2