Subversion Repositories HelenOS

Rev

Go to most recent revision | Hide changed files | Directory listing | RSS feed

Filtering Options

Rev Age Author Path Log message Diff Changes
4126 5580 d 21 h decky /trunk/kernel/arch/ cleanup pm.h and related stuff (no change in functionality)  
/trunk/kernel/arch/amd64/include/asm.h
/trunk/kernel/arch/amd64/include/cpu.h
/trunk/kernel/arch/amd64/include/pm.h
/trunk/kernel/arch/amd64/src/ddi/ddi.c
/trunk/kernel/arch/amd64/src/pm.c
/trunk/kernel/arch/ia32/include/cpu.h
/trunk/kernel/arch/ia32/include/pm.h
/trunk/kernel/arch/ia32/src/pm.c
/trunk/kernel/arch/ia32/src/proc/scheduler.c
/trunk/kernel/arch/ia32/src/smp/smp.c
4125 5580 d 21 h decky /trunk/kernel/arch/ia32/ rename selector() to gdtselector() to unify with amd64  
/trunk/kernel/arch/ia32/include/pm.h
/trunk/kernel/arch/ia32/src/ddi/ddi.c
/trunk/kernel/arch/ia32/src/pm.c
/trunk/kernel/arch/ia32/src/proc/scheduler.c
/trunk/kernel/arch/ia32/src/syscall.c
/trunk/kernel/arch/ia32/src/userspace.c
4099 5581 d 16 h decky /trunk/kernel/arch/ia32/src/ update for the new scheme of wiring device drivers to keyboard/serial modules
use ega_redraw() only if it is compiled in
 
/trunk/kernel/arch/ia32/src/ia32.c
4098 5581 d 16 h decky /trunk/kernel/arch/ia32/include/drivers/ whitespace changes  
/trunk/kernel/arch/ia32/include/drivers/i8254.h
/trunk/kernel/arch/ia32/include/drivers/i8259.h
/trunk/kernel/arch/ia32/include/drivers/vesa.h
4097 5581 d 16 h decky /trunk/kernel/arch/ia32/include/drivers/ remove obsolete include file  
/trunk/kernel/arch/ia32/include/drivers/kbd.h
4096 5581 d 16 h decky /trunk/kernel/arch/ia32/src/drivers/ fix very strange condition  
/trunk/kernel/arch/ia32/src/drivers/vesa.c
4095 5581 d 16 h decky /trunk/kernel/arch/ make cpu_halt() really halt the execution  
/trunk/kernel/arch/amd64/include/asm.h
/trunk/kernel/arch/ia32/include/asm.h
4057 5585 d 20 h decky /trunk/kernel/arch/ optional EGA support  
/trunk/kernel/arch/amd64/src/amd64.c
/trunk/kernel/arch/ia32/src/ia32.c
4047 5586 d 13 h jermar /trunk/ Improve the configuration file.

- Support for easy configuration with sane defaults.

- Fix the ambiguous MACHINE variable by introducing the PROCESSOR variable.

- Eliminate some unnecessarily detailed questions by providing defaults for the
Serengeti machine.

- Introduce CONFIG_HID_IN and CONFIG_HID_OUT variables. They help to limit the
number of offered HID devices. In the future, they can be also used to
configure the way how the serial controller devices are connected to the
keyboard / serial line modules on some platforms where we can't autodetect.
 
/trunk/HelenOS.config
/trunk/kernel/arch/amd64/Makefile.inc
/trunk/kernel/arch/ia32/Makefile.inc
/trunk/kernel/arch/sparc64/Makefile.inc
4042 5586 d 17 h jermar /trunk/ Complete emancipation of kernel serial controller drivers (i8042, ns16550 and
z8530). Provide a common keyboard module for PC and Sun keyboards. The serial
line module is still to follow.
 
