Newer
Older
ubixos / src / sys / pci / hd.c
/*****************************************************************************************
 Copyright (c) 2002 The UbixOS Project
 All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are
permitted provided that the following conditions are met:

Redistributions of source code must retain the above copyright notice, this list of
conditions, the following disclaimer and the list of authors.  Redistributions in binary
form must reproduce the above copyright notice, this list of conditions, the following
disclaimer and the list of authors in the documentation and/or other materials provided
with the distribution. Neither the name of the UbixOS Project nor the names of its
contributors may be used to endorse or promote products derived from this software
without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

 $Log$
 Revision 1.1.1.1  2004/04/15 12:07:16  reddawg
 UbixOS v1.0

 Revision 1.12  2004/04/13 16:36:33  reddawg
 Changed our copyright, it is all now under a BSD-Style license



 $Id$

*****************************************************************************************/

#include <pci/hd.h>
#include <sys/video.h>
#include <sys/drives.h>
#include <sys/io.h>
#include <lib/kmalloc.h>
#include <lib/kprintf.h>
#include <devfs/devfs.h>

struct driveInfo *hdd0;
struct driveInfo *hdd1;
struct driveInfo *hdd2;
struct driveInfo *hdd3;
  
void initHardDisk() {
  hdd0 = (struct driveInfo *)kmalloc(sizeof(struct driveInfo),sysID);
  hdd1 = (struct driveInfo *)kmalloc(sizeof(struct driveInfo),sysID);
  hdd2 = (struct driveInfo *)kmalloc(sizeof(struct driveInfo),sysID);
  hdd3 = (struct driveInfo *)kmalloc(sizeof(struct driveInfo),sysID);
  hdd0->hdPort = 0x1F0;
  hdd0->hdDev  = 0x40;
  hdd1->hdPort = 0x1F0;
  hdd1->hdDev  = 0x50;
  hdd2->hdPort = 0x177;
  hdd2->hdDev  = 0x40;
  hdd3->hdPort = 0x177;
  hdd3->hdDev  = 0x50;
  if (!initDrive(hdd0)) {
    addDrive(1,1,hdd0,hdRead,hdWrite,0x0,hdd0->hdSize*512);
    devFsMkNod("ad0",'b',0x1,0x0);
    }
  /*
  if (!initDrive(hdd1)) {
    addDrive(2,1,hdd1,hdRead,hdWrite,0x0);
    }
  if (!initDrive(hdd2)) {
    addDrive(3,1,hdd2,hdRead,hdWrite,0x0);
    }
  if (!initDrive(hdd3)) {
    addDrive(4,1,hdd3,hdRead,hdWrite,0x0);
    }            
  */
  return;
  }
  
int initDrive(struct driveInfo *hdd) {
  char retVal  = 0x0;
  long counter = 0x0;
  short *tmp    = 0x0;
  for (counter = 1000000;counter >= 0;counter--) {
    retVal = inportByte(hdd->hdPort + hdStat) & 0x80;
    if (!retVal) goto ready;
    }
  kprintf("Error Initializing Drive\n");
  return(1);
  ready:
  outportByte(hdd->hdPort + hdHead,hdd->hdDev);
  outportByte(hdd->hdPort + hdCmd,0xEC);
  for (counter = 1000000;counter >= 0;counter--) {
    retVal = inportByte(hdd->hdPort + hdStat);
    if ((retVal & 1) != 0x0) {
      kprintf("Error Drive Not Available\n");
      return(1);
      }
    if ((retVal & 8) != 0x0) {
      goto go;
      }
    }
  kprintf("Time Out Waiting On Drive\n");
  return(1);
  go:
  tmp = (short *)hdd->hdSector;
  for (counter = 0;counter < (512/2);counter++) {
    tmp[counter] = inportWord(hdd->hdPort + hdData);
    }
  retVal = tmp[0x2F] & 0xFF;
  switch (retVal) {
    case 0:
      hdd->hdShift = 0;
      hdd->hdMulti = 1;
      break;
    case 2:
      hdd->hdShift = 1;
      hdd->hdMulti = retVal;
      break;
    case 4:
      hdd->hdShift = 2;
      hdd->hdMulti = retVal;
      break;
    case 8:
      hdd->hdShift = 3;
      hdd->hdMulti = retVal;
      break;
    case 16:
      hdd->hdShift = 4;
      hdd->hdMulti = retVal;
      break;
    case 32:
      hdd->hdShift = 5;
      hdd->hdMulti = retVal;
      break;
    case 64:
      hdd->hdShift = 6;
      hdd->hdMulti = retVal;
      break;
    default:
      kprintf("Error BLOCK Mode Unavailable: [%i]\n",retVal);
      return(1);
    }
  outportByte(hdd->hdPort + hdSecCount,retVal);
  outportByte(hdd->hdPort + hdHead,hdd->hdDev);
  outportByte(hdd->hdPort + hdCmd,0xC6);
  hdd->hdMask = retVal;
  hdd->hdSize = (hdd->hdSector[0x7B] * 256 * 256 * 256) + (hdd->hdSector[0x7A] * 256 * 256) + (hdd->hdSector[0x79] * 256) + hdd->hdSector[0x78];
  hdd->hdEnable = 1;
  kprintf("Drive: [0x%X/0x%X], Size: [%iSectors/%iKBytes]\n",hdd->hdPort,hdd->hdDev,hdd->hdSize,((hdd->hdSize*512)/1024));
  return(0);
  }

