Same as AppleATIATA I made...
It has no deprecation nor warnings and has correct dependencies for loading out in 32 and 64 bit mode.
If the other drivers didn't work for you in 64 bit mode, try this one...
Download including sources:
http://rapidshare.co....ceATA_Snow.zip
Built kext is under build/Release.
Enjoy...
28 replies to this topic
#1
Posted 28 February 2010 - 02:52 PM
#2
Posted 28 February 2010 - 09:15 PM
Hi Andy ... link does not work... please check
#3
Posted 01 March 2010 - 08:14 AM
#4
Posted 01 March 2010 - 08:37 AM
nadum35, on Mar 1 2010, 05:15 AM, said:
Hi Andy ... link does not work... please check
here:
http://rapidshare.co...rceATA_Snow.zip
works great !
#5
Posted 01 March 2010 - 07:06 PM
#6
Posted 01 March 2010 - 07:32 PM
CrimsonAngel, on Mar 1 2010, 08:06 PM, said:
I would like to know this as well.
I however have no nForce chipset mobo around so no way to test it...
I would say test it, it should work fine (I made this one for a friend).
#7
Posted 02 March 2010 - 07:32 PM
Many thanks Andy... tried several times in x64 does not work for me, got stuck in looking for boot device... but working in x32 and dvd drive still no working...
my spec: dell xps 730 with 2 x nivida 9800GX2, dual boot win7 and snow 1.6.2
my spec: dell xps 730 with 2 x nivida 9800GX2, dual boot win7 and snow 1.6.2
#8
Posted 04 March 2010 - 11:34 PM
Not working on the following system:
NForce 680i, SATA HDD, SATA DVDRW, 10.6.2
Stuck at "Waiting for boot device"
NForce 680i, SATA HDD, SATA DVDRW, 10.6.2
Stuck at "Waiting for boot device"
#9
Posted 12 March 2010 - 11:30 AM
does this support Nforce 410/6100 amd sempron?
and does it work in leopard?
i cant get snow leopard to work
if you know a snow distro that would work for this computer please tell me!
and does it work in leopard?
i cant get snow leopard to work
if you know a snow distro that would work for this computer please tell me!
#10
Posted 19 March 2010 - 02:35 AM
#11
Posted 19 March 2010 - 06:19 PM
Hello Andy, Your kext does not load in full 64bit mode on my Inpsiron 531, when i tired to load it, it failed to see my sata said something about ActivateAppleNForceDMAEngine.
#12
Posted 27 March 2010 - 08:37 AM
I just tried this out these out in 32bit mode, it won't load in 64bit mode. The OSX profiler in utilities lists the sata DVD drive correctly but when I put a dvd in a drive it never detects the disc. Sata hard drives seem to be working fine.
#13
Posted 28 March 2010 - 06:46 PM
Works just fine on my EVGA i680 based mobo under 10.6.2 in 32bit mode, now using this in place of the older 32bit only slash or anv driver i was using perviously. (All built in SATA Ports worked fine, performance was great)
I could not boot to 64bit mode (i have all 64bit kexts now) but i don't know that this driver is the cause of that issue or related (will plumb that later).
Have not tested my pata optical drive/burning (but it shows in my device lists), will test further and update this post later.
•••••••••••••Make sure you fix permissions/rebuilt your extensions mkext when testing before you post here about the driver not working for you, esp if your getting the root device error.••••••••••••
I could not boot to 64bit mode (i have all 64bit kexts now) but i don't know that this driver is the cause of that issue or related (will plumb that later).
Have not tested my pata optical drive/burning (but it shows in my device lists), will test further and update this post later.
•••••••••••••Make sure you fix permissions/rebuilt your extensions mkext when testing before you post here about the driver not working for you, esp if your getting the root device error.••••••••••••
#14
Posted 29 July 2010 - 05:51 AM
I have an EVGA 680i board (MCP55) and decided to test out this kext.
Upon booting, I noticed that it had an unresolved symbol for “__ZN14AppleNForceATA17activateDMAEngineEv”.
I took a look at the included source code and saw that AppleNForceATA::activateDMAEngine() did not exist.
This was a simple fix.
activateDMAEngine() comes from IOPCIATA, so I looked at Apple's source and simply copied their function:
I compiled it and it loaded with no problem and works just fine.
I'm also using my own kernel based on the legacy patch, but without all the SSE3 emulation and rtclock stuff since I'm on a Core 2 Duo and don't need it.
Edit:
This likely doesn't fix SATA DVD drives. All I did was take AnV's driver above and make it load under 64-bit. Any chipset support or features would have been provided by him (or in the original MeDevil drivers).
Upon booting, I noticed that it had an unresolved symbol for “__ZN14AppleNForceATA17activateDMAEngineEv”.
I took a look at the included source code and saw that AppleNForceATA::activateDMAEngine() did not exist.
This was a simple fix.
activateDMAEngine() comes from IOPCIATA, so I looked at Apple's source and simply copied their function:
void
AppleNForceATA::activateDMAEngine(void)
{
// clear error bit prior to starting.
*_bmStatusReg = (UInt8) mBMStatusError | mBMStatusInt | (_currentCommand->getUnit() == 0 ? mBMStatusDrv0 : mBMStatusDrv1);
OSSynchronizeIO();
// set the address pointer.
*_bmPRDAddresReg = OSSwapHostToLittleInt32((UInt32) _prdTablePhysical);
OSSynchronizeIO();
// activate the DMA engine.
UInt8 theCommand = (_currentCommand->getFlags() & mATAFlagIORead) ? mBMCmdStartInput : mBMCmdStartOutput;
*_bmCommandReg = theCommand;
OSSynchronizeIO();
}
I compiled it and it loaded with no problem and works just fine.
Darwin Ishimura.local 10.4.0 Darwin Kernel Version 10.4.0: Thu Jul 29 00:26:49 EDT 2010; dopefish:xnu-1504.7.4/BUILD/obj/RELEASE_X86_64 x86_64
I'm also using my own kernel based on the legacy patch, but without all the SSE3 emulation and rtclock stuff since I'm on a Core 2 Duo and don't need it.
Edit:
This likely doesn't fix SATA DVD drives. All I did was take AnV's driver above and make it load under 64-bit. Any chipset support or features would have been provided by him (or in the original MeDevil drivers).
Attached Files
#15
Posted 29 July 2010 - 09:10 AM
Boots into 64bit kernal mode for me but DVD drives are not working. Nice work.
imk, on Jul 29 2010, 01:51 AM, said:
I compiled it and it loaded with no problem and works just fine.
I'm also using my own kernel based on the legacy patch, but without all the SSE3 emulation and rtclock stuff since I'm on a Core 2 Duo and don't need it.
I'm also using my own kernel based on the legacy patch, but without all the SSE3 emulation and rtclock stuff since I'm on a Core 2 Duo and don't need it.
#16
Posted 29 July 2010 - 10:37 AM
Working here, although too bad Im on amd.
Nice work anyways. Edit: Oh and here's the 32bit and 64bit patched ioatafamily.kext patched for fast boot times.
#17
Posted 29 July 2010 - 12:20 PM
Working nforce MCP79 chipset ?
#18
Posted 29 July 2010 - 04:47 PM
#19
Posted 30 July 2010 - 12:32 AM
taga, on Jul 29 2010, 05:47 PM, said:
Not working on the following system:
NForce MCP79 , SATA HDD, SATA DVDRW, 10.6.4
Stuck at "Waiting for boot device"
NForce MCP79 , SATA HDD, SATA DVDRW, 10.6.4
Stuck at "Waiting for boot device"
This is because AFAIK the nForce MCP79 chipset is fully AHCI-compliant..........and so does not work with the AppleNForceATA.kext...........see post #1 in my Snow Leopard thread and post #2 in my Leopard Series nForce threads........
#20
Posted 30 July 2010 - 01:51 AM
Thanks a lot! It works! But how can I enable 64bit? I used "arch=x86_64" or "-force64", but still got "64-bit Kernel and Extensions: No". I am using legacy_kernel v4 and an AMD system.
imk, on Jul 29 2010, 05:51 AM, said:
I have an EVGA 680i board (MCP55) and decided to test out this kext.
Upon booting, I noticed that it had an unresolved symbol for “__ZN14AppleNForceATA17activateDMAEngineEv”.
I took a look at the included source code and saw that AppleNForceATA::activateDMAEngine() did not exist.
This was a simple fix.
activateDMAEngine() comes from IOPCIATA, so I looked at Apple's source and simply copied their function:
I compiled it and it loaded with no problem and works just fine.
I'm also using my own kernel based on the legacy patch, but without all the SSE3 emulation and rtclock stuff since I'm on a Core 2 Duo and don't need it.
Edit:
This likely doesn't fix SATA DVD drives. All I did was take AnV's driver above and make it load under 64-bit. Any chipset support or features would have been provided by him (or in the original MeDevil drivers).
Upon booting, I noticed that it had an unresolved symbol for “__ZN14AppleNForceATA17activateDMAEngineEv”.
I took a look at the included source code and saw that AppleNForceATA::activateDMAEngine() did not exist.
This was a simple fix.
activateDMAEngine() comes from IOPCIATA, so I looked at Apple's source and simply copied their function:
void
AppleNForceATA::activateDMAEngine(void)
{
// clear error bit prior to starting.
*_bmStatusReg = (UInt8) mBMStatusError | mBMStatusInt | (_currentCommand->getUnit() == 0 ? mBMStatusDrv0 : mBMStatusDrv1);
OSSynchronizeIO();
// set the address pointer.
*_bmPRDAddresReg = OSSwapHostToLittleInt32((UInt32) _prdTablePhysical);
OSSynchronizeIO();
// activate the DMA engine.
UInt8 theCommand = (_currentCommand->getFlags() & mATAFlagIORead) ? mBMCmdStartInput : mBMCmdStartOutput;
*_bmCommandReg = theCommand;
OSSynchronizeIO();
}
I compiled it and it loaded with no problem and works just fine.
Darwin Ishimura.local 10.4.0 Darwin Kernel Version 10.4.0: Thu Jul 29 00:26:49 EDT 2010; dopefish:xnu-1504.7.4/BUILD/obj/RELEASE_X86_64 x86_64
I'm also using my own kernel based on the legacy patch, but without all the SSE3 emulation and rtclock stuff since I'm on a Core 2 Duo and don't need it.
Edit:
This likely doesn't fix SATA DVD drives. All I did was take AnV's driver above and make it load under 64-bit. Any chipset support or features would have been provided by him (or in the original MeDevil drivers).
0 user(s) are reading this topic
0 members, 0 guests, 0 anonymous users



Sign In
Create Account









