mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 00:34:52 +00:00

Export the bootinfo definitions that are used by bootstrap loaders, and split them up in generic and platform-specific parts. Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
31 lines
902 B
C
31 lines
902 B
C
/*
|
|
** asm/bootinfo-amiga.h -- Amiga-specific boot information definitions
|
|
*/
|
|
|
|
#ifndef _UAPI_ASM_M68K_BOOTINFO_AMIGA_H
|
|
#define _UAPI_ASM_M68K_BOOTINFO_AMIGA_H
|
|
|
|
|
|
/*
|
|
* Amiga-specific tags
|
|
*/
|
|
|
|
#define BI_AMIGA_MODEL 0x8000 /* model (u_long) */
|
|
#define BI_AMIGA_AUTOCON 0x8001 /* AutoConfig device */
|
|
/* (AmigaOS struct ConfigDev) */
|
|
#define BI_AMIGA_CHIP_SIZE 0x8002 /* size of Chip RAM (u_long) */
|
|
#define BI_AMIGA_VBLANK 0x8003 /* VBLANK frequency (u_char) */
|
|
#define BI_AMIGA_PSFREQ 0x8004 /* power supply frequency (u_char) */
|
|
#define BI_AMIGA_ECLOCK 0x8005 /* EClock frequency (u_long) */
|
|
#define BI_AMIGA_CHIPSET 0x8006 /* native chipset present (u_long) */
|
|
#define BI_AMIGA_SERPER 0x8007 /* serial port period (u_short) */
|
|
|
|
|
|
/*
|
|
* Latest Amiga bootinfo version
|
|
*/
|
|
|
|
#define AMIGA_BOOTI_VERSION MK_BI_VERSION(2, 0)
|
|
|
|
|
|
#endif /* _UAPI_ASM_M68K_BOOTINFO_AMIGA_H */
|