/Linux-v5.4/tools/perf/util/ |
D | stat-display.c | 23 static void print_running(struct perf_stat_config *config, in print_running() argument 26 if (config->csv_output) { in print_running() 27 fprintf(config->output, "%s%" PRIu64 "%s%.2f", in print_running() 28 config->csv_sep, in print_running() 30 config->csv_sep, in print_running() 33 fprintf(config->output, " (%.2f%%)", 100.0 * run / ena); in print_running() 37 static void print_noise_pct(struct perf_stat_config *config, in print_noise_pct() argument 42 if (config->csv_output) in print_noise_pct() 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() [all …]
|
/Linux-v5.4/drivers/hwtracing/coresight/ |
D | coresight-etm4x-sysfs.c | 16 struct etmv4_config *config = &drvdata->config; in etm4_set_mode_exclude() local 18 idx = config->addr_idx; in etm4_set_mode_exclude() 24 if (BMVAL(config->addr_acc[idx], 0, 1) == ETM_INSTR_ADDR) { in etm4_set_mode_exclude() 33 if (config->addr_type[idx] != ETM_ADDR_TYPE_RANGE || in etm4_set_mode_exclude() 34 config->addr_type[idx + 1] != ETM_ADDR_TYPE_RANGE) in etm4_set_mode_exclude() 42 config->viiectlr |= BIT(idx / 2 + 16); in etm4_set_mode_exclude() 43 config->viiectlr &= ~BIT(idx / 2); in etm4_set_mode_exclude() 49 config->viiectlr |= BIT(idx / 2); in etm4_set_mode_exclude() 50 config->viiectlr &= ~BIT(idx / 2 + 16); in etm4_set_mode_exclude() 171 struct etmv4_config *config = &drvdata->config; in reset_store() local [all …]
|
D | coresight-etm3x-sysfs.c | 72 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 …]
|
D | coresight-etm4x.c | 43 static void etm4_set_default_config(struct etmv4_config *config); 91 struct etmv4_config *config = &drvdata->config; in etm4_enable_hw() local 110 writel_relaxed(config->pe_sel, drvdata->base + TRCPROCSELR); in etm4_enable_hw() 111 writel_relaxed(config->cfg, drvdata->base + TRCCONFIGR); in etm4_enable_hw() 114 writel_relaxed(config->eventctrl0, drvdata->base + TRCEVENTCTL0R); in etm4_enable_hw() 115 writel_relaxed(config->eventctrl1, drvdata->base + TRCEVENTCTL1R); in etm4_enable_hw() 116 writel_relaxed(config->stall_ctrl, drvdata->base + TRCSTALLCTLR); in etm4_enable_hw() 117 writel_relaxed(config->ts_ctrl, drvdata->base + TRCTSCTLR); in etm4_enable_hw() 118 writel_relaxed(config->syncfreq, drvdata->base + TRCSYNCPR); in etm4_enable_hw() 119 writel_relaxed(config->ccctlr, drvdata->base + TRCCCCTLR); in etm4_enable_hw() [all …]
|
/Linux-v5.4/tools/power/cpupower/bench/ |
D | main.c | 67 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 …]
|
D | benchmark.c | 17 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 …]
|
D | parse.c | 120 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 …]
|
D | system.c | 126 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-v5.4/kernel/ |
D | Kconfig.locks | 5 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-v5.4/drivers/rtc/ |
D | rtc-spear.c | 88 static inline void spear_rtc_clear_interrupt(struct spear_rtc_config *config) in spear_rtc_clear_interrupt() argument 93 spin_lock_irqsave(&config->lock, flags); in spear_rtc_clear_interrupt() 94 val = readl(config->ioaddr + STATUS_REG); in spear_rtc_clear_interrupt() 96 writel(val, config->ioaddr + STATUS_REG); in spear_rtc_clear_interrupt() 97 spin_unlock_irqrestore(&config->lock, flags); in spear_rtc_clear_interrupt() 100 static inline void spear_rtc_enable_interrupt(struct spear_rtc_config *config) in spear_rtc_enable_interrupt() argument 104 val = readl(config->ioaddr + CTRL_REG); in spear_rtc_enable_interrupt() 106 spear_rtc_clear_interrupt(config); in spear_rtc_enable_interrupt() 108 writel(val, config->ioaddr + CTRL_REG); in spear_rtc_enable_interrupt() 112 static inline void spear_rtc_disable_interrupt(struct spear_rtc_config *config) in spear_rtc_disable_interrupt() argument [all …]
|
D | rtc-da9063.c | 69 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-v5.4/drivers/staging/sm750fb/ |
D | ddk750_sii164.c | 125 unsigned char config; in sii164InitChip() local 143 config = SII164_CONFIGURATION_LATCH_FALLING; in sii164InitChip() 145 config = SII164_CONFIGURATION_LATCH_RISING; in sii164InitChip() 149 config |= SII164_CONFIGURATION_BUS_12BITS; in sii164InitChip() 151 config |= SII164_CONFIGURATION_BUS_24BITS; in sii164InitChip() 155 config |= SII164_CONFIGURATION_CLOCK_SINGLE; in sii164InitChip() 157 config |= SII164_CONFIGURATION_CLOCK_DUAL; in sii164InitChip() 161 config |= SII164_CONFIGURATION_HSYNC_FORCE_LOW; in sii164InitChip() 163 config |= SII164_CONFIGURATION_HSYNC_AS_IS; in sii164InitChip() 167 config |= SII164_CONFIGURATION_VSYNC_FORCE_LOW; in sii164InitChip() [all …]
|
/Linux-v5.4/lib/ |
D | test_kmod.c | 131 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-v5.4/arch/arm/mach-imx/devices/ |
D | Kconfig | 2 config IMX_HAVE_PLATFORM_FEC 6 config IMX_HAVE_PLATFORM_FLEXCAN 9 config IMX_HAVE_PLATFORM_FSL_USB2_UDC 12 config IMX_HAVE_PLATFORM_GPIO_KEYS 15 config IMX_HAVE_PLATFORM_IMX21_HCD 18 config IMX_HAVE_PLATFORM_IMX27_CODA 22 config IMX_HAVE_PLATFORM_IMX2_WDT 25 config IMX_HAVE_PLATFORM_IMX_FB 28 config IMX_HAVE_PLATFORM_IMX_I2C 31 config IMX_HAVE_PLATFORM_IMX_KEYPAD [all …]
|
/Linux-v5.4/arch/mips/cavium-octeon/executive/ |
D | cvmx-pko.c | 77 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-v5.4/scripts/ |
D | diffconfig | 51 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-v5.4/sound/soc/codecs/ |
D | Kconfig | 6 config SND_SOC_I2C_AND_SPI 14 config SND_SOC_ALL_CODECS 271 config SND_SOC_88PM860X 274 config SND_SOC_ARIZONA 287 config SND_SOC_WM_HUBS 292 config SND_SOC_WM_ADSP 306 config SND_SOC_AB8500_CODEC 309 config SND_SOC_AC97_CODEC 314 config SND_SOC_AD1836 317 config SND_SOC_AD193X [all …]
|
/Linux-v5.4/virt/kvm/ |
D | Kconfig | 4 config HAVE_KVM 7 config HAVE_KVM_IRQCHIP 10 config HAVE_KVM_IRQFD 13 config HAVE_KVM_IRQ_ROUTING 16 config HAVE_KVM_EVENTFD 20 config KVM_MMIO 23 config KVM_ASYNC_PF 27 config KVM_ASYNC_PF_SYNC 30 config HAVE_KVM_MSI 33 config HAVE_KVM_CPU_RELAX_INTERCEPT [all …]
|
/Linux-v5.4/include/linux/ |
D | regmap.h | 532 const struct regmap_config *config, 536 const struct regmap_config *config, 540 const struct regmap_config *config, 544 const struct regmap_config *config, 548 const struct regmap_config *config, 552 const struct regmap_config *config, 556 const struct regmap_config *config, 560 const struct regmap_config *config, 565 const struct regmap_config *config, 569 const struct regmap_config *config, [all …]
|
/Linux-v5.4/arch/arm/mach-omap1/ |
D | usb.c | 49 omap_otg_init(struct omap_usb_config *config) in omap_otg_init() argument 64 if (config->pins[0] > 2) /* alt pingroup 2 */ in omap_otg_init() 66 syscon |= config->usb0_init(config->pins[0], is_usb0_device(config)); in omap_otg_init() 67 syscon |= config->usb1_init(config->pins[1]); in omap_otg_init() 68 syscon |= config->usb2_init(config->pins[2], alt_pingroup); in omap_otg_init() 72 syscon = config->hmc_mode; in omap_otg_init() 75 if (config->otg) in omap_otg_init() 83 printk("USB: hmc %d", config->hmc_mode); in omap_otg_init() 85 pr_cont(", usb2 alt %d wires", config->pins[2]); in omap_otg_init() 86 else if (config->pins[0]) in omap_otg_init() [all …]
|
/Linux-v5.4/drivers/irqchip/ |
D | Kconfig | 4 config IRQCHIP 8 config ARM_GIC 14 config ARM_GIC_PM 19 config ARM_GIC_MAX_NR 25 config ARM_GIC_V2M 31 config GIC_NON_BANKED 34 config ARM_GIC_V3 41 config ARM_GIC_V3_ITS 46 config ARM_GIC_V3_ITS_PCI 53 config ARM_GIC_V3_ITS_FSL_MC [all …]
|
/Linux-v5.4/drivers/iio/adc/ |
D | mcp3422.c | 40 #define MCP3422_CHANNEL(config) (((config) & MCP3422_CHANNEL_MASK) >> 5) argument 41 #define MCP3422_PGA(config) ((config) & MCP3422_PGA_MASK) argument 42 #define MCP3422_SAMPLE_RATE(config) (((config) & MCP3422_SRATE_MASK) >> 2) argument 89 u8 config; member 102 adc->config = newconfig; in mcp3422_update_config() 111 static int mcp3422_read(struct mcp3422 *adc, int *value, u8 *config) in mcp3422_read() argument 114 u8 sample_rate = MCP3422_SAMPLE_RATE(adc->config); in mcp3422_read() 121 *config = buf[3]; in mcp3422_read() 125 *config = buf[2]; in mcp3422_read() 137 u8 config; in mcp3422_read_channel() local [all …]
|
/Linux-v5.4/fs/fscache/ |
D | object-list.c | 20 unsigned long config; /* display configuration */ member 165 unsigned long config = data->config; in fscache_objlist_show() local 173 if (config & (FSCACHE_OBJLIST_CONFIG_KEY | in fscache_objlist_show() 176 if (config & FSCACHE_OBJLIST_CONFIG_KEY) in fscache_objlist_show() 178 if ((config & (FSCACHE_OBJLIST_CONFIG_KEY | in fscache_objlist_show() 182 if (config & FSCACHE_OBJLIST_CONFIG_AUX) in fscache_objlist_show() 192 if (config & (FSCACHE_OBJLIST_CONFIG_KEY | in fscache_objlist_show() 205 if (!(config & yes)) \ in fscache_objlist_show() 208 if (!(config & no)) \ in fscache_objlist_show() 214 if (~config) { in fscache_objlist_show() [all …]
|
/Linux-v5.4/tools/power/pm-graph/ |
D | Makefile | 12 install -d $(DESTDIR)$(PREFIX)/lib/pm-graph/config 13 install -m 644 config/cgskip.txt $(DESTDIR)$(PREFIX)/lib/pm-graph/config 14 install -m 644 config/freeze-callgraph.cfg $(DESTDIR)$(PREFIX)/lib/pm-graph/config 15 install -m 644 config/freeze.cfg $(DESTDIR)$(PREFIX)/lib/pm-graph/config 16 install -m 644 config/freeze-dev.cfg $(DESTDIR)$(PREFIX)/lib/pm-graph/config 17 install -m 644 config/standby-callgraph.cfg $(DESTDIR)$(PREFIX)/lib/pm-graph/config 18 install -m 644 config/standby.cfg $(DESTDIR)$(PREFIX)/lib/pm-graph/config 19 install -m 644 config/standby-dev.cfg $(DESTDIR)$(PREFIX)/lib/pm-graph/config 20 install -m 644 config/suspend-callgraph.cfg $(DESTDIR)$(PREFIX)/lib/pm-graph/config 21 install -m 644 config/suspend.cfg $(DESTDIR)$(PREFIX)/lib/pm-graph/config [all …]
|
/Linux-v5.4/drivers/clk/mvebu/ |
D | Kconfig | 2 config MVEBU_CLK_COMMON 5 config MVEBU_CLK_CPU 8 config MVEBU_CLK_COREDIV 11 config ARMADA_AP_CP_HELPER 14 config ARMADA_370_CLK 19 config ARMADA_375_CLK 23 config ARMADA_38X_CLK 27 config ARMADA_39X_CLK 31 config ARMADA_37XX_CLK 34 config ARMADA_XP_CLK [all …]
|