/linux/sound/core/oss/ |
H A D | pcm_oss.c | 533 struct snd_pcm_runtime *runtime = substream->runtime; in snd_pcm_oss_plugin_clear() local 536 plugin = runtime->oss.plugin_first; in snd_pcm_oss_plugin_clear() 542 runtime->oss.plugin_first = runtime->oss.plugin_last = NULL; in snd_pcm_oss_plugin_clear() 548 struct snd_pcm_runtime *runtime = plugin->plug->runtime; in snd_pcm_plugin_insert() local 549 plugin->next = runtime->oss.plugin_first; in snd_pcm_plugin_insert() 551 if (runtime->oss.plugin_first) { in snd_pcm_plugin_insert() 552 runtime->oss.plugin_first->prev = plugin; in snd_pcm_plugin_insert() 553 runtime->oss.plugin_first = plugin; in snd_pcm_plugin_insert() 555 runtime->oss.plugin_last = in snd_pcm_plugin_insert() 556 runtime->oss.plugin_first = plugin; in snd_pcm_plugin_insert() [all …]
|
/linux/sound/core/ |
H A D | pcm_native.c | 260 if (!(substream->runtime->hw.info & SNDRV_PCM_INFO_MMAP)) in hw_support_mmap() 287 &substream->runtime->hw_constraints; in constrain_mask_params() 323 &substream->runtime->hw_constraints; in constrain_interval_params() 359 &substream->runtime->hw_constraints; in constrain_params_by_rules() 528 params->info = substream->runtime->hw.info; in fixup_unreferenced_params() 600 static int period_to_usecs(struct snd_pcm_runtime *runtime) in period_to_usecs() argument 604 if (! runtime->rate) in period_to_usecs() 608 usecs = (750000 / runtime->rate) * runtime->period_size; in period_to_usecs() 609 usecs += ((750000 % runtime->rate) * runtime->period_size) / in period_to_usecs() 610 runtime->rate; in period_to_usecs() [all …]
|
H A D | pcm_lib.c | 37 static inline void update_silence_vars(struct snd_pcm_runtime *runtime, in update_silence_vars() argument 47 delta += runtime->boundary; in update_silence_vars() 48 if ((snd_pcm_uframes_t)delta < runtime->silence_filled) in update_silence_vars() 49 runtime->silence_filled -= delta; in update_silence_vars() 51 runtime->silence_filled = 0; in update_silence_vars() 52 runtime->silence_start = new_ptr; in update_silence_vars() 57 * runtime->silence_start: starting pointer to silence area 58 * runtime->silence_filled: size filled with silence 59 * runtime->silence_threshold: threshold from application 60 * runtime->silence_size: maximal size from application [all …]
|
H A D | compress_offload.c | 86 struct snd_compr_runtime *runtime; in snd_compr_open() local 129 runtime = kzalloc(sizeof(*runtime), GFP_KERNEL); in snd_compr_open() 130 if (!runtime) { in snd_compr_open() 135 runtime->state = SNDRV_PCM_STATE_OPEN; in snd_compr_open() 136 init_waitqueue_head(&runtime->sleep); in snd_compr_open() 138 INIT_LIST_HEAD(&runtime->tasks); in snd_compr_open() 140 data->stream.runtime = runtime; in snd_compr_open() 145 kfree(runtime); in snd_compr_open() 155 struct snd_compr_runtime *runtime = data->stream.runtime; in snd_compr_free() local 159 switch (runtime->state) { in snd_compr_free() [all …]
|
/linux/sound/soc/uniphier/ |
H A D | aio-dma.c | 30 struct snd_pcm_runtime *runtime = sub->substream->runtime; in aiodma_pcm_irq() local 31 int bytes = runtime->period_size * in aiodma_pcm_irq() 32 runtime->channels * samples_to_bytes(runtime, 1); in aiodma_pcm_irq() 36 ret = aiodma_rb_set_threshold(sub, runtime->dma_bytes, in aiodma_pcm_irq() 41 aiodma_rb_sync(sub, runtime->dma_addr, runtime->dma_bytes, bytes); in aiodma_pcm_irq() 50 struct snd_compr_runtime *runtime = sub->cstream->runtime; in aiodma_compr_irq() local 51 int bytes = runtime->fragment_size; in aiodma_compr_irq() 99 struct snd_pcm_runtime *runtime = substream->runtime; in uniphier_aiodma_open() local 103 return snd_pcm_hw_constraint_step(runtime, 0, in uniphier_aiodma_open() 110 struct snd_pcm_runtime *runtime = substream->runtime; in uniphier_aiodma_prepare() local [all …]
|
/linux/sound/pci/ctxfi/ |
H A D | ctpcm.c | 103 static void ct_atc_pcm_free_substream(struct snd_pcm_runtime *runtime) in ct_atc_pcm_free_substream() argument 105 struct ct_atc_pcm *apcm = runtime->private_data; in ct_atc_pcm_free_substream() 111 runtime->private_data = NULL; in ct_atc_pcm_free_substream() 118 struct snd_pcm_runtime *runtime = substream->runtime; in ct_pcm_playback_open() local 129 runtime->hw = ct_spdif_passthru_playback_hw; in ct_pcm_playback_open() 132 runtime->hw = ct_pcm_playback_hw; in ct_pcm_playback_open() 134 runtime->hw.channels_max = 8; in ct_pcm_playback_open() 137 err = snd_pcm_hw_constraint_integer(runtime, in ct_pcm_playback_open() 142 err = snd_pcm_hw_constraint_minmax(runtime, in ct_pcm_playback_open() 153 runtime->private_data = apcm; in ct_pcm_playback_open() [all …]
|
/linux/drivers/staging/vc04_services/bcm2835-audio/ |
H A D | bcm2835-pcm.c | 47 static void snd_bcm2835_playback_free(struct snd_pcm_runtime *runtime) in snd_bcm2835_playback_free() argument 49 kfree(runtime->private_data); in snd_bcm2835_playback_free() 88 struct snd_pcm_runtime *runtime = substream->runtime; in snd_bcm2835_playback_open_generic() local 127 runtime->private_data = alsa_stream; in snd_bcm2835_playback_open_generic() 128 runtime->private_free = snd_bcm2835_playback_free; in snd_bcm2835_playback_open_generic() 130 runtime->hw = snd_bcm2835_playback_spdif_hw; in snd_bcm2835_playback_open_generic() 134 runtime->hw = snd_bcm2835_playback_hw; in snd_bcm2835_playback_open_generic() 137 snd_pcm_hw_constraint_step(runtime, in snd_bcm2835_playback_open_generic() 143 snd_pcm_hw_constraint_minmax(runtime, in snd_bcm2835_playback_open_generic() 170 struct snd_pcm_runtime *runtime; in snd_bcm2835_playback_close() local [all …]
|
/linux/sound/isa/sb/ |
H A D | sb16_main.c | 37 #define runtime_format_bits(runtime) \ argument 38 ((unsigned int)pcm_format_to_bits((runtime)->format)) 41 static void snd_sb16_csp_playback_prepare(struct snd_sb *chip, struct snd_pcm_runtime *runtime) in snd_sb16_csp_playback_prepare() argument 49 (runtime_format_bits(runtime) == csp->acc_format)) { in snd_sb16_csp_playback_prepare() 50 /* Supported runtime PCM format for playback */ in snd_sb16_csp_playback_prepare() 57 if (runtime_format_bits(runtime) & (SNDRV_PCM_FMTBIT_S8 | SNDRV_PCM_FMTBIT_U8 | in snd_sb16_csp_playback_prepare() 68 if (csp->ops.csp_autoload(csp, runtime->format, SNDRV_SB_CSP_MODE_DSP_WRITE)) { in snd_sb16_csp_playback_prepare() 76 (runtime->channels > 1) ? in snd_sb16_csp_playback_prepare() 89 static void snd_sb16_csp_capture_prepare(struct snd_sb *chip, struct snd_pcm_runtime *runtime) in snd_sb16_csp_capture_prepare() argument 97 (runtime_format_bits(runtime) == csp->acc_format)) { in snd_sb16_csp_capture_prepare() [all …]
|
H A D | sb8_main.c | 94 struct snd_pcm_runtime *runtime = substream->runtime; in snd_sb8_playback_prepare() local 97 unsigned char stereo = runtime->channels > 1; in snd_sb8_playback_prepare() 100 rate = runtime->rate; in snd_sb8_playback_prepare() 103 if (runtime->format == SNDRV_PCM_FORMAT_S16_LE) { in snd_sb8_playback_prepare() 112 if (runtime->channels > 1) { in snd_sb8_playback_prepare() 158 runtime->dma_area[0] = 0x80; in snd_sb8_playback_prepare() 159 snd_dma_program(dma, runtime->dma_addr, 1, DMA_MODE_WRITE); in snd_sb8_playback_prepare() 167 snd_sbdsp_command(chip, 256 - runtime->rate_den / 2); in snd_sb8_playback_prepare() 176 snd_sbdsp_command(chip, 256 - runtime->rate_den); in snd_sb8_playback_prepare() 187 snd_dma_program(dma, runtime->dma_addr, in snd_sb8_playback_prepare() [all …]
|
/linux/sound/isa/gus/ |
H A D | gus_pcm.c | 65 struct snd_pcm_runtime *runtime = substream->runtime; in snd_gf1_pcm_block_change() local 66 struct gus_pcm_private *pcmp = runtime->private_data; in snd_gf1_pcm_block_change() 72 if (snd_pcm_format_unsigned(runtime->format)) in snd_gf1_pcm_block_change() 74 if (snd_pcm_format_width(runtime->format) == 16) in snd_gf1_pcm_block_change() 77 block.buffer = runtime->dma_area + offset; in snd_gf1_pcm_block_change() 78 block.buf_addr = runtime->dma_addr + offset; in snd_gf1_pcm_block_change() 89 struct snd_pcm_runtime *runtime = substream->runtime; in snd_gf1_pcm_trigger_up() local 90 struct gus_pcm_private *pcmp = runtime->private_data; in snd_gf1_pcm_trigger_up() 108 rate = snd_gf1_translate_freq(gus, runtime->rate << 4); in snd_gf1_pcm_trigger_up() 110 voice_ctrl = snd_pcm_format_width(runtime->format) == 16 ? 0x24 : 0x20; in snd_gf1_pcm_trigger_up() [all …]
|
/linux/sound/pci/emu10k1/ |
H A D | emupcm.c | 33 epcm->substream->runtime->hw->pointer(emu, epcm->substream), in snd_emu10k1_pcm_interrupt() 45 if (emu->pcm_capture_substream->runtime->mode == SNDRV_PCM_MODE_FRAME) in snd_emu10k1_pcm_ac97adc_interrupt() 57 if (emu->pcm_capture_mic_substream->runtime->mode == SNDRV_PCM_MODE_FRAME) in snd_emu10k1_pcm_ac97mic_interrupt() 69 if (emu->pcm_capture_efx_substream->runtime->mode == SNDRV_PCM_MODE_FRAME) in snd_emu10k1_pcm_efx_interrupt() 186 struct snd_pcm_runtime *runtime) in snd_emu10k1_constrain_capture_rates() argument 190 runtime->hw.rates = SNDRV_PCM_RATE_11025 | \ in snd_emu10k1_constrain_capture_rates() 193 runtime->hw.rate_min = 11025; in snd_emu10k1_constrain_capture_rates() 194 runtime->hw.rate_max = 44100; in snd_emu10k1_constrain_capture_rates() 196 runtime->hw.rates = SNDRV_PCM_RATE_8000_48000 | in snd_emu10k1_constrain_capture_rates() 203 struct snd_pcm_runtime *runtime) in snd_emu1010_constrain_efx_rate() argument [all …]
|
H A D | p16v.c | 155 struct snd_pcm_runtime *runtime = substream->runtime; in snd_p16v_pcm_open_playback_channel() local 163 runtime->hw = snd_p16v_playback_hw; in snd_p16v_pcm_open_playback_channel() 173 err = snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS); in snd_p16v_pcm_open_playback_channel() 183 struct snd_pcm_runtime *runtime = substream->runtime; in snd_p16v_pcm_open_capture_channel() local 191 runtime->hw = snd_p16v_capture_hw; in snd_p16v_pcm_open_capture_channel() 193 err = snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS); in snd_p16v_pcm_open_capture_channel() 239 struct snd_pcm_runtime *runtime = substream->runtime; in snd_p16v_pcm_prepare_playback() local 242 u32 period_size_bytes = frames_to_bytes(runtime, runtime->period_size); in snd_p16v_pcm_prepare_playback() 251 channel, runtime->rate, runtime->format, runtime->channels, in snd_p16v_pcm_prepare_playback() 252 runtime->buffer_size, runtime->period_size, in snd_p16v_pcm_prepare_playback() [all …]
|
/linux/sound/soc/dwc/ |
H A D | dwc-pcm.c | 26 struct snd_pcm_runtime *runtime, unsigned int tx_ptr, \ 29 const u##sample_bits (*p)[2] = (void *)runtime->dma_area; \ 30 unsigned int period_pos = tx_ptr % runtime->period_size; \ 37 if (++tx_ptr >= runtime->buffer_size) \ 40 *period_elapsed = period_pos >= runtime->period_size; \ 46 struct snd_pcm_runtime *runtime, unsigned int rx_ptr, \ 49 u##sample_bits (*p)[2] = (void *)runtime->dma_area; \ 50 unsigned int period_pos = rx_ptr % runtime->period_size; \ 57 if (++rx_ptr >= runtime->buffer_size) \ 60 *period_elapsed = period_pos >= runtime->period_size; \ [all …]
|
/linux/sound/soc/qcom/qdsp6/ |
H A D | q6apm-dai.c | 221 struct snd_pcm_runtime *runtime = substream->runtime; in q6apm_dai_prepare() local 222 struct q6apm_dai_rtd *prtd = runtime->private_data; in q6apm_dai_prepare() 238 cfg.sample_rate = runtime->rate; in q6apm_dai_prepare() 239 cfg.num_channels = runtime->channels; in q6apm_dai_prepare() 242 audioreach_set_default_channel_mapping(cfg.channel_map, runtime->channels); in q6apm_dai_prepare() 286 for (i = 0; i < runtime->periods; i++) in q6apm_dai_prepare() 300 struct snd_pcm_runtime *runtime = substream->runtime; in q6apm_dai_trigger() local 301 struct q6apm_dai_rtd *prtd = runtime->private_data; in q6apm_dai_trigger() 330 struct snd_pcm_runtime *runtime = substream->runtime; in q6apm_dai_open() local 360 runtime->hw = q6apm_dai_hardware_playback; in q6apm_dai_open() [all …]
|
/linux/block/ |
H A D | blk-pm.c | 9 * blk_pm_runtime_init - Block layer runtime PM initialization routine 14 * Initialize runtime-PM-related fields for @q and start auto suspend for 15 * @dev. Drivers that want to take advantage of request-based runtime PM 17 * request queue @q has been allocated, and runtime PM for it can not happen 22 * the autosuspend delay is set to -1 to make runtime suspend impossible 26 * The block layer runtime PM is request based, so only works for drivers 39 * blk_pre_runtime_suspend - Pre runtime suspend check 43 * This function will check if runtime suspend is allowed for the device 45 * are requests pending, the device can not be runtime suspended; otherwise, 50 * runtime PM core will try to autosuspend it some time later. [all …]
|
/linux/drivers/media/pci/cobalt/ |
H A D | cobalt-alsa-pcm.c | 102 struct snd_pcm_runtime *runtime; in cobalt_alsa_announce_pcm_data() local 119 runtime = substream->runtime; in cobalt_alsa_announce_pcm_data() 120 if (runtime == NULL) { in cobalt_alsa_announce_pcm_data() 121 dprintk("runtime was NULL\n"); in cobalt_alsa_announce_pcm_data() 124 is_s32 = runtime->format == SNDRV_PCM_FORMAT_S32_LE; in cobalt_alsa_announce_pcm_data() 126 stride = runtime->frame_bits >> 3; in cobalt_alsa_announce_pcm_data() 137 if (runtime->dma_area == NULL) { in cobalt_alsa_announce_pcm_data() 143 if (oldptr + length >= runtime->buffer_size) { in cobalt_alsa_announce_pcm_data() 144 unsigned int cnt = runtime->buffer_size - oldptr; in cobalt_alsa_announce_pcm_data() 148 sample_cpy(runtime->dma_area + (oldptr + i) * stride, in cobalt_alsa_announce_pcm_data() [all …]
|
/linux/Documentation/power/ |
H A D | runtime_pm.rst | 2 Runtime Power Management Framework for I/O Devices 14 Support for runtime power management (runtime PM) of I/O devices is provided 19 used for queuing all work items related to runtime PM, because this allows 24 * A number of runtime PM fields in the 'power' member of 'struct device' (which 26 be used for synchronizing runtime PM operations with one another. 28 * Three device runtime PM callbacks in 'struct dev_pm_ops' (defined in 31 * A set of helper functions defined in drivers/base/power/runtime.c that can be 32 used for carrying out runtime PM operations in such a way that the 36 The runtime PM callbacks present in 'struct dev_pm_ops', the device runtime PM 38 runtime PM are described below. [all …]
|
/linux/sound/soc/samsung/ |
H A D | idma.c | 66 struct snd_pcm_runtime *runtime = substream->runtime; in idma_enqueue() local 67 struct idma_ctrl *prtd = substream->runtime->private_data; in idma_enqueue() 88 val |= (((runtime->dma_bytes >> 2) & in idma_enqueue() 102 struct idma_ctrl *prtd = substream->runtime->private_data; in idma_setcallbk() 134 struct idma_ctrl *prtd = substream->runtime->private_data; in idma_done() 144 struct snd_pcm_runtime *runtime = substream->runtime; in idma_hw_params() local 145 struct idma_ctrl *prtd = substream->runtime->private_data; in idma_hw_params() 155 runtime->dma_bytes = params_buffer_bytes(params); in idma_hw_params() 157 prtd->start = prtd->pos = runtime->dma_addr; in idma_hw_params() 160 prtd->end = runtime->dma_addr + runtime->dma_bytes; in idma_hw_params() [all …]
|
/linux/sound/firewire/fireface/ |
H A D | amdtp-ff.c | 36 struct snd_pcm_runtime *runtime = pcm->runtime; in write_pcm_s32() local 43 pcm_buffer_pointer %= runtime->buffer_size; in write_pcm_s32() 45 src = (void *)runtime->dma_area + in write_pcm_s32() 46 frames_to_bytes(runtime, pcm_buffer_pointer); in write_pcm_s32() 47 remaining_frames = runtime->buffer_size - pcm_buffer_pointer; in write_pcm_s32() 56 src = (void *)runtime->dma_area; in write_pcm_s32() 66 struct snd_pcm_runtime *runtime = pcm->runtime; in read_pcm_s32() local 73 pcm_buffer_pointer %= runtime->buffer_size; in read_pcm_s32() 75 dst = (void *)runtime->dma_area + in read_pcm_s32() 76 frames_to_bytes(runtime, pcm_buffer_pointer); in read_pcm_s32() [all …]
|
/linux/sound/soc/sof/intel/ |
H A D | hda-pcm.c | 104 struct hdac_stream *hstream = substream->runtime->private_data; in hda_dsp_pcm_hw_params() 112 dmab = substream->runtime->dma_buffer_p; in hda_dsp_pcm_hw_params() 155 struct hdac_stream *hstream = substream->runtime->private_data; in hda_dsp_pcm_ack() 156 struct snd_pcm_runtime *runtime = substream->runtime; in hda_dsp_pcm_ack() local 160 appl_pos = frames_to_bytes(runtime, runtime->control->appl_ptr); in hda_dsp_pcm_ack() 161 buf_size = frames_to_bytes(runtime, runtime->buffer_size); in hda_dsp_pcm_ack() 178 struct hdac_stream *hstream = substream->runtime->private_data; in hda_dsp_pcm_trigger() 190 struct hdac_stream *hstream = substream->runtime->private_data; in hda_dsp_pcm_pointer() 210 pos = bytes_to_frames(substream->runtime, pos); in hda_dsp_pcm_pointer() 221 struct snd_pcm_runtime *runtime = substream->runtime; in hda_dsp_pcm_open() local [all …]
|
/linux/drivers/media/pci/cx18/ |
H A D | cx18-alsa-pcm.c | 62 struct snd_pcm_runtime *runtime; in cx18_alsa_announce_pcm_data() local 77 runtime = substream->runtime; in cx18_alsa_announce_pcm_data() 78 if (runtime == NULL) { in cx18_alsa_announce_pcm_data() 79 dprintk("runtime was NULL\n"); in cx18_alsa_announce_pcm_data() 83 stride = runtime->frame_bits >> 3; in cx18_alsa_announce_pcm_data() 95 if (runtime->dma_area == NULL) { in cx18_alsa_announce_pcm_data() 101 if (oldptr + length >= runtime->buffer_size) { in cx18_alsa_announce_pcm_data() 103 runtime->buffer_size - oldptr; in cx18_alsa_announce_pcm_data() 104 memcpy(runtime->dma_area + oldptr * stride, pcm_data, in cx18_alsa_announce_pcm_data() 106 memcpy(runtime->dma_area, pcm_data + cnt * stride, in cx18_alsa_announce_pcm_data() [all …]
|
/linux/drivers/media/pci/ivtv/ |
H A D | ivtv-alsa-pcm.c | 59 struct snd_pcm_runtime *runtime; in ivtv_alsa_announce_pcm_data() local 74 runtime = substream->runtime; in ivtv_alsa_announce_pcm_data() 75 if (runtime == NULL) { in ivtv_alsa_announce_pcm_data() 76 dprintk("runtime was NULL\n"); in ivtv_alsa_announce_pcm_data() 80 stride = runtime->frame_bits >> 3; in ivtv_alsa_announce_pcm_data() 92 if (runtime->dma_area == NULL) { in ivtv_alsa_announce_pcm_data() 98 if (oldptr + length >= runtime->buffer_size) { in ivtv_alsa_announce_pcm_data() 100 runtime->buffer_size - oldptr; in ivtv_alsa_announce_pcm_data() 101 memcpy(runtime->dma_area + oldptr * stride, pcm_data, in ivtv_alsa_announce_pcm_data() 103 memcpy(runtime->dma_area, pcm_data + cnt * stride, in ivtv_alsa_announce_pcm_data() [all …]
|
/linux/sound/firewire/tascam/ |
H A D | tascam-pcm.c | 13 struct snd_pcm_runtime *runtime = substream->runtime; in pcm_init_hw_params() local 14 struct snd_pcm_hardware *hw = &runtime->hw; in pcm_init_hw_params() 19 runtime->hw.formats = SNDRV_PCM_FMTBIT_S32; in pcm_init_hw_params() 23 runtime->hw.formats = SNDRV_PCM_FMTBIT_S32; in pcm_init_hw_params() 32 runtime->hw.channels_min = runtime->hw.channels_max = pcm_channels; in pcm_init_hw_params() 38 snd_pcm_limit_hw_rates(runtime); in pcm_init_hw_params() 40 return amdtp_tscm_add_pcm_hw_constraints(stream, runtime); in pcm_init_hw_params() 77 substream->runtime->hw.rate_min = rate; in pcm_open() 78 substream->runtime->hw.rate_max = rate; in pcm_open() 80 err = snd_pcm_hw_constraint_minmax(substream->runtime, in pcm_open() [all …]
|
/linux/sound/soc/sprd/ |
H A D | sprd-pcm-dma.c | 52 struct snd_pcm_runtime *runtime = substream->runtime; in sprd_pcm_open() local 60 ret = snd_pcm_hw_constraint_step(runtime, 0, in sprd_pcm_open() 66 ret = snd_pcm_hw_constraint_step(runtime, 0, in sprd_pcm_open() 72 ret = snd_pcm_hw_constraint_integer(runtime, in sprd_pcm_open() 81 size = runtime->hw.periods_max * SPRD_PCM_DMA_LINKLIST_SIZE; in sprd_pcm_open() 95 runtime->private_data = dma_private; in sprd_pcm_open() 115 struct snd_pcm_runtime *runtime = substream->runtime; in sprd_pcm_close() local 116 struct sprd_pcm_dma_private *dma_private = runtime->private_data; in sprd_pcm_close() 118 int size = runtime->hw.periods_max * SPRD_PCM_DMA_LINKLIST_SIZE; in sprd_pcm_close() 142 struct snd_pcm_runtime *runtime = substream->runtime; in sprd_pcm_release_dma_channel() local [all …]
|
/linux/drivers/gpu/drm/i915/ |
H A D | intel_device_info.c | 90 const struct intel_runtime_info *runtime, in intel_device_info_print() argument 93 if (runtime->graphics.ip.rel) in intel_device_info_print() 95 runtime->graphics.ip.ver, in intel_device_info_print() 96 runtime->graphics.ip.rel); in intel_device_info_print() 99 runtime->graphics.ip.ver); in intel_device_info_print() 101 if (runtime->media.ip.rel) in intel_device_info_print() 103 runtime->media.ip.ver, in intel_device_info_print() 104 runtime->media.ip.rel); in intel_device_info_print() 107 runtime->media.ip.ver); in intel_device_info_print() 109 drm_printf(p, "graphics stepping: %s\n", intel_step_name(runtime->step.graphics_step)); in intel_device_info_print() [all …]
|