blob: 1bd014b8e432f331a0e8b14e03007e15c9d55e4b [file] [log] [blame]
Tony Luckca01d6d2010-12-28 14:25:21 -08001/*
2 * Persistent Storage - pstore.h
3 *
4 * Copyright (C) 2010 Intel Corporation <tony.luck@intel.com>
5 *
6 * This code is the generic layer to export data records from platform
7 * level persistent storage via a file system.
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 */
22#ifndef _LINUX_PSTORE_H
23#define _LINUX_PSTORE_H
24
Kees Cook3d6d8d22011-11-17 13:13:29 -080025#include <linux/time.h>
26#include <linux/kmsg_dump.h>
27
Tony Luckca01d6d2010-12-28 14:25:21 -080028/* types */
29enum pstore_type_id {
30 PSTORE_TYPE_DMESG = 0,
31 PSTORE_TYPE_MCE = 1,
Anton Vorontsovf29e5952012-05-26 06:20:19 -070032 PSTORE_TYPE_CONSOLE = 2,
Tony Luckca01d6d2010-12-28 14:25:21 -080033 PSTORE_TYPE_UNKNOWN = 255
34};
35
36struct pstore_info {
37 struct module *owner;
38 char *name;
Don Zickusabd4d552011-08-12 10:54:51 -070039 spinlock_t buf_lock; /* serialize access to 'buf' */
Tony Luckca01d6d2010-12-28 14:25:21 -080040 char *buf;
41 size_t bufsize;
Kees Cookf6f82852011-11-17 12:58:07 -080042 struct mutex read_mutex; /* serialize open/read/close */
Chen Gong06cf91b2011-05-16 11:00:27 -070043 int (*open)(struct pstore_info *psi);
44 int (*close)(struct pstore_info *psi);
Chen Gong8d38d742011-05-16 10:58:57 -070045 ssize_t (*read)(u64 *id, enum pstore_type_id *type,
Kees Cookf6f82852011-11-17 12:58:07 -080046 struct timespec *time, char **buf,
47 struct pstore_info *psi);
Kees Cook3d6d8d22011-11-17 13:13:29 -080048 int (*write)(enum pstore_type_id type,
49 enum kmsg_dump_reason reason, u64 *id,
Chen Gongb238b8f2011-10-12 09:17:24 -070050 unsigned int part, size_t size, struct pstore_info *psi);
Matthew Garrett56280682011-07-21 16:57:53 -040051 int (*erase)(enum pstore_type_id type, u64 id,
Matthew Garrett638c1fd2011-07-21 16:57:52 -040052 struct pstore_info *psi);
Matthew Garrett638c1fd2011-07-21 16:57:52 -040053 void *data;
Tony Luckca01d6d2010-12-28 14:25:21 -080054};
55
56#ifdef CONFIG_PSTORE
57extern int pstore_register(struct pstore_info *);
Tony Luckca01d6d2010-12-28 14:25:21 -080058#else
59static inline int
60pstore_register(struct pstore_info *psi)
61{
62 return -ENODEV;
63}
Tony Luckca01d6d2010-12-28 14:25:21 -080064#endif
65
66#endif /*_LINUX_PSTORE_H*/