Searched refs:halt (Results 1 - 25 of 84) sorted by relevance

1234

/linux-master/arch/sh/include/asm/
H A Dreboot.h11 void (*halt)(void); member in struct:machine_ops
/linux-master/arch/alpha/kernel/
H A Dhead.S88 # It is handy, on occasion, to make halt actually just loop.
94 .globl halt
95 .ent halt
96 halt: label
99 .end halt
H A Dsys_miata.c83 if (request_irq(16 + 2, no_action, 0, "halt-switch", NULL))
84 pr_err("Failed to register halt-switch interrupt\n");
264 halt();
/linux-master/arch/alpha/boot/
H A Dhead.S98 .globl halt
99 .ent halt
100 halt: label
103 .end halt
/linux-master/drivers/gpu/drm/amd/amdgpu/
H A Damdgpu_gfxhub.h40 void (*halt)(struct amdgpu_device *adev); member in struct:amdgpu_gfxhub_funcs
H A Dsienna_cichlid.c108 if (adev->gfxhub.funcs->halt)
109 adev->gfxhub.funcs->halt(adev);
H A Dvpe_v6_1.c72 static void vpe_v6_1_halt(struct amdgpu_vpe *vpe, bool halt) argument
79 f32_cntl = REG_SET_FIELD(f32_cntl, VPEC_F32_CNTL, HALT, halt ? 1 : 0);
80 f32_cntl = REG_SET_FIELD(f32_cntl, VPEC_F32_CNTL, TH1_RESET, halt ? 1 : 0);
/linux-master/arch/x86/include/asm/
H A Dreboot.h11 void (*halt)(void); member in struct:machine_ops
H A Dirqflags.h93 static __always_inline void halt(void) function
/linux-master/arch/sh/kernel/
H A Dreboot.c65 .halt = native_machine_halt,
88 machine_ops.halt();
/linux-master/include/linux/
H A Dwkup_m3_ipc.h31 u32 halt; member in struct:wkup_m3_ipc
/linux-master/arch/powerpc/platforms/embedded6xx/
H A Dgamecube.c70 .halt = gamecube_halt,
H A Dlinkstation.c158 .halt = linkstation_halt,
H A Dwii.c175 .halt = wii_halt,
/linux-master/arch/x86/xen/
H A Dirq.c51 .halt = xen_halt,
/linux-master/drivers/net/usb/
H A Drndis_host.c303 struct rndis_halt *halt; member in union:__anon82
445 memset(u.halt, 0, sizeof *u.halt);
446 u.halt->msg_type = cpu_to_le32(RNDIS_MSG_HALT);
447 u.halt->msg_len = cpu_to_le32(sizeof *u.halt);
448 (void) rndis_command(dev, (void *)u.halt, CONTROL_BUFFER_SIZE);
476 struct rndis_halt *halt; local
479 halt = kzalloc(CONTROL_BUFFER_SIZE, GFP_KERNEL);
480 if (halt) {
[all...]
/linux-master/arch/powerpc/platforms/85xx/
H A Dsgy_cts1000.c10 #define pr_fmt(fmt) "gpio-halt: " fmt
29 .compatible = "sgy,gpio-halt",
69 NULL, 0, GPIOD_OUT_LOW, "gpio-halt");
72 dev_err(&pdev->dev, "failed to request halt GPIO: %d\n", err);
80 "gpio-halt", pdev);
89 /* Register our halt function */
90 ppc_md.halt = gpio_halt_cb;
93 dev_info(&pdev->dev, "registered halt GPIO, irq: %d\n", halt_irq);
122 ppc_md.halt = NULL;
142 .name = "gpio-halt",
[all...]
H A Dcorenet_generic.c164 ppc_md.halt = fsl_hv_halt;
/linux-master/drivers/usb/cdns3/
H A Dcdns3-trace.h28 TP_PROTO(struct cdns3_endpoint *ep_priv, u8 halt, u8 flush),
29 TP_ARGS(ep_priv, halt, flush),
32 __field(u8, halt)
37 __entry->halt = halt;
41 __get_str(name), __entry->halt ? "set" : "cleared")
/linux-master/drivers/usb/gadget/udc/cdns2/
H A Dcdns2-trace.h98 TP_PROTO(struct cdns2_endpoint *ep_priv, u8 halt, u8 flush),
99 TP_ARGS(ep_priv, halt, flush),
102 __field(u8, halt)
107 __entry->halt = halt;
111 __get_str(name), __entry->halt ? "set" : "cleared")
/linux-master/drivers/staging/media/ipu3/
H A Dipu3-mmu.c94 * imgu_mmu_set_halt - set CIO gate halt bit
96 * @halt: Desired state of the gate bit.
101 static void imgu_mmu_set_halt(struct imgu_mmu *mmu, bool halt) argument
106 writel(halt, mmu->base + REG_GP_HALT);
108 val, (val & 1) == halt, 1000, 100000);
111 dev_err(mmu->dev, "failed to %s CIO gate halt\n",
112 halt ? "set" : "clear");
/linux-master/tools/usb/
H A Dhcd-tests.sh9 # - halt: needs bulk sink+src, tests halt set/clear from host
20 #TYPES='control out in halt'
233 halt)
236 # firmware can halt them from the device, don't worry much if
239 echo "test 13: $COUNT halt set/clear"
/linux-master/arch/powerpc/platforms/maple/
H A Dsetup.c170 ppc_md.halt = rtas_halt;
357 .halt = maple_halt,
/linux-master/drivers/soc/ti/
H A Dwkup_m3_ipc.c168 m3_ipc_state->halt = (1 << IPC_DBG_HALT_SHIFT);
170 m3_ipc_state->halt = 0;
188 if (option == &m3_ipc_state->halt) {
210 &m3_ipc->halt,
477 m3_ipc->halt, 4);
/linux-master/arch/x86/kernel/
H A Dreboot.c587 * use NMIs as IPIs to tell the other CPUs to disable VMX/SVM and halt.
596 /* Disable VMX/SVM and halt on other CPUs. */
798 .halt = native_machine_halt,
826 machine_ops.halt();
872 halt();

Completed in 211 milliseconds

1234