1 /* SPDX-License-Identifier: GPL-2.0
3 * Copyright 2016-2019 HabanaLabs, Ltd.
11 #include <linux/types.h>
23 struct hl_eq_header hdr
;
27 #define HL_EQ_ENTRY_SIZE sizeof(struct hl_eq_entry)
29 #define EQ_CTL_READY_SHIFT 31
30 #define EQ_CTL_READY_MASK 0x80000000
32 #define EQ_CTL_EVENT_TYPE_SHIFT 16
33 #define EQ_CTL_EVENT_TYPE_MASK 0x03FF0000
36 PQ_INIT_STATUS_NA
= 0,
37 PQ_INIT_STATUS_READY_FOR_CP
,
38 PQ_INIT_STATUS_READY_FOR_HOST
42 * ArmCP Primary Queue Packets
44 * During normal operation, the host's kernel driver needs to send various
45 * messages to ArmCP, usually either to SET some value into a H/W periphery or
46 * to GET the current value of some H/W periphery. For example, SET the
47 * frequency of MME/TPC and GET the value of the thermal sensor.
49 * These messages can be initiated either by the User application or by the
50 * host's driver itself, e.g. power management code. In either case, the
51 * communication from the host's driver to ArmCP will *always* be in
52 * synchronous mode, meaning that the host will send a single message and poll
53 * until the message was acknowledged and the results are ready (if results are
56 * This means that only a single message can be sent at a time and the host's
57 * driver must wait for its result before sending the next message. Having said
58 * that, because these are control messages which are sent in a relatively low
59 * frequency, this limitation seems acceptable. It's important to note that
60 * in case of multiple devices, messages to different devices *can* be sent
63 * The message, inputs/outputs (if relevant) and fence object will be located
64 * on the device DDR at an address that will be determined by the host's driver.
65 * During device initialization phase, the host will pass to ArmCP that address.
66 * Most of the message types will contain inputs/outputs inside the message
67 * itself. The common part of each message will contain the opcode of the
68 * message (its type) and a field representing a fence object.
70 * When the host's driver wishes to send a message to ArmCP, it will write the
71 * message contents to the device DDR, clear the fence object and then write the
72 * value 484 to the mmGIC_DISTRIBUTOR__5_GICD_SETSPI_NSR register to issue
73 * the 484 interrupt-id to the ARM core.
75 * Upon receiving the 484 interrupt-id, ArmCP will read the message from the
76 * DDR. In case the message is a SET operation, ArmCP will first perform the
77 * operation and then write to the fence object on the device DDR. In case the
78 * message is a GET operation, ArmCP will first fill the results section on the
79 * device DDR and then write to the fence object. If an error occurred, ArmCP
80 * will fill the rc field with the right error code.
82 * In the meantime, the host's driver will poll on the fence object. Once the
83 * host sees that the fence object is signaled, it will read the results from
84 * the device DDR (if relevant) and resume the code execution in the host's
87 * To use QMAN packets, the opcode must be the QMAN opcode, shifted by 8
88 * so the value being put by the host's driver matches the value read by ArmCP
90 * Non-QMAN packets should be limited to values 1 through (2^8 - 1)
92 * Detailed description:
94 * ARMCP_PACKET_DISABLE_PCI_ACCESS -
95 * After receiving this packet the embedded CPU must NOT issue PCI
96 * transactions (read/write) towards the Host CPU. This also include
97 * sending MSI-X interrupts.
98 * This packet is usually sent before the device is moved to D3Hot state.
100 * ARMCP_PACKET_ENABLE_PCI_ACCESS -
101 * After receiving this packet the embedded CPU is allowed to issue PCI
102 * transactions towards the Host CPU, including sending MSI-X interrupts.
103 * This packet is usually send after the device is moved to D0 state.
105 * ARMCP_PACKET_TEMPERATURE_GET -
106 * Fetch the current temperature / Max / Max Hyst / Critical /
107 * Critical Hyst of a specified thermal sensor. The packet's
108 * arguments specify the desired sensor and the field to get.
110 * ARMCP_PACKET_VOLTAGE_GET -
111 * Fetch the voltage / Max / Min of a specified sensor. The packet's
112 * arguments specify the sensor and type.
114 * ARMCP_PACKET_CURRENT_GET -
115 * Fetch the current / Max / Min of a specified sensor. The packet's
116 * arguments specify the sensor and type.
118 * ARMCP_PACKET_FAN_SPEED_GET -
119 * Fetch the speed / Max / Min of a specified fan. The packet's
120 * arguments specify the sensor and type.
122 * ARMCP_PACKET_PWM_GET -
123 * Fetch the pwm value / mode of a specified pwm. The packet's
124 * arguments specify the sensor and type.
126 * ARMCP_PACKET_PWM_SET -
127 * Set the pwm value / mode of a specified pwm. The packet's
128 * arguments specify the sensor, type and value.
130 * ARMCP_PACKET_FREQUENCY_SET -
131 * Set the frequency of a specified PLL. The packet's arguments specify
132 * the PLL and the desired frequency. The actual frequency in the device
133 * might differ from the requested frequency.
135 * ARMCP_PACKET_FREQUENCY_GET -
136 * Fetch the frequency of a specified PLL. The packet's arguments specify
139 * ARMCP_PACKET_LED_SET -
140 * Set the state of a specified led. The packet's arguments
141 * specify the led and the desired state.
143 * ARMCP_PACKET_I2C_WR -
144 * Write 32-bit value to I2C device. The packet's arguments specify the
145 * I2C bus, address and value.
147 * ARMCP_PACKET_I2C_RD -
148 * Read 32-bit value from I2C device. The packet's arguments specify the
149 * I2C bus and address.
151 * ARMCP_PACKET_INFO_GET -
152 * Fetch information from the device as specified in the packet's
153 * structure. The host's driver passes the max size it allows the ArmCP to
154 * write to the structure, to prevent data corruption in case of
155 * mismatched driver/FW versions.
157 * ARMCP_PACKET_FLASH_PROGRAM_REMOVED - this packet was removed
159 * ARMCP_PACKET_UNMASK_RAZWI_IRQ -
160 * Unmask the given IRQ. The IRQ number is specified in the value field.
161 * The packet is sent after receiving an interrupt and printing its
162 * relevant information.
164 * ARMCP_PACKET_UNMASK_RAZWI_IRQ_ARRAY -
165 * Unmask the given IRQs. The IRQs numbers are specified in an array right
166 * after the armcp_packet structure, where its first element is the array
167 * length. The packet is sent after a soft reset was done in order to
168 * handle any interrupts that were sent during the reset process.
170 * ARMCP_PACKET_TEST -
171 * Test packet for ArmCP connectivity. The CPU will put the fence value
172 * in the result field.
174 * ARMCP_PACKET_FREQUENCY_CURR_GET -
175 * Fetch the current frequency of a specified PLL. The packet's arguments
178 * ARMCP_PACKET_MAX_POWER_GET -
179 * Fetch the maximal power of the device.
181 * ARMCP_PACKET_MAX_POWER_SET -
182 * Set the maximal power of the device. The packet's arguments specify
185 * ARMCP_PACKET_EEPROM_DATA_GET -
186 * Get EEPROM data from the ArmCP kernel. The buffer is specified in the
187 * addr field. The CPU will put the returned data size in the result
188 * field. In addition, the host's driver passes the max size it allows the
189 * ArmCP to write to the structure, to prevent data corruption in case of
190 * mismatched driver/FW versions.
194 enum armcp_packet_id
{
195 ARMCP_PACKET_DISABLE_PCI_ACCESS
= 1, /* internal */
196 ARMCP_PACKET_ENABLE_PCI_ACCESS
, /* internal */
197 ARMCP_PACKET_TEMPERATURE_GET
, /* sysfs */
198 ARMCP_PACKET_VOLTAGE_GET
, /* sysfs */
199 ARMCP_PACKET_CURRENT_GET
, /* sysfs */
200 ARMCP_PACKET_FAN_SPEED_GET
, /* sysfs */
201 ARMCP_PACKET_PWM_GET
, /* sysfs */
202 ARMCP_PACKET_PWM_SET
, /* sysfs */
203 ARMCP_PACKET_FREQUENCY_SET
, /* sysfs */
204 ARMCP_PACKET_FREQUENCY_GET
, /* sysfs */
205 ARMCP_PACKET_LED_SET
, /* debugfs */
206 ARMCP_PACKET_I2C_WR
, /* debugfs */
207 ARMCP_PACKET_I2C_RD
, /* debugfs */
208 ARMCP_PACKET_INFO_GET
, /* IOCTL */
209 ARMCP_PACKET_FLASH_PROGRAM_REMOVED
,
210 ARMCP_PACKET_UNMASK_RAZWI_IRQ
, /* internal */
211 ARMCP_PACKET_UNMASK_RAZWI_IRQ_ARRAY
, /* internal */
212 ARMCP_PACKET_TEST
, /* internal */
213 ARMCP_PACKET_FREQUENCY_CURR_GET
, /* sysfs */
214 ARMCP_PACKET_MAX_POWER_GET
, /* sysfs */
215 ARMCP_PACKET_MAX_POWER_SET
, /* sysfs */
216 ARMCP_PACKET_EEPROM_DATA_GET
, /* sysfs */
219 #define ARMCP_PACKET_FENCE_VAL 0xFE8CE7A5
221 #define ARMCP_PKT_CTL_RC_SHIFT 12
222 #define ARMCP_PKT_CTL_RC_MASK 0x0000F000
224 #define ARMCP_PKT_CTL_OPCODE_SHIFT 16
225 #define ARMCP_PKT_CTL_OPCODE_MASK 0x1FFF0000
227 struct armcp_packet
{
229 __le64 value
; /* For SET packets */
230 __le64 result
; /* For GET packets */
231 __le64 addr
; /* For PQ */
236 __le32 fence
; /* Signal to host that message is completed */
239 struct {/* For temperature/current/voltage/fan/pwm get/set */
244 struct { /* For I2C read/write */
248 __u8 pad
; /* unused */
251 /* For frequency get/set */
257 /* For get Armcp info/EEPROM data */
258 __le32 data_max_size
;
262 struct armcp_unmask_irq_arr_packet
{
263 struct armcp_packet armcp_pkt
;
268 enum armcp_packet_rc
{
269 armcp_packet_success
,
270 armcp_packet_invalid
,
274 enum armcp_temp_type
{
282 enum armcp_in_attributes
{
288 enum armcp_curr_attributes
{
294 enum armcp_fan_attributes
{
300 enum armcp_pwm_attributes
{
305 /* Event Queue Packets */
307 struct eq_generic_event
{
315 #define CARD_NAME_MAX_LEN 16
316 #define VERSION_MAX_LEN 128
317 #define ARMCP_MAX_SENSORS 128
319 struct armcp_sensor
{
325 * struct armcp_info - Info from ArmCP that is necessary to the host's driver
326 * @sensors: available sensors description.
327 * @kernel_version: ArmCP linux kernel version.
328 * @reserved: reserved field.
329 * @cpld_version: CPLD programmed F/W version.
330 * @infineon_version: Infineon main DC-DC version.
331 * @fuse_version: silicon production FUSE information.
332 * @thermal_version: thermald S/W version.
333 * @armcp_version: ArmCP S/W version.
334 * @dram_size: available DRAM size.
335 * @card_name: card name that will be displayed in HWMON subsystem on the host
338 struct armcp_sensor sensors
[ARMCP_MAX_SENSORS
];
339 __u8 kernel_version
[VERSION_MAX_LEN
];
342 __le32 infineon_version
;
343 __u8 fuse_version
[VERSION_MAX_LEN
];
344 __u8 thermal_version
[VERSION_MAX_LEN
];
345 __u8 armcp_version
[VERSION_MAX_LEN
];
347 char card_name
[CARD_NAME_MAX_LEN
];
350 #endif /* ARMCP_IF_H */