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
3655 5676 d 17 h jermar /trunk/kernel/ Add additional members to the irq_t structure so that an interrupt-driven driver
does not need to know how to clear the level interrupt. The z8530 was modified
in this way and is much more generic. The ns16550 driver has also been modified,
but awaits testing. The sparc64 interrupt mapping and dispatch code is now using
the new info and calls the clear-interrupt-routine itself.
 
/trunk/kernel/arch/sparc64/include/drivers/fhc.h
/trunk/kernel/arch/sparc64/include/drivers/pci.h
/trunk/kernel/arch/sparc64/src/drivers/fhc.c
/trunk/kernel/arch/sparc64/src/drivers/kbd.c
/trunk/kernel/arch/sparc64/src/drivers/pci.c
/trunk/kernel/arch/sparc64/src/trap/interrupt.c
/trunk/kernel/genarch/include/kbd/ns16550.h
/trunk/kernel/genarch/include/kbd/z8530.h
/trunk/kernel/genarch/include/ofw/ofw_tree.h
/trunk/kernel/genarch/src/kbd/ns16550.c
/trunk/kernel/genarch/src/kbd/z8530.c
/trunk/kernel/genarch/src/ofw/ebus.c
/trunk/kernel/genarch/src/ofw/fhc.c
/trunk/kernel/genarch/src/ofw/pci.c
/trunk/kernel/generic/include/ddi/irq.h
/trunk/kernel/generic/src/ddi/irq.c
3654 5676 d 19 h jermar /trunk/kernel/arch/sparc64/ After my effort yesterday, there are two rival psycho drivers.
Merge the two and remove the newer one.
 
/trunk/kernel/arch/sparc64/include/drivers/psycho.h
/trunk/kernel/arch/sparc64/src/drivers/psycho.c
/trunk/kernel/arch/sparc64/Makefile.inc
/trunk/kernel/arch/sparc64/src/drivers/pci.c
3649 5677 d 14 h jermar /trunk/kernel/arch/sparc64/src/drivers/ More work on the psycho driver.  
/trunk/kernel/arch/sparc64/src/drivers/psycho.c
3647 5677 d 16 h jermar /trunk/kernel/arch/sparc64/ Improvized Psycho driver.  
/trunk/kernel/arch/sparc64/include/drivers/psycho.h
/trunk/kernel/arch/sparc64/src/drivers/psycho.c
/trunk/kernel/arch/sparc64/Makefile.inc
3646 5677 d 17 h jermar /trunk/kernel/ Initial support for interrupt driven driver for ns16550.  
/trunk/kernel/Makefile
/trunk/kernel/arch/sparc64/src/console.c
/trunk/kernel/arch/sparc64/src/drivers/kbd.c
/trunk/kernel/genarch/include/kbd/ns16550.h
/trunk/kernel/genarch/src/kbd/ns16550.c
/trunk/kernel/kernel.config
3635 5680 d 17 h vana /trunk/ IA64: Userspace I/O support  
/trunk/kernel/arch/ia64/include/mm/page.h
/trunk/kernel/arch/ia64/include/mm/tlb.h
/trunk/kernel/arch/ia64/include/proc/task.h
/trunk/kernel/arch/ia64/src/ddi/ddi.c
/trunk/kernel/arch/ia64/src/drivers/ega.c
/trunk/kernel/arch/ia64/src/ia64.c
/trunk/kernel/arch/ia64/src/mm/tlb.c
/trunk/kernel/generic/include/adt/bitmap.h
/trunk/uspace/lib/libc/arch/ia64/Makefile.inc
/trunk/uspace/srv/fb/Makefile
3631 5681 d 16 h jermar /trunk/kernel/arch/ia32/src/ The IA-32 manual is very secretive about the fact that the SYSENTER instruction
disables interrupts (I found only one evidence of this in the instruction's
pseudo code). The sysenter_handler needs to reenable the interrupts in order to
preserve the preemptive nature of the kernel.
 