void hdWrite(struct driveInfo *hdd,long startSector,long sectorCount,void *baseAddr) {
  long counter           = 0x0;
  long retVal            = 0x0;
  short transactionCount = 0x0;
  short *tmp             = (short *)baseAddr;
  if (hdd->hdEnable == 0x0) {
    kprintf("Invalid Drive\n");
    return;
    }
  if ((sectorCount >> hdd->hdShift) == 0x0) {
    hdd->hdCalc = sectorCount; /* hdd->hdMask; */
    transactionCount = 1;
    }
  else {
    hdd->hdCalc = hdd->hdMulti;
    transactionCount = sectorCount >> hdd->hdShift;
    }
  for (;transactionCount > 0;transactionCount--) {
    for (counter = 1000000;counter >= 0;counter--) {
      retVal = inportByte(hdd->hdPort + hdStat) & 0x80;
      if (!retVal) goto ready;
      }
    kprintf("Time Out Waiting On Drive\n");
    return;
    ready:
    outportByte(hdd->hdPort + hdSecCount,hdd->hdCalc);
    outportByte(hdd->hdPort + hdSecNum,(startSector & 0xFF));
    retVal = startSector >> 8;
    outportByte(hdd->hdPort + hdCylLow,(retVal & 0xFF));
    retVal >>= 8;
    outportByte(hdd->hdPort + hdCylHi,(retVal & 0xFF));
    retVal >>= 8;
    retVal &= 0x0F;
    retVal |= hdd->hdDev;
    outportByte(hdd->hdPort + hdHead,(retVal & 0xFF));
    if (hdd->hdShift > 0)
      outportByte(hdd->hdPort + hdCmd,0xC5);
    else
      outportByte(hdd->hdPort + hdCmd,0x30);
    for (counter = 1000000;counter >= 0;counter--) {
      retVal = inportByte(hdd->hdPort + hdStat);
      if ((retVal & 1) != 0x0) {
        kprintf("HD Write Error\n");
        return;
        }
      if ((retVal & 8) != 0x0) {
        goto go;
        }
      }
    kprintf("Time Out Waiting On Drive\n");
    return;
    go:
    for (counter = 0;counter < (hdd->hdCalc << 8);counter++) {
      outportWord(hdd->hdPort + hdData,(short)tmp[counter]);
      }
    tmp += (counter + 0);
    startSector += hdd->hdCalc;
    }
  return;
  }

void hdRead(struct driveInfo *hdd,long startSector,long sectorCount,void *baseAddr) {
  long counter           = 0x0;
  long retVal            = 0x0;
  short transactionCount = 0x0;
  short *tmp             = (short *)baseAddr;
  if (hdd->hdEnable == 0x0) {
    kprintf("Invalid Drive\n");
    return;
    }
  if ((sectorCount >> hdd->hdShift) == 0x0) {
    hdd->hdCalc = sectorCount; /* hdd->hdMask); */
    transactionCount = 1;
    }
  else {
    hdd->hdCalc = hdd->hdMulti;
    transactionCount = sectorCount >> hdd->hdShift;
    }
  for (;transactionCount > 0;transactionCount--) {
    for (counter = 1000000;counter >= 0;counter--) {
      retVal = inportByte(hdd->hdPort + hdStat) & 0x80;
      if (!retVal) goto ready;
      }
    kprintf("Time Out Waiting On Drive\n");
    return;
    ready:
    outportByte(hdd->hdPort + hdSecCount,hdd->hdCalc);
    outportByte(hdd->hdPort + hdSecNum,(startSector & 0xFF));
    retVal = startSector >> 8;
    outportByte(hdd->hdPort + hdCylLow,(retVal & 0xFF));
    retVal >>= 8;
    outportByte(hdd->hdPort + hdCylHi,(retVal & 0xFF));
    retVal >>= 8;
    retVal &= 0x0F;
    retVal |= hdd->hdDev;
    outportByte(hdd->hdPort + hdHead,(retVal & 0xFF));
    if (hdd->hdShift > 0)
      outportByte(hdd->hdPort + hdCmd,0xC4);
    else 
      outportByte(hdd->hdPort + hdCmd,0x20);
    for (counter = 1000000;counter >= 0;counter--) {
      retVal = inportByte(hdd->hdPort + hdStat);
      if ((retVal & 1) != 0x0) {
        kprintf("HD Read Error: [%i:0x%X:%i]\n",counter,(uInt32)baseAddr,startSector);
        return;
        }
      if ((retVal & 8) != 0x0) {
        goto go;
        }
      }
    kprintf("Error: Time Out Waiting On Drive\n");
    return;
    go:
    for (counter = 0;counter < (hdd->hdCalc << 8);counter++) {
      tmp[counter] = inportWord(hdd->hdPort + hdData);
      }
    tmp += (counter + 0);
    startSector += hdd->hdCalc;
    }
  return;
  }  

/***
 END
 ***/