Lines Matching refs:input

231 	struct hl_debug_params_stm *input;
246 input = params->input;
248 if (!input)
254 WREG32(base_reg + 0xD00, lower_32_bits(input->he_mask));
255 WREG32(base_reg + 0xD20, lower_32_bits(input->sp_mask));
257 WREG32(base_reg + 0xD00, upper_32_bits(input->he_mask));
258 WREG32(base_reg + 0xD20, upper_32_bits(input->sp_mask));
264 WREG32(base_reg + 0xEF4, input->id);
268 frequency = input->frequency;
271 WREG32(base_reg + 0xE80, 0x27 | (input->id << 16));
304 struct hl_debug_params_etf *input;
348 input = params->input;
350 if (!input)
354 WREG32(base_reg + 0x28, input->sink_mode);
388 struct hl_debug_params_etr *input;
422 input = params->input;
424 if (!input)
427 if (input->buffer_size == 0) {
434 input->buffer_address, input->buffer_size)) {
440 WREG32(mmPSOC_ETR_RSZ, input->buffer_size);
441 WREG32(mmPSOC_ETR_MODE, input->sink_mode);
452 lower_32_bits(input->buffer_address));
454 upper_32_bits(input->buffer_address));
506 struct hl_debug_params_bmon *input;
520 input = params->input;
522 if (!input)
525 WREG32(base_reg + 0x200, lower_32_bits(input->start_addr0));
526 WREG32(base_reg + 0x204, upper_32_bits(input->start_addr0));
527 WREG32(base_reg + 0x208, lower_32_bits(input->addr_mask0));
528 WREG32(base_reg + 0x20C, upper_32_bits(input->addr_mask0));
529 WREG32(base_reg + 0x240, lower_32_bits(input->start_addr1));
530 WREG32(base_reg + 0x244, upper_32_bits(input->start_addr1));
531 WREG32(base_reg + 0x248, lower_32_bits(input->addr_mask1));
532 WREG32(base_reg + 0x24C, upper_32_bits(input->addr_mask1));
535 WREG32(base_reg + 0x30C, input->bw_win);
536 WREG32(base_reg + 0x308, input->win_capture);
545 WREG32(base_reg + 0x700, pcie_base | 0xB00 | (input->id << 12));
546 WREG32(base_reg + 0x708, pcie_base | 0xA00 | (input->id << 12));
547 WREG32(base_reg + 0x70C, pcie_base | 0xC00 | (input->id << 12));
594 struct hl_debug_params_spmu *input = params->input;
596 if (!input)
599 if (input->event_types_num < 3) {
605 if (input->event_types_num > SPMU_MAX_COUNTERS) {
614 for (i = 0 ; i < input->event_types_num ; i++)
616 input->event_types[i]);