mirror of
https://github.com/physwizz/a155-U-u1.git
synced 2025-10-18 01:15:33 +00:00
25 lines
425 B
C
25 lines
425 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (c) 2020 MediaTek Inc.
|
|
*/
|
|
|
|
#ifndef __SCP_HW_VOTER_DBG_H__
|
|
#define __SCP_HW_VOTER_DBG_H__
|
|
|
|
enum {
|
|
HW_VOTER_DBG_CMD_TEST,
|
|
};
|
|
|
|
struct hwvoter_ipi_test_t {
|
|
unsigned char cmd;
|
|
unsigned char type;
|
|
unsigned char op;
|
|
unsigned char clk_category;
|
|
unsigned short clk_id;
|
|
unsigned short val;
|
|
};
|
|
|
|
extern int scp_hw_voter_dbg_init(void);
|
|
|
|
#endif /* __SCP_HW_VOTER_DBG_H__ */
|