From: Eliyas Yakub [MSFT] on
> What version of WinDbg should I be running?

Latest one: http://www.microsoft.com/whdc/devtools/debugging/installx86.mspx

Try !wdfkd.wdflogdump.

wdfkd.dll is part of windbg extension dlls.

-Eliyas


From: rsdn on
wdfkd.wdflogdump returns

0: kd> !C:\WinDDK\WDF\KMDF10\bin\x86\wdfkd.wdflogdump eepromburner
TRACE_FORMAT_SEARCH_PATH=
wdftrace: searchpath is: C:\WinDDK\WDF\KMDF10\symbols\x86fre\wdf\tmf

wdftrace: gTracePrefix: ""
wdftrace: gTracePrefixDefault: "%7!u!: %2!-20.20s! -- "
wdftrace: trace format prefix: %7!u!: %2!-20.20s! --
error: Could not retrieve WDF IFR log header for driver eepromburner.
hint: Build your driver with newer WDF libraries.

I am using build tools from Windows DDK 3790.1830. What am I missing?

Regards
Sumithra


"Doron Holan [MS]" wrote:

> !wdfkd.wdflogdump
>
> --
> Please do not send e-mail directly to this alias. this alias is for
> newsgroup purposes only.
> This posting is provided "AS IS" with no warranties, and confers no rights.
>
>
> "rsdn" <rsdn(a)discussions.microsoft.com> wrote in message
> news:D17A7CB6-A95E-40B2-8478-DE7519139E36(a)microsoft.com...
> > OS is Windows XP SP2. I have a USB mouse as well on the bus. I could not
> > get
> > a dumo on wdflogdump. The error returned is
> >
> > 0: kd> !wdflogdump
> > No export wdflogdump found.
> >
> > What version of WinDbg should I be running?
> >
> > Thanks for your help.
> >
> > Regards
> > Sumithra
> >
> > "Doron Holan [MS]" wrote:
> >
> >> what OS? for usb SS to work, all devices on the controller must say they
> >> are SS ready. is your device the only one on the bus? what does
> >> !wdflogdump say?
> >>
> >> d
> >>
> >> --
> >> Please do not send e-mail directly to this alias. this alias is for
> >> newsgroup purposes only.
> >> This posting is provided "AS IS" with no warranties, and confers no
> >> rights.
> >>
> >>
> >> "rsdn" <rsdn(a)discussions.microsoft.com> wrote in message
> >> news:5C23E9EA-3B0F-4014-AE0F-E9F451EAA404(a)microsoft.com...
> >> > There are 4 UHCI controllers and 1 EHCI controller. All of them report
> >> >
> >> > PDCAP_D0_SUPPORTED
> >> > PDCAP_D3_SUPPORTED
> >> > PDCAP_WAKE_FROM_D3_SUPPORTED
> >> >
> >> > I can still wake the system from a USB mouse and PS/2 keyboard. I think
> >> > the
> >> > USB mouse will not be able to wake up the system if the HC is not able
> >> > to
> >> > wake up from all Sx states.
> >> >
> >> > Regards
> >> > Sumithra
> >> >
> >> > Regards
> >> > Sumithra
> >> >
> >> > "Doron Holan [MS]" wrote:
> >> >
> >> >> in xp sp2 and later, open up the properties of the HC and your device
> >> >> and
> >> >> look at the details tab. select the power caps from the list.
> >> >>
> >> >> d
> >> >>
> >> >> --
> >> >> Please do not send e-mail directly to this alias. this alias is for
> >> >> newsgroup purposes only.
> >> >> This posting is provided "AS IS" with no warranties, and confers no
> >> >> rights.
> >> >>
> >> >>
> >> >> "rsdn" <rsdn(a)discussions.microsoft.com> wrote in message
> >> >> news:7D161F1C-1AEF-44B5-BE85-BF7FAF33FBE0(a)microsoft.com...
> >> >> > Yes I did call WdfDeviceAssignSxWakeSettings to enable wake from Sx
> >> >> > and
> >> >> > also
> >> >> > use WdfDeviceAssignS0IdleSettings with 10s timeout. How do I
> >> >> > determine
> >> >> > that
> >> >> > the host controller is capable of waking from all Sx states. I can
> >> >> > wake
> >> >> > the
> >> >> > system with other PS2 keyboard, mouse as well as a USB mouse.
> >> >> >
> >> >> > Regards
> >> >> > Sumithra
> >> >> >
> >> >> > "Doron Holan [MS]" wrote:
> >> >> >
> >> >> >> did you call WdfDeviceAssignSxWakeSettings to enable wake from Sx?
> >> >> >> Did
> >> >> >> you
> >> >> >> call WdfDeviceAssignS0IdleSettings to idle out while in S0? If so,
> >> >> >> is
> >> >> >> your
> >> >> >> host controller capable of waking from all Sx states?
> >> >> >>
> >> >> >> d
> >> >> >>
> >> >> >> --
> >> >> >> Please do not send e-mail directly to this alias. this alias is for
> >> >> >> newsgroup purposes only.
> >> >> >> This posting is provided "AS IS" with no warranties, and confers no
> >> >> >> rights.
> >> >> >>
> >> >> >>
> >> >> >> "rsdn" <rsdn(a)discussions.microsoft.com> wrote in message
> >> >> >> news:86451B29-1267-4032-A370-77A4CABECEBF(a)microsoft.com...
> >> >> >> > Hi
> >> >> >> >
> >> >> >> > I am writing a KMDF driver for a USB device that is remote wakeup
> >> >> >> > capable.
> >> >> >> > But EvtDeviceArmWakeFromSx is never called when I go to standby.
> >> >> >> > I
> >> >> >> > have
> >> >> >> > registered
> >> >> >> >
> >> >> >> > EvtDeviceArmWakeFromS0, EvtDeviceDisarmWakeFromS0 ,
> >> >> >> > EvtDeviceWakeFromS0Triggered, EvtDeviceArmWakeFromSx
> >> >> >> > ,EvtDeviceDisarmWakeFromSx , EvtDeviceWakeFromSxTriggered
> >> >> >> >
> >> >> >> > Also another thing I noticed is I see the power management tab in
> >> >> >> > the
> >> >> >> > Device
> >> >> >> > Manager, but there are no registry entries created to reflect
> >> >> >> > this.
> >> >> >> >
> >> >> >> > What should I do to get EvtDeviceArmWakeFromSx called?
> >> >> >> >
> >> >> >> > Regards
> >> >> >> > Sumithra
> >> >> >>
> >> >> >>
> >> >> >>
> >> >>
> >> >>
> >> >>
> >>
> >>
> >>
>
>
>
From: Doron Holan [MS] on
you need to fix your symbols path so that KMDF is in it. for KMDF v1.1, it
is in the tree where you installed KMDF ,
%ddkroot%\WDF\KMDF10\symbols\x86fre\wdf

