Re: [ros-dev] [ros-diffs] [apriyadarshi] 71530: Added INF File for driver installation with minimal configuration. Device Detection and Initialization working -- tested on VMware. StorPortAllocatePool

2016-06-05 Thread Aman Priyadarshi
Yeah, I investigate storport.h we can get extended function table by calling PSTORPORT_EXTENDED_FUNCTIONS pExtFuncTable = NULL; StorPortNotification(GetExtendedFunctionTable, DeviceExtension, &pExtFuncTable); we can thereafter check if pExtFuncTable->AllocatePool is NULL or not? if It is NULL, we

Re: [ros-dev] [ros-diffs] [apriyadarshi] 71530: Added INF File for driver installation with minimal configuration. Device Detection and Initialization working -- tested on VMware. StorPortAllocatePool

2016-06-05 Thread Alex Ionescu
Hi, Implementing MSAHCI would be "more correct" for the system, however MSAHCI also doesn't use STORPORT, it uses ATAPORT, which requires changing our PCIIDEX model to support that. Which I think would put Aman's work out of scope. Now, MSAHCI would be ported to use STORPORT instead, but then we'

Re: [ros-dev] [ros-diffs] [apriyadarshi] 71530: Added INF File for driver installation with minimal configuration. Device Detection and Initialization working -- tested on VMware. StorPortAllocatePool

2016-06-05 Thread Thomas Faber
I'm not an expert so I'm not sure what way is best. But I see at least 4 solutions: * There seems to be a way to get the extended function table through StorPortNotification/GetExtendedFunctionTable. This would provide some of the newer functionality even with older storport, but is potential

Re: [ros-dev] [ros-diffs] [apriyadarshi] 71530: Added INF File for driver installation with minimal configuration. Device Detection and Initialization working -- tested on VMware. StorPortAllocatePool

2016-06-05 Thread Aman Priyadarshi
Yeah msahci is ataport miniport driver. Then what would be the best idea? Leave it with the implementation I made there. "Allocated memory for all port extension within device extension?" ᐧ Regards *Aman Priyadarshi* *www.atomixos.com * On Mon, Jun 6, 2016 at 1:02 AM, T

Re: [ros-dev] [ros-diffs] [apriyadarshi] 71530: Added INF File for driver installation with minimal configuration. Device Detection and Initialization working -- tested on VMware. StorPortAllocatePool

2016-06-05 Thread Thomas Faber
On 2016-06-05 14:40, apriyadar...@svn.reactos.org wrote: > Author: apriyadarshi > Date: Sun Jun 5 12:40:49 2016 > New Revision: 71530 > > URL: http://svn.reactos.org/svn/reactos?rev=71530&view=rev > Log: > Added INF File for driver installation with minimal configuration. > Device Detection and I