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"
16 #include "user_util.h"
20 /* Set during early boot */
21 int host_has_cmov = 1;
24 static char token(int fd, char *buf, int len, char stop)
32 n = os_read_file(fd, ptr, sizeof(*ptr));
34 if(n != sizeof(*ptr)){
36 printk("Reading /proc/cpuinfo failed, err = %d\n", -n);
42 } while((c != '\n') && (c != stop) && (ptr < end));
45 printk("Failed to find '%c' in /proc/cpuinfo\n", stop);
52 static int find_cpuinfo_line(int fd, char *key, char *scratch, int len)
57 scratch[len - 1] = '\0';
59 c = token(fd, scratch, len - 1, ':');
63 printk("Failed to find ':' in /proc/cpuinfo\n");
67 if(!strncmp(scratch, key, strlen(key)))
71 n = os_read_file(fd, &c, sizeof(c));
73 printk("Failed to find newline in "
74 "/proc/cpuinfo, err = %d\n", -n);
82 int cpu_feature(char *what, char *buf, int len)
86 fd = os_open_file("/proc/cpuinfo", of_read(OPENFLAGS()), 0);
88 printk("Couldn't open /proc/cpuinfo, err = %d\n", -fd);
92 if(!find_cpuinfo_line(fd, what, buf, len)){
93 printk("Couldn't find '%s' line in /proc/cpuinfo\n", what);
97 token(fd, buf, len, '\n');
105 static int check_cpu_flag(char *feature, int *have_it)
107 char buf[MAXTOKEN], c;
108 int fd, len = ARRAY_SIZE(buf);
110 printk("Checking for host processor %s support...", feature);
111 fd = os_open_file("/proc/cpuinfo", of_read(OPENFLAGS()), 0);
113 printk("Couldn't open /proc/cpuinfo, err = %d\n", -fd);
118 if(!find_cpuinfo_line(fd, "flags", buf, ARRAY_SIZE(buf)))
121 c = token(fd, buf, len - 1, ' ');
124 printk("Failed to find ' ' in /proc/cpuinfo\n");
129 c = token(fd, buf, len - 1, ' ');
131 else if(c == '\n') break;
133 if(!strcmp(buf, feature)){
139 if(*have_it == 0) printk("No\n");
140 else if(*have_it == 1) printk("Yes\n");
145 #if 0 /* This doesn't work in tt mode, plus it's causing compilation problems
148 static void disable_lcall(void)
150 struct modify_ldt_ldt_s ldt;
153 bzero(&ldt, sizeof(ldt));
154 ldt.entry_number = 7;
157 err = modify_ldt(1, &ldt, sizeof(ldt));
159 printk("Failed to disable lcall7 - errno = %d\n", errno);
163 void arch_init_thread(void)
170 void arch_check_bugs(void)
174 if(os_access("/proc/cpuinfo", OS_ACC_R_OK) < 0){
175 printk("/proc/cpuinfo not available - skipping CPU capability "
179 if(check_cpu_flag("cmov", &have_it))
180 host_has_cmov = have_it;
181 if(check_cpu_flag("xmm", &have_it))
182 host_has_xmm = have_it;
185 int arch_handle_signal(int sig, union uml_pt_regs *regs)
187 unsigned char tmp[2];
189 /* This is testing for a cmov (0x0f 0x4x) instruction causing a
192 if((sig != SIGILL) || (TASK_PID(get_current()) != 1)) return(0);
194 if (copy_from_user_proc(tmp, (void *) UPT_IP(regs), 2))
195 panic("SIGILL in init, could not read instructions!\n");
196 if((tmp[0] != 0x0f) || ((tmp[1] & 0xf0) != 0x40))
199 if(host_has_cmov == 0)
200 panic("SIGILL caused by cmov, which this processor doesn't "
201 "implement, boot a filesystem compiled for older "
203 else if(host_has_cmov == 1)
204 panic("SIGILL caused by cmov, which this processor claims to "
206 else if(host_has_cmov == -1)
207 panic("SIGILL caused by cmov, couldn't tell if this processor "
208 "implements it, boot a filesystem compiled for older "
210 else panic("Bad value for host_has_cmov (%d)", host_has_cmov);
215 * Overrides for Emacs so that we follow Linus's tabbing style.
216 * Emacs will notice this stuff at the end of the file and automatically
217 * adjust the settings for this buffer only. This must remain at the end
219 * ---------------------------------------------------------------------------
221 * c-file-style: "linux"