d

--
Please do not send e-mail directly to this alias. this alias is for
newsgroup purposes only.
This posting is provided "AS IS" with no warranties, and confers no rights.


"rsdn" <rsdn(a)discussions.microsoft.com> wrote in message
news:F4ED721E-C1A5-464D-92E9-F81F1CFBB284(a)microsoft.com...
> wdfkd.wdflogdump returns
>
> 0: kd> !C:\WinDDK\WDF\KMDF10\bin\x86\wdfkd.wdflogdump eepromburner
> TRACE_FORMAT_SEARCH_PATH=
> wdftrace: searchpath is: C:\WinDDK\WDF\KMDF10\symbols\x86fre\wdf\tmf
>
> wdftrace: gTracePrefix: ""
> wdftrace: gTracePrefixDefault: "%7!u!: %2!-20.20s! -- "
> wdftrace: trace format prefix: %7!u!: %2!-20.20s! --
> error: Could not retrieve WDF IFR log header for driver eepromburner.
> hint: Build your driver with newer WDF libraries.
>
> I am using build tools from Windows DDK 3790.1830. What am I missing?
>
> Regards
> Sumithra
>
>
> "Doron Holan [MS]" wrote:
>
>> !wdfkd.wdflogdump
>>
>> --
>> Please do not send e-mail directly to this alias. this alias is for
>> newsgroup purposes only.
>> This posting is provided "AS IS" with no warranties, and confers no
>> rights.
>>
>>
>> "rsdn" <rsdn(a)discussions.microsoft.com> wrote in message
>> news:D17A7CB6-A95E-40B2-8478-DE7519139E36(a)microsoft.com...
>> > OS is Windows XP SP2. I have a USB mouse as well on the bus. I could
>> > not
>> > get
>> > a dumo on wdflogdump. The error returned is
>> >
>> > 0: kd> !wdflogdump
>> > No export wdflogdump found.
>> >
>> > What version of WinDbg should I be running?
>> >
>> > Thanks for your help.
>> >
>> > Regards
>> > Sumithra
>> >
>> > "Doron Holan [MS]" wrote:
>> >
>> >> what OS? for usb SS to work, all devices on the controller must say
>> >> they
>> >> are SS ready. is your device the only one on the bus? what does
>> >> !wdflogdump say?
>> >>
>> >> d
>> >>
>> >> --
>> >> Please do not send e-mail directly to this alias. this alias is for
>> >> newsgroup purposes only.
>> >> This posting is provided "AS IS" with no warranties, and confers no
>> >> rights.
>> >>
>> >>
>> >> "rsdn" <rsdn(a)discussions.microsoft.com> wrote in message
>> >> news:5C23E9EA-3B0F-4014-AE0F-E9F451EAA404(a)microsoft.com...
>> >> > There are 4 UHCI controllers and 1 EHCI controller. All of them
>> >> > report
>> >> >
>> >> > PDCAP_D0_SUPPORTED
>> >> > PDCAP_D3_SUPPORTED
>> >> > PDCAP_WAKE_FROM_D3_SUPPORTED
>> >> >
>> >> > I can still wake the system from a USB mouse and PS/2 keyboard. I
>> >> > think
>> >> > the
>> >> > USB mouse will not be able to wake up the system if the HC is not
>> >> > able
>> >> > to
>> >> > wake up from all Sx states.
>> >> >
>> >> > Regards
>> >> > Sumithra
>> >> >
>> >> > Regards
>> >> > Sumithra
>> >> >
>> >> > "Doron Holan [MS]" wrote:
>> >> >
>> >> >> in xp sp2 and later, open up the properties of the HC and your
>> >> >> device
>> >> >> and
>> >> >> look at the details tab. select the power caps from the list.
>> >> >>
>> >> >> d
>> >> >>
>> >> >> --
>> >> >> Please do not send e-mail directly to this alias. this alias is for
>> >> >> newsgroup purposes only.
>> >> >> This posting is provided "AS IS" with no warranties, and confers no
>> >> >> rights.
>> >> >>
>> >> >>
>> >> >> "rsdn" <rsdn(a)discussions.microsoft.com> wrote in message
>> >> >> news:7D161F1C-1AEF-44B5-BE85-BF7FAF33FBE0(a)microsoft.com...
>> >> >> > Yes I did call WdfDeviceAssignSxWakeSettings to enable wake from
>> >> >> > Sx
>> >> >> > and
>> >> >> > also
>> >> >> > use WdfDeviceAssignS0IdleSettings with 10s timeout. How do I
>> >> >> > determine
>> >> >> > that
>> >> >> > the host controller is capable of waking from all Sx states. I
>> >> >> > can
>> >> >> > wake
>> >> >> > the
>> >> >> > system with other PS2 keyboard, mouse as well as a USB mouse.
>> >> >> >
>> >> >> > Regards
>> >> >> > Sumithra
>> >> >> >
>> >> >> > "Doron Holan [MS]" wrote:
>> >> >> >
>> >> >> >> did you call WdfDeviceAssignSxWakeSettings to enable wake from
>> >> >> >> Sx?
>> >> >> >> Did
>> >> >> >> you
>> >> >> >> call WdfDeviceAssignS0IdleSettings to idle out while in S0? If
>> >> >> >> so,
>> >> >> >> is
>> >> >> >> your
>> >> >> >> host controller capable of waking from all Sx states?
>> >> >> >>
>> >> >> >> d
>> >> >> >>
>> >> >> >> --
>> >> >> >> Please do not send e-mail directly to this alias. this alias is
>> >> >> >> for
>> >> >> >> newsgroup purposes only.
>> >> >> >> This posting is provided "AS IS" with no warranties, and confers
>> >> >> >> no
>> >> >> >> rights.
>> >> >> >>
>> >> >> >>
>> >> >> >> "rsdn" <rsdn(a)discussions.microsoft.com> wrote in message
>> >> >> >> news:86451B29-1267-4032-A370-77A4CABECEBF(a)microsoft.com...
>> >> >> >> > Hi
>> >> >> >> >
>> >> >> >> > I am writing a KMDF driver for a USB device that is remote
>> >> >> >> > wakeup
>> >> >> >> > capable.
>> >> >> >> > But EvtDeviceArmWakeFromSx is never called when I go to
>> >> >> >> > standby.
>> >> >> >> > I
>> >> >> >> > have
>> >> >> >> > registered
>> >> >> >> >
>> >> >> >> > EvtDeviceArmWakeFromS0, EvtDeviceDisarmWakeFromS0 ,
>> >> >> >> > EvtDeviceWakeFromS0Triggered, EvtDeviceArmWakeFromSx
>> >> >> >> > ,EvtDeviceDisarmWakeFromSx , EvtDeviceWakeFromSxTriggered
>> >> >> >> >
>> >> >> >> > Also another thing I noticed is I see the power management tab
>> >> >> >> > in
>> >> >> >> > the
>> >> >> >> > Device
>> >> >> >> > Manager, but there are no registry entries created to reflect
>> >> >> >> > this.
>> >> >> >> >
>> >> >> >> > What should I do to get EvtDeviceArmWakeFromSx called?
>> >> >> >> >
>> >> >> >> > Regards
>> >> >> >> > Sumithra
>> >> >> >>
>> >> >> >>
>> >> >> >>
>> >> >>
>> >> >>
>> >> >>
>> >>
>> >>
>> >>
>>
>>
>>


