Home
last modified time | relevance | path

Searched refs:config (Results 1 – 25 of 3432) sorted by relevance

12345678910>>...138

/Linux-v6.1/tools/perf/util/
Dstat-display.c28 static void print_running(struct perf_stat_config *config, in print_running() argument
36 if (config->json_output) in print_running()
37 fprintf(config->output, in print_running()
40 else if (config->csv_output) in print_running()
41 fprintf(config->output, in print_running()
42 "%s%" PRIu64 "%s%.2f", config->csv_sep, in print_running()
43 run, config->csv_sep, enabled_percent); in print_running()
45 fprintf(config->output, " (%.2f%%)", 100.0 * run / ena); in print_running()
48 static void print_noise_pct(struct perf_stat_config *config, in print_noise_pct() argument
53 if (config->json_output) in print_noise_pct()
[all …]
/Linux-v6.1/drivers/hwtracing/coresight/
Dcoresight-etm4x-sysfs.c17 struct etmv4_config *config = &drvdata->config; in etm4_set_mode_exclude() local
19 idx = config->addr_idx; in etm4_set_mode_exclude()
25 if (FIELD_GET(TRCACATRn_TYPE_MASK, config->addr_acc[idx]) == TRCACATRn_TYPE_ADDR) { in etm4_set_mode_exclude()
34 if (config->addr_type[idx] != ETM_ADDR_TYPE_RANGE || in etm4_set_mode_exclude()
35 config->addr_type[idx + 1] != ETM_ADDR_TYPE_RANGE) in etm4_set_mode_exclude()
43 config->viiectlr |= BIT(idx / 2 + 16); in etm4_set_mode_exclude()
44 config->viiectlr &= ~BIT(idx / 2); in etm4_set_mode_exclude()
50 config->viiectlr |= BIT(idx / 2); in etm4_set_mode_exclude()
51 config->viiectlr &= ~BIT(idx / 2 + 16); in etm4_set_mode_exclude()
172 struct etmv4_config *config = &drvdata->config; in reset_store() local
[all …]
Dcoresight-etm3x-sysfs.c72 struct etm_config *config = &drvdata->config; in reset_store() local
80 memset(config, 0, sizeof(struct etm_config)); in reset_store()
81 config->mode = ETM_MODE_EXCLUDE; in reset_store()
82 config->trigger_event = ETM_DEFAULT_EVENT_VAL; in reset_store()
84 config->addr_type[i] = ETM_ADDR_TYPE_NONE; in reset_store()
87 etm_set_default(config); in reset_store()
100 struct etm_config *config = &drvdata->config; in mode_show() local
102 val = config->mode; in mode_show()
113 struct etm_config *config = &drvdata->config; in mode_store() local
120 config->mode = val & ETM_MODE_ALL; in mode_store()
[all …]
/Linux-v6.1/tools/perf/tests/shell/
Ddaemon.sh103 local config=$1
105 local line=`perf daemon --config ${config} -x: | head -1`
112 perf daemon stop --config ${config}
120 local config=$1
123 perf daemon start --config ${config}
126 trap "echo 'FAILED: Signal caught'; daemon_exit ${config}; exit 1" SIGINT SIGTERM
132 state=`perf daemon ping --config ${config} --session ${session} | awk '{ print $1 }'`
137 daemon_exit ${config}
147 local config=$(mktemp /tmp/perf.daemon.config.XXX)
150 cat <<EOF > ${config}
[all …]
/Linux-v6.1/tools/power/cpupower/bench/
Dmain.c67 struct config *config = NULL; in main() local
69 config = prepare_default_config(); in main()
71 if (config == NULL) in main()
82 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()
93 sscanf(optarg, "%li", &config->sleep); in main()
97 sscanf(optarg, "%li", &config->load); in main()
101 sscanf(optarg, "%u", &config->cpu); in main()
[all …]
Dbenchmark.c17 if (config->output != stdout) { \
32 unsigned int calculate_timespace(long load, struct config *config) in calculate_timespace() argument
40 if (config->verbose) in calculate_timespace()
62 if (config->verbose) in calculate_timespace()
78 void start_benchmark(struct config *config) in start_benchmark() argument
87 sleep_time = config->sleep; in start_benchmark()
88 load_time = config->load; in start_benchmark()
91 for (_round = 1; _round <= config->rounds; _round++) in start_benchmark()
92 total_time += _round * (config->sleep + config->load); in start_benchmark()
95 for (_round = 0; _round < config->rounds; _round++) { in start_benchmark()
[all …]
Dparse.c120 struct config *prepare_default_config() in prepare_default_config()
122 struct config *config = malloc(sizeof(struct config)); in prepare_default_config() local
126 config->sleep = 500000; in prepare_default_config()
127 config->load = 500000; in prepare_default_config()
128 config->sleep_step = 500000; in prepare_default_config()
129 config->load_step = 500000; in prepare_default_config()
130 config->cycles = 5; in prepare_default_config()
131 config->rounds = 50; in prepare_default_config()
132 config->cpu = 0; in prepare_default_config()
133 config->prio = SCHED_HIGH; in prepare_default_config()
[all …]
Dsystem.c126 void prepare_user(const struct config *config) in prepare_user() argument
132 for (round = 0; round < config->rounds; round++) { in prepare_user()
133 sleep_time += 2 * config->cycles * in prepare_user()
134 (config->sleep + config->sleep_step * round); in prepare_user()
135 load_time += 2 * config->cycles * in prepare_user()
136 (config->load + config->load_step * round) + in prepare_user()
137 (config->load + config->load_step * round * 4); in prepare_user()
140 if (config->verbose || config->output != stdout) in prepare_user()
152 void prepare_system(const struct config *config) in prepare_system() argument
154 if (config->verbose) in prepare_system()
[all …]
/Linux-v6.1/kernel/
DKconfig.locks5 config ARCH_INLINE_SPIN_TRYLOCK
8 config ARCH_INLINE_SPIN_TRYLOCK_BH
11 config ARCH_INLINE_SPIN_LOCK
14 config ARCH_INLINE_SPIN_LOCK_BH
17 config ARCH_INLINE_SPIN_LOCK_IRQ
20 config ARCH_INLINE_SPIN_LOCK_IRQSAVE
23 config ARCH_INLINE_SPIN_UNLOCK
26 config ARCH_INLINE_SPIN_UNLOCK_BH
29 config ARCH_INLINE_SPIN_UNLOCK_IRQ
32 config ARCH_INLINE_SPIN_UNLOCK_IRQRESTORE
[all …]
/Linux-v6.1/drivers/staging/media/atomisp/pci/
Dia_css_isp_params.c1784 struct ia_css_dp_config *config) in ia_css_get_dp_config() argument
1786 if (!config) in ia_css_get_dp_config()
1792 config); in ia_css_get_dp_config()
1794 *config = params->dp_config; in ia_css_get_dp_config()
1798 ia_css_dp_debug_dtrace(config, IA_CSS_DEBUG_TRACE); in ia_css_get_dp_config()
1805 const struct ia_css_dp_config *config) in ia_css_set_dp_config() argument
1807 if (!config) in ia_css_set_dp_config()
1812 ia_css_dp_debug_dtrace(config, IA_CSS_DEBUG_TRACE); in ia_css_set_dp_config()
1813 params->dp_config = *config; in ia_css_set_dp_config()
1823 struct ia_css_wb_config *config) in ia_css_get_wb_config() argument
[all …]
Dia_css_isp_params.h159 const struct ia_css_dp_config *config);
165 const struct ia_css_wb_config *config);
171 const struct ia_css_tnr_config *config);
177 const struct ia_css_ob_config *config);
183 const struct ia_css_de_config *config);
189 const struct ia_css_anr_config *config);
195 const struct ia_css_anr_thres *config);
201 const struct ia_css_ce_config *config);
207 const struct ia_css_ecd_config *config);
213 const struct ia_css_ynr_config *config);
[all …]
/Linux-v6.1/drivers/rtc/
Drtc-spear.c85 static inline void spear_rtc_clear_interrupt(struct spear_rtc_config *config) in spear_rtc_clear_interrupt() argument
90 spin_lock_irqsave(&config->lock, flags); in spear_rtc_clear_interrupt()
91 val = readl(config->ioaddr + STATUS_REG); in spear_rtc_clear_interrupt()
93 writel(val, config->ioaddr + STATUS_REG); in spear_rtc_clear_interrupt()
94 spin_unlock_irqrestore(&config->lock, flags); in spear_rtc_clear_interrupt()
97 static inline void spear_rtc_enable_interrupt(struct spear_rtc_config *config) in spear_rtc_enable_interrupt() argument
101 val = readl(config->ioaddr + CTRL_REG); in spear_rtc_enable_interrupt()
103 spear_rtc_clear_interrupt(config); in spear_rtc_enable_interrupt()
105 writel(val, config->ioaddr + CTRL_REG); in spear_rtc_enable_interrupt()
109 static inline void spear_rtc_disable_interrupt(struct spear_rtc_config *config) in spear_rtc_disable_interrupt() argument
[all …]
Drtc-da9063.c69 const struct da9063_compatible_rtc_regmap *config; member
169 const struct da9063_compatible_rtc_regmap *config = rtc->config; in da9063_data_to_tm() local
171 tm->tm_sec = data[RTC_SEC] & config->rtc_count_sec_mask; in da9063_data_to_tm()
172 tm->tm_min = data[RTC_MIN] & config->rtc_count_min_mask; in da9063_data_to_tm()
173 tm->tm_hour = data[RTC_HOUR] & config->rtc_count_hour_mask; in da9063_data_to_tm()
174 tm->tm_mday = data[RTC_DAY] & config->rtc_count_day_mask; in da9063_data_to_tm()
176 config->rtc_count_month_mask); in da9063_data_to_tm()
178 config->rtc_count_year_mask); in da9063_data_to_tm()
184 const struct da9063_compatible_rtc_regmap *config = rtc->config; in da9063_tm_to_data() local
186 data[RTC_SEC] = tm->tm_sec & config->rtc_count_sec_mask; in da9063_tm_to_data()
[all …]
/Linux-v6.1/drivers/staging/sm750fb/
Dddk750_sii164.c132 unsigned char config; in sii164InitChip() local
151 config = SII164_CONFIGURATION_LATCH_FALLING; in sii164InitChip()
153 config = SII164_CONFIGURATION_LATCH_RISING; in sii164InitChip()
157 config |= SII164_CONFIGURATION_BUS_12BITS; in sii164InitChip()
159 config |= SII164_CONFIGURATION_BUS_24BITS; in sii164InitChip()
163 config |= SII164_CONFIGURATION_CLOCK_SINGLE; in sii164InitChip()
165 config |= SII164_CONFIGURATION_CLOCK_DUAL; in sii164InitChip()
169 config |= SII164_CONFIGURATION_HSYNC_FORCE_LOW; in sii164InitChip()
171 config |= SII164_CONFIGURATION_HSYNC_AS_IS; in sii164InitChip()
175 config |= SII164_CONFIGURATION_VSYNC_FORCE_LOW; in sii164InitChip()
[all …]
/Linux-v6.1/drivers/net/can/spi/mcp251xfd/
Dmcp251xfd-ram.c11 static inline u8 can_ram_clamp(const struct can_ram_config *config, in can_ram_clamp() argument
17 max = min_t(u8, obj->max, obj->fifo_num * config->fifo_depth); in can_ram_clamp()
22 can_ram_rounddown_pow_of_two(const struct can_ram_config *config, in can_ram_rounddown_pow_of_two() argument
29 val = can_ram_clamp(config, obj, val); in can_ram_rounddown_pow_of_two()
38 ret = min_t(u8, coalesce * 2, config->fifo_depth); in can_ram_rounddown_pow_of_two()
47 config->fifo_depth); in can_ram_rounddown_pow_of_two()
61 const struct can_ram_config *config, in can_ram_get_layout() argument
71 num_tx = config->tx.def[fd_mode]; in can_ram_get_layout()
72 num_tx = can_ram_rounddown_pow_of_two(config, &config->tx, 0, num_tx); in can_ram_get_layout()
74 ram_free = config->size; in can_ram_get_layout()
[all …]
/Linux-v6.1/lib/
Dtest_kmod.c131 struct test_config config; member
182 struct test_config *config = &test_dev->config; in kmod_test_done_check() local
187 if (test_dev->done == config->num_threads) { in kmod_test_done_check()
198 struct test_config *config = &test_dev->config; in test_kmod_put_module() local
203 switch (config->test_case) { in test_kmod_put_module()
221 struct test_config *config = &test_dev->config; in run_request() local
223 switch (config->test_case) { in run_request()
225 info->ret_sync = request_module("%s", config->test_driver); in run_request()
228 info->fs_sync = get_fs_type(config->test_fs); in run_request()
252 struct test_config *config = &test_dev->config; in tally_work_test() local
[all …]
/Linux-v6.1/arch/mips/cavium-octeon/executive/
Dcvmx-pko.c77 union cvmx_pko_mem_iqueue_ptrs config; in __cvmx_pko_iport_config() local
81 config.u64 = 0; in __cvmx_pko_iport_config()
82 config.s.index = queue; in __cvmx_pko_iport_config()
83 config.s.qid = base_queue + queue; in __cvmx_pko_iport_config()
84 config.s.ipid = pko_port; in __cvmx_pko_iport_config()
85 config.s.tail = (queue == (num_queues - 1)); in __cvmx_pko_iport_config()
86 config.s.s_tail = (queue == static_priority_end); in __cvmx_pko_iport_config()
87 config.s.static_p = (static_priority_base >= 0); in __cvmx_pko_iport_config()
88 config.s.static_q = (queue <= static_priority_end); in __cvmx_pko_iport_config()
89 config.s.qos_mask = 0xff; in __cvmx_pko_iport_config()
[all …]
/Linux-v6.1/scripts/
Ddiffconfig51 def print_config(op, config, value, new_value): argument
57 print("# CONFIG_%s is not set" % config)
59 print("CONFIG_%s=%s" % (config, new_value))
62 print("-%s %s" % (config, value))
64 print("+%s %s" % (config, new_value))
66 print(" %s %s -> %s" % (config, value, new_value))
106 for config in a:
107 if config not in b:
108 old.append(config)
110 for config in old:
[all …]
/Linux-v6.1/virt/kvm/
DKconfig4 config HAVE_KVM
7 config HAVE_KVM_PFNCACHE
10 config HAVE_KVM_IRQCHIP
13 config HAVE_KVM_IRQFD
16 config HAVE_KVM_IRQ_ROUTING
19 config HAVE_KVM_DIRTY_RING
25 config HAVE_KVM_DIRTY_RING_TSO
32 config HAVE_KVM_DIRTY_RING_ACQ_REL
36 config HAVE_KVM_EVENTFD
40 config KVM_MMIO
[all …]
/Linux-v6.1/sound/soc/codecs/
DKconfig6 config SND_SOC_I2C_AND_SPI
14 config SND_SOC_ALL_CODECS
327 config SND_SOC_88PM860X
331 config SND_SOC_ARIZONA
344 config SND_SOC_WM_HUBS
349 config SND_SOC_WM_ADSP
368 config SND_SOC_AB8500_CODEC
372 config SND_SOC_AC97_CODEC
377 config SND_SOC_AD1836
381 config SND_SOC_AD193X
[all …]
/Linux-v6.1/include/linux/
Dregmap.h575 const struct regmap_config *config,
579 const struct regmap_config *config,
583 const struct regmap_config *config,
587 const struct regmap_config *config,
591 const struct regmap_config *config,
595 const struct regmap_config *config,
599 const struct regmap_config *config,
603 const struct regmap_config *config,
607 const struct regmap_config *config,
612 const struct regmap_config *config,
[all …]
/Linux-v6.1/arch/arm/boot/dts/
Dste-dbx5x0-pinctrl.dtsi18 ste,config = <&in_pu>;
22 ste,config = <&out_hi>;
29 ste,config = <&slpm_in_wkup_pdis>;
33 ste,config = <&slpm_out_hi_wkup_pdis>;
37 ste,config = <&slpm_out_wkup_pdis>;
50 ste,config = <&in_pu>;
54 ste,config = <&out_hi>;
61 ste,config = <&slpm_in_wkup_pdis>;
65 ste,config = <&slpm_out_wkup_pdis>;
76 ste,config = <&in_pu>;
[all …]
/Linux-v6.1/sound/soc/sof/
Dipc3-topology.c359 static void sof_dbg_comp_config(struct snd_soc_component *scomp, struct sof_ipc_comp_config *config) in sof_dbg_comp_config() argument
362 config->periods_sink, config->periods_source, in sof_dbg_comp_config()
363 config->frame_fmt); in sof_dbg_comp_config()
380 host->config.hdr.size = sizeof(host->config); in sof_ipc3_widget_setup_comp_host()
394 ret = sof_update_ipc_object(scomp, &host->config, SOF_COMP_TOKENS, swidget->tuples, in sof_ipc3_widget_setup_comp_host()
395 swidget->num_tuples, sizeof(host->config), 1); in sof_ipc3_widget_setup_comp_host()
400 sof_dbg_comp_config(scomp, &host->config); in sof_ipc3_widget_setup_comp_host()
430 tone->config.hdr.size = sizeof(tone->config); in sof_ipc3_widget_setup_comp_tone()
433 ret = sof_update_ipc_object(scomp, &tone->config, SOF_COMP_TOKENS, swidget->tuples, in sof_ipc3_widget_setup_comp_tone()
434 swidget->num_tuples, sizeof(tone->config), 1); in sof_ipc3_widget_setup_comp_tone()
[all …]
/Linux-v6.1/drivers/iio/adc/
Dmcp3422.c41 #define MCP3422_CHANNEL(config) (((config) & MCP3422_CHANNEL_MASK) >> 5) argument
42 #define MCP3422_PGA(config) ((config) & MCP3422_PGA_MASK) argument
43 #define MCP3422_SAMPLE_RATE(config) (((config) & MCP3422_SRATE_MASK) >> 2) argument
90 u8 config; member
101 adc->config = newconfig; in mcp3422_update_config()
108 static int mcp3422_read(struct mcp3422 *adc, int *value, u8 *config) in mcp3422_read() argument
111 u8 sample_rate = MCP3422_SAMPLE_RATE(adc->config); in mcp3422_read()
118 *config = buf[3]; in mcp3422_read()
122 *config = buf[2]; in mcp3422_read()
134 u8 config; in mcp3422_read_channel() local
[all …]
/Linux-v6.1/tools/perf/tests/attr/
Dtest-stat-detailed-31 [config]
11 config=1
17 config=3
23 config=4
29 config=2
35 config=0
42 config=7
49 config=8
56 config=1
63 config=4
[all …]

12345678910>>...138