Lines Matching refs:s3

765 	xhci->s3.command = readl(&xhci->op_regs->command);  in xhci_save_registers()
766 xhci->s3.dev_nt = readl(&xhci->op_regs->dev_notification); in xhci_save_registers()
767 xhci->s3.dcbaa_ptr = xhci_read_64(xhci, &xhci->op_regs->dcbaa_ptr); in xhci_save_registers()
768 xhci->s3.config_reg = readl(&xhci->op_regs->config_reg); in xhci_save_registers()
769 xhci->s3.erst_size = readl(&xhci->ir_set->erst_size); in xhci_save_registers()
770 xhci->s3.erst_base = xhci_read_64(xhci, &xhci->ir_set->erst_base); in xhci_save_registers()
771 xhci->s3.erst_dequeue = xhci_read_64(xhci, &xhci->ir_set->erst_dequeue); in xhci_save_registers()
772 xhci->s3.irq_pending = readl(&xhci->ir_set->irq_pending); in xhci_save_registers()
773 xhci->s3.irq_control = readl(&xhci->ir_set->irq_control); in xhci_save_registers()
778 writel(xhci->s3.command, &xhci->op_regs->command); in xhci_restore_registers()
779 writel(xhci->s3.dev_nt, &xhci->op_regs->dev_notification); in xhci_restore_registers()
780 xhci_write_64(xhci, xhci->s3.dcbaa_ptr, &xhci->op_regs->dcbaa_ptr); in xhci_restore_registers()
781 writel(xhci->s3.config_reg, &xhci->op_regs->config_reg); in xhci_restore_registers()
782 writel(xhci->s3.erst_size, &xhci->ir_set->erst_size); in xhci_restore_registers()
783 xhci_write_64(xhci, xhci->s3.erst_base, &xhci->ir_set->erst_base); in xhci_restore_registers()
784 xhci_write_64(xhci, xhci->s3.erst_dequeue, &xhci->ir_set->erst_dequeue); in xhci_restore_registers()
785 writel(xhci->s3.irq_pending, &xhci->ir_set->irq_pending); in xhci_restore_registers()
786 writel(xhci->s3.irq_control, &xhci->ir_set->irq_control); in xhci_restore_registers()