/trunk/kernel/arch/ia32/src/asm.S
3626 5682 d 21 h vana /trunk/kernel/ Classic TLB shootdown support on ia64  
/trunk/kernel/arch/ia64/include/cpu.h
/trunk/kernel/arch/ia64/include/interrupt.h
/trunk/kernel/arch/ia64/src/interrupt.c
/trunk/kernel/arch/ia64/src/smp/smp.c
/trunk/kernel/generic/src/mm/tlb.c
3619 5683 d 4 h vana /trunk/kernel/arch/ia64/src/smp/ IA64:smp.c Remove not important logs  
/trunk/kernel/arch/ia64/src/smp/smp.c
3616 5683 d 20 h vana /trunk/ IA64 correctly find CPU wakeup vector from SAL & EFI memory map support  
/trunk/boot/arch/ia64/loader/gefi/HelenOS/hello.c
/trunk/kernel/arch/ia64/include/bootinfo.h
/trunk/kernel/arch/ia64/src/mm/frame.c
3594 5687 d 17 h svoboda /trunk/kernel/arch/ppc32/src/mm/ Handle page faults from userspace properly on ppc32, do not panic.  
/trunk/kernel/arch/ppc32/src/mm/tlb.c
3587 5693 d 0 h jermar /trunk/kernel/arch/ppc64/src/mm/ Remove one more occurrence of "Page fault.\n".  
/trunk/kernel/arch/ppc64/src/mm/page.c
3586 5693 d 0 h jermar /trunk/kernel/arch/ Do not print "Page fault.\n" if a mapping is not found during TLB refill.  
/trunk/kernel/arch/mips32/src/mm/tlb.c
/trunk/kernel/arch/ppc32/src/mm/tlb.c
3585 5693 d 2 h svoboda /trunk/ Fix bug #67. It was obviously all my fault - I allocated r3 for pcb_ptr, which was alredy used by uarg.  
/trunk/kernel/arch/ppc32/src/asm.S
/trunk/uspace/lib/libc/arch/ppc32/src/entry.s
/trunk/uspace/srv/loader/arch/ppc32/ppc32.s
3584 5693 d 2 h svoboda /trunk/kernel/arch/ppc32/src/mm/ Bugfix: A ppc32 task would hang if it touched unmapped memory - was calling printf() with address-space mutex held.  
/trunk/kernel/arch/ppc32/src/mm/tlb.c
3583 5693 d 5 h vana /trunk/ IA64: Support for real frequency  
/trunk/boot/arch/ia64/loader/gefi/HelenOS/hello.c
/trunk/kernel/arch/ia64/include/bootinfo.h
/trunk/kernel/arch/ia64/include/drivers/it.h
/trunk/kernel/arch/ia64/src/drivers/it.c
3580 5694 d 15 h jermar /trunk/kernel/arch/sparc64/include/ Accesses to memory mapped registers should use volatile pointers so that
the compiler doesn't even think of trying to be clever. Add memory barriers
and fixed cstyle.
 
/trunk/kernel/arch/sparc64/include/asm.h
/trunk/kernel/arch/sparc64/include/types.h
3578 5695 d 5 h vana /trunk/ Alfa of SMP support on IA64  
/trunk/kernel/arch/ia64/src/smp
/trunk/kernel/arch/ia64/src/smp/smp.c
/trunk/boot/arch/ia64/loader/Makefile
/trunk/boot/arch/ia64/loader/asm.S
/trunk/boot/arch/ia64/loader/boot.S
/trunk/boot/arch/ia64/loader/gefi/HelenOS/Makefile
/trunk/boot/arch/ia64/loader/gefi/HelenOS/hello.c
/trunk/boot/arch/ia64/loader/gefi/apps/Makefile
/trunk/boot/arch/ia64/loader/main.c
/trunk/boot/arch/ia64/loader/main.h
/trunk/kernel/arch/ia64/Makefile.inc
/trunk/kernel/arch/ia64/include/atomic.h
/trunk/kernel/arch/ia64/include/bootinfo.h
/trunk/kernel/arch/ia64/include/cpu.h
/trunk/kernel/arch/ia64/include/mm/page.h
/trunk/kernel/arch/ia64/src/drivers/it.c
/trunk/kernel/arch/ia64/src/ia64.c
/trunk/kernel/arch/ia64/src/mm/frame.c
/trunk/kernel/arch/ia64/src/mm/page.c
/trunk/kernel/arch/ia64/src/start.S
/trunk/kernel/generic/include/synch/spinlock.h
/trunk/kernel/generic/src/mm/tlb.c
/trunk/kernel/generic/src/proc/thread.c
3577 5695 d 5 h vana /trunk/kernel/ Support for serial port console on IA64 as a compensation for keyboard - based on SPARC ns16550 driver  
/trunk/kernel/arch/ia64/include/asm.h
/trunk/kernel/arch/sparc64/include/asm.h
/trunk/kernel/arch/sparc64/include/drivers/ns16550.h
/trunk/kernel/arch/sparc64/src/drivers/kbd.c
/trunk/kernel/genarch/include/kbd/ns16550.h
/trunk/kernel/genarch/src/kbd/key.c
/trunk/kernel/genarch/src/kbd/ns16550.c
/trunk/kernel/kernel.config
3490 5725 d 19 h vana /trunk/kernel/arch/ia64/include/ Macro naming correction  
/trunk/kernel/arch/ia64/include/asm.h

Show All