Path: blob/master/arch/powerpc/platforms/iseries/naca.h
10820 views
#ifndef _PLATFORMS_ISERIES_NACA_H1#define _PLATFORMS_ISERIES_NACA_H23/*4* c 2001 PPC 64 Team, IBM Corp5*6* This program is free software; you can redistribute it and/or7* modify it under the terms of the GNU General Public License8* as published by the Free Software Foundation; either version9* 2 of the License, or (at your option) any later version.10*/1112#include <asm/types.h>1314struct naca_struct {15/* Kernel only data - undefined for user space */16const void *xItVpdAreas; /* VPD Data 0x00 */17void *xRamDisk; /* iSeries ramdisk 0x08 */18u64 xRamDiskSize; /* In pages 0x10 */19};2021extern struct naca_struct naca;2223#endif /* _PLATFORMS_ISERIES_NACA_H */242526