ACPI / PM: Update file information and the list of includes in nvs.c
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / acpi / nvs.c
blob7d648092427e3704779d32529c5aedab0b168f9f
1 /*
2 * nvs.c - Routines for saving and restoring ACPI NVS memory region
4 * Copyright (C) 2008-2011 Rafael J. Wysocki <rjw@sisk.pl>, Novell Inc.
6 * This file is released under the GPLv2.
7 */
9 #include <linux/io.h>
10 #include <linux/kernel.h>
11 #include <linux/list.h>
12 #include <linux/mm.h>
13 #include <linux/slab.h>
14 #include <linux/acpi.h>
17 * Platforms, like ACPI, may want us to save some memory used by them during
18 * suspend and to restore the contents of this memory during the subsequent
19 * resume. The code below implements a mechanism allowing us to do that.
22 struct nvs_page {
23 unsigned long phys_start;
24 unsigned int size;
25 void *kaddr;
26 void *data;
27 struct list_head node;
30 static LIST_HEAD(nvs_list);
32 /**
33 * suspend_nvs_register - register platform NVS memory region to save
34 * @start - physical address of the region
35 * @size - size of the region
37 * The NVS region need not be page-aligned (both ends) and we arrange
38 * things so that the data from page-aligned addresses in this region will
39 * be copied into separate RAM pages.
41 int suspend_nvs_register(unsigned long start, unsigned long size)
43 struct nvs_page *entry, *next;
45 while (size > 0) {
46 unsigned int nr_bytes;
48 entry = kzalloc(sizeof(struct nvs_page), GFP_KERNEL);
49 if (!entry)
50 goto Error;
52 list_add_tail(&entry->node, &nvs_list);
53 entry->phys_start = start;
54 nr_bytes = PAGE_SIZE - (start & ~PAGE_MASK);
55 entry->size = (size < nr_bytes) ? size : nr_bytes;
57 start += entry->size;
58 size -= entry->size;
60 return 0;
62 Error:
63 list_for_each_entry_safe(entry, next, &nvs_list, node) {
64 list_del(&entry->node);
65 kfree(entry);
67 return -ENOMEM;
70 /**
71 * suspend_nvs_free - free data pages allocated for saving NVS regions
73 void suspend_nvs_free(void)
75 struct nvs_page *entry;
77 list_for_each_entry(entry, &nvs_list, node)
78 if (entry->data) {
79 free_page((unsigned long)entry->data);
80 entry->data = NULL;
81 if (entry->kaddr) {
82 iounmap(entry->kaddr);
83 entry->kaddr = NULL;
88 /**
89 * suspend_nvs_alloc - allocate memory necessary for saving NVS regions
91 int suspend_nvs_alloc(void)
93 struct nvs_page *entry;
95 list_for_each_entry(entry, &nvs_list, node) {
96 entry->data = (void *)__get_free_page(GFP_KERNEL);
97 if (!entry->data) {
98 suspend_nvs_free();
99 return -ENOMEM;
102 return 0;
106 * suspend_nvs_save - save NVS memory regions
108 int suspend_nvs_save(void)
110 struct nvs_page *entry;
112 printk(KERN_INFO "PM: Saving platform NVS memory\n");
114 list_for_each_entry(entry, &nvs_list, node)
115 if (entry->data) {
116 entry->kaddr = ioremap(entry->phys_start, entry->size);
117 if (!entry->kaddr) {
118 suspend_nvs_free();
119 return -ENOMEM;
121 memcpy(entry->data, entry->kaddr, entry->size);
124 return 0;
128 * suspend_nvs_restore - restore NVS memory regions
130 * This function is going to be called with interrupts disabled, so it
131 * cannot iounmap the virtual addresses used to access the NVS region.
133 void suspend_nvs_restore(void)
135 struct nvs_page *entry;
137 printk(KERN_INFO "PM: Restoring platform NVS memory\n");
139 list_for_each_entry(entry, &nvs_list, node)
140 if (entry->data)
141 memcpy(entry->kaddr, entry->data, entry->size);