Subversion Repositories HelenOS

Rev

Show changed files | Details | Compare with Previous | Blame | RSS feed

Filtering Options

Rev Age Author Path Log message Diff
4021 5582 d 9 h jermar /trunk/kernel/ There is no need to define ioport{8,16,32}_t types for each architecture separately.  
3956 5592 d 9 h jermar /trunk/kernel/arch/ppc32/include/ Add missing PIO functions to ppc32.  
3929 5594 d 8 h jermar /trunk/kernel/arch/ Introduce ioport8_t, ioport16_t and ioport32_t. These types are to be used with
pio_read_n() and pio_write_n() functions. This breaks everything.
 
3902 5598 d 14 h jermar /trunk/kernel/ Introduce a more platform-neutral name for programmed I/O.

The new API looks like pio_read_n() or pio_write_n(), where n is 8, 16 or 32.
The old API (i.e. inb(), inw(), inl(), outb() outw(), outl()) may have made
some people think that the interface is only to be used with the separate I/O
space. That's not the case. This API is to be implemented on all platforms
so that we can finally have really generic kernel device drivers.
 
3880 5601 d 10 h decky /trunk/kernel/arch/ simplify configuration
introduce arch_construct_function and inb/outb (sometimes empty) on all platforms
various code cleanup
 
2071 6358 d 9 h jermar /trunk/ (c) versus (C)  
1888 6483 d 13 h jermar /trunk/ C99 compliant header guards (hopefully) everywhere in the kernel.
Formatting and indentation changes.
Small improvements in sparc64.
 
1787 6548 d 12 h decky / move kernel/trunk, uspace/trunk and boot/trunk to trunk/kernel, trunk/uspace and trunk/boot  
1780 6555 d 13 h jermar /kernel/trunk/ Replace old __u?? types with respective C99 variants (e.g. uint32_t, int64_t, uintptr_t etc.).  
1702 6576 d 15 h cejka /kernel/trunk/ Kernel doxygen comments updated.  
1378 6601 d 16 h decky /kernel/trunk/arch/ppc32/ kernel identity mapping still to be done using BAT  
1374 6602 d 7 h decky /kernel/trunk/arch/ppc32/ ppc32 work
update framebuffer
get rid of the BAT memory mapping (not finished yet)
 
1283 6618 d 7 h decky /kernel/trunk/arch/ppc32/include/ fix nasty CR clobber bug
change coding style
 
1268 6619 d 15 h decky /kernel/trunk/arch/ppc32/ minor changes  
1267 6619 d 15 h decky /kernel/trunk/arch/ppc32/ ppc32: proper exception handling from user-space
code cleanup
 
1220 6628 d 7 h decky /kernel/trunk/arch/ppc32/ ppc32: initial userspace support  
1007 6666 d 18 h decky /kernel/trunk/ ppc32: preemptive scheduling works now
FPU context saving disabled for now
 
987 6667 d 13 h decky /kernel/trunk/arch/ppc32/ ppc32: initial exception support  
982 6667 d 15 h decky /kernel/trunk/arch/ppc32/ ppc32: initial I/O support  
534 6767 d 10 h jermar / Rename HelenOS/SPARTAN to HelenOS/kernel again.  
532 6767 d 10 h jermar / Revert renaming of HelenOS/SPARTAN to HelenOS/kernel because of important pending patch.  
501 6779 d 15 h jermar / Rename HelenOS/SPARTAN to HelenOS/kernel.  
413 6815 d 6 h jermar /SPARTAN/trunk/ Rename cpu_priority_{high|low|restore|read} functions to interrupts_{disable|enable|restore|read}.
Rename pri_t to ipl_t (Interrupt Priority Level).
Rename thread_t::pri to thread_t::priority.
 
342 6850 d 16 h jermar /SPARTAN/trunk/arch/ Rename ppc port to ppc32.  
254 6859 d 21 h decky /SPARTAN/trunk/arch/ppc/ fix stupid assembler bugs in cpu_priority_* (PPC)  
253 6859 d 21 h jermar /SPARTAN/trunk/arch/ Implement PPC's get_stack_base().

Comment AMD64's get_stack_base().
 
210 6862 d 8 h decky /SPARTAN/trunk/ many PPC stuff, platform dependent arch.h header files  
204 6862 d 20 h decky /SPARTAN/trunk/arch/ppc/include/ PPC interrupt high/low/restore  
201 6863 d 8 h decky /SPARTAN/trunk/arch/ppc/ header fixes  
191 6863 d 12 h decky /SPARTAN/trunk/arch/ppc/ PPC memory size detection  
173 6868 d 9 h jermar /SPARTAN/trunk/ Preparations for weaker preemption model.
Make all kernel stacks (i.e. startup, scheduler and thread) be STACK_SIZE bytes long.
Reincarnate "the" structure. This time, it is planned to be located at the base of each and every kernel stack.
On IA-32 and MIPS, implement get_stack_base() functions. On the rest of supported platforms, define it to be dummy.
 
156 6882 d 18 h decky /SPARTAN/trunk/ PPC work in progress