blob: 16ee3baaf09ad5f13ee478d2127f10908196c3d0 [file] [log] [blame]
Thomas Gleixner7f904d72019-06-04 10:11:38 +02001// SPDX-License-Identifier: GPL-2.0-only
Johannes Berg543b9fd2007-05-03 22:31:38 +10002/*
3 * PowerPC 64-bit swsusp implementation
4 *
5 * Copyright 2006 Johannes Berg <johannes@sipsolutions.net>
Johannes Berg543b9fd2007-05-03 22:31:38 +10006 */
7
Johannes Berg543b9fd2007-05-03 22:31:38 +10008#include <asm/iommu.h>
9#include <linux/irq.h>
Paul Gortmaker62fe91b2011-05-27 14:25:11 -040010#include <linux/sched.h>
Johannes Berg543b9fd2007-05-03 22:31:38 +100011#include <linux/interrupt.h>
Ingo Molnar38b8d202017-02-08 18:51:31 +010012#include <linux/nmi.h>
Johannes Berg543b9fd2007-05-03 22:31:38 +100013
14void do_after_copyback(void)
15{
16 iommu_restore();
17 touch_softlockup_watchdog();
18 mb();
19}