1 /* SPDX-License-Identifier: GPL-2.0 */
2 /* Copyright (c) 2017 The Linux Foundation. All rights reserved. */
7 struct a6xx_hfi_queue_table_header
{
9 u32 size
; /* Size of the queue table in dwords */
10 u32 qhdr0_offset
; /* Offset of the first queue header */
11 u32 qhdr_size
; /* Size of the queue headers */
12 u32 num_queues
; /* Number of total queues */
13 u32 active_queues
; /* Number of active queues */
16 struct a6xx_hfi_queue_header
{
31 struct a6xx_hfi_queue
{
32 struct a6xx_hfi_queue_header
*header
;
38 /* This is the outgoing queue to the GMU */
39 #define HFI_COMMAND_QUEUE 0
41 /* THis is the incoming response queue from the GMU */
42 #define HFI_RESPONSE_QUEUE 1
44 #define HFI_HEADER_ID(msg) ((msg) & 0xff)
45 #define HFI_HEADER_SIZE(msg) (((msg) >> 8) & 0xff)
46 #define HFI_HEADER_SEQNUM(msg) (((msg) >> 20) & 0xfff)
48 /* FIXME: Do we need this or can we use ARRAY_SIZE? */
49 #define HFI_RESPONSE_PAYLOAD_SIZE 16
51 /* HFI message types */
55 #define HFI_MSG_ACK_V1 2
57 #define HFI_F2H_MSG_ACK 126
59 struct a6xx_hfi_msg_response
{
63 u32 payload
[HFI_RESPONSE_PAYLOAD_SIZE
];
66 #define HFI_F2H_MSG_ERROR 100
68 struct a6xx_hfi_msg_error
{
74 #define HFI_H2F_MSG_INIT 0
76 struct a6xx_hfi_msg_gmu_init_cmd
{
84 #define HFI_H2F_MSG_FW_VERSION 1
86 struct a6xx_hfi_msg_fw_version
{
88 u32 supported_version
;
91 #define HFI_H2F_MSG_PERF_TABLE 4
98 struct perf_gx_level
{
104 struct a6xx_hfi_msg_perf_table_v1
{
109 struct perf_level gx_votes
[16];
110 struct perf_level cx_votes
[4];
113 struct a6xx_hfi_msg_perf_table
{
118 struct perf_gx_level gx_votes
[16];
119 struct perf_level cx_votes
[4];
122 #define HFI_H2F_MSG_BW_TABLE 3
124 struct a6xx_hfi_msg_bw_table
{
129 u32 cnoc_wait_bitmask
;
130 u32 ddr_wait_bitmask
;
131 u32 cnoc_cmds_addrs
[6];
132 u32 cnoc_cmds_data
[2][6];
133 u32 ddr_cmds_addrs
[8];
134 u32 ddr_cmds_data
[16][8];
137 #define HFI_H2F_MSG_TEST 5
139 struct a6xx_hfi_msg_test
{
143 #define HFI_H2F_MSG_START 10
145 struct a6xx_hfi_msg_start
{
149 #define HFI_H2F_MSG_CORE_FW_START 14
151 struct a6xx_hfi_msg_core_fw_start
{
156 #define HFI_H2F_MSG_GX_BW_PERF_VOTE 30
158 struct a6xx_hfi_gx_bw_perf_vote_cmd
{
165 #define HFI_H2F_MSG_PREPARE_SLUMBER 33
167 struct a6xx_hfi_prep_slumber_cmd
{