Home
last modified time | relevance | path

Searched refs:restart (Results 1 – 25 of 729) sorted by relevance

12345678910>>...30

/Linux-v4.19/Documentation/devicetree/bindings/power/reset/
Dgpio-restart.txt1 Drive a GPIO line that can be used to restart the system from a restart
5 time, the driver will request the given gpio line and install a restart
8 the restart is initiated.
10 When the system is restarted, the restart handler will be invoked in
18 restart handler completes allowing other restart handlers to be attempted.
21 - compatible : should be "gpio-restart".
29 it to when the restart is initiated. If this optional property is not
33 0: Restart handler of last resort, with limited restart
35 128: Default restart handler; use if no other restart handler is
36 expected to be available, and/or if restart functionality is
[all …]
Dst-reset.txt4 - compatible: should be "stih407-restart".
8 restart {
9 compatible = "st,stih407-restart";
Dmsm-poweroff.txt4 Clearing that bit allows us to restart/poweroff. The difference
5 between poweroff and restart is determined by unique power manager IC
14 restart@fc4ab000 {
/Linux-v4.19/arch/arm/mach-omap2/
Dboard-generic.c50 .restart = omap2xxx_restart,
67 .restart = omap2xxx_restart,
114 .restart = omap3xxx_restart,
132 .restart = omap3xxx_restart,
149 .restart = omap3xxx_restart,
166 .restart = omap3xxx_restart,
182 .restart = omap3xxx_restart,
201 .restart = ti81xx_restart,
218 .restart = ti81xx_restart,
236 .restart = am33xx_restart,
[all …]
DMakefile57 obj-$(CONFIG_SOC_OMAP2420) += omap2-restart.o
58 obj-$(CONFIG_SOC_OMAP2430) += omap2-restart.o
59 obj-$(CONFIG_SOC_TI81XX) += ti81xx-restart.o
60 obj-$(CONFIG_SOC_AM33XX) += am33xx-restart.o
61 obj-$(CONFIG_SOC_AM43XX) += omap4-restart.o
62 obj-$(CONFIG_ARCH_OMAP3) += omap3-restart.o
63 obj-$(CONFIG_ARCH_OMAP4) += omap4-restart.o
64 obj-$(CONFIG_SOC_OMAP5) += omap4-restart.o
65 obj-$(CONFIG_SOC_DRA7XX) += omap4-restart.o
/Linux-v4.19/arch/arm/mach-ep93xx/
Dedb93xx.c250 .restart = ep93xx_restart,
263 .restart = ep93xx_restart,
276 .restart = ep93xx_restart,
289 .restart = ep93xx_restart,
302 .restart = ep93xx_restart,
315 .restart = ep93xx_restart,
328 .restart = ep93xx_restart,
341 .restart = ep93xx_restart,
Dmicro9.c87 .restart = ep93xx_restart,
100 .restart = ep93xx_restart,
113 .restart = ep93xx_restart,
126 .restart = ep93xx_restart,
/Linux-v4.19/arch/openrisc/kernel/
Dsignal.c237 int restart = 0; in do_signal() local
250 restart = -2; in do_signal()
255 restart++; in do_signal()
269 if (unlikely(restart) && regs->pc == restart_addr) { in do_signal()
287 if (unlikely(restart) && regs->pc == restart_addr) { in do_signal()
289 return restart; in do_signal()
307 int restart = do_signal(regs, syscall); in do_work_pending() local
308 if (unlikely(restart)) { in do_work_pending()
314 return restart; in do_work_pending()
/Linux-v4.19/arch/arm/mach-ks8695/
Dboard-og.c150 .restart = ks8695_restart,
162 .restart = ks8695_restart,
174 .restart = ks8695_restart,
186 .restart = ks8695_restart,
198 .restart = ks8695_restart,
Dboard-sg.c95 .restart = ks8695_restart,
107 .restart = ks8695_restart,
119 .restart = ks8695_restart,
/Linux-v4.19/arch/arm64/kernel/
Dcpu-reset.h24 typeof(__cpu_soft_restart) *restart; in cpu_soft_restart()
28 restart = (void *)__pa_symbol(__cpu_soft_restart); in cpu_soft_restart()
31 restart(el2_switch, entry, arg0, arg1, arg2); in cpu_soft_restart()
/Linux-v4.19/arch/arm/mach-pxa/
Dpxa-dt.c29 .restart = pxa_restart,
42 .restart = pxa_restart,
57 .restart = pxa_restart,
/Linux-v4.19/drivers/power/reset/
DKconfig30 This driver supports restart for Atmel AT91SAM9 and SAMA5
45 This driver supports restart for Axxia SoC.
54 This driver provides restart support for Broadcom Kona chips.
57 to have restart support.
65 This driver provides restart support for Broadcom STB boards.
68 to have restart support.
88 bool "GPIO restart driver"
92 If your board needs a GPIO high/low to restart, say Y and
105 Power off and restart support for Qualcomm boards.
123 This driver supports restart for Microsemi Ocelot SoC.
[all …]
/Linux-v4.19/kernel/time/
Dalarmtimer.c206 int restart = ALARMTIMER_NORESTART; in alarmtimer_fired() local
213 restart = alarm->function(alarm, base->gettime()); in alarmtimer_fired()
216 if (restart != ALARMTIMER_NORESTART) { in alarmtimer_fired()
716 struct restart_block *restart; in alarmtimer_do_nsleep() local
736 restart = &current->restart_block; in alarmtimer_do_nsleep()
737 if (restart->nanosleep.type != TT_NONE) { in alarmtimer_do_nsleep()
747 return nanosleep_copyout(restart, &rmt); in alarmtimer_do_nsleep()
767 static long __sched alarm_timer_nsleep_restart(struct restart_block *restart) in alarm_timer_nsleep_restart() argument
769 enum alarmtimer_type type = restart->nanosleep.clockid; in alarm_timer_nsleep_restart()
770 ktime_t exp = restart->nanosleep.expires; in alarm_timer_nsleep_restart()
[all …]
Dhrtimer.c1003 remove_hrtimer(struct hrtimer *timer, struct hrtimer_clock_base *base, bool restart) in remove_hrtimer() argument
1020 if (!restart) in remove_hrtimer()
1364 int restart; in __run_hrtimer() local
1398 restart = fn(timer); in __run_hrtimer()
1411 if (restart != HRTIMER_NORESTART && in __run_hrtimer()
1658 int nanosleep_copyout(struct restart_block *restart, struct timespec64 *ts) in nanosleep_copyout() argument
1660 switch(restart->nanosleep.type) { in nanosleep_copyout()
1663 if (compat_put_timespec64(ts, restart->nanosleep.compat_rmtp)) in nanosleep_copyout()
1668 if (put_timespec64(ts, restart->nanosleep.rmtp)) in nanosleep_copyout()
1679 struct restart_block *restart; in do_nanosleep() local
[all …]
/Linux-v4.19/arch/nios2/kernel/
Dsignal.c235 int restart = 0; in do_signal() local
254 restart = -2; in do_signal()
258 restart++; in do_signal()
268 if (unlikely(restart && regs->ea == restart_addr)) { in do_signal()
285 if (unlikely(restart) && regs->ea == restart_addr) { in do_signal()
295 return restart; in do_signal()
309 int restart = do_signal(regs); in do_notify_resume() local
311 if (unlikely(restart)) { in do_notify_resume()
317 return restart; in do_notify_resume()
/Linux-v4.19/arch/arm/mach-mvebu/
Dboard-v7.c164 .restart = mvebu_restart,
179 .restart = mvebu_restart,
193 .restart = mvebu_restart,
207 .restart = mvebu_restart,
/Linux-v4.19/samples/mic/mpssd/
Dmpss141 restart() function
186 restart)
187 restart
/Linux-v4.19/arch/powerpc/platforms/embedded6xx/
Dmvme5100.c43 static u_char *restart; variable
170 restart = ioremap(BOARD_MODRST_REG, 4); in mvme5100_setup_arch()
186 out_8((u_char *) restart, 0x01); in mvme5100_restart()
216 .restart = mvme5100_restart, in define_machine()
/Linux-v4.19/arch/powerpc/kernel/
Dsignal.c57 int restart = 1; in check_syscall_restart() local
74 restart = !has_handler; in check_syscall_restart()
80 restart = !has_handler || (ka->sa.sa_flags & SA_RESTART) != 0; in check_syscall_restart()
90 if (restart) { in check_syscall_restart()
/Linux-v4.19/drivers/watchdog/
Drave-sp-wdt.c42 int (*restart)(struct watchdog_device *); member
154 const int ret = sp_wd->variant->restart(&sp_wd->wdd); in rave_sp_wdt_reboot_notifier()
224 .restart = rave_sp_wdt_restart,
231 .restart = rave_sp_wdt_legacy_restart,
238 .restart = rave_sp_wdt_rdu_restart,
/Linux-v4.19/drivers/media/i2c/
Dmsp3400-kthreads.c514 restart: in msp3400c_thread()
516 state->restart = 0; in msp3400c_thread()
541 goto restart; in msp3400c_thread()
557 goto restart; in msp3400c_thread()
594 goto restart; in msp3400c_thread()
680 goto restart; in msp3400c_thread()
705 restart: in msp3410d_thread()
707 state->restart = 0; in msp3410d_thread()
736 goto restart; in msp3410d_thread()
751 goto restart; in msp3410d_thread()
[all …]
/Linux-v4.19/drivers/slimbus/
Dsched.c25 int slim_ctrl_clk_pause(struct slim_controller *ctrl, bool wakeup, u8 restart) in slim_ctrl_clk_pause() argument
35 if (wakeup == false && restart > SLIM_CLK_UNSPECIFIED) in slim_ctrl_clk_pause()
99 msg.wbuf = &restart; in slim_ctrl_clk_pause()
/Linux-v4.19/drivers/ps3/
Dsys-manager-core.c60 if (ps3_sys_manager_ops.restart) in ps3_sys_manager_restart()
61 ps3_sys_manager_ops.restart(ps3_sys_manager_ops.dev); in ps3_sys_manager_restart()
/Linux-v4.19/arch/sh/kernel/
Dreboot.c71 .restart = native_machine_restart,
90 machine_ops.restart(cmd); in machine_restart()

12345678910>>...30