ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / include / asm-ppc64 / systemcfg.h
1 #ifndef _SYSTEMCFG_H
2 #define _SYSTEMCFG_H
3
4 /* 
5  * Copyright (C) 2002 Peter Bergner <bergner@vnet.ibm.com>, IBM
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License
9  * as published by the Free Software Foundation; either version
10  * 2 of the License, or (at your option) any later version.
11  */
12
13 /* Change Activity:
14  * 2002/09/30 : bergner  : Created
15  * End Change Activity 
16  */
17
18
19 #ifndef __KERNEL__
20 #include <unistd.h>
21 #include <fcntl.h>
22 #include <sys/mman.h>
23 #include <linux/types.h>
24 #endif
25
26 /*
27  * If the major version changes we are incompatible.
28  * Minor version changes are a hint.
29  */
30 #define SYSTEMCFG_MAJOR 1
31 #define SYSTEMCFG_MINOR 0
32
33 #ifndef __ASSEMBLY__
34
35 struct systemcfg {
36         __u8  eye_catcher[16];          /* Eyecatcher: SYSTEMCFG:PPC64  0x00 */
37         struct {                        /* Systemcfg version numbers         */
38                 __u32 major;            /* Major number                 0x10 */
39                 __u32 minor;            /* Minor number                 0x14 */
40         } version;
41
42         __u32 platform;                 /* Platform flags               0x18 */
43         __u32 processor;                /* Processor type               0x1C */
44         __u64 processorCount;           /* # of physical processors     0x20 */
45         __u64 physicalMemorySize;       /* Size of real memory(B)       0x28 */
46         __u64 tb_orig_stamp;            /* Timebase at boot             0x30 */
47         __u64 tb_ticks_per_sec;         /* Timebase tics / sec          0x38 */
48         __u64 tb_to_xs;                 /* Inverse of TB to 2^20        0x40 */
49         __u64 stamp_xsec;               /*                              0x48 */
50         __u64 tb_update_count;          /* Timebase atomicity ctr       0x50 */
51         __u32 tz_minuteswest;           /* Minutes west of Greenwich    0x58 */
52         __u32 tz_dsttime;               /* Type of dst correction       0x5C */
53         __u32 dCacheL1Size;             /* L1 d-cache size              0x60 */
54         __u32 dCacheL1LineSize;         /* L1 d-cache line size         0x64 */
55         __u32 iCacheL1Size;             /* L1 i-cache size              0x68 */
56         __u32 iCacheL1LineSize;         /* L1 i-cache line size         0x6C */
57         __u8  reserved0[3984];          /* Reserve rest of page         0x70 */
58 };
59
60 #ifdef __KERNEL__
61 extern struct systemcfg *systemcfg;
62 #else
63
64 /* Processor Version Register (PVR) field extraction */
65 #define PVR_VER(pvr)  (((pvr) >>  16) & 0xFFFF) /* Version field */
66 #define PVR_REV(pvr)  (((pvr) >>   0) & 0xFFFF) /* Revison field */
67
68 /* Processor Version Numbers */
69 #define PV_NORTHSTAR    0x0033
70 #define PV_PULSAR       0x0034
71 #define PV_POWER4       0x0035
72 #define PV_ICESTAR      0x0036
73 #define PV_SSTAR        0x0037
74 #define PV_POWER4p      0x0038
75 #define PV_GPUL         0x0039
76 #define PV_630          0x0040
77 #define PV_630p         0x0041
78
79 /* Platforms supported by PPC64 */
80 #define PLATFORM_PSERIES      0x0100
81 #define PLATFORM_PSERIES_LPAR 0x0101
82 #define PLATFORM_ISERIES_LPAR 0x0201
83 #define PLATFORM_POWERMAC     0x0400
84
85 /* Compatibility with drivers coming from PPC32 world */
86 #define _machine        (systemcfg->platform)
87 #define _MACH_Pmac      PLATFORM_POWERMAC
88
89
90 static inline volatile struct systemcfg *systemcfg_init(void)
91 {
92         int fd = open("/proc/ppc64/systemcfg", O_RDONLY);
93         volatile struct systemcfg *ret;
94
95         if (fd == -1)
96                 return 0;
97         ret = mmap(0, sizeof(struct systemcfg), PROT_READ, MAP_SHARED, fd, 0);
98         close(fd);
99         if (!ret)
100                 return 0;
101         if (ret->version.major != SYSTEMCFG_MAJOR || ret->version.minor < SYSTEMCFG_MINOR) {
102                 munmap((void *)ret, sizeof(struct systemcfg));
103                 return 0;
104         }
105         return ret;
106 }
107 #endif /* __KERNEL__ */
108
109 #endif /* __ASSEMBLY__ */
110
111 #define SYSTEMCFG_PAGE      0x5
112 #define SYSTEMCFG_PHYS_ADDR (SYSTEMCFG_PAGE<<PAGE_SHIFT)
113 #define SYSTEMCFG_VIRT_ADDR (KERNELBASE+SYSTEMCFG_PHYS_ADDR)
114
115 #endif /* _SYSTEMCFG_H */