/Linux-v5.4/Documentation/admin-guide/ |
D | kernel-parameters.rst | 81 enabled and if respective hardware is present. The text in square brackets at 85 ACPI ACPI support is enabled. 86 AGP AGP (Accelerated Graphics Port) is enabled. 87 ALSA ALSA sound support is enabled. 88 APIC APIC support is enabled. 89 APM Advanced Power Management support is enabled. 90 ARM ARM architecture is enabled. 91 ARM64 ARM64 architecture is enabled. 92 AX25 Appropriate AX.25 support is enabled. 93 CLK Common clock infrastructure is enabled. [all …]
|
/Linux-v5.4/drivers/pinctrl/aspeed/ |
D | pinmux-aspeed.c | 24 * Query the enabled or disabled state of a signal descriptor 27 * @enabled: True to query the enabled state, false to query disabled state 31 * selected by @enabled, 0 if not, and less than zero if an unrecoverable 36 * a value that is neither the enabled nor disabled state recorded in the 38 * is enabled). Thus we must explicitly test for either condition as required. 41 bool enabled, struct regmap *map) in aspeed_sig_desc_eval() argument 54 aspeed_sig_desc_print_val(desc, enabled, raw); in aspeed_sig_desc_eval() 55 want = enabled ? desc->enable : desc->disable; in aspeed_sig_desc_eval() 61 * Query the enabled or disabled state for a mux function's signal on a pin 65 * @enabled: True to query the enabled state, false to query disabled state [all …]
|
/Linux-v5.4/drivers/net/wireless/broadcom/b43/ |
D | rfkill.c | 15 /* Returns TRUE, if the radio is enabled in hardware. */ 27 bool enabled; in b43_rfkill_poll() local 40 enabled = b43_is_hw_radio_enabled(dev); in b43_rfkill_poll() 42 if (unlikely(enabled != dev->radio_hw_enable)) { in b43_rfkill_poll() 43 dev->radio_hw_enable = enabled; in b43_rfkill_poll() 45 enabled ? "ENABLED" : "DISABLED"); in b43_rfkill_poll() 46 wiphy_rfkill_set_hw_state(hw->wiphy, !enabled); in b43_rfkill_poll() 47 if (enabled != dev->phy.radio_on) in b43_rfkill_poll() 48 b43_software_rfkill(dev, !enabled); in b43_rfkill_poll()
|
/Linux-v5.4/drivers/regulator/ |
D | userspace-consumer.c | 26 bool enabled; member 45 if (data->enabled) in reg_show_state() 46 return sprintf(buf, "enabled\n"); in reg_show_state() 55 bool enabled; in reg_set_state() local 62 if (sysfs_streq(buf, "enabled\n") || sysfs_streq(buf, "1")) in reg_set_state() 63 enabled = true; in reg_set_state() 65 enabled = false; in reg_set_state() 72 if (enabled != data->enabled) { in reg_set_state() 73 if (enabled) in reg_set_state() 81 data->enabled = enabled; in reg_set_state() [all …]
|
/Linux-v5.4/drivers/net/wireless/broadcom/b43legacy/ |
D | rfkill.c | 16 /* Returns TRUE, if the radio is enabled in hardware. */ 44 bool enabled; in b43legacy_rfkill_poll() local 57 enabled = b43legacy_is_hw_radio_enabled(dev); in b43legacy_rfkill_poll() 59 if (unlikely(enabled != dev->radio_hw_enable)) { in b43legacy_rfkill_poll() 60 dev->radio_hw_enable = enabled; in b43legacy_rfkill_poll() 62 enabled ? "ENABLED" : "DISABLED"); in b43legacy_rfkill_poll() 63 wiphy_rfkill_set_hw_state(hw->wiphy, !enabled); in b43legacy_rfkill_poll() 64 if (enabled != dev->phy.radio_on) { in b43legacy_rfkill_poll() 65 if (enabled) in b43legacy_rfkill_poll()
|
/Linux-v5.4/include/trace/events/ |
D | rtc.h | 82 TP_PROTO(int enabled, int err), 84 TP_ARGS(enabled, err), 87 __field(int, enabled) 92 __entry->enabled = enabled; 97 __entry->enabled ? "enable" : "disable", 104 TP_PROTO(unsigned int enabled, int err), 106 TP_ARGS(enabled, err), 109 __field(unsigned int, enabled) 114 __entry->enabled = enabled; 119 __entry->enabled ? "enable" : "disable",
|
/Linux-v5.4/Documentation/networking/ |
D | ipvs-sysctl.txt | 15 enabled and the variable is automatically set to 2, otherwise 20 not 0 - enabled 48 not 0 - enabled 53 This should be enabled if connections handled by IPVS are to be 61 Only available when IPVS is compiled with CONFIG_IP_VS_NFCT enabled. 65 not 0 - enabled 67 If it is enabled, forward packets to the original destination 87 Only available when IPVS is compiled with CONFIG_IP_VS_DEBUG enabled. 108 is enabled and the variable is automatically set to 2, 110 1), and 3 means that that the strategy is always enabled. [all …]
|
D | nf_conntrack-sysctl.txt | 5 not 0 - enabled 20 not 0 - enabled (default) 23 in INVALID state. If this is enabled, such packets will not be 31 not 0 - enabled (default) 33 If this option is enabled, the connection tracking code will 66 not 0 - enabled 101 not 0 - enabled 108 not 0 - enabled (default) 152 not 0 - enabled
|
/Linux-v5.4/drivers/base/power/ |
D | sysfs.c | 35 * + "enabled\n" to issue the events; 64 * state transitions can be enabled by writing "enabled" to this file. 70 * + "enabled\n" to permit the asynchronous suspend/resume of the device; 76 * attribute is set to "enabled" by bus type code or device drivers and in 316 static const char _enabled[] = "enabled"; 348 bool enabled = false; in wakeup_count_show() local 353 enabled = true; in wakeup_count_show() 356 return enabled ? sprintf(buf, "%lu\n", count) : sprintf(buf, "\n"); in wakeup_count_show() 366 bool enabled = false; in wakeup_active_count_show() local 371 enabled = true; in wakeup_active_count_show() [all …]
|
/Linux-v5.4/drivers/net/ |
D | netconsole.c | 80 * @enabled: On / off knob to enable / disable target. 85 * runtime only when it is disabled (enabled == 0). 101 bool enabled; member 199 nt->enabled = true; in alloc_param_target() 223 * | enabled 248 return snprintf(buf, PAGE_SIZE, "%d\n", to_target(item)->enabled); in enabled_show() 306 * are not enabled (and the corresponding netpoll activated) by default. 316 int enabled; in enabled_store() local 320 err = kstrtoint(buf, 10, &enabled); in enabled_store() 325 if (enabled < 0 || enabled > 1) in enabled_store() [all …]
|
/Linux-v5.4/Documentation/networking/device_drivers/neterion/ |
D | vxge.txt | 44 v) Offloads supported: (Enabled by default) 49 vi) MSI-X: (Enabled by default) 53 vii) NAPI: (Enabled by default) 56 viii)RTH (Receive Traffic Hash): (Enabled by default) 63 x) Multiple hardware queues: (Enabled by default) 65 multiple steering options (transmit multiqueue enabled by default). 71 Specifies maximum device functions to be enabled. 75 Specifies number of ports to be enabled. 86 Valid range: 0,1 (disabled, enabled respectively) 92 Valid range: 0,1 (disabled, enabled respectively)
|
/Linux-v5.4/arch/mips/oprofile/ |
D | op_model_loongson2.c | 63 if (cfg[0].enabled) { in loongson2_reg_setup() 68 if (cfg[1].enabled) { in loongson2_reg_setup() 73 if (cfg[0].enabled || cfg[1].enabled) { in loongson2_reg_setup() 83 reg.cnt1_enabled = cfg[0].enabled; in loongson2_reg_setup() 84 reg.cnt2_enabled = cfg[1].enabled; in loongson2_reg_setup() 110 int enabled; in loongson2_perfcount_handler() local 113 enabled = read_c0_perfctrl() & LOONGSON2_PERFCTRL_ENABLE; in loongson2_perfcount_handler() 114 if (!enabled) in loongson2_perfcount_handler() 116 enabled = reg.cnt1_enabled | reg.cnt2_enabled; in loongson2_perfcount_handler() 117 if (!enabled) in loongson2_perfcount_handler()
|
/Linux-v5.4/drivers/gpu/drm/msm/hdmi/ |
D | hdmi_audio.c | 79 bool enabled = audio->enabled; in msm_hdmi_audio_update() local 83 DBG("audio: enabled=%d, channels=%d, channel_allocation=0x%x, " in msm_hdmi_audio_update() 85 audio->enabled, info->channels, info->channel_allocation, in msm_hdmi_audio_update() 89 if (enabled && !(hdmi->power_on && hdmi->pixclock)) { in msm_hdmi_audio_update() 91 enabled = false; in msm_hdmi_audio_update() 94 if (enabled) { in msm_hdmi_audio_update() 99 enabled = false; in msm_hdmi_audio_update() 113 if (enabled) { in msm_hdmi_audio_update() 206 COND(enabled, HDMI_AUD_INT_AUD_FIFO_URUN_INT) | in msm_hdmi_audio_update() 207 COND(enabled, HDMI_AUD_INT_AUD_SAM_DROP_INT)); in msm_hdmi_audio_update() [all …]
|
/Linux-v5.4/drivers/rtc/ |
D | interface.c | 175 alarm->enabled = 0; in rtc_read_alarm_internal() 382 alarm->enabled = rtc->aie_timer.enabled; in rtc_read_alarm() 451 if (rtc->aie_timer.enabled) in rtc_set_alarm() 456 if (alarm->enabled) in rtc_set_alarm() 486 /* Alarm has to be enabled & in the future for us to enqueue it */ in rtc_initialize_alarm() 487 if (alarm->enabled && (rtc_tm_to_ktime(now) < in rtc_initialize_alarm() 489 rtc->aie_timer.enabled = 1; in rtc_initialize_alarm() 498 int rtc_alarm_irq_enable(struct rtc_device *rtc, unsigned int enabled) in rtc_alarm_irq_enable() argument 506 if (rtc->aie_timer.enabled != enabled) { in rtc_alarm_irq_enable() 507 if (enabled) in rtc_alarm_irq_enable() [all …]
|
/Linux-v5.4/sound/soc/intel/ |
D | Kconfig | 38 # when these platforms are enabled 48 # when these platforms are enabled 128 If you have a Intel Skylake platform with the DSP enabled 138 enabled in the BIOS then enable this option by saying Y or m. 147 enabled in the BIOS then enable this option by saying Y or m. 156 enabled in the BIOS then enable this option by saying Y or m. 165 enabled in the BIOS then enable this option by saying Y or m. 174 enabled in the BIOS then enable this option by saying Y or m. 183 enabled in the BIOS then enable this option by saying Y or m. 192 enabled in the BIOS then enable this option by saying Y or m. [all …]
|
/Linux-v5.4/tools/testing/selftests/kexec/ |
D | test_kexec_load.sh | 16 kconfig_enabled "CONFIG_KEXEC=y" "kexec_load is enabled" 18 log_skip "kexec_load is not enabled" 21 kconfig_enabled "CONFIG_IMA_APPRAISE=y" "IMA enabled" 25 "IMA architecture specific policy enabled" 31 # kexec_load should fail in secure boot mode and CONFIG_IMA_ARCH_POLICY enabled 38 log_info "Either IMA or the IMA arch policy is not enabled"
|
/Linux-v5.4/Documentation/ABI/testing/ |
D | sysfs-devices-power | 14 space to check if the device is enabled to wake up the system 24 + "enabled\n" to issue the events; 28 by the contents of this file by writing either "enabled", or 33 be enabled to wake up the system from sleep states. 67 + "enabled\n" to permit the asynchronous suspend/resume; 71 "enabled", or "disabled" to it. 76 devices this attribute is set to "enabled" by bus type code or 88 If the device is not enabled to wake up the system from sleep 100 the device is not enabled to wake up the system from sleep 112 attribute is not present. If the device is not enabled to wake [all …]
|
D | sysfs-class-backlight-driver-lm3533 | 43 bit 5 - PWM-input enabled in Zone 4 44 bit 4 - PWM-input enabled in Zone 3 45 bit 3 - PWM-input enabled in Zone 2 46 bit 2 - PWM-input enabled in Zone 1 47 bit 1 - PWM-input enabled in Zone 0 48 bit 0 - PWM-input enabled
|
/Linux-v5.4/include/linux/ |
D | jump_label.h | 88 atomic_t enabled; member 111 atomic_t enabled; member 234 * We should be using ATOMIC_INIT() for initializing .enabled, but 236 * in 'low-level' headers. Thus, we are initializing .enabled with a 241 { .enabled = { 1 }, \ 244 { .enabled = { 0 }, \ 254 return atomic_read(&key->enabled); in static_key_count() 279 atomic_inc(&key->enabled); in static_key_slow_inc() 285 atomic_dec(&key->enabled); in static_key_slow_dec() 308 if (atomic_read(&key->enabled) != 0) { in static_key_enable() [all …]
|
/Linux-v5.4/Documentation/x86/ |
D | amd-memory-encryption.rst | 20 memory may be encrypted with hypervisor key. When SME is enabled, the hypervisor 36 When SEV is enabled, instruction pages and guest page tables are always treated 52 memory encryption is enabled (this only affects 57 determine if SME is enabled and/or to enable memory encryption:: 61 1 = memory encryption features are enabled 81 - Enabled: 85 Supported, Enabled and the Linux kernel is actively applying 89 SME can also be enabled and activated in the BIOS. If SME is enabled and
|
/Linux-v5.4/drivers/greybus/ |
D | svc_watchdog.c | 18 bool enabled; member 98 watchdog->enabled = false; in do_work() 103 if (watchdog->enabled) in do_work() 119 watchdog->enabled = false; in gb_svc_watchdog_create() 164 return svc->watchdog->enabled; in gb_svc_watchdog_enabled() 175 if (watchdog->enabled) in gb_svc_watchdog_enable() 178 watchdog->enabled = true; in gb_svc_watchdog_enable() 191 if (!watchdog->enabled) in gb_svc_watchdog_disable() 194 watchdog->enabled = false; in gb_svc_watchdog_disable()
|
/Linux-v5.4/Documentation/power/regulator/ |
D | consumer.rst | 44 The supply may already be enabled before regulator_enabled() is called. 46 previously enabled by bootloader or kernel board initialization code. 48 A consumer can determine if a regulator is enabled by calling:: 52 This will return > zero when the regulator is enabled. 61 regulator will only be disabled when the enabled reference count is zero. 87 NOTE: this can be called when the regulator is enabled or disabled. If called 88 when enabled, then the voltage changes instantly, otherwise the voltage 90 next enabled. 98 regulator is enabled or disabled and should NOT be used to determine regulator 119 this can be called when the regulator is enabled or disabled. If called [all …]
|
/Linux-v5.4/include/net/netns/ |
D | sctp.h | 64 /* Whether Cookie Preservative is enabled(1) or not(0) */ 93 * Disable Potentially-Failed feature, the feature is enabled by default 115 /* Flag to indicate if addip is enabled. */ 119 /* Flag to indicate if PR-SCTP is enabled. */ 122 /* Flag to indicate if PR-CONFIG is enabled. */ 125 /* Flag to indicate if SCTP-AUTH is enabled */ 128 /* Flag to indicate if stream interleave is enabled */ 131 /* Flag to indicate if ecn is enabled */
|
/Linux-v5.4/Documentation/devicetree/bindings/sound/ |
D | st,sta32x.txt | 23 If specified, the clock will be enabled when the codec is probed, 31 If parameter is missing, mode 0 will be enabled. 44 If present, thermal warning recovery is enabled. 47 If present, fault detect recovery is enabled. 50 If present, thermal warning adjustment is enabled. 53 If present, then fault recovery will be enabled. 68 power output is enabled. 79 If present, automatic invalid input detect mute is enabled.
|
/Linux-v5.4/drivers/net/wireless/realtek/rtl818x/rtl8187/ |
D | rfkill.c | 44 bool enabled; in rtl8187_rfkill_poll() local 48 enabled = rtl8187_is_radio_enabled(priv); in rtl8187_rfkill_poll() 49 if (unlikely(enabled != priv->rfkill_off)) { in rtl8187_rfkill_poll() 50 priv->rfkill_off = enabled; in rtl8187_rfkill_poll() 52 enabled ? "on" : "off"); in rtl8187_rfkill_poll() 53 wiphy_rfkill_set_hw_state(hw->wiphy, !enabled); in rtl8187_rfkill_poll()
|