2 * Display CPU info in /proc/cpuinfo.
4 * Copyright (C) 2003, Axis Communications AB.
7 #include <linux/seq_file.h>
8 #include <linux/proc_fs.h>
9 #include <linux/delay.h>
10 #include <linux/param.h>
14 #define HAS_FPU 0x0001
15 #define HAS_MMU 0x0002
16 #define HAS_ETHERNET100 0x0004
17 #define HAS_TOKENRING 0x0008
18 #define HAS_SCSI 0x0010
19 #define HAS_ATA 0x0020
20 #define HAS_USB 0x0040
21 #define HAS_IRQ_BUG 0x0080
22 #define HAS_MMU_BUG 0x0100
27 unsigned short cache_size
;
31 /* Some of these model are here for historical reasons only. */
32 static struct cpu_info cpinfo
[] = {
37 {"Simulator", 7, 8, HAS_ETHERNET100
| HAS_SCSI
| HAS_ATA
},
38 {"ETRAX 100", 8, 8, HAS_ETHERNET100
| HAS_SCSI
| HAS_ATA
| HAS_IRQ_BUG
},
39 {"ETRAX 100", 9, 8, HAS_ETHERNET100
| HAS_SCSI
| HAS_ATA
},
41 {"ETRAX 100LX", 10, 8, HAS_ETHERNET100
| HAS_SCSI
| HAS_ATA
| HAS_USB
42 | HAS_MMU
| HAS_MMU_BUG
},
44 {"ETRAX 100LX v2", 11, 8, HAS_ETHERNET100
| HAS_SCSI
| HAS_ATA
| HAS_USB
47 {"ETRAX FS", 32, 32, HAS_ETHERNET100
| HAS_ATA
| HAS_MMU
},
53 show_cpuinfo(struct seq_file
*m
, void *v
)
57 unsigned long revision
;
58 struct cpu_info
*info
;
60 info
= &cpinfo
[ARRAY_SIZE(cpinfo
) - 1];
69 for (i
= 0; i
< ARRAY_SIZE(cpinfo
); i
++) {
70 if (cpinfo
[i
].rev
== revision
) {
79 "cpu revision\t: %lu\n"
81 "cache size\t: %d KB\n"
85 "ethernet\t: %s Mbps\n"
90 "bogomips\t: %lu.%02lu\n\n",
96 info
->flags
& HAS_FPU
? "yes" : "no",
97 info
->flags
& HAS_MMU
? "yes" : "no",
98 info
->flags
& HAS_MMU_BUG
? "yes" : "no",
99 info
->flags
& HAS_ETHERNET100
? "10/100" : "10",
100 info
->flags
& HAS_TOKENRING
? "4/16 Mbps" : "no",
101 info
->flags
& HAS_SCSI
? "yes" : "no",
102 info
->flags
& HAS_ATA
? "yes" : "no",
103 info
->flags
& HAS_USB
? "yes" : "no",
104 (loops_per_jiffy
* HZ
+ 500) / 500000,
105 ((loops_per_jiffy
* HZ
+ 500) / 5000) % 100);
108 #endif /* CONFIG_PROC_FS */
111 show_etrax_copyright(void)
114 "Linux/CRISv32 port on ETRAX FS (C) 2003, 2004 Axis Communications AB\n");