xv6-cs450/ide.c

156 lines
3.1 KiB
C
Raw Normal View History

2006-09-06 19:50:20 +02:00
// Simple PIO-based (non-DMA) IDE driver code.
2006-06-16 22:29:25 +02:00
#include "types.h"
2007-08-28 01:26:33 +02:00
#include "defs.h"
2006-06-16 22:29:25 +02:00
#include "param.h"
#include "memlayout.h"
2006-06-16 22:29:25 +02:00
#include "mmu.h"
#include "proc.h"
#include "x86.h"
#include "traps.h"
2006-07-17 07:00:25 +02:00
#include "spinlock.h"
2007-08-24 21:32:36 +02:00
#include "buf.h"
2006-06-16 22:29:25 +02:00
2006-09-06 19:54:29 +02:00
#define IDE_BSY 0x80
#define IDE_DRDY 0x40
#define IDE_DF 0x20
#define IDE_ERR 0x01
#define IDE_CMD_READ 0x20
#define IDE_CMD_WRITE 0x30
2006-06-16 22:29:25 +02:00
2009-05-31 03:29:01 +02:00
// idequeue points to the buf now being read/written to the disk.
// idequeue->qnext points to the next buf to be processed.
// You must hold idelock while manipulating queue.
2006-09-07 16:28:12 +02:00
2009-05-31 03:29:01 +02:00
static struct spinlock idelock;
static struct buf *idequeue;
2006-09-07 16:28:12 +02:00
2009-05-31 03:29:01 +02:00
static int havedisk1;
static void idestart(struct buf*);
2006-08-30 20:55:06 +02:00
2006-09-07 17:29:54 +02:00
// Wait for IDE disk to become ready.
2006-06-16 22:29:25 +02:00
static int
idewait(int checkerr)
2006-06-16 22:29:25 +02:00
{
int r;
2006-06-16 22:29:25 +02:00
2009-05-31 03:29:01 +02:00
while(((r = inb(0x1f7)) & (IDE_BSY|IDE_DRDY)) != IDE_DRDY)
2006-09-06 19:50:20 +02:00
;
if(checkerr && (r & (IDE_DF|IDE_ERR)) != 0)
return -1;
return 0;
2006-06-16 22:29:25 +02:00
}
void
ideinit(void)
{
2007-08-25 00:17:41 +02:00
int i;
2009-05-31 03:29:01 +02:00
initlock(&idelock, "ide");
picenable(IRQ_IDE);
ioapicenable(IRQ_IDE, ncpu - 1);
idewait(0);
2007-08-25 00:17:41 +02:00
// Check if disk 1 is present
2007-08-28 20:23:48 +02:00
outb(0x1f6, 0xe0 | (1<<4));
2007-08-25 00:17:41 +02:00
for(i=0; i<1000; i++){
if(inb(0x1f7) != 0){
2009-05-31 03:29:01 +02:00
havedisk1 = 1;
2007-08-25 00:17:41 +02:00
break;
}
}
// Switch back to disk 0.
2007-08-28 20:23:48 +02:00
outb(0x1f6, 0xe0 | (0<<4));
}
2009-05-31 03:29:01 +02:00
// Start the request for b. Caller must hold idelock.
2007-08-25 00:17:41 +02:00
static void
idestart(struct buf *b)
2006-06-16 22:29:25 +02:00
{
2007-08-25 00:17:41 +02:00
if(b == 0)
panic("idestart");
2006-06-16 22:29:25 +02:00
idewait(0);
2007-08-25 00:17:41 +02:00
outb(0x3f6, 0); // generate interrupt
outb(0x1f2, 1); // number of sectors
outb(0x1f3, b->sector & 0xff);
outb(0x1f4, (b->sector >> 8) & 0xff);
outb(0x1f5, (b->sector >> 16) & 0xff);
2007-08-28 20:23:48 +02:00
outb(0x1f6, 0xe0 | ((b->dev&1)<<4) | ((b->sector>>24)&0x0f));
if(b->flags & B_DIRTY){
2007-08-25 00:17:41 +02:00
outb(0x1f7, IDE_CMD_WRITE);
outsl(0x1f0, b->data, 512/4);
2007-08-28 20:37:41 +02:00
} else {
2007-08-25 00:17:41 +02:00
outb(0x1f7, IDE_CMD_READ);
}
2006-06-16 22:29:25 +02:00
}
2007-08-25 00:17:41 +02:00
// Interrupt handler.
2006-09-08 16:33:27 +02:00
void
ideintr(void)
2006-09-08 16:33:27 +02:00
{
2007-08-25 00:17:41 +02:00
struct buf *b;
2011-10-11 12:41:37 +02:00
// First queued buffer is the active request.
2009-05-31 03:29:01 +02:00
acquire(&idelock);
if((b = idequeue) == 0){
release(&idelock);
// cprintf("spurious IDE interrupt\n");
2007-08-25 00:17:41 +02:00
return;
2007-08-24 21:32:36 +02:00
}
2009-05-31 03:29:01 +02:00
idequeue = b->qnext;
2006-09-08 16:33:27 +02:00
2007-08-25 00:17:41 +02:00
// Read data if needed.
if(!(b->flags & B_DIRTY) && idewait(1) >= 0)
2007-08-25 00:17:41 +02:00
insl(0x1f0, b->data, 512/4);
// Wake process waiting for this buf.
b->flags |= B_VALID;
b->flags &= ~B_DIRTY;
2007-08-25 00:17:41 +02:00
wakeup(b);
// Start disk on next buf in queue.
2009-05-31 03:29:01 +02:00
if(idequeue != 0)
idestart(idequeue);
2007-08-25 00:17:41 +02:00
2009-05-31 03:29:01 +02:00
release(&idelock);
2006-07-10 21:06:48 +02:00
}
2007-08-25 00:17:41 +02:00
//PAGEBREAK!
// Sync buf with disk.
// If B_DIRTY is set, write buf to disk, clear B_DIRTY, set B_VALID.
// Else if B_VALID is not set, read buf from disk, set B_VALID.
2006-09-07 17:29:54 +02:00
void
iderw(struct buf *b)
2006-06-16 22:29:25 +02:00
{
2007-08-24 21:32:36 +02:00
struct buf **pp;
if(!(b->flags & B_BUSY))
panic("iderw: buf not busy");
if((b->flags & (B_VALID|B_DIRTY)) == B_VALID)
panic("iderw: nothing to do");
2009-05-31 03:29:01 +02:00
if(b->dev != 0 && !havedisk1)
panic("iderw: ide disk 1 not present");
2012-08-28 20:41:08 +02:00
acquire(&idelock); //DOC:acquire-lock
2006-09-06 19:27:19 +02:00
2009-05-31 03:29:01 +02:00
// Append b to idequeue.
2007-08-24 21:32:36 +02:00
b->qnext = 0;
2012-08-28 20:41:08 +02:00
for(pp=&idequeue; *pp; pp=&(*pp)->qnext) //DOC:insert-queue
2007-08-25 00:17:41 +02:00
;
2007-08-24 21:32:36 +02:00
*pp = b;
2007-08-25 00:17:41 +02:00
// Start disk if necessary.
2009-05-31 03:29:01 +02:00
if(idequeue == b)
idestart(b);
2007-08-24 21:32:36 +02:00
2007-08-25 00:17:41 +02:00
// Wait for request to finish.
while((b->flags & (B_VALID|B_DIRTY)) != B_VALID){
2009-05-31 03:29:01 +02:00
sleep(b, &idelock);
}
2009-05-31 03:29:01 +02:00
release(&idelock);
2006-06-16 22:29:25 +02:00
}