1 /* SPDX-License-Identifier: GPL-2.0
3 * Copyright 2019-2020 HabanaLabs, Ltd.
11 #include <uapi/misc/habanalabs.h>
12 #include "../common/habanalabs.h"
13 #include "../include/common/hl_boot_if.h"
14 #include "../include/gaudi/gaudi_packets.h"
15 #include "../include/gaudi/gaudi.h"
16 #include "../include/gaudi/gaudi_async_events.h"
17 #include "../include/gaudi/gaudi_fw_if.h"
19 #define NUMBER_OF_EXT_HW_QUEUES 8
20 #define NUMBER_OF_CMPLT_QUEUES NUMBER_OF_EXT_HW_QUEUES
21 #define NUMBER_OF_CPU_HW_QUEUES 1
22 #define NUMBER_OF_INT_HW_QUEUES 100
23 #define NUMBER_OF_HW_QUEUES (NUMBER_OF_EXT_HW_QUEUES + \
24 NUMBER_OF_CPU_HW_QUEUES + \
25 NUMBER_OF_INT_HW_QUEUES)
27 /* 10 NIC QMANs, DMA5 QMAN, TPC7 QMAN */
28 #define NUMBER_OF_COLLECTIVE_QUEUES 12
29 #define NUMBER_OF_SOBS_IN_GRP 11
32 * Number of MSI interrupts IDS:
33 * Each completion queue has 1 ID
34 * The event queue has 1 ID
36 #define NUMBER_OF_INTERRUPTS (NUMBER_OF_CMPLT_QUEUES + \
37 NUMBER_OF_CPU_HW_QUEUES)
39 #if (NUMBER_OF_INTERRUPTS > GAUDI_MSI_ENTRIES)
40 #error "Number of MSI interrupts must be smaller or equal to GAUDI_MSI_ENTRIES"
43 #define CORESIGHT_TIMEOUT_USEC 100000 /* 100 ms */
45 #define GAUDI_MAX_CLK_FREQ 2200000000ull /* 2200 MHz */
47 #define MAX_POWER_DEFAULT_PCI 200000 /* 200W */
48 #define MAX_POWER_DEFAULT_PMC 350000 /* 350W */
50 #define GAUDI_CPU_TIMEOUT_USEC 30000000 /* 30s */
52 #define TPC_ENABLED_MASK 0xFF
54 #define GAUDI_HBM_SIZE_32GB 0x800000000ull
55 #define GAUDI_HBM_DEVICES 4
56 #define GAUDI_HBM_CHANNELS 8
57 #define GAUDI_HBM_CFG_BASE (mmHBM0_BASE - CFG_BASE)
58 #define GAUDI_HBM_CFG_OFFSET (mmHBM1_BASE - mmHBM0_BASE)
60 #define DMA_MAX_TRANSFER_SIZE U32_MAX
62 #define GAUDI_DEFAULT_CARD_NAME "HL2000"
64 #define GAUDI_MAX_PENDING_CS SZ_16K
66 #if !IS_MAX_PENDING_CS_VALID(GAUDI_MAX_PENDING_CS)
67 #error "GAUDI_MAX_PENDING_CS must be power of 2 and greater than 1"
70 #define PCI_DMA_NUMBER_OF_CHNLS 2
71 #define HBM_DMA_NUMBER_OF_CHNLS 6
72 #define DMA_NUMBER_OF_CHNLS (PCI_DMA_NUMBER_OF_CHNLS + \
73 HBM_DMA_NUMBER_OF_CHNLS)
75 #define MME_NUMBER_OF_SLAVE_ENGINES 2
76 #define MME_NUMBER_OF_ENGINES (MME_NUMBER_OF_MASTER_ENGINES + \
77 MME_NUMBER_OF_SLAVE_ENGINES)
78 #define MME_NUMBER_OF_QMANS (MME_NUMBER_OF_MASTER_ENGINES * \
81 #define QMAN_STREAMS 4
83 #define DMA_QMAN_OFFSET (mmDMA1_QM_BASE - mmDMA0_QM_BASE)
84 #define TPC_QMAN_OFFSET (mmTPC1_QM_BASE - mmTPC0_QM_BASE)
85 #define MME_QMAN_OFFSET (mmMME1_QM_BASE - mmMME0_QM_BASE)
86 #define NIC_MACRO_QMAN_OFFSET (mmNIC1_QM0_BASE - mmNIC0_QM0_BASE)
87 #define NIC_ENGINE_QMAN_OFFSET (mmNIC0_QM1_BASE - mmNIC0_QM0_BASE)
89 #define TPC_CFG_OFFSET (mmTPC1_CFG_BASE - mmTPC0_CFG_BASE)
91 #define DMA_CORE_OFFSET (mmDMA1_CORE_BASE - mmDMA0_CORE_BASE)
93 #define QMAN_LDMA_SRC_OFFSET (mmDMA0_CORE_SRC_BASE_LO - mmDMA0_CORE_CFG_0)
94 #define QMAN_LDMA_DST_OFFSET (mmDMA0_CORE_DST_BASE_LO - mmDMA0_CORE_CFG_0)
95 #define QMAN_LDMA_SIZE_OFFSET (mmDMA0_CORE_DST_TSIZE_0 - mmDMA0_CORE_CFG_0)
97 #define QMAN_CPDMA_SRC_OFFSET (mmDMA0_QM_CQ_PTR_LO_4 - mmDMA0_CORE_CFG_0)
98 #define QMAN_CPDMA_DST_OFFSET (mmDMA0_CORE_DST_BASE_LO - mmDMA0_CORE_CFG_0)
99 #define QMAN_CPDMA_SIZE_OFFSET (mmDMA0_QM_CQ_TSIZE_4 - mmDMA0_CORE_CFG_0)
101 #define SIF_RTR_CTRL_OFFSET (mmSIF_RTR_CTRL_1_BASE - mmSIF_RTR_CTRL_0_BASE)
103 #define NIF_RTR_CTRL_OFFSET (mmNIF_RTR_CTRL_1_BASE - mmNIF_RTR_CTRL_0_BASE)
105 #define MME_ACC_OFFSET (mmMME1_ACC_BASE - mmMME0_ACC_BASE)
106 #define SRAM_BANK_OFFSET (mmSRAM_Y0_X1_RTR_BASE - mmSRAM_Y0_X0_RTR_BASE)
108 #define NUM_OF_SOB_IN_BLOCK \
109 (((mmSYNC_MNGR_E_N_SYNC_MNGR_OBJS_SOB_OBJ_2047 - \
110 mmSYNC_MNGR_E_N_SYNC_MNGR_OBJS_SOB_OBJ_0) + 4) >> 2)
112 #define NUM_OF_MONITORS_IN_BLOCK \
113 (((mmSYNC_MNGR_E_N_SYNC_MNGR_OBJS_MON_STATUS_511 - \
114 mmSYNC_MNGR_E_N_SYNC_MNGR_OBJS_MON_STATUS_0) + 4) >> 2)
117 /* DRAM Memory Map */
119 #define CPU_FW_IMAGE_SIZE 0x10000000 /* 256MB */
120 #define MMU_PAGE_TABLES_SIZE 0x0BF00000 /* 191MB */
121 #define MMU_CACHE_MNG_SIZE 0x00100000 /* 1MB */
122 #define RESERVED 0x04000000 /* 64MB */
124 #define CPU_FW_IMAGE_ADDR DRAM_PHYS_BASE
125 #define MMU_PAGE_TABLES_ADDR (CPU_FW_IMAGE_ADDR + CPU_FW_IMAGE_SIZE)
126 #define MMU_CACHE_MNG_ADDR (MMU_PAGE_TABLES_ADDR + MMU_PAGE_TABLES_SIZE)
128 #define DRAM_DRIVER_END_ADDR (MMU_CACHE_MNG_ADDR + MMU_CACHE_MNG_SIZE +\
131 #define DRAM_BASE_ADDR_USER 0x20000000
133 #if (DRAM_DRIVER_END_ADDR > DRAM_BASE_ADDR_USER)
134 #error "Driver must reserve no more than 512MB"
137 /* Internal QMANs PQ sizes */
139 #define MME_QMAN_LENGTH 1024
140 #define MME_QMAN_SIZE_IN_BYTES (MME_QMAN_LENGTH * QMAN_PQ_ENTRY_SIZE)
142 #define HBM_DMA_QMAN_LENGTH 1024
143 #define HBM_DMA_QMAN_SIZE_IN_BYTES \
144 (HBM_DMA_QMAN_LENGTH * QMAN_PQ_ENTRY_SIZE)
146 #define TPC_QMAN_LENGTH 1024
147 #define TPC_QMAN_SIZE_IN_BYTES (TPC_QMAN_LENGTH * QMAN_PQ_ENTRY_SIZE)
149 #define NIC_QMAN_LENGTH 1024
150 #define NIC_QMAN_SIZE_IN_BYTES (NIC_QMAN_LENGTH * QMAN_PQ_ENTRY_SIZE)
153 #define SRAM_USER_BASE_OFFSET GAUDI_DRIVER_SRAM_RESERVED_SIZE_FROM_START
155 /* Virtual address space */
156 #define VA_HOST_SPACE_START 0x1000000000000ull /* 256TB */
157 #define VA_HOST_SPACE_END 0x3FF8000000000ull /* 1PB - 512GB */
158 #define VA_HOST_SPACE_SIZE (VA_HOST_SPACE_END - \
159 VA_HOST_SPACE_START) /* 767TB */
160 #define HOST_SPACE_INTERNAL_CB_SZ SZ_2M
162 #define HW_CAP_PLL BIT(0)
163 #define HW_CAP_HBM BIT(1)
164 #define HW_CAP_MMU BIT(2)
165 #define HW_CAP_MME BIT(3)
166 #define HW_CAP_CPU BIT(4)
167 #define HW_CAP_PCI_DMA BIT(5)
168 #define HW_CAP_MSI BIT(6)
169 #define HW_CAP_CPU_Q BIT(7)
170 #define HW_CAP_HBM_DMA BIT(8)
171 #define HW_CAP_CLK_GATE BIT(9)
172 #define HW_CAP_SRAM_SCRAMBLER BIT(10)
173 #define HW_CAP_HBM_SCRAMBLER BIT(11)
175 #define HW_CAP_NIC0 BIT(14)
176 #define HW_CAP_NIC1 BIT(15)
177 #define HW_CAP_NIC2 BIT(16)
178 #define HW_CAP_NIC3 BIT(17)
179 #define HW_CAP_NIC4 BIT(18)
180 #define HW_CAP_NIC5 BIT(19)
181 #define HW_CAP_NIC6 BIT(20)
182 #define HW_CAP_NIC7 BIT(21)
183 #define HW_CAP_NIC8 BIT(22)
184 #define HW_CAP_NIC9 BIT(23)
185 #define HW_CAP_NIC_MASK GENMASK(23, 14)
186 #define HW_CAP_NIC_SHIFT 14
188 #define HW_CAP_TPC0 BIT(24)
189 #define HW_CAP_TPC1 BIT(25)
190 #define HW_CAP_TPC2 BIT(26)
191 #define HW_CAP_TPC3 BIT(27)
192 #define HW_CAP_TPC4 BIT(28)
193 #define HW_CAP_TPC5 BIT(29)
194 #define HW_CAP_TPC6 BIT(30)
195 #define HW_CAP_TPC7 BIT(31)
196 #define HW_CAP_TPC_MASK GENMASK(31, 24)
197 #define HW_CAP_TPC_SHIFT 24
199 #define GAUDI_CPU_PCI_MSB_ADDR(addr) (((addr) & GENMASK_ULL(49, 39)) >> 39)
200 #define GAUDI_PCI_TO_CPU_ADDR(addr) \
202 (addr) &= ~GENMASK_ULL(49, 39); \
203 (addr) |= BIT_ULL(39); \
205 #define GAUDI_CPU_TO_PCI_ADDR(addr, extension) \
207 (addr) &= ~GENMASK_ULL(49, 39); \
208 (addr) |= (u64) (extension) << 39; \
211 enum gaudi_dma_channels
{
223 enum gaudi_tpc_mask
{
224 GAUDI_TPC_MASK_TPC0
= 0x01,
225 GAUDI_TPC_MASK_TPC1
= 0x02,
226 GAUDI_TPC_MASK_TPC2
= 0x04,
227 GAUDI_TPC_MASK_TPC3
= 0x08,
228 GAUDI_TPC_MASK_TPC4
= 0x10,
229 GAUDI_TPC_MASK_TPC5
= 0x20,
230 GAUDI_TPC_MASK_TPC6
= 0x40,
231 GAUDI_TPC_MASK_TPC7
= 0x80,
232 GAUDI_TPC_MASK_ALL
= 0xFF
235 enum gaudi_nic_mask
{
236 GAUDI_NIC_MASK_NIC0
= 0x01,
237 GAUDI_NIC_MASK_NIC1
= 0x02,
238 GAUDI_NIC_MASK_NIC2
= 0x04,
239 GAUDI_NIC_MASK_NIC3
= 0x08,
240 GAUDI_NIC_MASK_NIC4
= 0x10,
241 GAUDI_NIC_MASK_NIC5
= 0x20,
242 GAUDI_NIC_MASK_NIC6
= 0x40,
243 GAUDI_NIC_MASK_NIC7
= 0x80,
244 GAUDI_NIC_MASK_NIC8
= 0x100,
245 GAUDI_NIC_MASK_NIC9
= 0x200,
246 GAUDI_NIC_MASK_ALL
= 0x3FF
250 * struct gaudi_hw_sob_group - H/W SOB group info.
251 * @hdev: habanalabs device structure.
252 * @kref: refcount of this SOB group. group will reset once refcount is zero.
253 * @base_sob_id: base sob id of this SOB group.
255 struct gaudi_hw_sob_group
{
256 struct hl_device
*hdev
;
261 #define NUM_SOB_GROUPS (HL_RSVD_SOBS * QMAN_STREAMS)
263 * struct gaudi_collective_properties -
264 * holds all SOB groups and queues info reserved for the collective
265 * @hw_sob_group: H/W SOB groups.
266 * @next_sob_group_val: the next value to use for the currently used SOB group.
267 * @curr_sob_group_idx: the index of the currently used SOB group.
268 * @mstr_sob_mask: pre-defined masks for collective master monitors
270 struct gaudi_collective_properties
{
271 struct gaudi_hw_sob_group hw_sob_group
[NUM_SOB_GROUPS
];
272 u16 next_sob_group_val
[QMAN_STREAMS
];
273 u8 curr_sob_group_idx
[QMAN_STREAMS
];
274 u8 mstr_sob_mask
[HL_COLLECTIVE_RSVD_MSTR_MONS
];
278 * struct gaudi_internal_qman_info - Internal QMAN information.
279 * @pq_kernel_addr: Kernel address of the PQ memory area in the host.
280 * @pq_dma_addr: DMA address of the PQ memory area in the host.
281 * @pq_size: Size of allocated host memory for PQ.
283 struct gaudi_internal_qman_info
{
284 void *pq_kernel_addr
;
285 dma_addr_t pq_dma_addr
;
290 * struct gaudi_device - ASIC specific manage structure.
291 * @cpucp_info_get: get information on device from CPU-CP
292 * @hw_queues_lock: protects the H/W queues from concurrent access.
293 * @clk_gate_mutex: protects code areas that require clock gating to be disabled
295 * @internal_qmans: Internal QMANs information. The array size is larger than
296 * the actual number of internal queues because they are not in
298 * @hbm_bar_cur_addr: current address of HBM PCI bar.
299 * @max_freq_value: current max clk frequency.
300 * @events: array that holds all event id's
301 * @events_stat: array that holds histogram of all received events.
302 * @events_stat_aggregate: same as events_stat but doesn't get cleared on reset
303 * @hw_cap_initialized: This field contains a bit per H/W engine. When that
304 * engine is initialized, that bit is set by the driver to
305 * signal we can use this engine in later code paths.
306 * Each bit is cleared upon reset of its corresponding H/W
308 * @multi_msi_mode: whether we are working in multi MSI single MSI mode.
309 * Multi MSI is possible only with IOMMU enabled.
310 * @mmu_cache_inv_pi: PI for MMU cache invalidation flow. The H/W expects an
311 * 8-bit value so use u8.
313 struct gaudi_device
{
314 int (*cpucp_info_get
)(struct hl_device
*hdev
);
316 /* TODO: remove hw_queues_lock after moving to scheduler code */
317 spinlock_t hw_queues_lock
;
318 struct mutex clk_gate_mutex
;
320 struct gaudi_internal_qman_info internal_qmans
[GAUDI_QUEUE_ID_SIZE
];
322 struct gaudi_collective_properties collective_props
;
324 u64 hbm_bar_cur_addr
;
327 u32 events
[GAUDI_EVENT_SIZE
];
328 u32 events_stat
[GAUDI_EVENT_SIZE
];
329 u32 events_stat_aggregate
[GAUDI_EVENT_SIZE
];
330 u32 hw_cap_initialized
;
335 void gaudi_init_security(struct hl_device
*hdev
);
336 void gaudi_add_device_attr(struct hl_device
*hdev
,
337 struct attribute_group
*dev_attr_grp
);
338 void gaudi_set_pll_profile(struct hl_device
*hdev
, enum hl_pll_frequency freq
);
339 int gaudi_debug_coresight(struct hl_device
*hdev
, void *data
);
340 void gaudi_halt_coresight(struct hl_device
*hdev
);
341 int gaudi_get_clk_rate(struct hl_device
*hdev
, u32
*cur_clk
, u32
*max_clk
);
342 void gaudi_mmu_prepare_reg(struct hl_device
*hdev
, u64 reg
, u32 asid
);
344 #endif /* GAUDIP_H_ */