/trunk/kernel/genarch/include/drivers/i8042
/trunk/kernel/genarch/include/drivers/i8042/i8042.h
/trunk/kernel/genarch/include/drivers/ns16550
/trunk/kernel/genarch/include/drivers/ns16550/ns16550.h
/trunk/kernel/genarch/include/drivers/z8530
/trunk/kernel/genarch/include/drivers/z8530/z8530.h
/trunk/kernel/genarch/include/kbrd
/trunk/kernel/genarch/include/kbrd/kbrd.h
/trunk/kernel/genarch/src/drivers/i8042
/trunk/kernel/genarch/src/drivers/i8042/i8042.c
/trunk/kernel/genarch/src/drivers/ns16550
/trunk/kernel/genarch/src/drivers/ns16550/ns16550.c
/trunk/kernel/genarch/src/drivers/z8530
/trunk/kernel/genarch/src/drivers/z8530/z8530.c
/trunk/kernel/genarch/src/kbrd
/trunk/kernel/genarch/src/kbrd/kbrd.c
/trunk/kernel/genarch/include/kbd
/trunk/kernel/genarch/include/kbrd/i8042.h
/trunk/kernel/genarch/include/kbrd/key.h
/trunk/kernel/genarch/include/kbrd/ns16550.h
/trunk/kernel/genarch/include/kbrd/z8530.h
/trunk/kernel/genarch/src/kbd
/trunk/kernel/genarch/src/kbrd/i8042.c
/trunk/kernel/genarch/src/kbrd/key.c
/trunk/kernel/genarch/src/kbrd/ns16550.c
/trunk/kernel/genarch/src/kbrd/z8530.c
/trunk/HelenOS.config
/trunk/kernel/arch/amd64/src/amd64.c
/trunk/kernel/arch/ia32/src/ia32.c
/trunk/kernel/arch/ia64/src/ia64.c
/trunk/kernel/arch/ia64/src/smp/smp.c
/trunk/kernel/arch/sparc64/src/console.c
/trunk/kernel/arch/sparc64/src/drivers/kbd.c
/trunk/kernel/arch/sparc64/src/sparc64.c
/trunk/kernel/genarch/Makefile.inc
/trunk/kernel/genarch/src/kbrd/scanc_pc.c
/trunk/kernel/genarch/src/kbrd/scanc_sun.c
/trunk/kernel/generic/include/console/console.h
/trunk/kernel/generic/src/console/console.c
/trunk/kernel/generic/src/main/main.c
4026 5590 d 11 h jermar /trunk/ Make the kbd port drivers platform neutral by using PIO functions.
The kernel now supplies the physical address and the kernel virtual address.
 
