Home
last modified time | relevance | path

Searched refs:output (Results 1 – 25 of 2264) sorted by relevance

12345678910>>...91

/Linux-v5.4/drivers/gpu/drm/tegra/
Doutput.c17 struct tegra_output *output = connector_to_output(connector); in tegra_output_connector_get_modes() local
25 if (output->panel) { in tegra_output_connector_get_modes()
26 err = output->panel->funcs->get_modes(output->panel); in tegra_output_connector_get_modes()
31 if (output->edid) in tegra_output_connector_get_modes()
32 edid = kmemdup(output->edid, sizeof(*edid), GFP_KERNEL); in tegra_output_connector_get_modes()
33 else if (output->ddc) in tegra_output_connector_get_modes()
34 edid = drm_get_edid(connector, output->ddc); in tegra_output_connector_get_modes()
36 cec_notifier_set_phys_addr_from_edid(output->cec, edid); in tegra_output_connector_get_modes()
50 struct tegra_output *output = connector_to_output(connector); in tegra_output_connector_detect() local
53 if (output->hpd_gpio) { in tegra_output_connector_detect()
[all …]
Drgb.c16 struct tegra_output output; member
23 static inline struct tegra_rgb *to_rgb(struct tegra_output *output) in to_rgb() argument
25 return container_of(output, struct tegra_rgb, output); in to_rgb()
119 struct tegra_output *output = encoder_to_output(encoder); in tegra_rgb_encoder_disable() local
120 struct tegra_rgb *rgb = to_rgb(output); in tegra_rgb_encoder_disable()
122 if (output->panel) in tegra_rgb_encoder_disable()
123 drm_panel_disable(output->panel); in tegra_rgb_encoder_disable()
128 if (output->panel) in tegra_rgb_encoder_disable()
129 drm_panel_unprepare(output->panel); in tegra_rgb_encoder_disable()
134 struct tegra_output *output = encoder_to_output(encoder); in tegra_rgb_encoder_enable() local
[all …]
/Linux-v5.4/drivers/media/platform/qcom/camss/
Dcamss-vfe.c325 struct vfe_output *output = &vfe->line[i].output; in vfe_init_outputs() local
327 output->state = VFE_OUTPUT_OFF; in vfe_init_outputs()
328 output->buf[0] = NULL; in vfe_init_outputs()
329 output->buf[1] = NULL; in vfe_init_outputs()
330 INIT_LIST_HEAD(&output->pending_bufs); in vfe_init_outputs()
343 struct vfe_output *output, u8 sync) in vfe_output_init_addrs() argument
349 output->active_buf = 0; in vfe_output_init_addrs()
351 for (i = 0; i < output->wm_num; i++) { in vfe_output_init_addrs()
352 if (output->buf[0]) in vfe_output_init_addrs()
353 ping_addr = output->buf[0]->addr[i]; in vfe_output_init_addrs()
[all …]
/Linux-v5.4/tools/perf/util/
Dstat-display.c27 fprintf(config->output, "%s%" PRIu64 "%s%.2f", in print_running()
33 fprintf(config->output, " (%.2f%%)", 100.0 * run / ena); in print_running()
43 fprintf(config->output, "%s%.2f%%", config->csv_sep, pct); in print_noise_pct()
45 fprintf(config->output, " ( +-%6.2f%% )", pct); in print_noise_pct()
64 fprintf(config->output, "%s%s", config->csv_sep, cgrp_name); in print_cgroup()
74 fprintf(config->output, "S%d-D%d-C%*d%s%*d%s", in aggr_printout()
85 fprintf(config->output, "S%d-D%*d%s%*d%s", in aggr_printout()
95 fprintf(config->output, "S%*d%s%*d%s", in aggr_printout()
105 fprintf(config->output, "S%d-D%d-C%*d%s", in aggr_printout()
111 fprintf(config->output, "CPU%*d%s ", in aggr_printout()
[all …]
Dzstd.c63 ZSTD_outBuffer output; in zstd_compress_stream_to_records() local
72 output = (ZSTD_outBuffer){ dst, (dst_size > max_record_size) ? in zstd_compress_stream_to_records()
74 ret = ZSTD_compressStream(data->cstream, &output, &input); in zstd_compress_stream_to_records()
75 ZSTD_flushStream(data->cstream, &output); in zstd_compress_stream_to_records()
82 size = output.pos; in zstd_compress_stream_to_records()
97 ZSTD_outBuffer output = { dst, dst_size, 0 }; in zstd_decompress_stream() local
100 ret = ZSTD_decompressStream(data->dstream, &output, &input); in zstd_decompress_stream()
103 src_size, output.size, dst_size, ZSTD_getErrorName(ret)); in zstd_decompress_stream()
106 output.dst = dst + output.pos; in zstd_decompress_stream()
107 output.size = dst_size - output.pos; in zstd_decompress_stream()
[all …]
/Linux-v5.4/tools/perf/scripts/python/
Dpowerpc-hcalls.py27 output = {} variable
164 for opcode in output:
166 time = output[opcode]['time']
167 cnt = output[opcode]['cnt']
168 min_t = output[opcode]['min']
169 max_t = output[opcode]['max']
178 if (opcode in output):
179 output[opcode]['time'] += diff
180 output[opcode]['cnt'] += 1
181 if (output[opcode]['min'] > diff):
[all …]
/Linux-v5.4/drivers/staging/sm750fb/
Dddk750_display.c114 void ddk750_set_logical_disp_out(enum disp_output output) in ddk750_set_logical_disp_out() argument
118 if (output & PNL_2_USAGE) { in ddk750_set_logical_disp_out()
122 reg |= (((output & PNL_2_MASK) >> PNL_2_OFFSET) << in ddk750_set_logical_disp_out()
127 if (output & CRT_2_USAGE) { in ddk750_set_logical_disp_out()
131 reg |= (((output & CRT_2_MASK) >> CRT_2_OFFSET) << in ddk750_set_logical_disp_out()
138 if (output & PRI_TP_USAGE) { in ddk750_set_logical_disp_out()
140 set_display_control(0, (output & PRI_TP_MASK) >> PRI_TP_OFFSET); in ddk750_set_logical_disp_out()
143 if (output & SEC_TP_USAGE) { in ddk750_set_logical_disp_out()
145 set_display_control(1, (output & SEC_TP_MASK) >> SEC_TP_OFFSET); in ddk750_set_logical_disp_out()
148 if (output & PNL_SEQ_USAGE) { in ddk750_set_logical_disp_out()
[all …]
/Linux-v5.4/drivers/hwtracing/intel_th/
Dgth.c34 struct intel_th_output *output; member
56 struct gth_output output[TH_POSSIBLE_OUTPUTS]; member
185 clear_bit(ma->master, gth->output[old_port].master); in master_attr_store()
191 if (gth->output[old_port].output->active) in master_attr_store()
198 if (!gth->output[port].output) { in master_attr_store()
203 set_bit(ma->master, gth->output[port].master); in master_attr_store()
206 if (gth->output[port].output->active) in master_attr_store()
242 OUTPUT_PARM(port, 0x7, 1, 0, output),
243 OUTPUT_PARM(null, BIT(3), 1, 1, output),
244 OUTPUT_PARM(drop, BIT(4), 1, 1, output),
[all …]
/Linux-v5.4/drivers/gpu/drm/atmel-hlcdc/
Datmel_hlcdc_output.c37 struct atmel_hlcdc_rgb_output *output; in atmel_hlcdc_encoder_get_bus_fmt() local
39 output = atmel_hlcdc_encoder_to_rgb_output(encoder); in atmel_hlcdc_encoder_get_bus_fmt()
41 return output->bus_fmt; in atmel_hlcdc_encoder_get_bus_fmt()
71 struct atmel_hlcdc_rgb_output *output; in atmel_hlcdc_attach_endpoint() local
88 output = devm_kzalloc(dev->dev, sizeof(*output), GFP_KERNEL); in atmel_hlcdc_attach_endpoint()
89 if (!output) { in atmel_hlcdc_attach_endpoint()
94 output->bus_fmt = atmel_hlcdc_of_bus_fmt(ep); in atmel_hlcdc_attach_endpoint()
96 if (output->bus_fmt < 0) { in atmel_hlcdc_attach_endpoint()
101 ret = drm_encoder_init(dev, &output->encoder, in atmel_hlcdc_attach_endpoint()
107 output->encoder.possible_crtcs = 0x1; in atmel_hlcdc_attach_endpoint()
[all …]
/Linux-v5.4/arch/arm/boot/dts/
Dkeystone-clocks.dtsi20 clock-output-names = "mainmuxclk";
29 clock-output-names = "chipclk1";
38 clock-output-names = "chipclk1rstiso";
48 clock-output-names = "gemtraceclk";
58 clock-output-names = "chipstmxptclk";
67 clock-output-names = "chipclk12";
76 clock-output-names = "chipclk13";
85 clock-output-names = "paclk13";
94 clock-output-names = "chipclk14";
103 clock-output-names = "chipclk16";
[all …]
Dkeystone-k2hk-clocks.dtsi13 clock-output-names = "arm-pll-clk";
30 clock-output-names = "papllclk";
39 clock-output-names = "ddr-3a-pll-clk";
48 clock-output-names = "ddr-3b-pll-clk";
57 clock-output-names = "tsip";
67 clock-output-names = "srio";
77 clock-output-names = "hyperlink-0";
87 clock-output-names = "gem1";
97 clock-output-names = "gem2";
107 clock-output-names = "gem3";
[all …]
Dkeystone-k2l-clocks.dtsi13 clock-output-names = "arm-pll-clk";
30 clock-output-names = "papllclk";
39 clock-output-names = "ddr-3a-pll-clk";
48 clock-output-names = "dfe";
58 clock-output-names = "pcie";
68 clock-output-names = "gem1";
78 clock-output-names = "gem2";
88 clock-output-names = "gem3";
98 clock-output-names = "tac";
108 clock-output-names = "rac";
[all …]
/Linux-v5.4/drivers/hwtracing/stm/
Dcore.c186 static void stm_output_claim(struct stm_device *stm, struct stm_output *output) in stm_output_claim() argument
188 struct stp_master *master = stm_master(stm, output->master); in stm_output_claim()
191 lockdep_assert_held(&output->lock); in stm_output_claim()
193 if (WARN_ON_ONCE(master->nr_free < output->nr_chans)) in stm_output_claim()
196 bitmap_allocate_region(&master->chan_map[0], output->channel, in stm_output_claim()
197 ilog2(output->nr_chans)); in stm_output_claim()
199 master->nr_free -= output->nr_chans; in stm_output_claim()
203 stm_output_disclaim(struct stm_device *stm, struct stm_output *output) in stm_output_disclaim() argument
205 struct stp_master *master = stm_master(stm, output->master); in stm_output_disclaim()
208 lockdep_assert_held(&output->lock); in stm_output_disclaim()
[all …]
/Linux-v5.4/drivers/gpu/drm/virtio/
Dvirtgpu_display.c86 struct virtio_gpu_output *output = drm_crtc_to_virtio_gpu_output(crtc); in virtio_gpu_crtc_mode_set_nofb() local
88 virtio_gpu_cmd_set_scanout(vgdev, output->index, 0, in virtio_gpu_crtc_mode_set_nofb()
96 struct virtio_gpu_output *output = drm_crtc_to_virtio_gpu_output(crtc); in virtio_gpu_crtc_atomic_enable() local
98 output->enabled = true; in virtio_gpu_crtc_atomic_enable()
106 struct virtio_gpu_output *output = drm_crtc_to_virtio_gpu_output(crtc); in virtio_gpu_crtc_atomic_disable() local
108 virtio_gpu_cmd_set_scanout(vgdev, output->index, 0, 0, 0, 0, 0); in virtio_gpu_crtc_atomic_disable()
109 output->enabled = false; in virtio_gpu_crtc_atomic_disable()
154 struct virtio_gpu_output *output = in virtio_gpu_conn_get_modes() local
159 if (output->edid) { in virtio_gpu_conn_get_modes()
160 count = drm_add_edid_modes(connector, output->edid); in virtio_gpu_conn_get_modes()
[all …]
Dvirtgpu_plane.c95 struct virtio_gpu_output *output = NULL; in virtio_gpu_primary_plane_update() local
101 output = drm_crtc_to_virtio_gpu_output(plane->state->crtc); in virtio_gpu_primary_plane_update()
103 output = drm_crtc_to_virtio_gpu_output(old_state->crtc); in virtio_gpu_primary_plane_update()
104 if (WARN_ON(!output)) in virtio_gpu_primary_plane_update()
107 if (plane->state->fb && output->enabled) { in virtio_gpu_primary_plane_update()
130 virtio_gpu_cmd_set_scanout(vgdev, output->index, handle, in virtio_gpu_primary_plane_update()
185 struct virtio_gpu_output *output = NULL; in virtio_gpu_cursor_plane_update() local
192 output = drm_crtc_to_virtio_gpu_output(plane->state->crtc); in virtio_gpu_cursor_plane_update()
194 output = drm_crtc_to_virtio_gpu_output(old_state->crtc); in virtio_gpu_cursor_plane_update()
195 if (WARN_ON(!output)) in virtio_gpu_cursor_plane_update()
[all …]
/Linux-v5.4/drivers/video/fbdev/intelfb/
Dintelfb_i2c.c144 dinfo->output[i].type = INTELFB_OUTPUT_ANALOG; in intelfb_create_i2c_busses()
147 intelfb_setup_i2c_bus(dinfo, &dinfo->output[i].ddc_bus, GPIOA, in intelfb_create_i2c_busses()
161 dinfo->output[i].type = INTELFB_OUTPUT_DVO; in intelfb_create_i2c_busses()
162 intelfb_setup_i2c_bus(dinfo, &dinfo->output[i].ddc_bus, in intelfb_create_i2c_busses()
164 intelfb_setup_i2c_bus(dinfo, &dinfo->output[i].i2c_bus, in intelfb_create_i2c_busses()
177 dinfo->output[i].type = INTELFB_OUTPUT_SDVO; in intelfb_create_i2c_busses()
178 intelfb_setup_i2c_bus(dinfo, &dinfo->output[i].i2c_bus, in intelfb_create_i2c_busses()
185 dinfo->output[i].type = INTELFB_OUTPUT_SDVO; in intelfb_create_i2c_busses()
186 dinfo->output[i].i2c_bus = dinfo->output[i - 1].i2c_bus; in intelfb_create_i2c_busses()
200 if (dinfo->output[i].i2c_bus.dinfo) { in intelfb_delete_i2c_busses()
[all …]
/Linux-v5.4/Documentation/devicetree/bindings/sound/
Dst,sta350.txt22 - st,output-conf: number, Selects the output configuration:
30 - st,ch1-output-mapping: Channel 1 output mapping
31 - st,ch2-output-mapping: Channel 2 output mapping
32 - st,ch3-output-mapping: Channel 3 output mapping
48 - st,ffx-power-output-mode: string
49 The FFX power output mode selects how the FFX output timing is
57 Only required for "st,ffx-power-output-mode" ==
72 power output is enabled.
89 - st,activate-mute-output:
90 If present, a mute output will be activated in ase the volume will
[all …]
Dst,sta32x.txt26 - st,output-conf: number, Selects the output configuration:
34 - st,ch1-output-mapping: Channel 1 output mapping
35 - st,ch2-output-mapping: Channel 2 output mapping
36 - st,ch3-output-mapping: Channel 3 output mapping
56 Only required for "st,ffx-power-output-mode" ==
68 power output is enabled.
90 st,output-conf = /bits/ 8 <0x3>; // set output to 2-channel
93 st,ch1-output-mapping = /bits/ 8 <0>; // set channel 1 output ch 1
94 st,ch2-output-mapping = /bits/ 8 <0>; // set channel 2 output ch 1
95 st,ch3-output-mapping = /bits/ 8 <0>; // set channel 3 output ch 1
[all …]
/Linux-v5.4/fs/squashfs/
Dlzo_wrapper.c25 void *output; member
38 stream->output = vmalloc(block_size); in lzo_init()
39 if (stream->output == NULL) in lzo_init()
59 vfree(stream->output); in lzo_free()
67 struct squashfs_page_actor *output) in lzo_uncompress() argument
72 size_t out_len = output->length; in lzo_uncompress()
84 stream->output, &out_len); in lzo_uncompress()
89 data = squashfs_first_page(output); in lzo_uncompress()
90 buff = stream->output; in lzo_uncompress()
99 data = squashfs_next_page(output); in lzo_uncompress()
[all …]
Dlz4_wrapper.c28 void *output; member
63 stream->output = vmalloc(block_size); in lz4_init()
64 if (stream->output == NULL) in lz4_init()
85 vfree(stream->output); in lz4_free()
93 struct squashfs_page_actor *output) in lz4_uncompress() argument
108 res = LZ4_decompress_safe(stream->input, stream->output, in lz4_uncompress()
109 length, output->length); in lz4_uncompress()
115 data = squashfs_first_page(output); in lz4_uncompress()
116 buff = stream->output; in lz4_uncompress()
125 data = squashfs_next_page(output); in lz4_uncompress()
[all …]
/Linux-v5.4/arch/x86/boot/compressed/
Dmisc.c175 static void handle_relocations(void *output, unsigned long output_len, in handle_relocations() argument
180 unsigned long min_addr = (unsigned long)output; in handle_relocations()
231 for (reloc = output + output_len - sizeof(*reloc); *reloc; reloc--) { in handle_relocations()
265 static inline void handle_relocations(void *output, unsigned long output_len, in handle_relocations() argument
270 static void parse_elf(void *output) in parse_elf() argument
282 memcpy(&ehdr, output, sizeof(ehdr)); in parse_elf()
297 memcpy(phdrs, output + ehdr.e_phoff, sizeof(*phdrs) * ehdr.e_phnum); in parse_elf()
309 dest = output; in parse_elf()
314 memmove(dest, output + phdr->p_offset, phdr->p_filesz); in parse_elf()
343 unsigned char *output, in extract_kernel() argument
[all …]
/Linux-v5.4/arch/um/drivers/
Dnet_user.c50 void read_output(int fd, char *output, int len) in read_output() argument
56 if (output == NULL) { in read_output()
57 output = &c; in read_output()
61 *output = '\0'; in read_output()
74 ret = read(fd, output, expected); in read_output()
180 static int change_tramp(char **argv, char *output, int output_len) in change_tramp() argument
196 read_output(fds[0], output, output_len); in change_tramp()
214 char *output; in change() local
223 output = uml_kmalloc(output_len, UM_GFP_KERNEL); in change()
224 if (output == NULL) in change()
[all …]
/Linux-v5.4/Documentation/devicetree/bindings/clock/
Dsilabs,si5351.txt7 The Si5351a/b/c are programmable i2c clock generators with up to 8 output
9 3 output clocks are accessible. The internal structure of the clock
37 output is not set, the eeprom configuration is not overwritten.
40 - reg: number of clock output.
43 - silabs,clock-source: source clock of the output divider stage N, shall be
45 1 = multisynth 0 for output clocks 0-3, else multisynth4
48 - silabs,drive-strength: output drive strength in mA, shall be one of {2,4,6,8}.
52 - silabs,pll-reset: boolean, clock output can reset its pll.
53 - silabs,disable-state : clock output disable state, shall be
54 0 = clock output is driven LOW when disabled
[all …]
/Linux-v5.4/tools/power/cpupower/bench/
Dmain.c82 if (config->output != NULL) in main()
83 fclose(config->output); in main()
85 config->output = prepare_output(optarg); in main()
87 if (config->output == NULL) in main()
114 if (config->output != NULL) in main()
115 fclose(config->output); in main()
149 if (config->output != NULL) in main()
150 fclose(config->output); in main()
182 if (config->output != stdout) in main()
183 fclose(config->output); in main()
/Linux-v5.4/drivers/ide/
Dide-acpi.c231 struct acpi_buffer output; in do_drive_get_GTF() local
245 output.length = ACPI_ALLOCATE_BUFFER; in do_drive_get_GTF()
246 output.pointer = NULL; /* ACPI-CA sets this; save/free it later */ in do_drive_get_GTF()
251 NULL, &output); in do_drive_get_GTF()
259 if (!output.length || !output.pointer) { in do_drive_get_GTF()
262 (unsigned long long)output.length, in do_drive_get_GTF()
263 output.pointer); in do_drive_get_GTF()
267 out_obj = output.pointer; in do_drive_get_GTF()
273 kfree(output.pointer); in do_drive_get_GTF()
284 kfree(output.pointer); in do_drive_get_GTF()
[all …]

12345678910>>...91