aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/dev/pciide.c
Commit message (Collapse)AuthorAgeFilesLines
* Add mutex to pciide driver (fixes some stuff)Alex Auvolat2015-03-101-6/+23
|
* Pass more information to FS driver on some ops (TODO bugcheck).Alex Auvolat2015-03-101-9/+9
|
* VESA mode setting ; displays kogata logo!Alex Auvolat2015-03-091-3/+3
|
* Partial implement VFS pager (enough for ISO9660!)Alex Auvolat2015-03-091-20/+20
| | | | Also add some debugging facilities (especially stack trace).
* Nullfs now uses pager.Alex Auvolat2015-03-091-1/+1
|
* Require all fs_handle_t objects to point to a node.Alex Auvolat2015-03-091-2/+2
|
* Implement select ; add two tests for channels.Alex Auvolat2015-03-081-0/+1
|
* Change prototypes for read, write, readdir, close ; implement blocking IPC.Alex Auvolat2015-03-081-8/+8
|
* Process exiting & thread termination. IMPORTANT NOTE FOLLOWS.Alex Auvolat2015-03-041-11/+22
| | | | | | | | Threads may now communicate via wait_on(void* ressource) and resume_on (void* ressource). Previous pause() is replaced by wait_on(current_thread) and resume(thread) by resume_on(thread). wait_on(x) may return false, indicating that the reason for returning is NOT that resume_on(x) was called but something else happenned. Typically false indicates that the curent thread is being killed and must terminate its kernel-land processing as soon as possible.
* Change VFS interface : handles no longer visible to underlying FS.Alex Auvolat2015-03-021-20/+11
|
* Setup critical section management for parts that must not be interrupted.Alex Auvolat2015-03-021-5/+7
|
* IRQ handlers must be written with caution!Alex Auvolat2015-02-281-3/+6
|
* Complete ISO9660 impl ; some strange wtf is going on.Alex Auvolat2015-02-241-1/+0
|
* Fix a bug (dispose in pciide should not exist)Alex Auvolat2015-02-241-9/+7
|
* More preparation for iso9660Alex Auvolat2015-02-241-3/+8
|
* Add PCI IDE driver (only PIO mode, no DMA yet.)Alex Auvolat2015-02-241-0/+762