Newer
Older
ubixos-old / src / sys / include / ubixos / init.h
@reddawg reddawg on 16 Sep 2004 5 KB Demo Release
/*****************************************************************************************
 Copyright (c) 2002-2004 The UbixOS Project
 All rights reserved.

 Redistribution and use in source and binary forms, with or without modification, are
 permitted provided that the following conditions are met:

 Redistributions of source code must retain the above copyright notice, this list of
 conditions, the following disclaimer and the list of authors.  Redistributions in binary
 form must reproduce the above copyright notice, this list of conditions, the following
 disclaimer and the list of authors in the documentation and/or other materials provided
 with the distribution. Neither the name of the UbixOS Project nor the names of its
 contributors may be used to endorse or promote products derived from this software
 without specific prior written permission.

 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
 EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
 THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
 OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
 TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

 $Id$

*****************************************************************************************/

#ifndef _INIT_H
#define _INIT_H

#include <vmm/vmm.h>
#include <ubixos/vitals.h>
#include <vfs/vfs.h>
#include <isa/8259.h>
#include <sys/idt.h>
#include <ubixos/sched.h>
#include <isa/pit.h>
#include <isa/atkbd.h>
#include <ubixos/time.h>
#include <net/net.h>
#include <isa/ne2k.h>
#include <devfs/devfs.h>
#include <pci/pci.h>
#include <ubixfs/ubixfs.h>
#include <isa/fdc.h>
#include <ubixos/tty.h>
#include <ubixos/static.h>

typedef int (*intFunctionPTR)(void);

intFunctionPTR init_tasks[] = {
  vmm_init,
  static_constructors,
  i8259_init,  
  idt_init,
  vitals_init,
  vfs_init,
  sched_init,
  pit_init,
  atkbd_init,
  time_init,
  /*
  net_init,
  ne2k_init,
  */
  devfs_init,
  pci_init,
  ubixfs_init,
  fdc_init,
  tty_init,
  };

int init_tasksTotal = sizeof(init_tasks)/sizeof(intFunctionPTR);

#endif

/***
 $Log$
 Revision 1.37  2004/09/14 21:51:24  reddawg
 Debug info

 Revision 1.36  2004/09/11 22:17:52  reddawg
 hmm..

 Revision 1.35  2004/09/11 19:15:37  reddawg
 here you go irq 10 io 240 for your ne2k nic

 Revision 1.34  2004/09/11 14:12:33  reddawg
 ok enabled networking

 Revision 1.33  2004/09/08 22:04:10  apwillia
 Added calling of static constructors, commented out tty_printf in kprintf (due to deadlock)

 Revision 1.32  2004/09/08 07:33:37  reddawg
 Fixes

 Revision 1.31  2004/09/07 22:26:04  reddawg
 synced in

 Revision 1.30  2004/09/07 21:54:38  reddawg
 ok reverted back to old scheduling for now....

 Revision 1.29  2004/09/07 20:58:35  reddawg
 time to roll back i can't think straight by friday

 Revision 1.28  2004/08/20 16:49:11  reddawg
 PCI Updates - More to follow as PCI system gets revamped

 Revision 1.27  2004/08/03 18:31:18  reddawg
 virtual terms

 Revision 1.26  2004/08/01 20:40:45  reddawg
 Net related fixes

 Revision 1.25  2004/07/28 22:29:29  reddawg
 Turned off network support our scheduler... is really horible with cpu bound tasks the system does slow down to much

 Revision 1.24  2004/07/28 22:23:02  reddawg
 make sure it still works before I goto bed

 Revision 1.23  2004/07/28 00:17:05  reddawg
 Major:
   Disconnected page 0x0 from the system... Unfortunately this broke many things
   all of which have been fixed. This was good because nothing deferences NULL
   any more.

 Things affected:
   malloc,kmalloc,getfreepage,getfreevirtualpage,pagefault,fork,exec,ld,ld.so,exec,file

 Revision 1.22  2004/07/24 23:04:44  reddawg
 Changes... mark let me know if you fault at pid 185 when you type stress

 Revision 1.21  2004/07/22 17:32:25  reddawg
 I broke it hopefully

 Revision 1.20  2004/07/21 23:05:05  reddawg
 last round of fixed
 main.c: removed kernel stack
 start.S: added kernel stack thanks to tip off from BJ about .comm
 init.h: re-enabled ipStack

 Revision 1.19  2004/07/19 02:08:27  reddawg
 Cleaned out the rest of debuging code also temporarily disabled the ip stack to improve boot time

 Revision 1.18  2004/07/17 03:10:18  reddawg
 Added asserts no problems thusfar

 Revision 1.17  2004/07/17 02:45:55  reddawg
 Modified assert it now invokes kPanic it is very nifty

 Revision 1.16  2004/07/17 02:38:31  reddawg
 Fixed a few problems

 Revision 1.15  2004/07/14 12:42:46  reddawg
 fdc: fdcInit to fdc_init
 Changed Startup Routines

 Revision 1.12  2004/07/14 02:25:40  reddawg
 net: netInit to net_init
 Changed startup routines

 Revision 1.11  2004/07/09 13:37:30  reddawg
 time: timeInit to time_init
 Adjusted initialization routines

 Revision 1.3  2004/07/09 12:18:19  reddawg
 Updating Initialization Procedures

 END
 ***/