Thomas Gleixner | 2025cf9 | 2019-05-29 07:18:02 -0700 | [diff] [blame^] | 1 | /* SPDX-License-Identifier: GPL-2.0-only */ |
Dan Williams | e145574 | 2015-07-30 17:57:47 -0400 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2014-2015, Intel Corporation. |
Dan Williams | e145574 | 2015-07-30 17:57:47 -0400 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #ifndef __NVDIMM_PFN_H |
| 7 | #define __NVDIMM_PFN_H |
| 8 | |
| 9 | #include <linux/types.h> |
Dan Williams | d9cbe09 | 2016-03-03 09:14:36 -0800 | [diff] [blame] | 10 | #include <linux/mmzone.h> |
Dan Williams | e145574 | 2015-07-30 17:57:47 -0400 | [diff] [blame] | 11 | |
| 12 | #define PFN_SIG_LEN 16 |
| 13 | #define PFN_SIG "NVDIMM_PFN_INFO\0" |
Dan Williams | c5ed926 | 2016-05-18 14:50:12 -0700 | [diff] [blame] | 14 | #define DAX_SIG "NVDIMM_DAX_INFO\0" |
Dan Williams | e145574 | 2015-07-30 17:57:47 -0400 | [diff] [blame] | 15 | |
| 16 | struct nd_pfn_sb { |
| 17 | u8 signature[PFN_SIG_LEN]; |
| 18 | u8 uuid[16]; |
| 19 | u8 parent_uuid[16]; |
| 20 | __le32 flags; |
| 21 | __le16 version_major; |
| 22 | __le16 version_minor; |
Dan Williams | cfe30b8 | 2016-03-03 09:38:00 -0800 | [diff] [blame] | 23 | __le64 dataoff; /* relative to namespace_base + start_pad */ |
Dan Williams | e145574 | 2015-07-30 17:57:47 -0400 | [diff] [blame] | 24 | __le64 npfns; |
| 25 | __le32 mode; |
Dan Williams | cfe30b8 | 2016-03-03 09:38:00 -0800 | [diff] [blame] | 26 | /* minor-version-1 additions for section alignment */ |
| 27 | __le32 start_pad; |
| 28 | __le32 end_trunc; |
Dan Williams | 45a0dac | 2016-03-31 15:41:18 -0700 | [diff] [blame] | 29 | /* minor-version-2 record the base alignment of the mapping */ |
| 30 | __le32 align; |
| 31 | u8 padding[4000]; |
Dan Williams | e145574 | 2015-07-30 17:57:47 -0400 | [diff] [blame] | 32 | __le64 checksum; |
| 33 | }; |
Dan Williams | d9cbe09 | 2016-03-03 09:14:36 -0800 | [diff] [blame] | 34 | |
| 35 | #ifdef CONFIG_SPARSEMEM |
| 36 | #define PFN_SECTION_ALIGN_DOWN(x) SECTION_ALIGN_DOWN(x) |
| 37 | #define PFN_SECTION_ALIGN_UP(x) SECTION_ALIGN_UP(x) |
| 38 | #else |
| 39 | /* |
| 40 | * In this case ZONE_DEVICE=n and we will disable 'pfn' device support, |
| 41 | * but we still want pmem to compile. |
| 42 | */ |
| 43 | #define PFN_SECTION_ALIGN_DOWN(x) (x) |
| 44 | #define PFN_SECTION_ALIGN_UP(x) (x) |
| 45 | #endif |
Dan Williams | cfe30b8 | 2016-03-03 09:38:00 -0800 | [diff] [blame] | 46 | |
| 47 | #define PHYS_SECTION_ALIGN_DOWN(x) PFN_PHYS(PFN_SECTION_ALIGN_DOWN(PHYS_PFN(x))) |
| 48 | #define PHYS_SECTION_ALIGN_UP(x) PFN_PHYS(PFN_SECTION_ALIGN_UP(PHYS_PFN(x))) |
Dan Williams | e145574 | 2015-07-30 17:57:47 -0400 | [diff] [blame] | 49 | #endif /* __NVDIMM_PFN_H */ |