2019-06-04 01:11:38 -07:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2007-05-03 05:31:38 -07:00
|
|
|
/*
|
|
|
|
* PowerPC 64-bit swsusp implementation
|
|
|
|
*
|
|
|
|
* Copyright 2006 Johannes Berg <johannes@sipsolutions.net>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <asm/iommu.h>
|
|
|
|
#include <linux/irq.h>
|
2011-05-27 11:25:11 -07:00
|
|
|
#include <linux/sched.h>
|
2007-05-03 05:31:38 -07:00
|
|
|
#include <linux/interrupt.h>
|
2017-02-08 10:51:31 -07:00
|
|
|
#include <linux/nmi.h>
|
2007-05-03 05:31:38 -07:00
|
|
|
|
2023-11-29 06:19:15 -07:00
|
|
|
void do_after_copyback(void);
|
|
|
|
|
2007-05-03 05:31:38 -07:00
|
|
|
void do_after_copyback(void)
|
|
|
|
{
|
|
|
|
iommu_restore();
|
|
|
|
touch_softlockup_watchdog();
|
|
|
|
mb();
|
|
|
|
}
|