/openbmc/linux/arch/arm/mach-omap2/ |
H A D | omap-mpuss-lowpower.c | 183 static void l2x0_pwrst_prepare(unsigned int cpu_id, unsigned int save_state) in l2x0_pwrst_prepare() argument 188 writel_relaxed(save_state, pm_info->l2x0_sar_addr); in l2x0_pwrst_prepare() 231 unsigned int save_state = 0, cpu_logic_state = PWRDM_POWER_RET; in omap4_enter_lowpower() local 239 save_state = 0; in omap4_enter_lowpower() 243 save_state = 1; in omap4_enter_lowpower() 247 save_state = 0; in omap4_enter_lowpower() 269 save_state = 2; in omap4_enter_lowpower() 280 l2x0_pwrst_prepare(cpu, save_state); in omap4_enter_lowpower() 285 if (save_state) in omap4_enter_lowpower() 286 cpu_suspend(save_state, omap_pm_ops.finish_suspend); in omap4_enter_lowpower() [all …]
|
H A D | pm34xx.c | 172 static int omap34xx_do_sram_idle(unsigned long save_state) in omap34xx_do_sram_idle() argument 174 omap34xx_cpu_suspend(save_state); in omap34xx_do_sram_idle() 186 int save_state = 0; in omap_sram_idle() local 198 save_state = 0; in omap_sram_idle() 201 save_state = 3; in omap_sram_idle() 256 if (save_state) in omap_sram_idle() 262 if (save_state == 1 || save_state == 3) in omap_sram_idle() 263 cpu_suspend(save_state, omap34xx_do_sram_idle); in omap_sram_idle() 265 omap34xx_do_sram_idle(save_state); in omap_sram_idle()
|
H A D | pm.h | 52 extern void omap34xx_cpu_suspend(int save_state);
|
/openbmc/linux/drivers/pci/pcie/ |
H A D | ptm.c | 90 struct pci_cap_saved_state *save_state; in pci_save_ptm_state() local 96 save_state = pci_find_saved_ext_cap(dev, PCI_EXT_CAP_ID_PTM); in pci_save_ptm_state() 97 if (!save_state) in pci_save_ptm_state() 100 cap = (u32 *)&save_state->cap.data[0]; in pci_save_ptm_state() 107 struct pci_cap_saved_state *save_state; in pci_restore_ptm_state() local 113 save_state = pci_find_saved_ext_cap(dev, PCI_EXT_CAP_ID_PTM); in pci_restore_ptm_state() 114 if (!save_state) in pci_restore_ptm_state() 117 cap = (u32 *)&save_state->cap.data[0]; in pci_restore_ptm_state()
|
H A D | dpc.c | 45 struct pci_cap_saved_state *save_state; in pci_save_dpc_state() local 51 save_state = pci_find_saved_ext_cap(dev, PCI_EXT_CAP_ID_DPC); in pci_save_dpc_state() 52 if (!save_state) in pci_save_dpc_state() 55 cap = (u16 *)&save_state->cap.data[0]; in pci_save_dpc_state() 61 struct pci_cap_saved_state *save_state; in pci_restore_dpc_state() local 67 save_state = pci_find_saved_ext_cap(dev, PCI_EXT_CAP_ID_DPC); in pci_restore_dpc_state() 68 if (!save_state) in pci_restore_dpc_state() 71 cap = (u16 *)&save_state->cap.data[0]; in pci_restore_dpc_state()
|
H A D | aer.c | 326 struct pci_cap_saved_state *save_state; in pci_save_aer_state() local 332 save_state = pci_find_saved_ext_cap(dev, PCI_EXT_CAP_ID_ERR); in pci_save_aer_state() 333 if (!save_state) in pci_save_aer_state() 336 cap = &save_state->cap.data[0]; in pci_save_aer_state() 348 struct pci_cap_saved_state *save_state; in pci_restore_aer_state() local 354 save_state = pci_find_saved_ext_cap(dev, PCI_EXT_CAP_ID_ERR); in pci_restore_aer_state() 355 if (!save_state) in pci_restore_aer_state() 358 cap = &save_state->cap.data[0]; in pci_restore_aer_state()
|
/openbmc/linux/drivers/pci/ |
H A D | vc.c | 185 struct pci_cap_saved_state *save_state, in pci_vc_do_save_buffer() argument 191 u8 *buf = save_state ? (u8 *)save_state->cap.data : NULL; in pci_vc_do_save_buffer() 194 if (buf && save_state->cap.size != in pci_vc_do_save_buffer() 358 struct pci_cap_saved_state *save_state; in pci_save_vc_state() local 364 save_state = pci_find_saved_ext_cap(dev, vc_caps[i].id); in pci_save_vc_state() 365 if (!save_state) { in pci_save_vc_state() 371 ret = pci_vc_do_save_buffer(dev, pos, save_state, true); in pci_save_vc_state() 395 struct pci_cap_saved_state *save_state; in pci_restore_vc_state() local 398 save_state = pci_find_saved_ext_cap(dev, vc_caps[i].id); in pci_restore_vc_state() 399 if (!save_state || !pos) in pci_restore_vc_state() [all …]
|
H A D | pci.c | 1573 struct pci_cap_saved_state *save_state; in pci_save_pcie_state() local 1579 save_state = pci_find_saved_cap(dev, PCI_CAP_ID_EXP); in pci_save_pcie_state() 1580 if (!save_state) { in pci_save_pcie_state() 1585 cap = (u16 *)&save_state->cap.data[0]; in pci_save_pcie_state() 1618 struct pci_cap_saved_state *save_state; in pci_restore_pcie_state() local 1621 save_state = pci_find_saved_cap(dev, PCI_CAP_ID_EXP); in pci_restore_pcie_state() 1622 if (!save_state) in pci_restore_pcie_state() 1632 cap = (u16 *)&save_state->cap.data[0]; in pci_restore_pcie_state() 1645 struct pci_cap_saved_state *save_state; in pci_save_pcix_state() local 1651 save_state = pci_find_saved_cap(dev, PCI_CAP_ID_PCIX); in pci_save_pcix_state() [all …]
|
/openbmc/linux/tools/tracing/latency/ |
H A D | latency-collector.c | 204 static struct ftrace_state save_state; variable 607 mutex_lock(&save_state.mutex); in restore_ftrace() 609 restore_file(TR_CURRENT, &save_state.tracer, current_tracer); in restore_ftrace() 610 restore_file(TR_THRESH, &save_state.thresh, threshold); in restore_ftrace() 611 restore_trace_opts(&save_state, use_options); in restore_ftrace() 613 mutex_unlock(&save_state.mutex); in restore_ftrace() 652 mutex_init(&save_state.mutex, &mattr); in init_save_state() 655 save_state.tracer = NULL; in init_save_state() 656 save_state.thresh = NULL; in init_save_state() 657 save_state.opt_valid[OPTIDX_FUNC_TR] = false; in init_save_state() [all …]
|
/openbmc/qemu/include/migration/ |
H A D | register.h | 40 void (*save_state)(QEMUFile *f, void *opaque); member
|
/openbmc/linux/drivers/pcmcia/ |
H A D | yenta_socket.c | 873 .save_state = ti_save_state, 879 .save_state = ti_save_state, 885 .save_state = ti_save_state, 891 .save_state = ti_save_state, 897 .save_state = ti_save_state, 905 .save_state = ricoh_save_state, 1311 if (socket->type && socket->type->save_state) in yenta_dev_suspend_noirq() 1312 socket->type->save_state(socket); in yenta_dev_suspend_noirq()
|
H A D | yenta_socket.h | 109 void (*save_state)(struct yenta_socket *); member
|
/openbmc/qemu/hw/s390x/ |
H A D | tod.c | 102 .save_state = s390_tod_save,
|
/openbmc/qemu/hw/i386/kvm/ |
H A D | xenstore_impl.c | 1415 struct save_state { struct 1426 struct save_state *ss = opaque; in save_node() argument 1479 static void save_tree(struct save_state *ss, uint32_t tx_id, XsNode *root) in save_tree() 1489 struct save_state *ss = opaque; in save_tx() 1500 struct save_state *ss = opaque; in save_watch() 1513 struct save_state ss; in xs_impl_serialize()
|
/openbmc/linux/drivers/parport/ |
H A D | parport_atari.c | 153 .save_state = parport_atari_save_state,
|
H A D | parport_amiga.c | 169 .save_state = amiga_save_state,
|
H A D | share.c | 85 .save_state = dead_state, 995 port->ops->save_state(port, dev->state); in parport_claim() 1189 port->ops->save_state(port, dev->state); in parport_release()
|
H A D | parport_gsc.c | 109 .save_state = parport_gsc_save_state,
|
H A D | parport_mfc3.c | 263 .save_state = mfc3_save_state,
|
H A D | parport_sunbpp.c | 250 .save_state = parport_sunbpp_save_state,
|
/openbmc/linux/drivers/video/fbdev/intelfb/ |
H A D | intelfb.h | 279 struct intelfb_hwstate save_state; member
|
H A D | intelfbdrv.c | 843 i = intelfbhw_read_hw_state(dinfo, &dinfo->save_state, in intelfb_pci_register() 850 intelfbhw_print_hw_state(dinfo, &dinfo->save_state); in intelfb_pci_register() 856 dinfo->pipe = intelfbhw_active_pipe(&dinfo->save_state); in intelfb_pci_register() 1353 memcpy(hw, &dinfo->save_state, sizeof(*hw)); in intelfb_set_par()
|
/openbmc/linux/drivers/hwtracing/coresight/ |
H A D | coresight-etm4x-core.c | 1683 state = drvdata->save_state; in __etm4_cpu_save() 1800 if (local_read(&drvdata->mode) && drvdata->save_state) in etm4_cpu_save() 1808 struct etmv4_save_state *state = drvdata->save_state; in __etm4_cpu_restore() 2083 drvdata->save_state = devm_kmalloc(dev, in etm4_probe() 2085 if (!drvdata->save_state) in etm4_probe()
|
/openbmc/qemu/target/sparc/ |
H A D | translate.c | 1047 static void save_state(DisasContext *dc) in save_state() function 1056 save_state(dc); in gen_exception() 1817 save_state(dc); in gen_ld_asi() 1893 save_state(dc); in gen_st_asi() 1964 save_state(dc); in gen_ldstub_asi() 2065 save_state(dc); in gen_ldf_asi() 2266 save_state(dc); in gen_ldda_asi() 2367 save_state(dc); in gen_stda_asi() 2777 save_state(dc); in do_tcc() 3384 save_state(dc); in do_wrpowerdown() [all …]
|
/openbmc/linux/drivers/infiniband/sw/rxe/ |
H A D | rxe_req.c | 577 static void save_state(struct rxe_send_wqe *wqe, in save_state() function 806 save_state(wqe, qp, &rollback_wqe, &rollback_psn); in rxe_requester()
|