4 * Copyright (C) 1991, 1992 Linus Torvalds
6 * GK 2/5/95 - Changed to support mounting root fs via NFS
7 * Added initrd & change_root: Werner Almesberger & Hans Lermen, Feb '96
8 * Moan early if gcc is old, avoiding bogus kernels - Paul Gortmaker, May '96
9 * Simplified starting of init: Michael A. Griffith <grif@acm.org>
12 #define __KERNEL_SYSCALLS__
14 #include <linux/config.h>
15 #include <linux/proc_fs.h>
16 #include <linux/devfs_fs_kernel.h>
17 #include <linux/unistd.h>
18 #include <linux/string.h>
19 #include <linux/ctype.h>
20 #include <linux/delay.h>
21 #include <linux/utsname.h>
22 #include <linux/ioport.h>
23 #include <linux/init.h>
24 #include <linux/raid/md.h>
25 #include <linux/smp_lock.h>
26 #include <linux/blk.h>
27 #include <linux/hdreg.h>
28 #include <linux/iobuf.h>
29 #include <linux/bootmem.h>
35 #include <linux/pci.h>
39 #include <linux/dio.h>
43 #include <linux/zorro.h>
47 # include <asm/mtrr.h>
50 #ifdef CONFIG_3215_CONSOLE
51 extern int con3215_activate(void);
55 #include <linux/nubus.h>
59 #include <linux/isapnp.h>
63 #include <net/irda/irda_device.h>
66 #ifdef CONFIG_X86_IO_APIC
71 * Versions of gcc older than that listed below may actually compile
72 * and link okay, but the end product can have subtle run time bugs.
73 * To avoid associated bogus bug reports, we flatly refuse to compile
74 * with a gcc that is known to be too old from the very beginning.
76 #if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 91)
77 #error Sorry, your GCC is too old. It builds incorrect kernels.
80 extern char _stext
, _etext
;
81 extern char *linux_banner
;
83 static int init(void *);
85 extern void init_IRQ(void);
86 extern void init_modules(void);
87 extern void sock_init(void);
88 extern void fork_init(unsigned long);
89 extern void mca_init(void);
90 extern void sbus_init(void);
91 extern void ppc_init(void);
92 extern void sysctl_init(void);
93 extern void signals_init(void);
94 extern void bdev_init(void);
95 extern int init_pcmcia_ds(void);
96 extern void net_notifier_init(void);
98 extern void free_initmem(void);
99 extern void filesystem_setup(void);
102 extern void tc_init(void);
105 extern void ecard_init(void);
107 #if defined(CONFIG_SYSVIPC)
108 extern void ipc_init(void);
110 #if defined(CONFIG_QUOTA)
111 extern void dquot_init_hash(void);
115 * Boot command-line arguments
117 #define MAX_INIT_ARGS 8
118 #define MAX_INIT_ENVS 8
120 extern void time_init(void);
121 extern void softirq_init(void);
125 #ifdef CONFIG_BLK_DEV_INITRD
126 kdev_t real_root_dev
;
129 int root_mountflags
= MS_RDONLY
;
130 char *execute_command
;
131 char root_device_name
[64];
134 static char * argv_init
[MAX_INIT_ARGS
+2] = { "init", NULL
, };
135 static char * envp_init
[MAX_INIT_ENVS
+2] = { "HOME=/", "TERM=linux", NULL
, };
137 static int __init
profile_setup(char *str
)
140 if (get_option(&str
,&par
)) prof_shift
= par
;
144 __setup("profile=", profile_setup
);
147 static struct dev_name_struct
{
150 } root_dev_names
[] __initdata
= {
200 { "cdu535", 0x1800 },
201 { "sonycd", 0x1800 },
203 { "cm206cd", 0x2000 },
214 { "apblock", APBLOCK_MAJOR
<< 8},
215 { "ddv", DDV_MAJOR
<< 8},
216 { "jsfd", JSFD_MAJOR
<< 8},
218 { "mnda", (MDISK_MAJOR
<< MINORBITS
)},
219 { "mndb", (MDISK_MAJOR
<< MINORBITS
) + 1},
220 { "mndc", (MDISK_MAJOR
<< MINORBITS
) + 2},
221 { "mndd", (MDISK_MAJOR
<< MINORBITS
) + 3},
222 { "mnde", (MDISK_MAJOR
<< MINORBITS
) + 4},
223 { "mndf", (MDISK_MAJOR
<< MINORBITS
) + 5},
224 { "mndg", (MDISK_MAJOR
<< MINORBITS
) + 6},
225 { "mndh", (MDISK_MAJOR
<< MINORBITS
) + 7},
228 { "dasda", (DASD_MAJOR
<< MINORBITS
) },
229 { "dasdb", (DASD_MAJOR
<< MINORBITS
) + (1 << 2) },
230 { "dasdc", (DASD_MAJOR
<< MINORBITS
) + (2 << 2) },
231 { "dasdd", (DASD_MAJOR
<< MINORBITS
) + (3 << 2) },
232 { "dasde", (DASD_MAJOR
<< MINORBITS
) + (4 << 2) },
233 { "dasdf", (DASD_MAJOR
<< MINORBITS
) + (5 << 2) },
234 { "dasdg", (DASD_MAJOR
<< MINORBITS
) + (6 << 2) },
235 { "dasdh", (DASD_MAJOR
<< MINORBITS
) + (7 << 2) },
237 #if defined(CONFIG_BLK_CPQ_DA) || defined(CONFIG_BLK_CPQ_DA_MODULE)
238 { "ida/c0d0p",0x4800 },
239 { "ida/c0d1p",0x4810 },
240 { "ida/c0d2p",0x4820 },
241 { "ida/c0d3p",0x4830 },
242 { "ida/c0d4p",0x4840 },
243 { "ida/c0d5p",0x4850 },
244 { "ida/c0d6p",0x4860 },
245 { "ida/c0d7p",0x4870 },
246 { "ida/c0d8p",0x4880 },
247 { "ida/c0d9p",0x4890 },
248 { "ida/c0d10p",0x48A0 },
249 { "ida/c0d11p",0x48B0 },
250 { "ida/c0d12p",0x48C0 },
251 { "ida/c0d13p",0x48D0 },
252 { "ida/c0d14p",0x48E0 },
253 { "ida/c0d15p",0x48F0 },
255 #if defined(CONFIG_BLK_CPQ_CISS_DA) || defined(CONFIG_BLK_CPQ_CISS_DA_MODULE)
256 { "cciss/c0d0p",0x6800 },
257 { "cciss/c0d1p",0x6810 },
258 { "cciss/c0d2p",0x6820 },
259 { "cciss/c0d3p",0x6830 },
260 { "cciss/c0d4p",0x6840 },
261 { "cciss/c0d5p",0x6850 },
262 { "cciss/c0d6p",0x6860 },
263 { "cciss/c0d7p",0x6870 },
264 { "cciss/c0d8p",0x6880 },
265 { "cciss/c0d9p",0x6890 },
266 { "cciss/c0d10p",0x68A0 },
267 { "cciss/c0d11p",0x68B0 },
268 { "cciss/c0d12p",0x68C0 },
269 { "cciss/c0d13p",0x68D0 },
270 { "cciss/c0d14p",0x68E0 },
271 { "cciss/c0d15p",0x68F0 },
279 kdev_t __init
name_to_kdev_t(char *line
)
283 if (strncmp(line
,"/dev/",5) == 0) {
284 struct dev_name_struct
*dev
= root_dev_names
;
287 int len
= strlen(dev
->name
);
288 if (strncmp(line
,dev
->name
,len
) == 0) {
296 return to_kdev_t(base
+ simple_strtoul(line
,NULL
,base
?10:16));
299 static int __init
root_dev_setup(char *line
)
304 ROOT_DEV
= name_to_kdev_t(line
);
305 memset (root_device_name
, 0, sizeof root_device_name
);
306 if (strncmp (line
, "/dev/", 5) == 0) line
+= 5;
307 for (i
= 0; i
< sizeof root_device_name
- 1; ++i
)
310 if ( isspace (ch
) || (ch
== ',') || (ch
== '\0') ) break;
311 root_device_name
[i
] = ch
;
316 __setup("root=", root_dev_setup
);
318 static int __init
checksetup(char *line
)
320 struct kernel_param
*p
;
324 int n
= strlen(p
->str
);
325 if (!strncmp(line
,p
->str
,n
)) {
326 if (p
->setup_func(line
+n
))
330 } while (p
< &__setup_end
);
334 /* this should be approx 2 Bo*oMips to start (note initial shift), and will
335 still work even if initially too large, it will just take slightly longer */
336 unsigned long loops_per_jiffy
= (1<<12);
338 /* This is the number of bits of precision for the loops_per_jiffy. Each
339 bit takes on average 1.5/HZ seconds. This (like the original) is a little
343 void __init
calibrate_delay(void)
345 unsigned long ticks
, loopbit
;
346 int lps_precision
= LPS_PREC
;
348 loops_per_jiffy
= (1<<12);
350 printk("Calibrating delay loop... ");
351 while (loops_per_jiffy
<<= 1) {
352 /* wait for "start of" clock tick */
354 while (ticks
== jiffies
)
358 __delay(loops_per_jiffy
);
359 ticks
= jiffies
- ticks
;
364 /* Do a binary approximation to get loops_per_jiffy set to equal one clock
365 (up to lps_precision bits) */
366 loops_per_jiffy
>>= 1;
367 loopbit
= loops_per_jiffy
;
368 while ( lps_precision
-- && (loopbit
>>= 1) ) {
369 loops_per_jiffy
|= loopbit
;
371 while (ticks
== jiffies
);
373 __delay(loops_per_jiffy
);
374 if (jiffies
!= ticks
) /* longer than 1 tick */
375 loops_per_jiffy
&= ~loopbit
;
378 /* Round the value and print it */
379 printk("%lu.%02lu BogoMIPS\n",
380 loops_per_jiffy
/(500000/HZ
),
381 (loops_per_jiffy
/(5000/HZ
)) % 100);
384 static int __init
readonly(char *str
)
388 root_mountflags
|= MS_RDONLY
;
392 static int __init
readwrite(char *str
)
396 root_mountflags
&= ~MS_RDONLY
;
400 static int __init
debug_kernel(char *str
)
404 console_loglevel
= 10;
408 static int __init
quiet_kernel(char *str
)
412 console_loglevel
= 4;
416 __setup("ro", readonly
);
417 __setup("rw", readwrite
);
418 __setup("debug", debug_kernel
);
419 __setup("quiet", quiet_kernel
);
422 * This is a simple kernel command line parsing function: it parses
423 * the command line, and fills in the arguments/environment to init
424 * as appropriate. Any cmd-line option is taken to be an environment
425 * variable if it contains the character '='.
427 * This routine also checks for options meant for the kernel.
428 * These options are not given to init - they are for internal kernel use only.
430 static void __init
parse_options(char *line
)
438 envs
= 1; /* TERM is set to 'linux' by default */
440 while ((line
= next
) != NULL
) {
441 quote
= strchr(line
,'"');
442 next
= strchr(line
, ' ');
443 while (next
!= NULL
&& quote
!= NULL
&& quote
< next
) {
444 /* we found a left quote before the next blank
445 * now we have to find the matching right quote
447 next
= strchr(quote
+1, '"');
449 quote
= strchr(next
+1, '"');
450 next
= strchr(next
+1, ' ');
455 if (!strncmp(line
,"init=",5)) {
457 execute_command
= line
;
458 /* In case LILO is going to boot us with default command line,
459 * it prepends "auto" before the whole cmdline which makes
460 * the shell think it should execute a script with such name.
461 * So we ignore all arguments entered _before_ init=... [MJ]
466 if (checksetup(line
))
470 * Then check if it's an environment variable or
473 if (strchr(line
,'=')) {
474 if (envs
>= MAX_INIT_ENVS
)
476 envp_init
[++envs
] = line
;
478 if (args
>= MAX_INIT_ARGS
)
481 argv_init
[++args
] = line
;
484 argv_init
[args
+1] = NULL
;
485 envp_init
[envs
+1] = NULL
;
489 extern void setup_arch(char **);
490 extern void cpu_idle(void);
494 #ifdef CONFIG_X86_IO_APIC
495 static void __init
smp_init(void)
497 IO_APIC_init_uniprocessor();
500 #define smp_init() do { } while (0)
505 /* Called by boot processor to activate the rest. */
506 static void __init
smp_init(void)
508 /* Get other processors into their bootup holding patterns. */
517 * Activate the first processor.
520 asmlinkage
void __init
start_kernel(void)
523 unsigned long mempages
;
524 extern char saved_command_line
[];
526 * Interrupts are still disabled. Do necessary setups, then
530 printk(linux_banner
);
531 setup_arch(&command_line
);
532 printk("Kernel command line: %s\n", saved_command_line
);
533 parse_options(command_line
);
541 * HACK ALERT! This is early. We're enabling the console before
542 * we've done PCI setups etc, and console_init() must be aware of
543 * this. But we do want output early, in case something goes wrong.
546 #ifdef CONFIG_MODULES
551 /* only text is profiled */
552 prof_len
= (unsigned long) &_etext
- (unsigned long) &_stext
;
553 prof_len
>>= prof_shift
;
555 size
= prof_len
* sizeof(unsigned int) + PAGE_SIZE
-1;
556 prof_buffer
= (unsigned int *) alloc_bootmem(size
);
562 #ifdef CONFIG_BLK_DEV_INITRD
563 if (initrd_start
&& !initrd_below_start_ok
&&
564 initrd_start
< min_low_pfn
<< PAGE_SHIFT
) {
565 printk(KERN_CRIT
"initrd overwritten (0x%08lx < 0x%08lx) - "
566 "disabling it.\n",initrd_start
,min_low_pfn
<< PAGE_SHIFT
);
571 kmem_cache_sizes_init();
572 #ifdef CONFIG_3215_CONSOLE
575 #ifdef CONFIG_PROC_FS
578 mempages
= num_physpages
;
582 vfs_caches_init(mempages
);
583 buffer_init(mempages
);
584 page_cache_init(mempages
);
588 inode_init(mempages
);
589 #if defined(CONFIG_SYSVIPC)
592 #if defined(CONFIG_QUOTA)
596 printk("POSIX conformance testing by UNIFIX\n");
599 * We count on the initial thread going ok
600 * Like idlers init is an unlocked kernel thread, which will
601 * make syscalls (and thus be locked).
604 kernel_thread(init
, NULL
, CLONE_FS
| CLONE_FILES
| CLONE_SIGNAL
);
606 current
->need_resched
= 1;
610 #ifdef CONFIG_BLK_DEV_INITRD
611 static int do_linuxrc(void * shell
)
613 static char *argv
[] = { "linuxrc", NULL
, };
615 close(0);close(1);close(2);
617 (void) open("/dev/console",O_RDWR
,0);
620 return execve(shell
, argv
, envp_init
);
625 struct task_struct
*child_reaper
= &init_task
;
627 static void __init
do_initcalls(void)
631 call
= &__initcall_start
;
635 } while (call
< &__initcall_end
);
639 * Ok, the machine is now initialized. None of the devices
640 * have been touched yet, but the CPU subsystem is up and
641 * running, and memory and process management works.
643 * Now we can finally start doing some real work..
645 static void __init
do_basic_setup(void)
647 #ifdef CONFIG_BLK_DEV_INITRD
648 int real_root_mountflags
;
652 * Tell the world that we're going to be the grim
653 * reaper of innocent orphaned children.
655 * We don't want people to have to make incorrect
656 * assumptions about where in the task array this
659 child_reaper
= current
;
661 #if defined(CONFIG_MTRR) /* Do this after SMP initialization */
663 * We should probably create some architecture-dependent "fixup after
664 * everything is up" style function where this would belong better
665 * than in init/main.c..
675 * Ok, at this point all CPU's should be initialized, so
676 * we can start looking into devices..
684 #if defined(CONFIG_PPC)
690 #ifdef CONFIG_ARCH_ACORN
709 /* Networking initialization needs a process context */
712 #ifdef CONFIG_BLK_DEV_INITRD
713 real_root_dev
= ROOT_DEV
;
714 real_root_mountflags
= root_mountflags
;
715 if (initrd_start
&& mount_initrd
) root_mountflags
&= ~MS_RDONLY
;
716 else mount_initrd
=0;
719 start_context_thread();
722 /* .. filesystems .. */
726 irda_device_init(); /* Must be done after protocol initialization */
729 init_pcmcia_ds(); /* Do this last */
732 /* Mount the root filesystem.. */
737 #ifdef CONFIG_BLK_DEV_INITRD
738 root_mountflags
= real_root_mountflags
;
739 if (mount_initrd
&& ROOT_DEV
!= real_root_dev
740 && MAJOR(ROOT_DEV
) == RAMDISK_MAJOR
&& MINOR(ROOT_DEV
) == 0) {
744 pid
= kernel_thread(do_linuxrc
, "/linuxrc", SIGCHLD
);
746 while (pid
!= wait(&i
));
747 if (MAJOR(real_root_dev
) != RAMDISK_MAJOR
748 || MINOR(real_root_dev
) != 0) {
749 error
= change_root(real_root_dev
,"/initrd");
751 printk(KERN_ERR
"Change root to /initrd: "
758 static int init(void * unused
)
764 * Ok, we have completed the initial bootup, and
765 * we're essentially up and running. Get rid of the
766 * initmem segments and start the user-mode stuff..
771 if (open("/dev/console", O_RDWR
, 0) < 0)
772 printk("Warning: unable to open an initial console.\n");
778 * We try each of these until one succeeds.
780 * The Bourne shell can be used instead of init if we are
781 * trying to recover a really broken machine.
785 execve(execute_command
,argv_init
,envp_init
);
786 execve("/sbin/init",argv_init
,envp_init
);
787 execve("/etc/init",argv_init
,envp_init
);
788 execve("/bin/init",argv_init
,envp_init
);
789 execve("/bin/sh",argv_init
,envp_init
);
790 panic("No init found. Try passing init= option to kernel.");