* Turned off sync debug output.

* Minor cleanup.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@29542 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2009-03-15 10:13:59 +00:00
parent 3601f762ed
commit d60fa63b38
2 changed files with 22 additions and 16 deletions
@@ -18,7 +18,12 @@
#include "ahci_tracing.h" #include "ahci_tracing.h"
#define TRACE(a...) dprintf("\33[34mahci:\33[0m " a) #define TRACE_AHCI
#ifdef TRACE_AHCI
# define TRACE(a...) dprintf("\33[34mahci:\33[0m " a)
#else
# define TRACE(a...)
#endif
//#define FLOW(a...) dprintf("ahci: " a) //#define FLOW(a...) dprintf("ahci: " a)
//#define RWTRACE(a...) dprintf("\33[34mahci:\33[0m " a) //#define RWTRACE(a...) dprintf("\33[34mahci:\33[0m " a)
#define FLOW(a...) #define FLOW(a...)
@@ -26,20 +31,20 @@
AHCIPort::AHCIPort(AHCIController *controller, int index) AHCIPort::AHCIPort(AHCIController *controller, int index)
: fController(controller) : fController(controller),
, fIndex(index) fIndex(index),
, fRegs(&controller->fRegs->port[index]) fRegs(&controller->fRegs->port[index]),
, fArea(-1) fArea(-1),
, fCommandsActive(0) fCommandsActive(0),
, fRequestSem(-1) fRequestSem(-1),
, fResponseSem(-1) fResponseSem(-1),
, fDevicePresent(false) fDevicePresent(false),
, fUse48BitCommands(false) fUse48BitCommands(false),
, fSectorSize(0) fSectorSize(0),
, fSectorCount(0) fSectorCount(0),
, fIsATAPI(false) fIsATAPI(false),
, fResetPort(false) fResetPort(false),
, fError(false) fError(false)
{ {
B_INITIALIZE_SPINLOCK(&fSpinlock); B_INITIALIZE_SPINLOCK(&fSpinlock);
fRequestSem = create_sem(1, "ahci request"); fRequestSem = create_sem(1, "ahci request");
@@ -634,7 +639,7 @@ AHCIPort::ScsiInquiry(scsi_ccb *request)
void void
AHCIPort::ScsiSynchronizeCache(scsi_ccb *request) AHCIPort::ScsiSynchronizeCache(scsi_ccb *request)
{ {
TRACE("AHCIPort::ScsiSynchronizeCache port %d\n", fIndex); //TRACE("AHCIPort::ScsiSynchronizeCache port %d\n", fIndex);
sata_request *sreq = new(std::nothrow) sata_request(request); sata_request *sreq = new(std::nothrow) sata_request(request);
sreq->set_ata_cmd(fUse48BitCommands ? 0xea : 0xe7); // Flush Cache sreq->set_ata_cmd(fUse48BitCommands ? 0xea : 0xe7); // Flush Cache
@@ -2,6 +2,7 @@
* Copyright 2008, Bruno G. Albuquerque. All rights reserved. * Copyright 2008, Bruno G. Albuquerque. All rights reserved.
* Distributed under the terms of the MIT License. * Distributed under the terms of the MIT License.
*/ */
#include <tracing.h> #include <tracing.h>