Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: 219d54332a09e8d8741c1e1982f5eae56099de85 authored by Linus Torvalds on 25 November 2019, 00:32:01 UTC
Linux 5.4
Tip revision: 219d543
sparsemem.h
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef ASM_PARISC_SPARSEMEM_H
#define ASM_PARISC_SPARSEMEM_H

/* We have these possible memory map layouts:
 * Astro: 0-3.75, 67.75-68, 4-64
 * zx1: 0-1, 257-260, 4-256
 * Stretch (N-class): 0-2, 4-32, 34-xxx
 */

#define MAX_PHYSMEM_BITS	39	/* 512 GB */
#define SECTION_SIZE_BITS	27	/* 128 MB */

#endif
back to top