Blame view

drivers/nvdimm/e820.c 2.33 KB
7a67832c7   Dan Williams   libnvdimm, e820: ...
1
2
3
4
5
  /*
   * Copyright (c) 2015, Christoph Hellwig.
   * Copyright (c) 2015, Intel Corporation.
   */
  #include <linux/platform_device.h>
f7256dc0c   Dan Williams   libnvdimm, e820: ...
6
  #include <linux/memory_hotplug.h>
7a67832c7   Dan Williams   libnvdimm, e820: ...
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
  #include <linux/libnvdimm.h>
  #include <linux/module.h>
  
  static const struct attribute_group *e820_pmem_attribute_groups[] = {
  	&nvdimm_bus_attribute_group,
  	NULL,
  };
  
  static const struct attribute_group *e820_pmem_region_attribute_groups[] = {
  	&nd_region_attribute_group,
  	&nd_device_attribute_group,
  	NULL,
  };
  
  static int e820_pmem_remove(struct platform_device *pdev)
  {
  	struct nvdimm_bus *nvdimm_bus = platform_get_drvdata(pdev);
  
  	nvdimm_bus_unregister(nvdimm_bus);
  	return 0;
  }
f7256dc0c   Dan Williams   libnvdimm, e820: ...
28
29
30
31
32
33
34
35
36
37
38
  #ifdef CONFIG_MEMORY_HOTPLUG
  static int e820_range_to_nid(resource_size_t addr)
  {
  	return memory_add_physaddr_to_nid(addr);
  }
  #else
  static int e820_range_to_nid(resource_size_t addr)
  {
  	return NUMA_NO_NODE;
  }
  #endif
7a67832c7   Dan Williams   libnvdimm, e820: ...
39
40
41
42
43
44
45
46
47
  static int e820_pmem_probe(struct platform_device *pdev)
  {
  	static struct nvdimm_bus_descriptor nd_desc;
  	struct device *dev = &pdev->dev;
  	struct nvdimm_bus *nvdimm_bus;
  	struct resource *p;
  
  	nd_desc.attr_groups = e820_pmem_attribute_groups;
  	nd_desc.provider_name = "e820";
bc9775d86   Dan Williams   libnvdimm: move -...
48
  	nd_desc.module = THIS_MODULE;
7a67832c7   Dan Williams   libnvdimm, e820: ...
49
50
51
52
53
54
55
  	nvdimm_bus = nvdimm_bus_register(dev, &nd_desc);
  	if (!nvdimm_bus)
  		goto err;
  	platform_set_drvdata(pdev, nvdimm_bus);
  
  	for (p = iomem_resource.child; p ; p = p->sibling) {
  		struct nd_region_desc ndr_desc;
f0f4711aa   Toshi Kani   x86, kexec, nvdim...
56
  		if (p->desc != IORES_DESC_PERSISTENT_MEMORY_LEGACY)
7a67832c7   Dan Williams   libnvdimm, e820: ...
57
58
59
60
61
  			continue;
  
  		memset(&ndr_desc, 0, sizeof(ndr_desc));
  		ndr_desc.res = p;
  		ndr_desc.attr_groups = e820_pmem_region_attribute_groups;
f7256dc0c   Dan Williams   libnvdimm, e820: ...
62
  		ndr_desc.numa_node = e820_range_to_nid(p->start);
004f1afbe   Dan Williams   libnvdimm, pmem: ...
63
  		set_bit(ND_REGION_PAGEMAP, &ndr_desc.flags);
7a67832c7   Dan Williams   libnvdimm, e820: ...
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
  		if (!nvdimm_pmem_region_create(nvdimm_bus, &ndr_desc))
  			goto err;
  	}
  
  	return 0;
  
   err:
  	nvdimm_bus_unregister(nvdimm_bus);
  	dev_err(dev, "failed to register legacy persistent memory ranges
  ");
  	return -ENXIO;
  }
  
  static struct platform_driver e820_pmem_driver = {
  	.probe = e820_pmem_probe,
  	.remove = e820_pmem_remove,
  	.driver = {
  		.name = "e820_pmem",
  	},
  };
  
  static __init int e820_pmem_init(void)
  {
  	return platform_driver_register(&e820_pmem_driver);
  }
  
  static __exit void e820_pmem_exit(void)
  {
  	platform_driver_unregister(&e820_pmem_driver);
  }
  
  MODULE_ALIAS("platform:e820_pmem*");
  MODULE_LICENSE("GPL v2");
  MODULE_AUTHOR("Intel Corporation");
  module_init(e820_pmem_init);
  module_exit(e820_pmem_exit);