summaryrefslogtreecommitdiff
path: root/ide.c
AgeCommit message (Collapse)Author
2007-08-14formatting, sleep bug fixrsc
2007-08-14ide_write unused => gonersc
2006-09-08move ide_intr lowerrsc
2006-09-07fix disk bugrsc
2006-09-07fix ide, pit interfacesrsc
2006-09-07commentsrsc
2006-09-07run without lapic and ioapic, if they are not presentkaashoek
if no lapic available, use 8253pit for clock now xv6 runs both on qemu (uniprocessor) and bochs (uniprocessor and MP)
2006-09-06more named constantsrsc
2006-09-06more tabs go awayrsc
2006-09-06no /* */ commentsrsc
2006-09-06standardize various * conventionsrsc
2006-09-06spacing fixes: no tabs, 2-space indents (for rtm)rsc
2006-09-03remove duplicationkaashoek
don't use the same name for two different pieces of code
2006-08-30complain if no disk 1rtm
lots of cleanup
2006-08-13link()rtm
2006-08-10interrupts could be recursive since lapic_eoi() called before rtirtm
so fast interrupts overflow the kernel stack fix: cli() before lapic_eoi()
2006-08-10low-level keyboard input (not hooked up to /dev yet)rtm
fix acquire() to cli() *before* incrementing nlock make T_SYSCALL a trap gate, not an interrupt gate sadly, various crashes if you hold down a keyboard key...
2006-08-09iread for T_DEVkaashoek
O_RDWR, etc. create file
2006-08-08fix race in holding() check in acquire()rtm
give cpu1 a TSS and gdt for when it enters scheduler() and a pseudo proc[] entry for each cpu cpu0 waits for each other cpu to start up read() for files
2006-08-07bwritekaashoek
2006-08-06generalize async read to support write tookaashoek
2006-08-04better interrupt plan---this one appears to workkaashoek
ioapic
2006-07-29open()rtm
2006-07-29acquire+release ide_lock in ide_intrkaashoek
2006-07-21breadrtm
iget mkfs makes a file system image put this in your .bochsrc: ata0-slave: type=disk, mode=flat, path="fs.img", cylinders=1024, heads=1, spt=1
2006-07-20uint32_t -> uint &crtm
2006-07-17add ide_lock for sleeprsc
2006-07-17add uint and standardize on typedefs instead of unsignedrsc
2006-07-15no more recursive locksrtm
wakeup1() assumes you hold proc_table_lock sleep(chan, lock) provides atomic sleep-and-release to wait for condition ugly code in swtch/scheduler to implement new sleep fix lots of bugs in pipes, wait, and exit fix bugs if timer interrupt goes off in schedule() console locks per line, not per byte
2006-07-10queue with disk requestskaashoek
2006-07-10read the disk using interruptskaashoek
2006-07-06disable all interrupts when acquiring lockkaashoek
user program that makes a blocking system call
2006-07-05timer interruptskaashoek
disk interrupts (assuming bochs has a bug)
2006-06-16checkpointrtm