Blame view

drivers/nvdimm/pfn.h 1.63 KB
e1455744b   Dan Williams   libnvdimm, pfn: '...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  /*
   * Copyright (c) 2014-2015, Intel Corporation.
   *
   * This program is free software; you can redistribute it and/or modify it
   * under the terms and conditions of the GNU General Public License,
   * version 2, as published by the Free Software Foundation.
   *
   * This program is distributed in the hope it will be useful, but WITHOUT
   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
   * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
   * more details.
   */
  
  #ifndef __NVDIMM_PFN_H
  #define __NVDIMM_PFN_H
  
  #include <linux/types.h>
d9cbe09d3   Dan Williams   libnvdimm, pmem: ...
18
  #include <linux/mmzone.h>
e1455744b   Dan Williams   libnvdimm, pfn: '...
19
20
21
  
  #define PFN_SIG_LEN 16
  #define PFN_SIG "NVDIMM_PFN_INFO\0"
c5ed92686   Dan Williams   libnvdimm, dax: a...
22
  #define DAX_SIG "NVDIMM_DAX_INFO\0"
e1455744b   Dan Williams   libnvdimm, pfn: '...
23
24
25
26
27
28
29
30
  
  struct nd_pfn_sb {
  	u8 signature[PFN_SIG_LEN];
  	u8 uuid[16];
  	u8 parent_uuid[16];
  	__le32 flags;
  	__le16 version_major;
  	__le16 version_minor;
cfe30b872   Dan Williams   libnvdimm, pmem: ...
31
  	__le64 dataoff; /* relative to namespace_base + start_pad */
e1455744b   Dan Williams   libnvdimm, pfn: '...
32
33
  	__le64 npfns;
  	__le32 mode;
cfe30b872   Dan Williams   libnvdimm, pmem: ...
34
35
36
  	/* minor-version-1 additions for section alignment */
  	__le32 start_pad;
  	__le32 end_trunc;
45a0dac04   Dan Williams   libnvdimm, dax: r...
37
38
39
  	/* minor-version-2 record the base alignment of the mapping */
  	__le32 align;
  	u8 padding[4000];
e1455744b   Dan Williams   libnvdimm, pfn: '...
40
41
  	__le64 checksum;
  };
d9cbe09d3   Dan Williams   libnvdimm, pmem: ...
42
43
44
45
46
47
48
49
50
51
52
53
  
  #ifdef CONFIG_SPARSEMEM
  #define PFN_SECTION_ALIGN_DOWN(x) SECTION_ALIGN_DOWN(x)
  #define PFN_SECTION_ALIGN_UP(x) SECTION_ALIGN_UP(x)
  #else
  /*
   * In this case ZONE_DEVICE=n and we will disable 'pfn' device support,
   * but we still want pmem to compile.
   */
  #define PFN_SECTION_ALIGN_DOWN(x) (x)
  #define PFN_SECTION_ALIGN_UP(x) (x)
  #endif
cfe30b872   Dan Williams   libnvdimm, pmem: ...
54
55
56
  
  #define PHYS_SECTION_ALIGN_DOWN(x) PFN_PHYS(PFN_SECTION_ALIGN_DOWN(PHYS_PFN(x)))
  #define PHYS_SECTION_ALIGN_UP(x) PFN_PHYS(PFN_SECTION_ALIGN_UP(PHYS_PFN(x)))
e1455744b   Dan Williams   libnvdimm, pfn: '...
57
  #endif /* __NVDIMM_PFN_H */