From: rsdn on
Thanks. I got the following from wdflogdump

0: kd> !C:\WinDDK\WDF\KMDF10\bin\x86\wdfkd.wdflogdump eepromburner
TRACE_FORMAT_SEARCH_PATH=
wdftrace: searchpath is: C:\WinDDK\WDF\KMDF10\symbols\x86fre\wdf\tmf

wdftrace: gTracePrefix: ""
wdftrace: gTracePrefixDefault: "%7!u!: %2!-20.20s! -- "
wdftrace: trace format prefix: %7!u!: %2!-20.20s! --
Log at 85dc2000
Gather log: Please wait, this may take a moment (reading 4032 bytes).
% read so far ... 10, 20, 100
There are 22 log entries
--- start of log ---
Unknown( 16): GUID=cbb7aabc-8282-c8df-ba62-9bfc713cd1e0 (No Format
Information found).
Unknown( 14): GUID=4f52dfe2-134d-04ae-29d9-54077143a384 (No Format
Information found).
Unknown( 14): GUID=4f52dfe2-134d-04ae-29d9-54077143a384 (No Format
Information found).
Unknown( 14): GUID=4f52dfe2-134d-04ae-29d9-54077143a384 (No Format
Information found).
Unknown( 20): GUID=80086f8b-6b01-45ac-dd58-6ef38233e4de (No Format
Information found).
Unknown( 15): GUID=f6d56a33-687a-cd66-9bdf-a3302ad96359 (No Format
Information found).
Unknown( 16): GUID=ad651db4-3e6f-8cfc-3875-f6bffc262fda (No Format
Information found).
Unknown( 13): GUID=e00d0259-1841-541c-81dd-62de3d983a88 (No Format
Information found).
Unknown( 13): GUID=e00d0259-1841-541c-81dd-62de3d983a88 (No Format
Information found).
Unknown( 13): GUID=e00d0259-1841-541c-81dd-62de3d983a88 (No Format
Information found).
Unknown( 13): GUID=e00d0259-1841-541c-81dd-62de3d983a88 (No Format
Information found).
Unknown( 13): GUID=e00d0259-1841-541c-81dd-62de3d983a88 (No Format
Information found).
Unknown( 16): GUID=ad651db4-3e6f-8cfc-3875-f6bffc262fda (No Format
Information found).
Unknown( 16): GUID=ad651db4-3e6f-8cfc-3875-f6bffc262fda (No Format
Information found).
Unknown( 13): GUID=e00d0259-1841-541c-81dd-62de3d983a88 (No Format
Information found).
Unknown( 13): GUID=e00d0259-1841-541c-81dd-62de3d983a88 (No Format
Information found).
Unknown( 15): GUID=f6d56a33-687a-cd66-9bdf-a3302ad96359 (No Format
Information found).
Unknown( 15): GUID=f6d56a33-687a-cd66-9bdf-a3302ad96359 (No Format
Information found).
Unknown( 15): GUID=f6d56a33-687a-cd66-9bdf-a3302ad96359 (No Format
Information found).
Unknown( 16): GUID=ad651db4-3e6f-8cfc-3875-f6bffc262fda (No Format
Information found).
Unknown( 14): GUID=4f52dfe2-134d-04ae-29d9-54077143a384 (No Format
Information found).
Unknown( 14): GUID=4f52dfe2-134d-04ae-29d9-54077143a384 (No Format
Information found).

