blob: 0e899e47c325b51ac8b3c89a79f1d1a8f9fd5ad3 [file] [log] [blame]
Johannes Berg543b9fd2007-05-03 22:31:38 +10001/*
2 * PowerPC 64-bit swsusp implementation
3 *
4 * Copyright 2006 Johannes Berg <johannes@sipsolutions.net>
5 *
6 * GPLv2
7 */
8
Johannes Berg543b9fd2007-05-03 22:31:38 +10009#include <asm/iommu.h>
10#include <linux/irq.h>
Paul Gortmaker62fe91b2011-05-27 14:25:11 -040011#include <linux/sched.h>
Johannes Berg543b9fd2007-05-03 22:31:38 +100012#include <linux/interrupt.h>
13
14void do_after_copyback(void)
15{
16 iommu_restore();
17 touch_softlockup_watchdog();
18 mb();
19}
20
21void _iommu_save(void)
22{
23 iommu_save();
24}