3 * linux/arch/cris/arch-v10/kernel/setup.c
5 * Copyright (C) 1995 Linus Torvalds
6 * Copyright (c) 2001-2002 Axis Communications AB
10 * This file handles the architecture-dependent parts of initialization
13 #include <linux/seq_file.h>
14 #include <linux/proc_fs.h>
15 #include <linux/delay.h>
18 #define HAS_FPU 0x0001
19 #define HAS_MMU 0x0002
20 #define HAS_ETHERNET100 0x0004
21 #define HAS_TOKENRING 0x0008
22 #define HAS_SCSI 0x0010
23 #define HAS_ATA 0x0020
24 #define HAS_USB 0x0040
25 #define HAS_IRQ_BUG 0x0080
26 #define HAS_MMU_BUG 0x0100
28 static struct cpu_info
{
33 /* The first four models will never ever run this code and are
34 only here for display. */
37 { "ETRAX 3", 0, HAS_TOKENRING
},
38 { "ETRAX 4", 0, HAS_TOKENRING
| HAS_SCSI
},
42 { "Simulator", 8, HAS_ETHERNET100
| HAS_SCSI
| HAS_ATA
},
43 { "ETRAX 100", 8, HAS_ETHERNET100
| HAS_SCSI
| HAS_ATA
| HAS_IRQ_BUG
},
44 { "ETRAX 100", 8, HAS_ETHERNET100
| HAS_SCSI
| HAS_ATA
},
45 { "ETRAX 100LX", 8, HAS_ETHERNET100
| HAS_SCSI
| HAS_ATA
| HAS_USB
| HAS_MMU
| HAS_MMU_BUG
},
46 { "ETRAX 100LX v2", 8, HAS_ETHERNET100
| HAS_SCSI
| HAS_ATA
| HAS_USB
| HAS_MMU
},
47 { "Unknown", 0, 0 } /* This entry MUST be the last */
50 int show_cpuinfo(struct seq_file
*m
, void *v
)
52 unsigned long revision
;
53 struct cpu_info
*info
;
55 /* read the version register in the CPU and print some stuff */
59 if (revision
>= sizeof cpu_info
/sizeof *cpu_info
)
60 info
= &cpu_info
[sizeof cpu_info
/sizeof *cpu_info
- 1];
62 info
= &cpu_info
[revision
];
67 "cpu revision\t: %lu\n"
69 "cache size\t: %d kB\n"
73 "ethernet\t: %s Mbps\n"
78 "bogomips\t: %lu.%02lu\n",
83 info
->flags
& HAS_FPU
? "yes" : "no",
84 info
->flags
& HAS_MMU
? "yes" : "no",
85 info
->flags
& HAS_MMU_BUG
? "yes" : "no",
86 info
->flags
& HAS_ETHERNET100
? "10/100" : "10",
87 info
->flags
& HAS_TOKENRING
? "4/16 Mbps" : "no",
88 info
->flags
& HAS_SCSI
? "yes" : "no",
89 info
->flags
& HAS_ATA
? "yes" : "no",
90 info
->flags
& HAS_USB
? "yes" : "no",
91 (loops_per_jiffy
* HZ
+ 500) / 500000,
92 ((loops_per_jiffy
* HZ
+ 500) / 5000) % 100);
95 #endif /* CONFIG_PROC_FS */
98 show_etrax_copyright(void)
101 "Linux/CRIS port on ETRAX 100LX (c) 2001 Axis Communications AB\n");