Regards
Sumithra

"Doron Holan [MS]" wrote:

> you need to fix your symbols path so that KMDF is in it. for KMDF v1.1, it
> is in the tree where you installed KMDF ,
> %ddkroot%\WDF\KMDF10\symbols\x86fre\wdf
>
> d
>
> --
> Please do not send e-mail directly to this alias. this alias is for
> newsgroup purposes only.
> This posting is provided "AS IS" with no warranties, and confers no rights.
>
>
> "rsdn" <rsdn(a)discussions.microsoft.com> wrote in message
> news:F4ED721E-C1A5-464D-92E9-F81F1CFBB284(a)microsoft.com...
> > wdfkd.wdflogdump returns
> >
> > 0: kd> !C:\WinDDK\WDF\KMDF10\bin\x86\wdfkd.wdflogdump eepromburner
> > TRACE_FORMAT_SEARCH_PATH=
> > wdftrace: searchpath is: C:\WinDDK\WDF\KMDF10\symbols\x86fre\wdf\tmf
> >
> > wdftrace: gTracePrefix: ""
> > wdftrace: gTracePrefixDefault: "%7!u!: %2!-20.20s! -- "
> > wdftrace: trace format prefix: %7!u!: %2!-20.20s! --
> > error: Could not retrieve WDF IFR log header for driver eepromburner.
> > hint: Build your driver with newer WDF libraries.
> >
> > I am using build tools from Windows DDK 3790.1830. What am I missing?
> >
> > Regards
> > Sumithra
> >
> >
> > "Doron Holan [MS]" wrote:
> >
> >> !wdfkd.wdflogdump
> >>
> >> --
> >> Please do not send e-mail directly to this alias. this alias is for
> >> newsgroup purposes only.
> >> This posting is provided "AS IS" with no warranties, and confers no
> >> rights.
> >>
> >>
> >> "rsdn" <rsdn(a)discussions.microsoft.com> wrote in message
> >> news:D17A7CB6-A95E-40B2-8478-DE7519139E36(a)microsoft.com...
> >> > OS is Windows XP SP2. I have a USB mouse as well on the bus. I could
> >> > not
> >> > get
> >> > a dumo on wdflogdump. The error returned is
> >> >
> >> > 0: kd> !wdflogdump
> >> > No export wdflogdump found.
> >> >
> >> > What version of WinDbg should I be running?
> >> >
> >> > Thanks for your help.
> >> >
> >> > Regards
> >> > Sumithra
> >> >
> >> > "Doron Holan [MS]" wrote:
> >> >
> >> >> what OS? for usb SS to work, all devices on the controller must say
> >> >> they
> >> >> are SS ready. is your device the only one on the bus? what does
> >> >> !wdflogdump say?
> >> >>
> >> >> d
> >> >>
> >> >> --
> >> >> Please do not send e-mail directly to this alias. this alias is for
> >> >> newsgroup purposes only.
> >> >> This posting is provided "AS IS" with no warranties, and confers no
> >> >> rights.
> >> >>
> >> >>
> >> >> "rsdn" <rsdn(a)discussions.microsoft.com> wrote in message
> >> >> news:5C23E9EA-3B0F-4014-AE0F-E9F451EAA404(a)microsoft.com...
> >> >> > There are 4 UHCI controllers and 1 EHCI controller. All of them
> >> >> > report
> >> >> >
> >> >> > PDCAP_D0_SUPPORTED
> >> >> > PDCAP_D3_SUPPORTED
> >> >> > PDCAP_WAKE_FROM_D3_SUPPORTED
> >> >> >
> >> >> > I can still wake the system from a USB mouse and PS/2 keyboard. I
> >> >> > think
> >> >> > the
> >> >> > USB mouse will not be able to wake up the system if the HC is not
> >> >> > able
> >> >> > to
> >> >> > wake up from all Sx states.
> >> >> >
> >> >> > Regards
> >> >> > Sumithra
> >> >> >
> >> >> > Regards
> >> >> > Sumithra
> >> >> >
> >> >> > "Doron Holan [MS]" wrote:
> >> >> >
> >> >> >> in xp sp2 and later, open up the properties of the HC and your
> >> >> >> device
> >> >> >> and
> >> >> >> look at the details tab. select the power caps from the list.
> >> >> >>
> >> >> >> d
> >> >> >>
> >> >> >> --
> >> >> >> Please do not send e-mail directly to this alias. this alias is for
> >> >> >> newsgroup purposes only.
> >> >> >> This posting is provided "AS IS" with no warranties, and confers no
> >> >> >> rights.
> >> >> >>
> >> >> >>
> >> >> >> "rsdn" <rsdn(a)discussions.microsoft.com> wrote in message
> >> >> >> news:7D161F1C-1AEF-44B5-BE85-BF7FAF33FBE0(a)microsoft.com...
> >> >> >> > Yes I did call WdfDeviceAssignSxWakeSettings to enable wake from
> >> >> >> > Sx
> >> >> >> > and
> >> >> >> > also
> >> >> >> > use WdfDeviceAssignS0IdleSettings with 10s timeout. How do I
> >> >> >> > determine
> >> >> >> > that
> >> >> >> > the host controller is capable of waking from all Sx states. I
> >> >> >> > can
> >> >> >> > wake
> >> >> >> > the
> >> >> >> > system with other PS2 keyboard, mouse as well as a USB mouse.
> >> >> >> >
> >> >> >> > Regards
> >> >> >> > Sumithra
> >> >> >> >
> >> >> >> > "Doron Holan [MS]" wrote:
> >> >> >> >
> >> >> >> >> did you call WdfDeviceAssignSxWakeSettings to enable wake from
> >> >> >> >> Sx?
> >> >> >> >> Did
> >> >> >> >> you
> >> >> >> >> call WdfDeviceAssignS0IdleSettings to idle out while in S0? If
> >> >> >> >> so,
> >> >> >> >> is
> >> >> >> >> your
> >> >> >> >> host controller capable of waking from all Sx states?
> >> >> >> >>
> >> >> >> >> d
> >> >> >> >>
> >> >> >> >> --
> >> >> >> >> Please do not send e-mail directly to this alias. this alias is
> >> >> >> >> for
> >> >> >> >> newsgroup purposes only.
> >> >> >> >> This posting is provided "AS IS" with no warranties, and confers
> >> >> >> >> no
> >> >> >> >> rights.
> >> >> >> >>
> >> >> >> >>
> >> >> >> >> "rsdn" <rsdn(a)discussions.microsoft.com> wrote in message
> >> >> >> >> news:86451B29-1267-4032-A370-77A4CABECEBF(a)microsoft.com...
> >> >> >> >> > Hi
> >> >> >> >> >
> >> >> >> >> > I am writing a KMDF driver for a USB device that is remote
> >> >> >> >> > wakeup
> >> >> >> >> > capable.
> >> >> >> >> > But EvtDeviceArmWakeFromSx is never called when I go to
> >> >> >> >> > standby.
> >> >> >> >> > I
> >> >> >> >> > have
> >> >> >> >> > registered
> >> >> >> >> >
> >> >> >> >> > EvtDeviceArmWakeFromS0, EvtDeviceDisarmWakeFromS0 ,
> >> >> >> >> > EvtDeviceWakeFromS0Triggered, EvtDeviceArmWakeFromSx
> >> >> >> >> > ,EvtDeviceDisarmWakeFromSx , EvtDeviceWakeFromSxTriggered
> >> >> >> >> >
> >> >> >> >> > Also another thing I noticed is I see the power management tab
> >> >> >> >> > in
> >> >> >> >> > the
> >> >> >> >> > Device
> >> >> >> >> > Manager, but there are no registry entries created to reflect
> >> >> >> >> > this.
> >> >> >> >> >
> >> >> >> >> > What should I do to get EvtDeviceArmWakeFromSx called?
> >> >> >> >> >
> >> >> >> >> > Regards
> >> >> >> >> > Sumithra
> >> >> >> >>
> >> >> >> >>
> >> >> >> >>
> >> >> >>
> >> >> >>
> >> >> >>
> >> >>
> >> >>
> >> >>
> >>
> >>
> >>
>
>
>
From: Doron Holan [MS] on
for KMDF 1.1 you need to use !wdftmffile , see
http://blogs.msdn.com/doronh/archive/2006/07/31/684531.aspx

