| 1 | /* |
| 2 | * Common definitions for PPC sPAPR |
| 3 | * |
| 4 | * SPDX-License-Identifier: GPL-2.0-or-later |
| 5 | */ |
| 6 | |
| 7 | #ifndef HW_SPAPR_COMMON_H |
| 8 | #define HW_SPAPR_COMMON_H |
| 9 | |
| 10 | /* |
| 11 | * The maximum number of DIMM slots we can have for sPAPR guest. |
| 12 | * This is not defined by sPAPR but we are defining it to 32 slots |
| 13 | * based on default number of slots provided by PowerPC kernel. |
| 14 | */ |
| 15 | #define SPAPR_MAX_RAM_SLOTS 32 |
| 16 | |
| 17 | #endif /* HW_SPAPR_COMMON_H */ |