Home
last modified time | relevance | path

Searched full:activate (Results 1 – 25 of 1061) sorted by relevance

12345678910>>...43

/Linux-v6.1/Documentation/leds/
Dledtrig-transient.rst5 The leds timer trigger does not currently have an interface to activate
68 This trigger exports three properties, activate, state, and duration. When
72 - activate allows activating and deactivating the timer specified by
78 activate
79 - one shot timer activate mechanism.
84 activate state indicates a timer with a value of specified
90 - one shot timer value. When activate is set, duration value
112 When timer expires activate goes back to deactivated state, duration is left
113 at the set value to be used when activate is set at a future time. This will
114 allow user app to set the time once and activate it to run it once for the
[all …]
/Linux-v6.1/Documentation/driver-api/nvdimm/
Dfirmware-activate.rst20 The libnvdimm bus object, ndbusX, implements an ndbusX/firmware/activate
25 No devices are set / armed to activate firmware
40 The 'ndbusX/firmware/activate' property can be written with a value of
46 'ndbusX/firmware/activate' property will be elided completely if no
54 may still be written to 'ndbusX/firmware/activate' as an override to
60 'nmemX/firmware/activate' and 'nmemX/firmware/result' attributes to
62 'ndbusX/firmware/activate' attribute, the 'nmemX/firmware/activate'
64 from 'armed' to 'idle' when the system is prepared to activate firmware,
65 firmware staged + state set to armed, and 'ndbusX/firmware/activate' is
/Linux-v6.1/drivers/leds/trigger/
Dledtrig-transient.c24 int activate; member
38 transient_data->activate = 0; in transient_timer_function()
48 return sprintf(buf, "%d\n", transient_data->activate); in transient_activate_show()
68 if (state == 0 && transient_data->activate == 1) { in transient_activate_store()
70 transient_data->activate = state; in transient_activate_store()
77 if (state == 1 && transient_data->activate == 0 && in transient_activate_store()
79 transient_data->activate = state; in transient_activate_store()
87 /* state == 0 && transient_data->activate == 0 in transient_activate_store()
89 /* state == 1 && transient_data->activate == 1 in transient_activate_store()
149 static DEVICE_ATTR(activate, 0644, transient_activate_show,
[all …]
Dledtrig-audio.c28 .activate = ledtrig_audio_mute_activate,
32 .activate = ledtrig_audio_micmute_activate,
/Linux-v6.1/drivers/platform/x86/intel/ifs/
Druntest.c144 * to this MSR (at most for activate.delay cycles). Then it in doscan()
168 union ifs_scan activate; in ifs_test_core() local
177 activate.rsvd = 0; in ifs_test_core()
178 activate.delay = IFS_THREAD_WAIT; in ifs_test_core()
179 activate.sigmce = 0; in ifs_test_core()
180 activate.start = 0; in ifs_test_core()
181 activate.stop = ifsd->valid_chunks - 1; in ifs_test_core()
186 while (activate.start <= activate.stop) { in ifs_test_core()
192 msrvals[0] = activate.data; in ifs_test_core()
197 trace_ifs_status(cpu, activate, status); in ifs_test_core()
[all …]
/Linux-v6.1/include/trace/events/
Dintel_ifs.h13 TP_PROTO(int cpu, union ifs_scan activate, union ifs_status status),
15 TP_ARGS(cpu, activate, status),
26 __entry->start = activate.start;
27 __entry->stop = activate.stop;
/Linux-v6.1/sound/pci/ice1712/
Dhoontech.c41 static void snd_ice1712_stdsp24_darear(struct snd_ice1712 *ice, int activate) in snd_ice1712_stdsp24_darear() argument
45 ICE1712_STDSP24_0_DAREAR(spec->boxbits, activate); in snd_ice1712_stdsp24_darear()
50 static void snd_ice1712_stdsp24_mute(struct snd_ice1712 *ice, int activate) in snd_ice1712_stdsp24_mute() argument
54 ICE1712_STDSP24_3_MUTE(spec->boxbits, activate); in snd_ice1712_stdsp24_mute()
59 static void snd_ice1712_stdsp24_insel(struct snd_ice1712 *ice, int activate) in snd_ice1712_stdsp24_insel() argument
63 ICE1712_STDSP24_3_INSEL(spec->boxbits, activate); in snd_ice1712_stdsp24_insel()
68 static void snd_ice1712_stdsp24_box_channel(struct snd_ice1712 *ice, int box, int chn, int activate) in snd_ice1712_stdsp24_box_channel() argument
81 ICE1712_STDSP24_2_MIDI1(spec->boxbits, activate); in snd_ice1712_stdsp24_box_channel()
146 static void snd_ice1712_stdsp24_midi2(struct snd_ice1712 *ice, int activate) in snd_ice1712_stdsp24_midi2() argument
150 ICE1712_STDSP24_3_MIDI2(spec->boxbits, activate); in snd_ice1712_stdsp24_midi2()
[all …]
/Linux-v6.1/scripts/kconfig/
Dgconf.glade49 <signal name="activate" handler="on_load1_activate"/>
50 <accelerator key="L" modifiers="GDK_CONTROL_MASK" signal="activate"/>
72 <signal name="activate" handler="on_save_activate"/>
73 <accelerator key="S" modifiers="GDK_CONTROL_MASK" signal="activate"/>
95 <signal name="activate" handler="on_save_as1_activate"/>
122 <signal name="activate" handler="on_quit1_activate"/>
123 <accelerator key="Q" modifiers="GDK_CONTROL_MASK" signal="activate"/>
159 <signal name="activate" handler="on_show_name1_activate"/>
170 <signal name="activate" handler="on_show_range1_activate"/>
181 <signal name="activate" handler="on_show_data1_activate"/>
[all …]
/Linux-v6.1/arch/powerpc/platforms/pseries/
Dpseries_energy.c180 * preferred logical cpus to activate or deactivate for optimized
188 static ssize_t get_best_energy_list(char *page, int activate) in get_best_energy_list() argument
201 if (activate) in get_best_energy_list()
214 if ((cpu_online(cpu) && !activate) || in get_best_energy_list()
215 (!cpu_online(cpu) && activate)) in get_best_energy_list()
228 char *page, int activate) in get_best_energy_data() argument
235 if (activate) in get_best_energy_data()
278 * Comma separated list of cpus to activate or deactivate
/Linux-v6.1/drivers/eisa/
DKconfig30 Activate this option if your system contains a Vesa Local
41 Activate this option if your system contains a PCI to EISA
55 Activate this option if your system only have EISA bus
/Linux-v6.1/arch/alpha/kernel/
Dsmc37c93x.c27 /* device "activate" register contents */
56 #define ACTIVATE 0x30 macro
154 outb(ACTIVATE, indexPort); in SMCEnableDevice()
175 outb(ACTIVATE, indexPort); in SMCEnableKYBD()
204 outb(ACTIVATE, indexPort); in SMCEnableFDC()
/Linux-v6.1/Documentation/x86/
Damd-memory-encryption.rst49 Bits[5:0] pagetable bit number used to activate memory
91 not be necessary to activate the Linux memory encryption support. If the BIOS
92 merely enables SME (sets bit 23 of the MSR_AMD64_SYSCFG), then Linux can activate
95 not enable SME, then Linux will not be able to activate memory encryption, even
/Linux-v6.1/net/bluetooth/
Dleds.c57 int (*activate)(struct led_classdev *led_cdev), in led_allocate_basic()
67 htrig->led_trigger.activate = activate; in led_allocate_basic()
/Linux-v6.1/Documentation/networking/devlink/
Ddevlink-reload.rst9 mechanism to activate firmware.
28 - Firmware activate. Activates new firmware if such image is stored and
77 # Run reload command to activate firmware:
/Linux-v6.1/security/tomoyo/
DKconfig43 bool "Activate without calling userspace policy loader."
47 Say Y here if you want to activate access control as soon as built-in
50 needed before loading the policy. For example, you can activate
/Linux-v6.1/kernel/trace/
Dtrace_sched_switch.c57 pr_info("wakeup trace: Couldn't activate tracepoint" in tracing_sched_register()
64 pr_info("wakeup trace: Couldn't activate tracepoint" in tracing_sched_register()
71 pr_info("sched trace: Couldn't activate tracepoint" in tracing_sched_register()
/Linux-v6.1/drivers/thunderbolt/
Dtunnel.c145 static int tb_pci_activate(struct tb_tunnel *tunnel, bool activate) in tb_pci_activate() argument
149 res = tb_pci_port_enable(tunnel->src_port, activate); in tb_pci_activate()
154 return tb_pci_port_enable(tunnel->dst_port, activate); in tb_pci_activate()
232 tunnel->activate = tb_pci_activate; in tb_tunnel_discover_pci()
309 tunnel->activate = tb_pci_activate; in tb_tunnel_alloc_pci()
802 tunnel->activate = tb_dp_activate; in tb_tunnel_discover_dp()
891 tunnel->activate = tb_dp_activate; in tb_tunnel_alloc_dp()
1223 static int tb_usb3_activate(struct tb_tunnel *tunnel, bool activate) in tb_usb3_activate() argument
1227 res = tb_usb3_port_enable(tunnel->src_port, activate); in tb_usb3_activate()
1232 return tb_usb3_port_enable(tunnel->dst_port, activate); in tb_usb3_activate()
[all …]
Dtunnel.h31 * @activate: Optional tunnel specific activation/deactivation
52 int (*activate)(struct tb_tunnel *tunnel, bool activate); member
/Linux-v6.1/Documentation/networking/device_drivers/atm/
Dcxacru.rst76 - "attempting to activate"
83 Changes between "down" and "attempting to activate"
116 [4942249.665075] ATM dev 0: ADSL line: attempting to activate
/Linux-v6.1/include/linux/
Dtty_port.h22 * only. Called under the port mutex to serialize against @activate and
24 * @activate: called under the port mutex from tty_port_open(), serialized using
37 int (*activate)(struct tty_port *port, struct tty_struct *tty); member
58 * @ops: tty port operations (like activate, shutdown), see &struct
97 * tty_port_hangup(). These call @ops->activate() and @ops->shutdown() as
/Linux-v6.1/net/mac80211/
Dled.c155 local->rx_led.activate = ieee80211_rx_led_activate; in ieee80211_led_init()
163 local->tx_led.activate = ieee80211_tx_led_activate; in ieee80211_led_init()
171 local->assoc_led.activate = ieee80211_assoc_led_activate; in ieee80211_led_init()
179 local->radio_led.activate = ieee80211_radio_led_activate; in ieee80211_led_init()
188 local->tpt_led.activate = ieee80211_tpt_led_activate; in ieee80211_led_init()
/Linux-v6.1/drivers/net/wireless/ath/ath6kl/
Dbmi.h147 * u32 Activate? 1-->activate;
148 * 0-->install but do not activate
166 * Semantics: Activate a list of previously-installed ROM Patches.
/Linux-v6.1/drivers/video/fbdev/core/
Dfbsysfs.c96 static int activate(struct fb_info *fb_info, struct fb_var_screeninfo *var) in activate() function
100 var->activate |= FB_ACTIVATE_FORCE; in activate()
105 fbcon_update_vcs(fb_info, var->activate & FB_ACTIVATE_ALL); in activate()
157 if ((err = activate(fb_info, &var))) in store_mode()
234 if ((err = activate(fb_info, &var))) in store_bpp()
258 if ((err = activate(fb_info, &var))) in store_rotate()
289 if ((err = activate(fb_info, &var))) in store_virtual()
/Linux-v6.1/Documentation/devicetree/bindings/memory-controllers/ddr/
Djedec,lpddr3-timings.yaml47 Four-bank activate window in pico seconds.
67 ACTIVATE-to-ACTIVATE command period in pico seconds.
/Linux-v6.1/Documentation/admin-guide/
Dpnp.rst20 The Linux Plug and Play user interface provides a means to activate PnP devices
37 this will invoke the automatic resource config system to activate the device
61 Suppose you need to activate the floppy disk controller.
91 4. now activate the device::

12345678910>>...43