d

--
Please do not send e-mail directly to this alias. this alias is for
newsgroup purposes only.
This posting is provided "AS IS" with no warranties, and confers no rights.


"rsdn" <rsdn(a)discussions.microsoft.com> wrote in message
news:E79DD4A0-2C17-4DCF-820A-E2575B301AA2(a)microsoft.com...
> Thanks. I got the following from wdflogdump
>
> 0: kd> !C:\WinDDK\WDF\KMDF10\bin\x86\wdfkd.wdflogdump eepromburner
> TRACE_FORMAT_SEARCH_PATH=
> wdftrace: searchpath is: C:\WinDDK\WDF\KMDF10\symbols\x86fre\wdf\tmf
>
> wdftrace: gTracePrefix: ""
> wdftrace: gTracePrefixDefault: "%7!u!: %2!-20.20s! -- "
> wdftrace: trace format prefix: %7!u!: %2!-20.20s! --
> Log at 85dc2000
> Gather log: Please wait, this may take a moment (reading 4032 bytes).
> % read so far ... 10, 20, 100
> There are 22 log entries
> --- start of log ---
> Unknown( 16): GUID=cbb7aabc-8282-c8df-ba62-9bfc713cd1e0 (No Format
> Information found).
> Unknown( 14): GUID=4f52dfe2-134d-04ae-29d9-54077143a384 (No Format
> Information found).
> Unknown( 14): GUID=4f52dfe2-134d-04ae-29d9-54077143a384 (No Format
> Information found).
> Unknown( 14): GUID=4f52dfe2-134d-04ae-29d9-54077143a384 (No Format
> Information found).
> Unknown( 20): GUID=80086f8b-6b01-45ac-dd58-6ef38233e4de (No Format
> Information found).
> Unknown( 15): GUID=f6d56a33-687a-cd66-9bdf-a3302ad96359 (No Format
> Information found).
> Unknown( 16): GUID=ad651db4-3e6f-8cfc-3875-f6bffc262fda (No Format
> Information found).
> Unknown( 13): GUID=e00d0259-1841-541c-81dd-62de3d983a88 (No Format
> Information found).
> Unknown( 13): GUID=e00d0259-1841-541c-81dd-62de3d983a88 (No Format
> Information found).
> Unknown( 13): GUID=e00d0259-1841-541c-81dd-62de3d983a88 (No Format
> Information found).
> Unknown( 13): GUID=e00d0259-1841-541c-81dd-62de3d983a88 (No Format
> Information found).
> Unknown( 13): GUID=e00d0259-1841-541c-81dd-62de3d983a88 (No Format
> Information found).
> Unknown( 16): GUID=ad651db4-3e6f-8cfc-3875-f6bffc262fda (No Format
> Information found).
> Unknown( 16): GUID=ad651db4-3e6f-8cfc-3875-f6bffc262fda (No Format
> Information found).
> Unknown( 13): GUID=e00d0259-1841-541c-81dd-62de3d983a88 (No Format
> Information found).
> Unknown( 13): GUID=e00d0259-1841-541c-81dd-62de3d983a88 (No Format
> Information found).
> Unknown( 15): GUID=f6d56a33-687a-cd66-9bdf-a3302ad96359 (No Format
> Information found).
> Unknown( 15): GUID=f6d56a33-687a-cd66-9bdf-a3302ad96359 (No Format
> Information found).
> Unknown( 15): GUID=f6d56a33-687a-cd66-9bdf-a3302ad96359 (No Format
> Information found).
> Unknown( 16): GUID=ad651db4-3e6f-8cfc-3875-f6bffc262fda (No Format
> Information found).
> Unknown( 14): GUID=4f52dfe2-134d-04ae-29d9-54077143a384 (No Format
> Information found).
> Unknown( 14): GUID=4f52dfe2-134d-04ae-29d9-54077143a384 (No Format
> Information found).
>
> Regards
> Sumithra
>
> "Doron Holan [MS]" wrote:
>
>> you need to fix your symbols path so that KMDF is in it. for KMDF v1.1,
>> it
>> is in the tree where you installed KMDF ,
>> %ddkroot%\WDF\KMDF10\symbols\x86fre\wdf
>>
>> d
>>
>> --
>> Please do not send e-mail directly to this alias. this alias is for
>> newsgroup purposes only.
>> This posting is provided "AS IS" with no warranties, and confers no
>> rights.
>>
>>
>> "rsdn" <rsdn(a)discussions.microsoft.com> wrote in message
>> news:F4ED721E-C1A5-464D-92E9-F81F1CFBB284(a)microsoft.com...
>> > wdfkd.wdflogdump returns
>> >
>> > 0: kd> !C:\WinDDK\WDF\KMDF10\bin\x86\wdfkd.wdflogdump eepromburner
>> > TRACE_FORMAT_SEARCH_PATH=
>> > wdftrace: searchpath is: C:\WinDDK\WDF\KMDF10\symbols\x86fre\wdf\tmf
>> >
>> > wdftrace: gTracePrefix: ""
>> > wdftrace: gTracePrefixDefault: "%7!u!: %2!-20.20s! -- "
>> > wdftrace: trace format prefix: %7!u!: %2!-20.20s! --
>> > error: Could not retrieve WDF IFR log header for driver eepromburner.
>> > hint: Build your driver with newer WDF libraries.
>> >
>> > I am using build tools from Windows DDK 3790.1830. What am I missing?
>> >
>> > Regards
>> > Sumithra
>> >
>> >
>> > "Doron Holan [MS]" wrote:
>> >
>> >> !wdfkd.wdflogdump
>> >>
>> >> --
>> >> Please do not send e-mail directly to this alias. this alias is for
>> >> newsgroup purposes only.
>> >> This posting is provided "AS IS" with no warranties, and confers no
>> >> rights.
>> >>
>> >>
>> >> "rsdn" <rsdn(a)discussions.microsoft.com> wrote in message
>> >> news:D17A7CB6-A95E-40B2-8478-DE7519139E36(a)microsoft.com...
>> >> > OS is Windows XP SP2. I have a USB mouse as well on the bus. I could
>> >> > not
>> >> > get
>> >> > a dumo on wdflogdump. The error returned is
>> >> >
>> >> > 0: kd> !wdflogdump
>> >> > No export wdflogdump found.
>> >> >
>> >> > What version of WinDbg should I be running?
>> >> >
>> >> > Thanks for your help.
>> >> >
>> >> > Regards
>> >> > Sumithra
>> >> >
>> >> > "Doron Holan [MS]" wrote:
>> >> >
>> >> >> what OS? for usb SS to work, all devices on the controller must
>> >> >> say
>> >> >> they
>> >> >> are SS ready. is your device the only one on the bus? what does
>> >> >> !wdflogdump say?
>> >> >>
>> >> >> d
>> >> >>
>> >> >> --
>> >> >> Please do not send e-mail directly to this alias. this alias is for
>> >> >> newsgroup purposes only.
>> >> >> This posting is provided "AS IS" with no warranties, and confers no
>> >> >> rights.
>> >> >>
>> >> >>
>> >> >> "rsdn" <rsdn(a)discussions.microsoft.com> wrote in message
>> >> >> news:5C23E9EA-3B0F-4014-AE0F-E9F451EAA404(a)microsoft.com...
>> >> >> > There are 4 UHCI controllers and 1 EHCI controller. All of them
>> >> >> > report
>> >> >> >
>> >> >> > PDCAP_D0_SUPPORTED
>> >> >> > PDCAP_D3_SUPPORTED
>> >> >> > PDCAP_WAKE_FROM_D3_SUPPORTED
>> >> >> >
>> >> >> > I can still wake the system from a USB mouse and PS/2 keyboard. I
>> >> >> > think
>> >> >> > the
>> >> >> > USB mouse will not be able to wake up the system if the HC is not
>> >> >> > able
>> >> >> > to
>> >> >> > wake up from all Sx states.
>> >> >> >
>> >> >> > Regards
>> >> >> > Sumithra
>> >> >> >
>> >> >> > Regards
>> >> >> > Sumithra
>> >> >> >
>> >> >> > "Doron Holan [MS]" wrote:
>> >> >> >
>> >> >> >> in xp sp2 and later, open up the properties of the HC and your
>> >> >> >> device
>> >> >> >> and
>> >> >> >> look at the details tab. select the power caps from the list.
>> >> >> >>
>> >> >> >> d
>> >> >> >>
>> >> >> >> --
>> >> >> >> Please do not send e-mail directly to this alias. this alias is
>> >> >> >> for
>> >> >> >> newsgroup purposes only.
>> >> >> >> This posting is provided "AS IS" with no warranties, and confers
>> >> >> >> no
>> >> >> >> rights.
>> >> >> >>
>> >> >> >>
>> >> >> >> "rsdn" <rsdn(a)discussions.microsoft.com> wrote in message
>> >> >> >> news:7D161F1C-1AEF-44B5-BE85-BF7FAF33FBE0(a)microsoft.com...
>> >> >> >> > Yes I did call WdfDeviceAssignSxWakeSettings to enable wake
>> >> >> >> > from
>> >> >> >> > Sx
>> >> >> >> > and
>> >> >> >> > also
>> >> >> >> > use WdfDeviceAssignS0IdleSettings with 10s timeout. How do I
>> >> >> >> > determine
>> >> >> >> > that
>> >> >> >> > the host controller is capable of waking from all Sx states. I
>> >> >> >> > can
>> >> >> >> > wake
>> >> >> >> > the
>> >> >> >> > system with other PS2 keyboard, mouse as well as a USB mouse.
>> >> >> >> >
>> >> >> >> > Regards
>> >> >> >> > Sumithra
>> >> >> >> >
>> >> >> >> > "Doron Holan [MS]" wrote:
>> >> >> >> >
>> >> >> >> >> did you call WdfDeviceAssignSxWakeSettings to enable wake
>> >> >> >> >> from
>> >> >> >> >> Sx?
>> >> >> >> >> Did
>> >> >> >> >> you
>> >> >> >> >> call WdfDeviceAssignS0IdleSettings to idle out while in S0?
>> >> >> >> >> If
>> >> >> >> >> so,
>> >> >> >> >> is
>> >> >> >> >> your
>> >> >> >> >> host controller capable of waking from all Sx states?
>> >> >> >> >>
>> >> >> >> >> d
>> >> >> >> >>
>> >> >> >> >> --
>> >> >> >> >> Please do not send e-mail directly to this alias. this alias
>> >> >> >> >> is
>> >> >> >> >> for
>> >> >> >> >> newsgroup purposes only.
>> >> >> >> >> This posting is provided "AS IS" with no warranties, and
>> >> >> >> >> confers
>> >> >> >> >> no
>> >> >> >> >> rights.
>> >> >> >> >>
>> >> >> >> >>
>> >> >> >> >> "rsdn" <rsdn(a)discussions.microsoft.com> wrote in message
>> >> >> >> >> news:86451B29-1267-4032-A370-77A4CABECEBF(a)microsoft.com...
>> >> >> >> >> > Hi
>> >> >> >> >> >
>> >> >> >> >> > I am writing a KMDF driver for a USB device that is remote
>> >> >> >> >> > wakeup
>> >> >> >> >> > capable.
>> >> >> >> >> > But EvtDeviceArmWakeFromSx is never called when I go to
>> >> >> >> >> > standby.
>> >> >> >> >> > I
>> >> >> >> >> > have
>> >> >> >> >> > registered
>> >> >> >> >> >
>> >> >> >> >> > EvtDeviceArmWakeFromS0, EvtDeviceDisarmWakeFromS0 ,
>> >> >> >> >> > EvtDeviceWakeFromS0Triggered, EvtDeviceArmWakeFromSx
>> >> >> >> >> > ,EvtDeviceDisarmWakeFromSx , EvtDeviceWakeFromSxTriggered
>> >> >> >> >> >
>> >> >> >> >> > Also another thing I noticed is I see the power management
>> >> >> >> >> > tab
>> >> >> >> >> > in
>> >> >> >> >> > the
>> >> >> >> >> > Device
>> >> >> >> >> > Manager, but there are no registry entries created to
>> >> >> >> >> > reflect
>> >> >> >> >> > this.
>> >> >> >> >> >
>> >> >> >> >> > What should I do to get EvtDeviceArmWakeFromSx called?
>> >> >> >> >> >
>> >> >> >> >> > Regards
>> >> >> >> >> > Sumithra
>> >> >> >> >>
>> >> >> >> >>
>> >> >> >> >>
>> >> >> >>
>> >> >> >>
>> >> >> >>
>> >> >>
>> >> >>
>> >> >>
>> >>
>> >>
>> >>
>>
>>
>>