/kernel/linux/linux-5.10/include/linux/ |
H A D | cpuhotplug.h | 207 int (*startup)(unsigned int cpu), 212 int (*startup)(unsigned int cpu), 219 * @startup: startup callback function 222 * Installs the callback functions and invokes the startup callback on 227 int (*startup)(unsigned int cpu), in cpuhp_setup_state() 230 return __cpuhp_setup_state(state, name, true, startup, teardown, false); in cpuhp_setup_state() 235 int (*startup)(unsigned int cpu), in cpuhp_setup_state_cpuslocked() 238 return __cpuhp_setup_state_cpuslocked(state, name, true, startup, in cpuhp_setup_state_cpuslocked() 247 * @startup [all...] |
/kernel/linux/linux-6.6/include/linux/ |
H A D | cpuhotplug.h | 27 * startup callbacks sequentially from CPUHP_OFFLINE + 1 to CPUHP_ONLINE 38 * hotplug startup/teardown code with interrupts disabled. 267 int (*startup)(unsigned int cpu), 272 int (*startup)(unsigned int cpu), 276 * cpuhp_setup_state - Setup hotplug state callbacks with calling the @startup 280 * @startup: startup callback function or NULL if not required 283 * Installs the callback functions and invokes the @startup callback on 288 int (*startup)(unsigned int cpu), in cpuhp_setup_state() 291 return __cpuhp_setup_state(state, name, true, startup, teardow in cpuhp_setup_state() [all...] |
/kernel/linux/linux-5.10/sound/soc/ |
H A D | soc-link.c | 74 rtd->dai_link->ops->startup) in snd_soc_link_startup() 75 ret = rtd->dai_link->ops->startup(substream); in snd_soc_link_startup() 79 soc_link_mark_push(rtd, substream, startup); in snd_soc_link_startup() 89 if (rollback && !soc_link_mark_match(rtd, substream, startup)) in snd_soc_link_shutdown() 97 soc_link_mark_pop(rtd, substream, startup); in snd_soc_link_shutdown() 152 rtd->dai_link->compr_ops->startup) in snd_soc_link_compr_startup() 153 ret = rtd->dai_link->compr_ops->startup(cstream); in snd_soc_link_compr_startup()
|
H A D | soc-dai.c | 356 dai->driver->ops->startup) in snd_soc_dai_startup() 357 ret = dai->driver->ops->startup(substream, dai); in snd_soc_dai_startup() 361 soc_dai_mark_push(dai, substream, startup); in snd_soc_dai_startup() 370 if (rollback && !soc_dai_mark_match(dai, substream, startup)) in snd_soc_dai_shutdown() 378 soc_dai_mark_pop(dai, substream, startup); in snd_soc_dai_shutdown() 601 dai->driver->cops->startup) in snd_soc_dai_compr_startup() 602 ret = dai->driver->cops->startup(cstream, dai); in snd_soc_dai_compr_startup()
|
/kernel/linux/linux-6.6/sound/soc/ |
H A D | soc-link.c | 74 rtd->dai_link->ops->startup) in snd_soc_link_startup() 75 ret = rtd->dai_link->ops->startup(substream); in snd_soc_link_startup() 79 soc_link_mark_push(rtd, substream, startup); in snd_soc_link_startup() 89 if (rollback && !soc_link_mark_match(rtd, substream, startup)) in snd_soc_link_shutdown() 97 soc_link_mark_pop(rtd, substream, startup); in snd_soc_link_shutdown() 178 soc_link_mark_pop(rtd, substream, startup); in snd_soc_link_trigger() 190 rtd->dai_link->compr_ops->startup) in snd_soc_link_compr_startup() 191 ret = rtd->dai_link->compr_ops->startup(cstream); in snd_soc_link_compr_startup()
|
H A D | soc-dai.c | 431 dai->driver->ops->startup) in snd_soc_dai_startup() 432 ret = dai->driver->ops->startup(substream, dai); in snd_soc_dai_startup() 436 soc_dai_mark_push(dai, substream, startup); in snd_soc_dai_startup() 448 if (rollback && !soc_dai_mark_match(dai, substream, startup)) in snd_soc_dai_shutdown() 456 soc_dai_mark_pop(dai, substream, startup); in snd_soc_dai_shutdown() 742 dai->driver->cops->startup) in snd_soc_dai_compr_startup() 743 ret = dai->driver->cops->startup(cstream, dai); in snd_soc_dai_compr_startup()
|
/kernel/linux/linux-6.6/kernel/ |
H A D | cpu.c | 121 * @startup: Startup function of the step 132 } startup; member 155 return bringup ? !step->startup.single : !step->teardown.single; in cpuhp_step_empty() 192 cb = bringup ? step->startup.single : step->teardown.single; in cpuhp_invoke_callback() 199 cbm = bringup ? step->startup.multi : step->teardown.multi; in cpuhp_invoke_callback() 233 cbm = !bringup ? step->startup.multi : step->teardown.multi; in cpuhp_invoke_callback() 863 * startup in cpuhp_online_idle() which allows to avoid in bringup_cpu() 1036 * Execute teardown/startup callbacks on the plugged cpu. Also used to invoke 1221 * startup or the teardown callback of the affected state. 1867 * sends the startup IP [all...] |
/kernel/linux/linux-5.10/arch/h8300/boot/compressed/ |
H A D | head.S | 10 .section .text..startup,"ax" 11 .global startup 12 startup: label 13 mov.l #startup, sp
|
/kernel/linux/linux-5.10/kernel/ |
H A D | cpu.c | 112 * @startup: Startup function of the step 122 } startup; member 164 if (!(bringup ? step->startup.single : step->teardown.single)) in cpuhp_invoke_callback() 172 cb = bringup ? step->startup.single : step->teardown.single; in cpuhp_invoke_callback() 180 cbm = bringup ? step->startup.multi : step->teardown.multi; in cpuhp_invoke_callback() 216 cbm = !bringup ? step->startup.multi : step->teardown.multi; in cpuhp_invoke_callback() 655 * Execute teardown/startup callbacks on the plugged cpu. Also used to invoke 835 * startup or the teardown callback of the affected state. 1575 .startup.single = NULL, 1581 .startup [all...] |
/kernel/linux/linux-5.10/drivers/net/ethernet/dec/tulip/ |
H A D | media.c | 167 void tulip_select_media(struct net_device *dev, int startup) in tulip_select_media() argument 184 if (startup) in tulip_select_media() 199 if (startup && mtable->has_reset) { in tulip_select_media() 228 if (startup) { in tulip_select_media() 234 if (startup) iowrite32(csr13val, ioaddr + CSR13); in tulip_select_media() 257 if (startup) { in tulip_select_media() 283 if (startup) { in tulip_select_media() 310 if (tmp_info && startup < 2) { in tulip_select_media() 324 if (startup && mtable->has_reset) { in tulip_select_media() 345 if (startup in tulip_select_media() [all...] |
/kernel/linux/linux-6.6/drivers/net/ethernet/dec/tulip/ |
H A D | media.c | 167 void tulip_select_media(struct net_device *dev, int startup) in tulip_select_media() argument 184 if (startup) in tulip_select_media() 199 if (startup && mtable->has_reset) { in tulip_select_media() 228 if (startup) { in tulip_select_media() 234 if (startup) iowrite32(csr13val, ioaddr + CSR13); in tulip_select_media() 257 if (startup) { in tulip_select_media() 283 if (startup) { in tulip_select_media() 310 if (tmp_info && startup < 2) { in tulip_select_media() 324 if (startup && mtable->has_reset) { in tulip_select_media() 345 if (startup in tulip_select_media() [all...] |
/kernel/linux/linux-5.10/arch/s390/boot/ |
H A D | Makefile | 37 obj-y := head.o als.o startup.o mem_detect.o ipl_parm.o ipl_report.o 43 targets := bzImage startup.a section_cmp.boot.data section_cmp.boot.preserved.data $(obj-y) 67 $(obj)/compressed/vmlinux: $(obj)/startup.a FORCE 70 $(obj)/startup.a: $(OBJECTS) FORCE
|
/kernel/linux/linux-6.6/sound/soc/amd/ |
H A D | acp-da7219-max98357a.c | 470 .startup = cz_da7219_play_startup, 475 .startup = cz_da7219_cap_startup, 480 .startup = cz_max_startup, 485 .startup = cz_dmic0_startup, 490 .startup = cz_dmic1_startup, 495 .startup = cz_rt5682_play_startup, 500 .startup = cz_rt5682_cap_startup, 505 .startup = cz_rt5682_max_startup, 510 .startup = cz_rt5682_dmic0_startup, 515 .startup [all...] |
/kernel/liteos_a/arch/arm/arm/ |
H A D | Makefile | 41 LOCAL_SRCS += src/startup/reset_vector_mp.S 43 LOCAL_SRCS += src/startup/reset_vector_up.S
|
/kernel/linux/linux-5.10/drivers/s390/char/ |
H A D | hmcdrv_ftp.c | 27 * @startup: startup function 32 int (*startup)(void); member 287 * hmcdrv_ftp_startup() - startup of HMC drive FTP functionality for a 295 .startup = diag_ftp_startup, in hmcdrv_ftp_startup() 301 .startup = sclp_ftp_startup, in hmcdrv_ftp_startup() 319 rc = hmcdrv_ftp_funcs->startup(); in hmcdrv_ftp_startup()
|
/kernel/linux/linux-6.6/drivers/s390/char/ |
H A D | hmcdrv_ftp.c | 27 * @startup: startup function 32 int (*startup)(void); member 287 * hmcdrv_ftp_startup() - startup of HMC drive FTP functionality for a 295 .startup = diag_ftp_startup, in hmcdrv_ftp_startup() 301 .startup = sclp_ftp_startup, in hmcdrv_ftp_startup() 319 rc = hmcdrv_ftp_funcs->startup(); in hmcdrv_ftp_startup()
|
/kernel/linux/linux-5.10/arch/sh/boot/compressed/ |
H A D | head_32.S | 13 .global startup 14 startup: label 63 .long startup
|
/kernel/linux/linux-6.6/arch/sh/boot/compressed/ |
H A D | head_32.S | 13 .global startup 14 startup: label 63 .long startup
|
/kernel/linux/linux-5.10/arch/parisc/boot/compressed/ |
H A D | head.S | 24 ENTRY(startup) 85 END(startup)
|
/kernel/linux/linux-6.6/arch/parisc/boot/compressed/ |
H A D | head.S | 24 ENTRY(startup) 85 END(startup)
|
/kernel/linux/linux-5.10/sound/soc/pxa/ |
H A D | pxa2xx-ac97.c | 142 .startup = pxa2xx_ac97_hifi_startup, 146 .startup = pxa2xx_ac97_aux_startup, 150 .startup = pxa2xx_ac97_mic_startup,
|
/kernel/linux/linux-6.6/sound/soc/pxa/ |
H A D | pxa2xx-ac97.c | 139 .startup = pxa2xx_ac97_hifi_startup, 143 .startup = pxa2xx_ac97_aux_startup, 147 .startup = pxa2xx_ac97_mic_startup,
|
/kernel/linux/linux-5.10/sound/soc/amd/ |
H A D | acp-da7219-max98357a.c | 264 .startup = cz_da7219_play_startup, 269 .startup = cz_da7219_cap_startup, 274 .startup = cz_max_startup, 279 .startup = cz_dmic0_startup, 284 .startup = cz_dmic1_startup,
|
/kernel/linux/linux-5.10/drivers/accessibility/speakup/ |
H A D | speakup_txprt.c | 87 .startup = SYNTH_START, 114 module_param_named(start, synth_txprt.startup, short, 0444);
|
H A D | speakup_acntsa.c | 91 .startup = SYNTH_START, 131 module_param_named(start, synth_acntsa.startup, short, 0444);
|