| 1 | /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ |
| 2 | /* |
| 3 | ** asm/bootinfo-apollo.h -- Apollo-specific boot information definitions |
| 4 | */ |
| 5 | |
| 6 | #ifndef _ASM_M68K_BOOTINFO_APOLLO_H |
| 7 | #define _ASM_M68K_BOOTINFO_APOLLO_H |
| 8 | |
| 9 | |
| 10 | /* |
| 11 | * Apollo-specific tags |
| 12 | */ |
| 13 | |
| 14 | #define BI_APOLLO_MODEL		0x8000	/* model (__be32) */ |
| 15 | |
| 16 | |
| 17 | /* |
| 18 | * Apollo models (BI_APOLLO_MODEL) |
| 19 | */ |
| 20 | |
| 21 | #define APOLLO_UNKNOWN		0 |
| 22 | #define APOLLO_DN3000		1 |
| 23 | #define APOLLO_DN3010		2 |
| 24 | #define APOLLO_DN3500		3 |
| 25 | #define APOLLO_DN4000		4 |
| 26 | #define APOLLO_DN4500		5 |
| 27 | |
| 28 | |
| 29 | #endif /* _ASM_M68K_BOOTINFO_APOLLO_H */ |