2 * Copyright (C) 2002 Jeff Dike (jdike@karaya.com)
3 * Licensed under the GPL
9 #include <sys/signal.h>
11 #include "kern_util.h"
13 #include "sysdep/ptrace.h"
19 /* Set during early boot */
20 int host_has_cmov = 1;
23 static char token(int fd, char *buf, int len, char stop)
31 n = os_read_file(fd, ptr, sizeof(*ptr));
33 if(n != sizeof(*ptr)){
35 printk("Reading /proc/cpuinfo failed, err = %d\n", -n);
41 } while((c != '\n') && (c != stop) && (ptr < end));
44 printk("Failed to find '%c' in /proc/cpuinfo\n", stop);
51 static int find_cpuinfo_line(int fd, char *key, char *scratch, int len)
56 scratch[len - 1] = '\0';
58 c = token(fd, scratch, len - 1, ':');
62 printk("Failed to find ':' in /proc/cpuinfo\n");
66 if(!strncmp(scratch, key, strlen(key)))
70 n = os_read_file(fd, &c, sizeof(c));
72 printk("Failed to find newline in "
73 "/proc/cpuinfo, err = %d\n", -n);
81 int cpu_feature(char *what, char *buf, int len)
85 fd = os_open_file("/proc/cpuinfo", of_read(OPENFLAGS()), 0);
87 printk("Couldn't open /proc/cpuinfo, err = %d\n", -fd);
91 if(!find_cpuinfo_line(fd, what, buf, len)){
92 printk("Couldn't find '%s' line in /proc/cpuinfo\n", what);
96 token(fd, buf, len, '\n');
104 static int check_cpu_flag(char *feature, int *have_it)
106 char buf[MAXTOKEN], c;
107 int fd, len = sizeof(buf)/sizeof(buf[0]);
109 printk("Checking for host processor %s support...", feature);
110 fd = os_open_file("/proc/cpuinfo", of_read(OPENFLAGS()), 0);
112 printk("Couldn't open /proc/cpuinfo, err = %d\n", -fd);
117 if(!find_cpuinfo_line(fd, "flags", buf, sizeof(buf) / sizeof(buf[0])))
120 c = token(fd, buf, len - 1, ' ');
123 printk("Failed to find ' ' in /proc/cpuinfo\n");
128 c = token(fd, buf, len - 1, ' ');
130 else if(c == '\n') break;
132 if(!strcmp(buf, feature)){
138 if(*have_it == 0) printk("No\n");
139 else if(*have_it == 1) printk("Yes\n");
144 #if 0 /* This doesn't work in tt mode, plus it's causing compilation problems
147 static void disable_lcall(void)
149 struct modify_ldt_ldt_s ldt;
152 bzero(&ldt, sizeof(ldt));
153 ldt.entry_number = 7;
156 err = modify_ldt(1, &ldt, sizeof(ldt));
158 printk("Failed to disable lcall7 - errno = %d\n", errno);
162 void arch_init_thread(void)
169 void arch_check_bugs(void)
173 if(os_access("/proc/cpuinfo", OS_ACC_R_OK) < 0){
174 printk("/proc/cpuinfo not available - skipping CPU capability "
178 if(check_cpu_flag("cmov", &have_it))
179 host_has_cmov = have_it;
180 if(check_cpu_flag("xmm", &have_it))
181 host_has_xmm = have_it;
184 int arch_handle_signal(int sig, union uml_pt_regs *regs)
186 unsigned char tmp[2];
188 /* This is testing for a cmov (0x0f 0x4x) instruction causing a
191 if((sig != SIGILL) || (TASK_PID(get_current()) != 1)) return(0);
193 if (copy_from_user_proc(tmp, (void *) UPT_IP(regs), 2))
194 panic("SIGILL in init, could not read instructions!\n");
195 if((tmp[0] != 0x0f) || ((tmp[1] & 0xf0) != 0x40))
198 if(host_has_cmov == 0)
199 panic("SIGILL caused by cmov, which this processor doesn't "
200 "implement, boot a filesystem compiled for older "
202 else if(host_has_cmov == 1)
203 panic("SIGILL caused by cmov, which this processor claims to "
205 else if(host_has_cmov == -1)
206 panic("SIGILL caused by cmov, couldn't tell if this processor "
207 "implements it, boot a filesystem compiled for older "
209 else panic("Bad value for host_has_cmov (%d)", host_has_cmov);
214 * Overrides for Emacs so that we follow Linus's tabbing style.
215 * Emacs will notice this stuff at the end of the file and automatically
216 * adjust the settings for this buffer only. This must remain at the end
218 * ---------------------------------------------------------------------------
220 * c-file-style: "linux"