blob: 168e88480223790d95f4f2e46976e93c32d926a6 [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
9#include <asm/system.h>
10#include <asm/iommu.h>
11#include <linux/irq.h>
Paul Gortmaker62fe91b2011-05-27 14:25:11 -040012#include <linux/sched.h>
Johannes Berg543b9fd2007-05-03 22:31:38 +100013#include <linux/interrupt.h>
14
15void do_after_copyback(void)
16{
17 iommu_restore();
18 touch_softlockup_watchdog();
19 mb();
20}
21
22void _iommu_save(void)
23{
24 iommu_save();
25}