xref: /openbmc/linux/drivers/net/ipa/reg/gsi_reg-v3.1.c (revision d2bb6e657f164e37fe6d170cac869904d9cc26bc)
1 // SPDX-License-Identifier: GPL-2.0
2 
3 /* Copyright (C) 2023 Linaro Ltd. */
4 
5 #include <linux/types.h>
6 
7 #include "../gsi.h"
8 #include "../reg.h"
9 #include "../gsi_reg.h"
10 
11 REG_STRIDE(CH_C_QOS, ch_c_qos, 0x0001c05c + 0x4000 * GSI_EE_AP, 0x80);
12 
13 static const struct reg *reg_array[] = {
14 	[CH_C_QOS]			= &reg_ch_c_qos,
15 };
16 
17 const struct regs gsi_regs_v3_1 = {
18 	.reg_count	= ARRAY_SIZE(reg_array),
19 	.reg		= reg_array,
20 };
21