/drivers/power/reset/ |
D | reboot-mode.c | 22 static unsigned int get_reboot_mode_magic(struct reboot_mode_driver *reboot, in get_reboot_mode_magic() argument 32 list_for_each_entry(info, &reboot->head, list) { in get_reboot_mode_magic() 45 struct reboot_mode_driver *reboot; in reboot_mode_notify() local 48 reboot = container_of(this, struct reboot_mode_driver, reboot_notifier); in reboot_mode_notify() 49 magic = get_reboot_mode_magic(reboot, cmd); in reboot_mode_notify() 51 reboot->write(reboot, magic); in reboot_mode_notify() 62 int reboot_mode_register(struct reboot_mode_driver *reboot) in reboot_mode_register() argument 66 struct device_node *np = reboot->dev->of_node; in reboot_mode_register() 70 INIT_LIST_HEAD(&reboot->head); in reboot_mode_register() 76 info = devm_kzalloc(reboot->dev, sizeof(*info), GFP_KERNEL); in reboot_mode_register() [all …]
|
D | nvmem-reboot-mode.c | 15 struct reboot_mode_driver reboot; member 19 static int nvmem_reboot_mode_write(struct reboot_mode_driver *reboot, in nvmem_reboot_mode_write() argument 25 nvmem_rbm = container_of(reboot, struct nvmem_reboot_mode, reboot); in nvmem_reboot_mode_write() 29 dev_err(reboot->dev, "update reboot mode bits failed\n"); in nvmem_reboot_mode_write() 43 nvmem_rbm->reboot.dev = &pdev->dev; in nvmem_reboot_mode_probe() 44 nvmem_rbm->reboot.write = nvmem_reboot_mode_write; in nvmem_reboot_mode_probe() 52 ret = devm_reboot_mode_register(&pdev->dev, &nvmem_rbm->reboot); in nvmem_reboot_mode_probe()
|
D | Makefile | 8 obj-$(CONFIG_POWER_RESET_BRCMSTB) += brcmstb-reboot.o 12 obj-$(CONFIG_POWER_RESET_HISI) += hisi-reboot.o 21 obj-$(CONFIG_POWER_RESET_VERSATILE) += arm-versatile-reboot.o 23 obj-$(CONFIG_POWER_RESET_XGENE) += xgene-reboot.o 25 obj-$(CONFIG_POWER_RESET_SYSCON) += syscon-reboot.o 28 obj-$(CONFIG_POWER_RESET_ZX) += zx-reboot.o 29 obj-$(CONFIG_REBOOT_MODE) += reboot-mode.o 30 obj-$(CONFIG_SYSCON_REBOOT_MODE) += syscon-reboot-mode.o 32 obj-$(CONFIG_NVMEM_REBOOT_MODE) += nvmem-reboot-mode.o
|
D | syscon-reboot-mode.c | 18 struct reboot_mode_driver reboot; member 23 static int syscon_reboot_mode_write(struct reboot_mode_driver *reboot, in syscon_reboot_mode_write() argument 29 syscon_rbm = container_of(reboot, struct syscon_reboot_mode, reboot); in syscon_reboot_mode_write() 34 dev_err(reboot->dev, "update reboot mode bits failed\n"); in syscon_reboot_mode_write() 48 syscon_rbm->reboot.dev = &pdev->dev; in syscon_reboot_mode_probe() 49 syscon_rbm->reboot.write = syscon_reboot_mode_write; in syscon_reboot_mode_probe() 62 ret = devm_reboot_mode_register(&pdev->dev, &syscon_rbm->reboot); in syscon_reboot_mode_probe()
|
D | Kconfig | 116 power-on and reboot reason, Say Y. 166 bool "ARM Versatile family reboot driver" 230 tristate "Generic SYSCON regmap reboot mode driver" 235 Say y here will enable reboot mode driver. This will 236 get reboot mode arguments and store it in SYSCON mapped 250 tristate "Generic NVMEM reboot mode driver" 254 Say y here will enable reboot mode driver. This will 255 get reboot mode arguments and store it in a NVMEM cell,
|
D | qcom-pon.c | 28 static int pm8916_reboot_mode_write(struct reboot_mode_driver *reboot, in pm8916_reboot_mode_write() argument 32 (reboot, struct pm8916_pon, reboot_mode); in pm8916_reboot_mode_write()
|
/drivers/firmware/efi/ |
D | Kconfig | 111 This module installs a reboot hook, such that if reboot() is 117 set with the reboot reason: "reboot" or "shutdown". The 118 bootloader reads this reboot reason and takes particular 174 Request that the firmware clear the contents of RAM after a reboot
|
D | Makefile | 14 obj-$(CONFIG_EFI) += efi.o vars.o reboot.o memattr.o tpm.o
|
/drivers/watchdog/ |
D | Kconfig | 18 reboot the machine) and a driver for hardware watchdog boards, which 26 also monitor NFS connections and can reboot the machine when the process 59 enough your device will reboot. 130 a watchdog feeder is dead and reboot is unavoidable. 148 A software monitoring watchdog. This will fail to reboot your system 351 ARM Primecell SP805 Watchdog timer. This will reboot your system when 392 Watchdog timer embedded into Alphascale asm9260 chips. This will reboot your 399 Watchdog timer embedded into AT91RM9200 chips. This will reboot your 408 reboot your system when the timeout is reached. 417 This will reboot your system when the timeout is reached. [all …]
|
D | cpwd.c | 81 bool reboot; member 551 p->reboot = (prop_val ? true : false); in cpwd_probe()
|
/drivers/acpi/ |
D | Makefile | 21 acpi-y += osi.o osl.o utils.o reboot.o
|
D | Kconfig | 145 Controller in a way that a normal reboot is not enough. You then
|
/drivers/platform/chrome/ |
D | cros_ec_sysfs.c | 314 static DEVICE_ATTR_RW(reboot);
|
/drivers/misc/mic/ |
D | Kconfig | 122 shutdown, reset and reboot of MIC devices.
|
/drivers/net/ethernet/myricom/myri10ge/ |
D | myri10ge.c | 3357 u32 reboot; in myri10ge_read_reboot() local 3364 pci_read_config_dword(pdev, vs + 0x14, &reboot); in myri10ge_read_reboot() 3365 return reboot; in myri10ge_read_reboot() 3413 u32 reboot, rx_pause_cnt; in myri10ge_watchdog() local 3427 reboot = myri10ge_read_reboot(mgp); in myri10ge_watchdog() 3429 reboot, myri10ge_reset_recover ? "" : " not"); in myri10ge_watchdog()
|
/drivers/md/bcache/ |
D | super.c | 2608 static struct notifier_block reboot = { variable 2626 unregister_reboot_notifier(&reboot); in bcache_exit() 2669 register_reboot_notifier(&reboot); in bcache_init() 2673 unregister_reboot_notifier(&reboot); in bcache_init()
|
/drivers/firmware/ |
D | ti_sci.c | 3397 int reboot = 0; in ti_sci_probe() local 3426 reboot = of_property_read_bool(dev->of_node, in ti_sci_probe() 3500 if (reboot) { in ti_sci_probe()
|
/drivers/char/ |
D | Kconfig | 199 shutdown and reboot by pressing the orange button a number of times. 488 out to lunch past a certain margin. It can reboot the system
|
/drivers/spi/ |
D | Kconfig | 942 SPI slave handler to allow remote control of system reboot, power
|
/drivers/staging/speakup/ |
D | spkguide.txt | 528 running. In other words, it is not necessary to reboot the system 959 you reboot, or until you load another keymap.
|