x86_64 support, requiring a slight refactor to the build system.
[tpg/acess2.git] / Modules / Storage / ATA / main.c
1 /*
2  * Acess2 IDE Harddisk Driver
3  * - main.c
4  */
5 #define DEBUG   0
6 #include <acess.h>
7 #include <modules.h>
8 #include <vfs.h>
9 #include <fs_devfs.h>
10 #include <drv_pci.h>
11 #include <tpl_drv_common.h>
12 #include <tpl_drv_disk.h>
13 #include "common.h"
14
15 // --- Flags ---
16 #define START_BEFORE_CMD        0
17
18 // === STRUCTURES ===
19 typedef struct
20 {
21         Uint32  PBufAddr;
22         Uint16  Bytes;
23         Uint16  Flags;
24 } __attribute__ ((packed))      tPRDT_Ent;
25 typedef struct
26 {
27         Uint16  Flags;          // 1
28         Uint16  Usused1[9];     // 10
29         char    SerialNum[20];  // 20
30         Uint16  Usused2[3];     // 23
31         char    FirmwareVer[8]; // 27
32         char    ModelNumber[40];        // 47
33         Uint16  SectPerInt;     // 48 - AND with 0xFF to get true value;
34         Uint16  Unused3;        // 49
35         Uint16  Capabilities[2];        // 51
36         Uint16  Unused4[2];     // 53
37         Uint16  ValidExtData;   // 54
38         Uint16  Unused5[5];      // 59
39         Uint16  SizeOfRWMultiple;       // 60
40         Uint32  Sectors28;      // 62
41         Uint16  Unused6[100-62];
42         Uint64  Sectors48;
43         Uint16  Unused7[256-104];
44 } __attribute__ ((packed))      tIdentify;
45
46 // === IMPORTS ===
47 extern void     ATA_ParseMBR(int Disk);
48
49 // === PROTOTYPES ===
50  int    ATA_Install();
51  int    ATA_SetupIO();
52 void    ATA_SetupPartitions();
53 void    ATA_SetupVFS();
54  int    ATA_ScanDisk(int Disk);
55 void    ATA_ParseGPT(int Disk);
56 void    ATA_int_MakePartition(tATA_Partition *Part, int Disk, int Num, Uint64 Start, Uint64 Length);
57 Uint16  ATA_GetBasePort(int Disk);
58 // Filesystem Interface
59 char    *ATA_ReadDir(tVFS_Node *Node, int Pos);
60 tVFS_Node       *ATA_FindDir(tVFS_Node *Node, char *Name);
61 Uint64  ATA_ReadFS(tVFS_Node *Node, Uint64 Offset, Uint64 Length, void *Buffer);
62 Uint64  ATA_WriteFS(tVFS_Node *Node, Uint64 Offset, Uint64 Length, void *Buffer);
63  int    ATA_IOCtl(tVFS_Node *Node, int Id, void *Data);
64 // Read/Write Interface/Quantiser
65 Uint    ATA_ReadRaw(Uint64 Address, Uint Count, void *Buffer, Uint Disk);
66 Uint    ATA_WriteRaw(Uint64 Address, Uint Count, void *Buffer, Uint Disk);
67 // Read/Write DMA
68  int    ATA_ReadDMA(Uint8 Disk, Uint64 Address, Uint Count, void *Buffer);
69  int    ATA_WriteDMA(Uint8 Disk, Uint64 Address, Uint Count, void *Buffer);
70 // IRQs
71 void    ATA_IRQHandlerPri(int unused);
72 void    ATA_IRQHandlerSec(int unused);
73 // Controller IO
74 Uint8   ATA_int_BusMasterReadByte(int Ofs);
75 void    ATA_int_BusMasterWriteByte(int Ofs, Uint8 Value);
76 void    ATA_int_BusMasterWriteDWord(int Ofs, Uint32 Value);
77
78 // === GLOBALS ===
79 MODULE_DEFINE(0, 0x0032, i386ATA, ATA_Install, NULL, "PCI", NULL);
80 tDevFS_Driver   gATA_DriverInfo = {
81         NULL, "ata",
82         {
83                 .NumACLs = 1,
84                 .Size = -1,
85                 .Flags = VFS_FFLAG_DIRECTORY,
86                 .ACLs = &gVFS_ACL_EveryoneRX,
87                 .ReadDir = ATA_ReadDir,
88                 .FindDir = ATA_FindDir
89         }
90 };
91 tATA_Disk       gATA_Disks[MAX_ATA_DISKS];
92  int    giATA_NumNodes;
93 tVFS_Node       **gATA_Nodes;
94 Uint16  gATA_BusMasterBase = 0;
95 Uint8   *gATA_BusMasterBasePtr = 0;
96  int    gATA_IRQPri = 14;
97  int    gATA_IRQSec = 15;
98  int    giaATA_ControllerLock[2] = {0}; //!< Spinlocks for each controller
99 Uint8   gATA_Buffers[2][4096] __attribute__ ((section(".padata")));
100  int    gaATA_IRQs[2] = {0};
101 tPRDT_Ent       gATA_PRDTs[2] = {
102         {0, 512, IDE_PRDT_LAST},
103         {0, 512, IDE_PRDT_LAST}
104 };
105
106 // === CODE ===
107 /**
108  * \fn int ATA_Install()
109  */
110 int ATA_Install()
111 {
112         int     ret;
113
114         ret = ATA_SetupIO();
115         if(ret) return ret;
116
117         ATA_SetupPartitions();
118
119         ATA_SetupVFS();
120
121         if( DevFS_AddDevice( &gATA_DriverInfo ) == 0 )
122                 return MODULE_ERR_MISC;
123
124         return MODULE_ERR_OK;
125 }
126
127 /**
128  * \fn int ATA_SetupIO()
129  * \brief Sets up the ATA controller's DMA mode
130  */
131 int ATA_SetupIO()
132 {
133          int    ent;
134         tPAddr  addr;
135
136         ENTER("");
137
138         // Get IDE Controller's PCI Entry
139         ent = PCI_GetDeviceByClass(0x0101, 0xFFFF, -1);
140         LOG("ent = %i", ent);
141         gATA_BusMasterBase = PCI_GetBAR4( ent );
142         if( gATA_BusMasterBase == 0 ) {
143                 Log_Warning("ATA", "It seems that there is no Bus Master Controller on this machine. Get one");
144                 // TODO: Use PIO mode instead
145                 LEAVE('i', MODULE_ERR_NOTNEEDED);
146                 return MODULE_ERR_NOTNEEDED;
147         }
148         
149         // Map memory
150         if( !(gATA_BusMasterBase & 1) )
151         {
152                 if( gATA_BusMasterBase < 0x100000 )
153                         gATA_BusMasterBasePtr = (void*)(KERNEL_BASE | (tVAddr)gATA_BusMasterBase);
154                 else
155                         gATA_BusMasterBasePtr = (void*)( MM_MapHWPages( gATA_BusMasterBase, 1 ) + (gATA_BusMasterBase&0xFFF) );
156                 LOG("gATA_BusMasterBasePtr = %p", gATA_BusMasterBasePtr);
157         }
158         else {
159                 // Bit 0 is left set as a flag to other functions
160                 LOG("gATA_BusMasterBase = 0x%x", gATA_BusMasterBase & ~1);
161         }
162
163         // Register IRQs and get Buffers
164         IRQ_AddHandler( gATA_IRQPri, ATA_IRQHandlerPri );
165         IRQ_AddHandler( gATA_IRQSec, ATA_IRQHandlerSec );
166
167         gATA_PRDTs[0].PBufAddr = MM_GetPhysAddr( (tVAddr)&gATA_Buffers[0] );
168         gATA_PRDTs[1].PBufAddr = MM_GetPhysAddr( (tVAddr)&gATA_Buffers[1] );
169
170         LOG("gATA_PRDTs = {PBufAddr: 0x%x, PBufAddr: 0x%x}", gATA_PRDTs[0].PBufAddr, gATA_PRDTs[1].PBufAddr);
171
172         addr = MM_GetPhysAddr( (tVAddr)&gATA_PRDTs[0] );
173         LOG("addr = 0x%x", addr);
174         ATA_int_BusMasterWriteDWord(4, addr);
175         addr = MM_GetPhysAddr( (tVAddr)&gATA_PRDTs[1] );
176         LOG("addr = 0x%x", addr);
177         ATA_int_BusMasterWriteDWord(12, addr);
178
179         // Enable controllers
180         outb(IDE_PRI_BASE+1, 1);
181         outb(IDE_SEC_BASE+1, 1);
182
183         // return
184         LEAVE('i', MODULE_ERR_OK);
185         return MODULE_ERR_OK;
186 }
187
188 /**
189  * \fn void ATA_SetupPartitions()
190  */
191 void ATA_SetupPartitions()
192 {
193          int    i;
194         for( i = 0; i < MAX_ATA_DISKS; i ++ )
195         {
196                 if( !ATA_ScanDisk(i) ) {
197                         gATA_Disks[i].Name[0] = '\0';   // Mark as unused
198                         continue;
199                 }
200         }
201 }
202
203 /**
204  * \fn void ATA_SetupVFS()
205  * \brief Sets up the ATA drivers VFS information and registers with DevFS
206  */
207 void ATA_SetupVFS()
208 {
209          int    i, j, k;
210
211         // Count number of nodes needed
212         giATA_NumNodes = 0;
213         for( i = 0; i < MAX_ATA_DISKS; i++ )
214         {
215                 if(gATA_Disks[i].Name[0] == '\0')       continue;       // Ignore
216                 giATA_NumNodes ++;
217                 giATA_NumNodes += gATA_Disks[i].NumPartitions;
218         }
219
220         // Allocate Node space
221         gATA_Nodes = malloc( giATA_NumNodes * sizeof(void*) );
222
223         // Set nodes
224         k = 0;
225         for( i = 0; i < MAX_ATA_DISKS; i++ )
226         {
227                 if(gATA_Disks[i].Name[0] == '\0')       continue;       // Ignore
228                 gATA_Nodes[ k++ ] = &gATA_Disks[i].Node;
229                 for( j = 0; j < gATA_Disks[i].NumPartitions; j ++ )
230                         gATA_Nodes[ k++ ] = &gATA_Disks[i].Partitions[j].Node;
231         }
232
233         gATA_DriverInfo.RootNode.Size = giATA_NumNodes;
234 }
235
236 /**
237  * \fn int ATA_ScanDisk(int Disk)
238  */
239 int ATA_ScanDisk(int Disk)
240 {
241         union {
242                 Uint16  buf[256];
243                 tIdentify       identify;
244                 tMBR    mbr;
245         }       data;
246         Uint16  base;
247         Uint8   val;
248          int    i;
249         tVFS_Node       *node;
250
251         ENTER("iDisk", Disk);
252
253         base = ATA_GetBasePort( Disk );
254
255         LOG("base = 0x%x", base);
256
257         // Send Disk Selector
258         if(Disk == 1 || Disk == 3)
259                 outb(base+6, 0xB0);
260         else
261                 outb(base+6, 0xA0);
262
263         // Send IDENTIFY
264         outb(base+7, 0xEC);
265         val = inb(base+7);      // Read status
266         if(val == 0) {
267                 LEAVE('i', 0);
268                 return 0;       // Disk does not exist
269         }
270
271         // Poll until BSY clears and DRQ sets or ERR is set
272         while( ((val & 0x80) || !(val & 0x08)) && !(val & 1))   val = inb(base+7);
273
274         if(val & 1) {
275                 LEAVE('i', 0);
276                 return 0;       // Error occured, so return false
277         }
278
279         // Read Data
280         for(i=0;i<256;i++)      data.buf[i] = inw(base);
281
282         // Populate Disk Structure
283         if(data.identify.Sectors48 != 0)
284                 gATA_Disks[ Disk ].Sectors = data.identify.Sectors48;
285         else
286                 gATA_Disks[ Disk ].Sectors = data.identify.Sectors28;
287
288
289         LOG("gATA_Disks[ Disk ].Sectors = 0x%x", gATA_Disks[ Disk ].Sectors);
290
291         if( gATA_Disks[ Disk ].Sectors / (2048*1024) )
292                 Log("Disk %i: 0x%llx Sectors (%i GiB)", Disk,
293                         gATA_Disks[ Disk ].Sectors, gATA_Disks[ Disk ].Sectors / (2048*1024));
294         else if( gATA_Disks[ Disk ].Sectors / 2048 )
295                 Log("Disk %i: 0x%llx Sectors (%i MiB)", Disk,
296                         gATA_Disks[ Disk ].Sectors, gATA_Disks[ Disk ].Sectors / 2048);
297         else
298                 Log("Disk %i: 0x%llx Sectors (%i KiB)", Disk,
299                         gATA_Disks[ Disk ].Sectors, gATA_Disks[ Disk ].Sectors / 2);
300
301         // Create Name
302         gATA_Disks[ Disk ].Name[0] = 'A'+Disk;
303         gATA_Disks[ Disk ].Name[1] = '\0';
304
305         // Get pointer to vfs node and populate it
306         node = &gATA_Disks[ Disk ].Node;
307         node->Size = gATA_Disks[Disk].Sectors * SECTOR_SIZE;
308         node->NumACLs = 0;      // Means Superuser only can access it
309         node->Inode = (Disk << 8) | 0xFF;
310         node->ImplPtr = gATA_Disks[ Disk ].Name;
311
312         node->ATime = node->MTime
313                 = node->CTime = now();
314
315         node->Read = ATA_ReadFS;
316         node->Write = ATA_WriteFS;
317         node->IOCtl = ATA_IOCtl;
318
319
320         // --- Scan Partitions ---
321         LOG("Reading MBR");
322         // Read Boot Sector
323         ATA_ReadDMA( Disk, 0, 1, &data.mbr );
324
325         // Check for a GPT table
326         if(data.mbr.Parts[0].SystemID == 0xEE)
327                 ATA_ParseGPT(Disk);
328         else    // No? Just parse the MBR
329                 ATA_ParseMBR(Disk);
330
331         LEAVE('i', 0);
332         return 1;
333 }
334
335 /**
336  * \fn void ATA_int_MakePartition(tATA_Partition *Part, int Disk, int Num, Uint64 Start, Uint64 Length)
337  * \brief Fills a parition's information structure
338  */
339 void ATA_int_MakePartition(tATA_Partition *Part, int Disk, int Num, Uint64 Start, Uint64 Length)
340 {
341         ENTER("pPart iDisk iNum XStart XLength", Part, Disk, Num, Start, Length);
342         Part->Start = Start;
343         Part->Length = Length;
344         Part->Name[0] = 'A'+Disk;
345         if(Num >= 10) {
346                 Part->Name[1] = '1'+Num/10;
347                 Part->Name[2] = '1'+Num%10;
348                 Part->Name[3] = '\0';
349         } else {
350                 Part->Name[1] = '1'+Num;
351                 Part->Name[2] = '\0';
352         }
353         Part->Node.NumACLs = 0; // Only root can read/write raw block devices
354         Part->Node.Inode = (Disk << 8) | Num;
355         Part->Node.ImplPtr = Part->Name;
356
357         Part->Node.Read = ATA_ReadFS;
358         Part->Node.Write = ATA_WriteFS;
359         Part->Node.IOCtl = ATA_IOCtl;
360         LOG("Made '%s' (&Node=%p)", Part->Name, &Part->Node);
361         LEAVE('-');
362 }
363
364 /**
365  * \fn void ATA_ParseGPT(int Disk)
366  * \brief Parses the GUID Partition Table
367  */
368 void ATA_ParseGPT(int Disk)
369 {
370         ///\todo Support GPT Disks
371         Warning("GPT Disks are currently unsupported");
372 }
373
374 /**
375  * \fn Uint16 ATA_GetPortBase(int Disk)
376  * \brief Returns the base port for a given disk
377  */
378 Uint16 ATA_GetBasePort(int Disk)
379 {
380         switch(Disk)
381         {
382         case 0: case 1:         return IDE_PRI_BASE;
383         case 2: case 3:         return IDE_SEC_BASE;
384         }
385         return 0;
386 }
387
388 /**
389  * \fn char *ATA_ReadDir(tVFS_Node *Node, int Pos)
390  */
391 char *ATA_ReadDir(tVFS_Node *Node, int Pos)
392 {
393         if(Pos >= giATA_NumNodes || Pos < 0)    return NULL;
394         return strdup( gATA_Nodes[Pos]->ImplPtr );
395 }
396
397 /**
398  * \fn tVFS_Node *ATA_FindDir(tVFS_Node *Node, char *Name)
399  */
400 tVFS_Node *ATA_FindDir(tVFS_Node *Node, char *Name)
401 {
402          int    part;
403         // Check first character
404         if(Name[0] < 'A' || Name[0] > 'A'+MAX_ATA_DISKS)
405                 return NULL;
406         // Raw Disk
407         if(Name[1] == '\0') {
408                 if( gATA_Disks[Name[0]-'A'].Sectors == 0 )
409                         return NULL;
410                 return &gATA_Disks[Name[0]-'A'].Node;
411         }
412
413         // Partitions
414         if(Name[1] < '0' || '9' < Name[1])      return NULL;
415         if(Name[2] == '\0') {   // <= 9
416                 part = Name[1] - '0';
417                 part --;
418                 return &gATA_Disks[Name[0]-'A'].Partitions[part].Node;
419         }
420         // > 9
421         if('0' > Name[2] || '9' < Name[2])      return NULL;
422         if(Name[3] != '\0')     return NULL;
423
424         part = (Name[1] - '0') * 10;
425         part += Name[2] - '0';
426         part --;
427         return &gATA_Disks[Name[0]-'A'].Partitions[part].Node;
428
429 }
430
431 /**
432  * \fn Uint64 ATA_ReadFS(tVFS_Node *Node, Uint64 Offset, Uint64 Length, void *Buffer)
433  */
434 Uint64 ATA_ReadFS(tVFS_Node *Node, Uint64 Offset, Uint64 Length, void *Buffer)
435 {
436          int    disk = Node->Inode >> 8;
437          int    part = Node->Inode & 0xFF;
438
439         // Raw Disk Access
440         if(part == 0xFF)
441         {
442                 if( Offset >= gATA_Disks[disk].Sectors * SECTOR_SIZE )
443                         return 0;
444                 if( Offset + Length > gATA_Disks[disk].Sectors*SECTOR_SIZE )
445                         Length = gATA_Disks[disk].Sectors*SECTOR_SIZE - Offset;
446         }
447         // Partition
448         else
449         {
450                 if( Offset >= gATA_Disks[disk].Partitions[part].Length * SECTOR_SIZE )
451                         return 0;
452                 if( Offset + Length > gATA_Disks[disk].Partitions[part].Length * SECTOR_SIZE )
453                         Length = gATA_Disks[disk].Partitions[part].Length * SECTOR_SIZE - Offset;
454                 Offset += gATA_Disks[disk].Partitions[part].Start * SECTOR_SIZE;
455         }
456
457         //Log("ATA_ReadFS: (Node=%p, Offset=0x%llx, Length=0x%llx, Buffer=%p)", Node, Offset, Length, Buffer);
458         return DrvUtil_ReadBlock(Offset, Length, Buffer, ATA_ReadRaw, SECTOR_SIZE, disk);
459 }
460
461 /**
462  * \fn Uint64 ATA_WriteFS(tVFS_Node *Node, Uint64 Offset, Uint64 Length, void *Buffer)
463  */
464 Uint64 ATA_WriteFS(tVFS_Node *Node, Uint64 Offset, Uint64 Length, void *Buffer)
465 {
466          int    disk = Node->Inode >> 8;
467          int    part = Node->Inode & 0xFF;
468
469         // Raw Disk Access
470         if(part == 0xFF)
471         {
472                 if( Offset >= gATA_Disks[disk].Sectors * SECTOR_SIZE )
473                         return 0;
474                 if( Offset + Length > gATA_Disks[disk].Sectors*SECTOR_SIZE )
475                         Length = gATA_Disks[disk].Sectors*SECTOR_SIZE - Offset;
476         }
477         // Partition
478         else
479         {
480                 if( Offset >= gATA_Disks[disk].Partitions[part].Length * SECTOR_SIZE )
481                         return 0;
482                 if( Offset + Length > gATA_Disks[disk].Partitions[part].Length * SECTOR_SIZE )
483                         Length = gATA_Disks[disk].Partitions[part].Length * SECTOR_SIZE - Offset;
484                 Offset += gATA_Disks[disk].Partitions[part].Start * SECTOR_SIZE;
485         }
486
487         Log("ATA_WriteFS: (Node=%p, Offset=0x%llx, Length=0x%llx, Buffer=%p)", Node, Offset, Length, Buffer);
488         Debug_HexDump("ATA_WriteFS", Buffer, Length);
489         return DrvUtil_WriteBlock(Offset, Length, Buffer, ATA_ReadRaw, ATA_WriteRaw, SECTOR_SIZE, disk);
490 }
491
492 /**
493  * \fn int ATA_IOCtl(tVFS_Node *Node, int Id, void *Data)
494  * \brief IO Control Funtion
495  */
496 int ATA_IOCtl(tVFS_Node *Node, int Id, void *Data)
497 {
498         switch(Id)
499         {
500         case DRV_IOCTL_TYPE:    return DRV_TYPE_DISK;
501         }
502         return 0;
503 }
504
505 // --- Disk Access ---
506 /**
507  * \fn Uint ATA_ReadRaw(Uint64 Address, Uint Count, void *Buffer, Uint Disk)
508  */
509 Uint ATA_ReadRaw(Uint64 Address, Uint Count, void *Buffer, Uint Disk)
510 {
511          int    ret;
512         Uint    offset;
513         Uint    done = 0;
514
515         // Pass straight on to ATA_ReadDMAPage if we can
516         if(Count <= MAX_DMA_SECTORS)
517         {
518                 ret = ATA_ReadDMA(Disk, Address, Count, Buffer);
519                 if(ret == 0)    return 0;
520                 return Count;
521         }
522
523         // Else we will have to break up the transfer
524         offset = 0;
525         while(Count > MAX_DMA_SECTORS)
526         {
527                 ret = ATA_ReadDMA(Disk, Address+offset, MAX_DMA_SECTORS, Buffer+offset);
528                 // Check for errors
529                 if(ret != 1)    return done;
530                 // Change Position
531                 done += MAX_DMA_SECTORS;
532                 Count -= MAX_DMA_SECTORS;
533                 offset += MAX_DMA_SECTORS*SECTOR_SIZE;
534         }
535
536         ret = ATA_ReadDMA(Disk, Address+offset, Count, Buffer+offset);
537         if(ret != 1)    return 0;
538         return done+Count;
539 }
540
541 /**
542  * \fn Uint ATA_WriteRaw(Uint64 Address, Uint Count, void *Buffer, Uint Disk)
543  */
544 Uint ATA_WriteRaw(Uint64 Address, Uint Count, void *Buffer, Uint Disk)
545 {
546          int    ret;
547         Uint    offset;
548         Uint    done = 0;
549
550         // Pass straight on to ATA_WriteDMA if we can
551         if(Count <= MAX_DMA_SECTORS)
552         {
553                 ret = ATA_WriteDMA(Disk, Address, Count, Buffer);
554                 if(ret == 0)    return 0;
555                 return Count;
556         }
557
558         // Else we will have to break up the transfer
559         offset = 0;
560         while(Count > MAX_DMA_SECTORS)
561         {
562                 ret = ATA_WriteDMA(Disk, Address+offset, MAX_DMA_SECTORS, Buffer+offset);
563                 // Check for errors
564                 if(ret != 1)    return done;
565                 // Change Position
566                 done += MAX_DMA_SECTORS;
567                 Count -= MAX_DMA_SECTORS;
568                 offset += MAX_DMA_SECTORS*SECTOR_SIZE;
569         }
570
571         ret = ATA_WriteDMA(Disk, Address+offset, Count, Buffer+offset);
572         if(ret != 1)    return 0;
573         return done+Count;
574 }
575
576 /**
577  * \fn int ATA_ReadDMA(Uint8 Disk, Uint64 Address, Uint Count, void *Buffer)
578  */
579 int ATA_ReadDMA(Uint8 Disk, Uint64 Address, Uint Count, void *Buffer)
580 {
581          int    cont = (Disk>>1)&1;     // Controller ID
582          int    disk = Disk & 1;
583         Uint16  base;
584
585         ENTER("iDisk XAddress iCount pBuffer", Disk, Address, Count, Buffer);
586
587         // Check if the count is small enough
588         if(Count > MAX_DMA_SECTORS) {
589                 Warning("Passed too many sectors for a bulk DMA read (%i > %i)",
590                         Count, MAX_DMA_SECTORS);
591                 LEAVE('i');
592                 return 0;
593         }
594
595         // Get exclusive access to the disk controller
596         LOCK( &giaATA_ControllerLock[ cont ] );
597
598         // Set Size
599         gATA_PRDTs[ cont ].Bytes = Count * SECTOR_SIZE;
600
601         // Get Port Base
602         base = ATA_GetBasePort(Disk);
603
604         // Reset IRQ Flag
605         gaATA_IRQs[cont] = 0;
606
607         // Set up transfer
608         outb(base+0x01, 0x00);
609         if( Address > 0x0FFFFFFF )      // Use LBA48
610         {
611                 outb(base+0x6, 0x40 | (disk << 4));
612                 outb(base+0x2, 0 >> 8); // Upper Sector Count
613                 outb(base+0x3, Address >> 24);  // Low 2 Addr
614                 outb(base+0x3, Address >> 28);  // Mid 2 Addr
615                 outb(base+0x3, Address >> 32);  // High 2 Addr
616         }
617         else
618         {
619                 outb(base+0x06, 0xE0 | (disk << 4) | ((Address >> 24) & 0x0F)); //Disk,Magic,High addr
620         }
621
622         outb(base+0x02, (Uint8) Count);         // Sector Count
623         outb(base+0x03, (Uint8) Address);               // Low Addr
624         outb(base+0x04, (Uint8) (Address >> 8));        // Middle Addr
625         outb(base+0x05, (Uint8) (Address >> 16));       // High Addr
626
627         LOG("Starting Transfer");
628         #if START_BEFORE_CMD
629         // Start transfer
630         ATA_int_BusMasterWriteByte( cont << 3, 9 );     // Read and start
631         if( Address > 0x0FFFFFFF )
632                 outb(base+0x07, HDD_DMA_R48);   // Read Command (LBA48)
633         else
634                 outb(base+0x07, HDD_DMA_R28);   // Read Command (LBA28)
635         #else
636         if( Address > 0x0FFFFFFF )
637                 outb(base+0x07, HDD_DMA_R48);   // Read Command (LBA48)
638         else
639                 outb(base+0x07, HDD_DMA_R28);   // Read Command (LBA28)
640         // Start transfer
641         ATA_int_BusMasterWriteByte( cont << 3, 9 );     // Read and start
642         #endif
643
644         // Wait for transfer to complete
645         //ATA_int_BusMasterWriteByte( (cont << 3) + 2, 0x4 );
646         while( gaATA_IRQs[cont] == 0 ) {
647                 //Uint8 val = ATA_int_BusMasterReadByte( (cont << 3) + 2, 0x4 );
648                 //LOG("val = 0x%02x", val);
649                 Threads_Yield();
650         }
651
652         // Complete Transfer
653         ATA_int_BusMasterWriteByte( cont << 3, 0 );     // Write and stop
654
655         LOG("Transfer Completed & Acknowledged");
656
657         // Copy to destination buffer
658         memcpy( Buffer, gATA_Buffers[cont], Count*SECTOR_SIZE );
659
660         // Release controller lock
661         RELEASE( &giaATA_ControllerLock[ cont ] );
662
663         LEAVE('i', 1);
664         return 1;
665 }
666
667 /**
668  * \fn int ATA_WriteDMA(Uint8 Disk, Uint64 Address, Uint Count, void *Buffer)
669  */
670 int ATA_WriteDMA(Uint8 Disk, Uint64 Address, Uint Count, void *Buffer)
671 {
672          int    cont = (Disk>>1)&1;     // Controller ID
673          int    disk = Disk & 1;
674         Uint16  base;
675
676         // Check if the count is small enough
677         if(Count > MAX_DMA_SECTORS)     return 0;
678
679         // Get exclusive access to the disk controller
680         LOCK( &giaATA_ControllerLock[ cont ] );
681
682         // Set Size
683         gATA_PRDTs[ cont ].Bytes = Count * SECTOR_SIZE;
684
685         // Get Port Base
686         base = ATA_GetBasePort(Disk);
687
688         // Set up transfer
689         outb(base+0x01, 0x00);
690         if( Address > 0x0FFFFFFF )      // Use LBA48
691         {
692                 outb(base+0x6, 0x40 | (disk << 4));
693                 outb(base+0x2, 0 >> 8); // Upper Sector Count
694                 outb(base+0x3, Address >> 24);  // Low 2 Addr
695                 outb(base+0x3, Address >> 28);  // Mid 2 Addr
696                 outb(base+0x3, Address >> 32);  // High 2 Addr
697         }
698         else
699         {
700                 outb(base+0x06, 0xE0 | (disk << 4) | ((Address >> 24) & 0x0F)); //Disk,Magic,High addr
701         }
702
703         outb(base+0x02, (Uint8) Count);         // Sector Count
704         outb(base+0x03, (Uint8) Address);               // Low Addr
705         outb(base+0x04, (Uint8) (Address >> 8));        // Middle Addr
706         outb(base+0x05, (Uint8) (Address >> 16));       // High Addr
707         if( Address > 0x0FFFFFFF )
708                 outb(base+0x07, HDD_DMA_W48);   // Write Command (LBA48)
709         else
710                 outb(base+0x07, HDD_DMA_W28);   // Write Command (LBA28)
711
712         // Reset IRQ Flag
713         gaATA_IRQs[cont] = 0;
714
715         // Copy to output buffer
716         memcpy( gATA_Buffers[cont], Buffer, Count*SECTOR_SIZE );
717
718         // Start transfer
719         ATA_int_BusMasterWriteByte( cont << 3, 1 );     // Write and start
720
721         // Wait for transfer to complete
722         while( gaATA_IRQs[cont] == 0 )  Threads_Yield();
723
724         // Complete Transfer
725         ATA_int_BusMasterWriteByte( cont << 3, 0 );     // Write and stop
726
727         // Release controller lock
728         RELEASE( &giaATA_ControllerLock[ cont ] );
729
730         return 1;
731 }
732
733 /**
734  * \fn void ATA_IRQHandlerPri(int unused)
735  */
736 void ATA_IRQHandlerPri(int unused)
737 {
738         Uint8   val;
739
740         // IRQ bit set for Primary Controller
741         val = ATA_int_BusMasterReadByte( 0x2 );
742         LOG("IRQ val = 0x%x", val);
743         if(val & 4) {
744                 LOG("IRQ hit (val = 0x%x)", val);
745                 ATA_int_BusMasterWriteByte( 0x2, 4 );
746                 gaATA_IRQs[0] = 1;
747                 return ;
748         }
749 }
750
751 /**
752  * \fn void ATA_IRQHandlerSec(int unused)
753  */
754 void ATA_IRQHandlerSec(int unused)
755 {
756         Uint8   val;
757         // IRQ bit set for Secondary Controller
758         val = ATA_int_BusMasterReadByte( 0xA );
759         LOG("IRQ val = 0x%x", val);
760         if(val & 4) {
761                 LOG("IRQ hit (val = 0x%x)", val);
762                 ATA_int_BusMasterWriteByte( 0xA, 4 );
763                 gaATA_IRQs[1] = 1;
764                 return ;
765         }
766 }
767
768 /**
769  * \fn Uint8 ATA_int_BusMasterReadByte(int Ofs)
770  */
771 Uint8 ATA_int_BusMasterReadByte(int Ofs)
772 {
773         if( gATA_BusMasterBase & 1 )
774                 return inb( (gATA_BusMasterBase & ~1) + Ofs );
775         else
776                 return *(Uint8*)(gATA_BusMasterBasePtr + Ofs);
777 }
778
779 /**
780  * \fn void ATA_int_BusMasterWriteByte(int Ofs, Uint8 Value)
781  * \brief Writes a byte to a Bus Master Register
782  */
783 void ATA_int_BusMasterWriteByte(int Ofs, Uint8 Value)
784 {
785         if( gATA_BusMasterBase & 1 )
786                 outb( (gATA_BusMasterBase & ~1) + Ofs, Value );
787         else
788                 *(Uint8*)(gATA_BusMasterBasePtr + Ofs) = Value;
789 }
790
791 /**
792  * \fn void ATA_int_BusMasterWriteDWord(int Ofs, Uint32 Value)
793  * \brief Writes a dword to a Bus Master Register
794  */
795 void ATA_int_BusMasterWriteDWord(int Ofs, Uint32 Value)
796 {
797
798         if( gATA_BusMasterBase & 1 )
799                 outd( (gATA_BusMasterBase & ~1) + Ofs, Value );
800         else
801                 *(Uint32*)(gATA_BusMasterBasePtr + Ofs) = Value;
802 }

UCC git Repository :: git.ucc.asn.au