/trunk/kernel/arch/amd64/src/amd64.c
/trunk/kernel/arch/ia32/src/ia32.c
/trunk/kernel/arch/ia64/src/ia64.c
/trunk/kernel/arch/sparc64/src/drivers/kbd.c
/trunk/uspace/srv/kbd/port/i8042.c
/trunk/uspace/srv/kbd/port/i8042.h
/trunk/uspace/srv/kbd/port/ns16550.c
/trunk/uspace/srv/kbd/port/z8530.c
4022 5590 d 12 h svoboda /trunk/ Move multiboot parsing to genarch/*/multiboot and adapt it for use with both ia32 and amd64. Multiboot info parsing now supported on amd64, too.  
/trunk/kernel/genarch/include/multiboot
/trunk/kernel/genarch/include/multiboot/multiboot.h
/trunk/kernel/genarch/src/multiboot
/trunk/kernel/genarch/src/multiboot/multiboot.c
/trunk/kernel/arch/ia32/include/boot/multiboot.h
/trunk/HelenOS.config
/trunk/kernel/arch/amd64/include/arch.h
/trunk/kernel/arch/amd64/include/boot/boot.h
/trunk/kernel/arch/amd64/src/amd64.c
/trunk/kernel/arch/amd64/src/boot/boot.S
/trunk/kernel/arch/ia32/include/arch.h
/trunk/kernel/arch/ia32/include/boot/boot.h
/trunk/kernel/arch/ia32/src/ia32.c
/trunk/kernel/genarch/Makefile.inc
4021 5590 d 13 h jermar /trunk/kernel/ There is no need to define ioport{8,16,32}_t types for each architecture separately.  
/trunk/kernel/arch/amd64/include/asm.h
/trunk/kernel/arch/amd64/include/types.h
/trunk/kernel/arch/arm32/include/asm.h
/trunk/kernel/arch/arm32/include/types.h
/trunk/kernel/arch/ia32/include/asm.h
/trunk/kernel/arch/ia32/include/types.h
/trunk/kernel/arch/ia64/include/asm.h
/trunk/kernel/arch/ia64/include/types.h
/trunk/kernel/arch/mips32/include/asm.h
/trunk/kernel/arch/mips32/include/types.h
/trunk/kernel/arch/ppc32/include/asm.h
/trunk/kernel/arch/ppc32/include/types.h
/trunk/kernel/arch/sparc64/include/types.h
/trunk/kernel/genarch/include/drivers/ega/ega.h
/trunk/kernel/generic/include/typedefs.h
4016 5590 d 18 h decky /trunk/kernel/ better inline assembler readability using the new symbolic syntax  
/trunk/kernel/arch/ia32/include/asm.h
/trunk/kernel/arch/ia32/include/atomic.h
/trunk/kernel/arch/ia32/include/barrier.h
/trunk/kernel/arch/ia32/include/cpuid.h
/trunk/kernel/arch/ia32/src/cpu/cpu.c
/trunk/kernel/arch/ia32/src/fpu_context.c
/trunk/kernel/arch/ia32/src/interrupt.c
/trunk/kernel/arch/ia32/src/pm.c
/trunk/kernel/arch/ia32/src/userspace.c
/trunk/kernel/test/fpu/sse1.c
4015 5590 d 21 h decky /trunk/kernel/arch/ia32/ rename ia32_cboot() to arch_pre_main() and move it to ia32.c (to be in line with other platforms)  
/trunk/kernel/arch/ia32/include/boot/multiboot.h
/trunk/kernel/arch/ia32/include/boot/cboot.h
/trunk/kernel/arch/ia32/src/boot/cboot.c
/trunk/kernel/arch/ia32/Makefile.inc
/trunk/kernel/arch/ia32/include/arch.h
/trunk/kernel/arch/ia32/include/boot/boot.h
/trunk/kernel/arch/ia32/src/boot/boot.S
/trunk/kernel/arch/ia32/src/ia32.c
4014 5590 d 21 h decky /trunk/ cstyle  
/trunk/kernel/arch/ia32/src/boot/cboot.c
/trunk/kernel/generic/include/string.h
/trunk/kernel/generic/src/lib/string.c
/trunk/kernel/generic/src/main/kinit.c
/trunk/uspace/srv/loader/main.c
4012 5591 d 11 h svoboda /trunk/ Task names should only contain base names of commands. Also add 'boot:' prefix for binaries loaded by the kernel.  
/trunk/kernel/arch/ia32/src/boot/cboot.c
/trunk/kernel/generic/include/string.h
/trunk/kernel/generic/src/lib/string.c
/trunk/kernel/generic/src/main/kinit.c
/trunk/uspace/srv/loader/main.c
4011 5591 d 12 h svoboda /trunk/kernel/ String functions should be declared in string.h (and implemented in string.c) in the kernel.  
/trunk/kernel/generic/include/string.h
/trunk/kernel/generic/src/lib/string.c
/trunk/kernel/Makefile
/trunk/kernel/arch/ia32/src/boot/cboot.c
/trunk/kernel/arch/sparc64/src/console.c
/trunk/kernel/arch/sparc64/src/drivers/kbd.c
/trunk/kernel/arch/sparc64/src/drivers/pci.c
/trunk/kernel/arch/sparc64/src/drivers/scr.c
/trunk/kernel/arch/sparc64/src/drivers/sgcn.c
/trunk/kernel/genarch/src/ofw/ebus.c
/trunk/kernel/genarch/src/ofw/fhc.c
/trunk/kernel/genarch/src/ofw/ofw_tree.c
/trunk/kernel/genarch/src/ofw/pci.c
/trunk/kernel/generic/include/func.h
/trunk/kernel/generic/include/memstr.h
/trunk/kernel/generic/src/console/cmd.c
/trunk/kernel/generic/src/console/kconsole.c
/trunk/kernel/generic/src/debug/symtab.c
/trunk/kernel/generic/src/lib/func.c
/trunk/kernel/generic/src/lib/memstr.c
/trunk/kernel/generic/src/printf/printf_core.c
/trunk/kernel/generic/src/proc/task.c
3987 5592 d 13 h svoboda /trunk/kernel/ Read command line for multiboot modules on ia32 and copy it to task name. Other arches will need to initialize task names in the init structure to an empty string.  
/trunk/kernel/arch/amd64/src/boot/boot.S
/trunk/kernel/arch/ia32/src/boot/cboot.c
/trunk/kernel/generic/include/config.h
/trunk/kernel/generic/src/main/kinit.c
/trunk/kernel/generic/src/proc/task.c
3985 5592 d 14 h svoboda /trunk/kernel/arch/ia32/src/boot/ Rewrite rest of multiboot info parsing to C.  
/trunk/kernel/arch/ia32/src/boot/boot.S
/trunk/kernel/arch/ia32/src/boot/cboot.c

Show All