- Timestamp:
- May 19, 2018, 5:28:16 PM (7 years ago)
- Location:
- trunk/src/os2ahci
- Files:
-
- 1 deleted
- 17 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/os2ahci/Makefile
r193 r196 12 12 # Define default build version if not specified in environment 13 13 BLD_MAJOR=2 14 BLD_MINOR=0 4# must be 2 digits14 BLD_MINOR=05 # must be 2 digits 15 15 BLD_REV=0 # not used at this time 16 16 -
trunk/src/os2ahci/ReadMe.txt
r193 r196 1 AHCI Driver for OS/2 v2.0 41 AHCI Driver for OS/2 v2.05 2 2 3 3 Introduction … … 16 16 Copyright (c) 2011 thi.guten Software Development 17 17 Copyright (c) 2011 Mensys B.V. 18 Copyright (c) 2013-201 7David Azarewicz18 Copyright (c) 2013-2018 David Azarewicz 19 19 20 20 Authors: Christian Mueller, Markus Thielen … … 379 379 ========== 380 380 381 v.2.05 05-Apr-2018 - David Azarewicz 382 Changes to debug output for debug versions. 383 Removed interrupt reqirement on init. 384 381 385 v.2.04 06-Dec-2017 - David Azarewicz 382 386 Cosmetic changes to user display. -
trunk/src/os2ahci/ahci.c
r193 r196 4 4 * Copyright (c) 2011 thi.guten Software Development 5 5 * Copyright (c) 2011 Mensys B.V. 6 * Copyright (c) 2013-201 6David Azarewicz6 * Copyright (c) 2013-2018 David Azarewicz 7 7 * 8 8 * Authors: Christian Mueller, Markus Thielen … … 631 631 { 632 632 /* we have a valid IDENTIFY or IDENTIFY_PACKET response */ 633 DHEXDUMP( 2,id_buf, ATA_ID_WORDS * sizeof(u16), "ATA_IDENTIFY%s results:\n", (is_ata) ? "" : "_PACKET");633 DHEXDUMP(5,id_buf, ATA_ID_WORDS * sizeof(u16), "ATA_IDENTIFY%s results:\n", (is_ata) ? "" : "_PACKET"); 634 634 ahci_setup_device(ai, p, 0, id_buf); 635 635 } … … 1734 1734 int d = iorb_unit_device(pIorb); 1735 1735 1736 DHEXDUMP( 0,Far16ToFlat(((IORB_ADAPTER_PASSTHRU *)pIorb)->pControllerCmd),1736 DHEXDUMP(5,Far16ToFlat(((IORB_ADAPTER_PASSTHRU *)pIorb)->pControllerCmd), 1737 1737 ((IORB_ADAPTER_PASSTHRU *)pIorb)->ControllerCmdLen, 1738 1738 "ahci_execute_cdb(%d.%d.%d): ", a, p, d); … … 1760 1760 int d = iorb_unit_device(pIorb); 1761 1761 1762 DHEXDUMP( 0,Far16ToFlat(((IORB_ADAPTER_PASSTHRU *)pIorb)->pControllerCmd),1762 DHEXDUMP(5,Far16ToFlat(((IORB_ADAPTER_PASSTHRU *)pIorb)->pControllerCmd), 1763 1763 ((IORB_ADAPTER_PASSTHRU *)pIorb)->ControllerCmdLen, 1764 1764 "ahci_execute_ata(%d.%d.%d): ", a, p, d); -
trunk/src/os2ahci/ahci.h
r185 r196 4 4 * Copyright (c) 2011 thi.guten Software Development 5 5 * Copyright (c) 2011 Mensys B.V. 6 * Copyright (c) 2013-201 6David Azarewicz6 * Copyright (c) 2013-2018 David Azarewicz 7 7 * 8 8 * Authors: Christian Mueller, Markus Thielen -
trunk/src/os2ahci/apm.c
r178 r196 4 4 * Copyright (c) 2011 thi.guten Software Development 5 5 * Copyright (c) 2011 Mensys B.V. 6 * Portions copyright (c) 2013-201 6David Azarewicz6 * Portions copyright (c) 2013-2018 David Azarewicz 7 7 * 8 8 * Authors: Christian Mueller, Markus Thielen -
trunk/src/os2ahci/ata.c
r190 r196 4 4 * Copyright (c) 2011 thi.guten Software Development 5 5 * Copyright (c) 2011 Mensys B.V. 6 * Copyright (c) 2013-201 6David Azarewicz6 * Copyright (c) 2013-2018 David Azarewicz 7 7 * 8 8 * Authors: Christian Mueller, Markus Thielen … … 287 287 288 288 #ifdef DEBUG 289 if ((D32g_DbgLevel >= 7) || (atapi_cmd != NULL))289 if ((D32g_DbgLevel >= 5) /*|| (atapi_cmd != NULL)*/) 290 290 { 291 291 DPRINTF(0,"ATA command for %d.%d.%d, slot %d:\n", ad_no(ai), p, d, slot); … … 544 544 if (rc) return 0; 545 545 546 DHEXDUMP( 3,pDLA, sizeof(DLA_Table_Sector), "DLA sector %d:\n", sector-1);546 DHEXDUMP(5,pDLA, sizeof(DLA_Table_Sector), "DLA sector %d:\n", sector-1); 547 547 548 548 if ((pDLA->DLA_Signature1 == DLA_TABLE_SIGNATURE1) && (pDLA->DLA_Signature2 == DLA_TABLE_SIGNATURE2)) { … … 1161 1161 | ((u16) fis[13] << 8); 1162 1162 1163 DHEXDUMP( 0,cmd, sizeof(*cmd), "ahci_execute_ata_pp(): cmd after completion:\n");1163 DHEXDUMP(5,cmd, sizeof(*cmd), "ahci_execute_ata_pp(): cmd after completion:\n"); 1164 1164 1165 1165 /* signal completion to interrupt handler */ -
trunk/src/os2ahci/ata.h
r185 r196 4 4 * Copyright (c) 2011 thi.guten Software Development 5 5 * Copyright (c) 2011 Mensys B.V. 6 * Copyright (c) 2013-201 6David Azarewicz6 * Copyright (c) 2013-2018 David Azarewicz 7 7 * 8 8 * Authors: Christian Mueller, Markus Thielen -
trunk/src/os2ahci/atapi.c
r184 r196 4 4 * Copyright (c) 2011 thi.guten Software Development 5 5 * Copyright (c) 2011 Mensys B.V. 6 * Copyright (c) 2013-201 6David Azarewicz6 * Copyright (c) 2013-2018 David Azarewicz 7 7 * 8 8 * Authors: Christian Mueller, Markus Thielen … … 373 373 ATAPI_SENSE_DATA *psd = (ATAPI_SENSE_DATA *) aws->buf; 374 374 375 DHEXDUMP( 0,psd, sizeof(*psd), "sense buffer:\n");375 DHEXDUMP(5,psd, sizeof(*psd), "sense buffer:\n"); 376 376 377 377 if ((pIorb->RequestControl & IORB_REQ_STATUSBLOCK) && -
trunk/src/os2ahci/atapi.h
r178 r196 4 4 * Copyright (c) 2011 thi.guten Software Development 5 5 * Copyright (c) 2011 Mensys B.V. 6 * Copyright (c) 2013-201 6David Azarewicz6 * Copyright (c) 2013-2018 David Azarewicz 7 7 * 8 8 * Authors: Christian Mueller, Markus Thielen -
trunk/src/os2ahci/ctxhook.c
r191 r196 4 4 * Copyright (c) 2011 thi.guten Software Development 5 5 * Copyright (c) 2011 Mensys B.V. 6 * Copyright (c) 2013-201 6David Azarewicz6 * Copyright (c) 2013-2018 David Azarewicz 7 7 * 8 8 * Authors: Christian Mueller, Markus Thielen -
trunk/src/os2ahci/ioctl.c
r193 r196 4 4 * Copyright (c) 2011 thi.guten Software Development 5 5 * Copyright (c) 2011 Mensys B.V. 6 * Copyright (c) 2013-201 6David Azarewicz6 * Copyright (c) 2013-2018 David Azarewicz 7 7 * 8 8 * Authors: Christian Mueller, Markus Thielen -
trunk/src/os2ahci/ioctl.h
r178 r196 4 4 * Copyright (c) 2011 thi.guten Software Development 5 5 * Copyright (c) 2011 Mensys B.V. 6 * Copyright (c) 2013-201 6David Azarewicz6 * Copyright (c) 2013-2018 David Azarewicz 7 7 * 8 8 * Authors: Christian Mueller, Markus Thielen -
trunk/src/os2ahci/os2ahci.c
r191 r196 4 4 * Copyright (c) 2011 thi.guten Software Development 5 5 * Copyright (c) 2011 Mensys B.V. 6 * Copyright (c) 2013-201 6David Azarewicz6 * Copyright (c) 2013-2018 David Azarewicz 7 7 * 8 8 * Authors: Christian Mueller, Markus Thielen -
trunk/src/os2ahci/os2ahci.h
r190 r196 4 4 * Copyright (c) 2011 thi.guten Software Development 5 5 * Copyright (c) 2011 Mensys B.V. 6 * Copyright (c) 2013-201 6David Azarewicz6 * Copyright (c) 2013-2018 David Azarewicz 7 7 * 8 8 * Authors: Christian Mueller, Markus Thielen -
trunk/src/os2ahci/pci.c
r190 r196 4 4 * Copyright (c) 2011 thi.guten Software Development 5 5 * Copyright (c) 2011 Mensys B.V. 6 * Copyright (c) 2013-201 6David Azarewicz6 * Copyright (c) 2013-2018 David Azarewicz 7 7 * 8 8 * Authors: Christian Mueller, Markus Thielen … … 477 477 pin = (int) ((val >> 8) & 0xff); 478 478 479 #if 0 479 480 i = 1; 480 481 if (irq==0 || irq==255) i = 0; … … 489 490 } 490 491 if (i==0) return; 492 #endif 491 493 492 494 /* make sure we got room in the adapter information array */ -
trunk/src/os2ahci/thunk.asm
r191 r196 1 1 ; Thunking for ahci32 driver 2 ; Copyright (c) 201 6David Azarewicz2 ; Copyright (c) 2018 David Azarewicz 3 3 ; Author: David Azarewicz <david@88watts.net> 4 4 -
trunk/src/os2ahci/trace.c
r193 r196 1 1 /****************************************************************************** 2 2 * 3 * Copyright (c) 2013-201 6David Azarewicz3 * Copyright (c) 2013-2018 David Azarewicz 4 4 * 5 5 */
Note:
See TracChangeset
for help on using the changeset viewer.