[PARISC] Export pdc.h for palo

Signed-off-by: Jeff Bailey <jbailey@raspberryginger.com>
Signed-off-by: Kyle McMartin <kyle@mcmartin.ca>
This commit is contained in:
Jeff Bailey 2007-09-28 14:22:19 -04:00 committed by Kyle McMartin
parent 2cfc5be7df
commit c75ac712df
2 changed files with 15 additions and 6 deletions

View file

@ -1 +1,3 @@
include include/asm-generic/Kbuild.asm include include/asm-generic/Kbuild.asm
unifdef-y += pdc.h

View file

@ -143,14 +143,15 @@
#define PDC_MEM_RET_PDT_FULL -11 #define PDC_MEM_RET_PDT_FULL -11
#define PDC_MEM_RET_INVALID_PHYSICAL_LOCATION ~0ULL #define PDC_MEM_RET_INVALID_PHYSICAL_LOCATION ~0ULL
#ifndef __ASSEMBLY__ #ifdef __KERNEL__
# ifndef __ASSEMBLY__
typedef struct { typedef struct {
unsigned long long baseAddr; unsigned long long baseAddr;
unsigned int pages; unsigned int pages;
unsigned int reserved; unsigned int reserved;
} MemAddrTable_t; } MemAddrTable_t;
#endif # endif /* __ASSEMBLY__ */
#endif /* __KERNEL__ */
#define PDC_PSW 21 /* Get/Set default System Mask */ #define PDC_PSW 21 /* Get/Set default System Mask */
#define PDC_PSW_MASK 0 /* Return mask */ #define PDC_PSW_MASK 0 /* Return mask */
@ -296,8 +297,11 @@ typedef struct {
#define OSTAT_ON 7 #define OSTAT_ON 7
#ifndef __ASSEMBLY__ #ifndef __ASSEMBLY__
#include <linux/types.h> #include <linux/types.h>
#endif /* __ASSEMBLY__ */
#ifdef __KERNEL__
# ifndef __ASSEMBLY__
extern int pdc_type; extern int pdc_type;
@ -558,7 +562,8 @@ struct pdc_hpmc_pim_20 { /* PDC_PIM */
__u64 fr[32]; __u64 fr[32];
}; };
#endif /* __ASSEMBLY__ */ # endif /* __ASSEMBLY__ */
#endif /* __KERNEL__ */
/* flags of the device_path (see below) */ /* flags of the device_path (see below) */
#define PF_AUTOBOOT 0x80 #define PF_AUTOBOOT 0x80
@ -707,6 +712,7 @@ struct zeropage {
#define BOOT_CONSOLE_SPA_OFFSET 0x3c4 #define BOOT_CONSOLE_SPA_OFFSET 0x3c4
#define BOOT_CONSOLE_PATH_OFFSET 0x3a8 #define BOOT_CONSOLE_PATH_OFFSET 0x3a8
#ifdef __KERNEL__
#ifndef __ASSEMBLY__ #ifndef __ASSEMBLY__
void pdc_console_init(void); /* in pdc_console.c */ void pdc_console_init(void); /* in pdc_console.c */
void pdc_console_restart(void); void pdc_console_restart(void);
@ -786,6 +792,7 @@ static inline char * os_id_to_string(u16 os_id) {
default: return "Unknown"; default: return "Unknown";
} }
} }
#endif /* __ASSEMBLY__ */ # endif /* __ASSEMBLY__ */
#endif /* __KERNEL__ */
#endif /* _PARISC_PDC_H */ #endif /* _PARISC_PDC_H */