2006-09-06 17:50:20 +00:00
|
|
|
// Simple PIO-based (non-DMA) IDE driver code.
|
2006-06-16 20:29:25 +00:00
|
|
|
|
|
|
|
#include "types.h"
|
2007-08-27 23:26:33 +00:00
|
|
|
#include "defs.h"
|
2006-06-16 20:29:25 +00:00
|
|
|
#include "param.h"
|
2011-07-29 11:31:27 +00:00
|
|
|
#include "memlayout.h"
|
2006-06-16 20:29:25 +00:00
|
|
|
#include "mmu.h"
|
|
|
|
#include "proc.h"
|
|
|
|
#include "x86.h"
|
2006-09-03 15:39:29 +00:00
|
|
|
#include "traps.h"
|
2006-07-17 05:00:25 +00:00
|
|
|
#include "spinlock.h"
|
2007-08-24 19:32:36 +00:00
|
|
|
#include "buf.h"
|
2006-06-16 20:29:25 +00:00
|
|
|
|
2006-09-06 17:54:29 +00: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 20:29:25 +00:00
|
|
|
|
2009-05-31 01:29:01 +00: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 14:28:12 +00:00
|
|
|
|
2009-05-31 01:29:01 +00:00
|
|
|
static struct spinlock idelock;
|
|
|
|
static struct buf *idequeue;
|
2006-09-07 14:28:12 +00:00
|
|
|
|
2009-05-31 01:29:01 +00:00
|
|
|
static int havedisk1;
|
2009-03-08 22:07:13 +00:00
|
|
|
static void idestart(struct buf*);
|
2006-08-30 18:55:06 +00:00
|
|
|
|
2006-09-07 15:29:54 +00:00
|
|
|
// Wait for IDE disk to become ready.
|
2006-06-16 20:29:25 +00:00
|
|
|
static int
|
2009-05-31 05:12:21 +00:00
|
|
|
idewait(int checkerr)
|
2006-06-16 20:29:25 +00:00
|
|
|
{
|
2006-07-05 20:00:14 +00:00
|
|
|
int r;
|
2006-06-16 20:29:25 +00:00
|
|
|
|
2009-05-31 01:29:01 +00:00
|
|
|
while(((r = inb(0x1f7)) & (IDE_BSY|IDE_DRDY)) != IDE_DRDY)
|
2006-09-06 17:50:20 +00:00
|
|
|
;
|
2009-05-31 05:12:21 +00:00
|
|
|
if(checkerr && (r & (IDE_DF|IDE_ERR)) != 0)
|
2006-07-05 20:00:14 +00:00
|
|
|
return -1;
|
|
|
|
return 0;
|
2006-06-16 20:29:25 +00:00
|
|
|
}
|
|
|
|
|
2006-07-05 20:00:14 +00:00
|
|
|
void
|
2009-03-08 22:07:13 +00:00
|
|
|
ideinit(void)
|
2006-07-05 20:00:14 +00:00
|
|
|
{
|
2007-08-24 22:17:41 +00:00
|
|
|
int i;
|
|
|
|
|
2009-05-31 01:29:01 +00:00
|
|
|
initlock(&idelock, "ide");
|
2009-03-08 22:07:13 +00:00
|
|
|
picenable(IRQ_IDE);
|
|
|
|
ioapicenable(IRQ_IDE, ncpu - 1);
|
|
|
|
idewait(0);
|
2007-08-24 22:17:41 +00:00
|
|
|
|
|
|
|
// Check if disk 1 is present
|
2007-08-28 18:23:48 +00:00
|
|
|
outb(0x1f6, 0xe0 | (1<<4));
|
2007-08-24 22:17:41 +00:00
|
|
|
for(i=0; i<1000; i++){
|
|
|
|
if(inb(0x1f7) != 0){
|
2009-05-31 01:29:01 +00:00
|
|
|
havedisk1 = 1;
|
2007-08-24 22:17:41 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Switch back to disk 0.
|
2007-08-28 18:23:48 +00:00
|
|
|
outb(0x1f6, 0xe0 | (0<<4));
|
2006-07-05 20:00:14 +00:00
|
|
|
}
|
|
|
|
|
2009-05-31 01:29:01 +00:00
|
|
|
// Start the request for b. Caller must hold idelock.
|
2007-08-24 22:17:41 +00:00
|
|
|
static void
|
2009-03-08 22:07:13 +00:00
|
|
|
idestart(struct buf *b)
|
2006-06-16 20:29:25 +00:00
|
|
|
{
|
2007-08-24 22:17:41 +00:00
|
|
|
if(b == 0)
|
2009-03-08 22:07:13 +00:00
|
|
|
panic("idestart");
|
2006-06-16 20:29:25 +00:00
|
|
|
|
2009-03-08 22:07:13 +00:00
|
|
|
idewait(0);
|
2007-08-24 22:17:41 +00: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 18:23:48 +00:00
|
|
|
outb(0x1f6, 0xe0 | ((b->dev&1)<<4) | ((b->sector>>24)&0x0f));
|
2007-08-27 14:09:30 +00:00
|
|
|
if(b->flags & B_DIRTY){
|
2007-08-24 22:17:41 +00:00
|
|
|
outb(0x1f7, IDE_CMD_WRITE);
|
|
|
|
outsl(0x1f0, b->data, 512/4);
|
2007-08-28 18:37:41 +00:00
|
|
|
} else {
|
2007-08-24 22:17:41 +00:00
|
|
|
outb(0x1f7, IDE_CMD_READ);
|
|
|
|
}
|
2006-06-16 20:29:25 +00:00
|
|
|
}
|
|
|
|
|
2007-08-24 22:17:41 +00:00
|
|
|
// Interrupt handler.
|
2006-09-08 14:33:27 +00:00
|
|
|
void
|
2009-03-08 22:07:13 +00:00
|
|
|
ideintr(void)
|
2006-09-08 14:33:27 +00:00
|
|
|
{
|
2007-08-24 22:17:41 +00:00
|
|
|
struct buf *b;
|
|
|
|
|
2009-05-31 01:29:01 +00:00
|
|
|
// Take first buffer off queue.
|
|
|
|
acquire(&idelock);
|
|
|
|
if((b = idequeue) == 0){
|
|
|
|
release(&idelock);
|
2011-02-20 02:17:55 +00:00
|
|
|
// cprintf("spurious IDE interrupt\n");
|
2007-08-24 22:17:41 +00:00
|
|
|
return;
|
2007-08-24 19:32:36 +00:00
|
|
|
}
|
2009-05-31 01:29:01 +00:00
|
|
|
idequeue = b->qnext;
|
2006-09-08 14:33:27 +00:00
|
|
|
|
2007-08-24 22:17:41 +00:00
|
|
|
// Read data if needed.
|
2009-03-08 22:07:13 +00:00
|
|
|
if(!(b->flags & B_DIRTY) && idewait(1) >= 0)
|
2007-08-24 22:17:41 +00:00
|
|
|
insl(0x1f0, b->data, 512/4);
|
|
|
|
|
|
|
|
// Wake process waiting for this buf.
|
2007-08-27 14:09:30 +00:00
|
|
|
b->flags |= B_VALID;
|
|
|
|
b->flags &= ~B_DIRTY;
|
2007-08-24 22:17:41 +00:00
|
|
|
wakeup(b);
|
|
|
|
|
|
|
|
// Start disk on next buf in queue.
|
2009-05-31 01:29:01 +00:00
|
|
|
if(idequeue != 0)
|
|
|
|
idestart(idequeue);
|
2007-08-24 22:17:41 +00:00
|
|
|
|
2009-05-31 01:29:01 +00:00
|
|
|
release(&idelock);
|
2006-07-10 19:06:48 +00:00
|
|
|
}
|
|
|
|
|
2007-08-24 22:17:41 +00:00
|
|
|
//PAGEBREAK!
|
2007-08-27 14:09:30 +00:00
|
|
|
// 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 15:29:54 +00:00
|
|
|
void
|
2009-03-08 22:07:13 +00:00
|
|
|
iderw(struct buf *b)
|
2006-06-16 20:29:25 +00:00
|
|
|
{
|
2007-08-24 19:32:36 +00:00
|
|
|
struct buf **pp;
|
2006-08-06 20:28:15 +00:00
|
|
|
|
2007-08-24 22:17:41 +00:00
|
|
|
if(!(b->flags & B_BUSY))
|
2009-03-08 22:07:13 +00:00
|
|
|
panic("iderw: buf not busy");
|
2007-08-27 14:09:30 +00:00
|
|
|
if((b->flags & (B_VALID|B_DIRTY)) == B_VALID)
|
2009-03-08 22:07:13 +00:00
|
|
|
panic("iderw: nothing to do");
|
2009-05-31 01:29:01 +00:00
|
|
|
if(b->dev != 0 && !havedisk1)
|
2011-01-11 18:01:13 +00:00
|
|
|
panic("iderw: ide disk 1 not present");
|
2006-07-05 20:00:14 +00:00
|
|
|
|
2009-05-31 01:29:01 +00:00
|
|
|
acquire(&idelock);
|
2006-09-06 17:27:19 +00:00
|
|
|
|
2009-05-31 01:29:01 +00:00
|
|
|
// Append b to idequeue.
|
2007-08-24 19:32:36 +00:00
|
|
|
b->qnext = 0;
|
2009-05-31 01:29:01 +00:00
|
|
|
for(pp=&idequeue; *pp; pp=&(*pp)->qnext)
|
2007-08-24 22:17:41 +00:00
|
|
|
;
|
2007-08-24 19:32:36 +00:00
|
|
|
*pp = b;
|
|
|
|
|
2007-08-24 22:17:41 +00:00
|
|
|
// Start disk if necessary.
|
2009-05-31 01:29:01 +00:00
|
|
|
if(idequeue == b)
|
2009-03-08 22:07:13 +00:00
|
|
|
idestart(b);
|
2007-08-24 19:32:36 +00:00
|
|
|
|
2007-08-24 22:17:41 +00:00
|
|
|
// Wait for request to finish.
|
2009-08-31 06:02:08 +00:00
|
|
|
// Assuming will not sleep too long: ignore proc->killed.
|
2011-01-11 18:01:13 +00:00
|
|
|
while((b->flags & (B_VALID|B_DIRTY)) != B_VALID){
|
2009-05-31 01:29:01 +00:00
|
|
|
sleep(b, &idelock);
|
2010-07-02 18:51:53 +00:00
|
|
|
}
|
2007-08-27 14:09:30 +00:00
|
|
|
|
2009-05-31 01:29:01 +00:00
|
|
|
release(&idelock);
|
2006-06-16 20:29:25 +00:00
|
|
|
}
|