2005-11-02 03:48:36 +00:00
|
|
|
#ifndef _ASM_POWERPC_SPARSEMEM_H
|
|
|
|
#define _ASM_POWERPC_SPARSEMEM_H 1
|
2005-12-16 21:43:46 +00:00
|
|
|
#ifdef __KERNEL__
|
2005-06-23 07:08:03 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_SPARSEMEM
|
|
|
|
/*
|
|
|
|
* SECTION_SIZE_BITS 2^N: how big each section will be
|
|
|
|
* MAX_PHYSADDR_BITS 2^N: how much physical address space we have
|
|
|
|
* MAX_PHYSMEM_BITS 2^N: how much memory we can have in that space
|
|
|
|
*/
|
|
|
|
#define SECTION_SIZE_BITS 24
|
2006-11-22 23:46:57 +00:00
|
|
|
|
2005-11-11 04:02:03 +00:00
|
|
|
#define MAX_PHYSADDR_BITS 44
|
|
|
|
#define MAX_PHYSMEM_BITS 44
|
2005-06-23 07:08:03 +00:00
|
|
|
|
2008-07-01 01:30:06 +00:00
|
|
|
#endif /* CONFIG_SPARSEMEM */
|
|
|
|
|
2005-11-08 00:25:48 +00:00
|
|
|
#ifdef CONFIG_MEMORY_HOTPLUG
|
2011-08-10 20:44:24 +00:00
|
|
|
extern int create_section_mapping(unsigned long start, unsigned long end);
|
2008-03-28 00:37:21 +00:00
|
|
|
extern int remove_section_mapping(unsigned long start, unsigned long end);
|
2005-12-05 20:06:42 +00:00
|
|
|
#ifdef CONFIG_NUMA
|
|
|
|
extern int hot_add_scn_to_nid(unsigned long scn_addr);
|
|
|
|
#else
|
|
|
|
static inline int hot_add_scn_to_nid(unsigned long scn_addr)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_NUMA */
|
2005-11-08 00:25:48 +00:00
|
|
|
#endif /* CONFIG_MEMORY_HOTPLUG */
|
|
|
|
|
2005-12-16 21:43:46 +00:00
|
|
|
#endif /* __KERNEL__ */
|
2005-11-02 03:48:36 +00:00
|
|
|
#endif /* _ASM_POWERPC_SPARSEMEM_H */
|