亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? isopwr.c

?? 嵌入式系統(tǒng)的USB驅(qū)動(dòng)(S3C2410)
?? C
?? 第 1 頁 / 共 3 頁
字號:
/*++

Copyright (c) 1997-1998  Microsoft Corporation

Module Name:

    IsoPwr.c 

Abstract:

    Isochronous USB device driver for Intel 82930 USB test board
    Power Management module


Environment:

    kernel mode only

Notes:

  THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR
  PURPOSE.

  Copyright (c) 1997-1998 Microsoft Corporation.  All Rights Reserved.


Revision History:

    2/8/98: created

--*/


#include "wdm.h"
#include "stdarg.h"
#include "stdio.h"

#include "usbdi.h"
#include "usbdlib.h"
#include "Iso82930.h"


NTSTATUS
IsoUsb_ProcessPowerIrp(
    IN PDEVICE_OBJECT DeviceObject,
    IN PIRP           Irp
    )
/*++

Routine Description:

    This is our FDO's dispatch table function for IRP_MJ_POWER.
    It processes the Power IRPs sent to the PDO for this device.

    For every power IRP, drivers must call PoStartNextPowerIrp and use PoCallDriver
    to pass the IRP all the way down the driver stack to the underlying PDO.


Arguments:

    DeviceObject - pointer to our device object (FDO)

    Irp          - pointer to an I/O Request Packet

Return Value:

    NT status code

--*/
{

    PIO_STACK_LOCATION irpStack;
    NTSTATUS ntStatus = STATUS_SUCCESS;
    PDEVICE_EXTENSION deviceExtension;
    BOOLEAN fGoingToD0 = FALSE;
    POWER_STATE sysPowerState, desiredDevicePowerState;
    KEVENT event;

    ISOUSB_KdPrint( DBGLVL_MEDIUM,(" IsoUsb_ProcessPowerIrp() IRP_MJ_POWER\n"));

    deviceExtension = (PDEVICE_EXTENSION) DeviceObject->DeviceExtension;
    irpStack = IoGetCurrentIrpStackLocation (Irp);
    IsoUsb_IncrementIoCount(DeviceObject);

    switch (irpStack->MinorFunction) {
    case IRP_MN_WAIT_WAKE:
        ISOUSB_KdPrint( DBGLVL_MEDIUM,("IsoUsb_ProcessPowerIrp() Enter IRP_MN_WAIT_WAKE\n"));

		// A driver sends IRP_MN_WAIT_WAKE to indicate that the system should 
		// wait for its device to signal a wake event. The exact nature of the event
		// is device-dependent. 
		// Drivers send this IRP for two reasons: 
		// 1) To allow a device to wake the system
		// 2) To wake a device that has been put into a sleep state to save power
		//    but still must be able to communicate with its driver under certain circumstances. 
		// When a wake event occurs, the driver completes the IRP and returns 
		// STATUS_SUCCESS. If the device is sleeping when the event occurs, 
		// the driver must first wake up the device before completing the IRP. 
		// In a completion routine, the driver calls PoRequestPowerIrp to send a 
		// PowerDeviceD0 request. When the device has powered up, the driver can 
		//  handle the IRP_MN_WAIT_WAKE request.

        // deviceExtension->DeviceCapabilities.DeviceWake specifies the lowest device power state (least powered)
        // from which the device can signal a wake event 
        deviceExtension->PowerDownLevel = deviceExtension->DeviceCapabilities.DeviceWake;


        if  ( ( PowerDeviceD0 == deviceExtension->CurrentDevicePowerState )  ||
              ( deviceExtension->DeviceCapabilities.DeviceWake > deviceExtension->CurrentDevicePowerState ) ) {
			//
			//    STATUS_INVALID_DEVICE_STATE is returned if the device in the PowerD0 state
			//    or a state below which it can support waking, or if the SystemWake state
			//    is below a state which can be supported. A pending IRP_MN_WAIT_WAKE will complete
			//    with this error if the device's state is changed to be incompatible with the wake 
			//    request.

            //  If a driver fails this IRP, it should complete the IRP immediately without
            //  passing the IRP to the next-lower driver.
            ntStatus = STATUS_INVALID_DEVICE_STATE;
            Irp->IoStatus.Status = ntStatus;
            IoCompleteRequest (Irp,IO_NO_INCREMENT );
            ISOUSB_KdPrint( DBGLVL_HIGH, ( "Exit IsoUsb_ProcessPowerIrp(), ntStatus STATUS_INVALID_DEVICE_STATE\n" ) );
            IsoUsb_DecrementIoCount(DeviceObject);
            return ntStatus;
        }

        // flag we're enabled for wakeup
        deviceExtension->EnabledForWakeup = TRUE;

        // init an event for our completion routine to signal when PDO is done with this Irp
        KeInitializeEvent(&event, NotificationEvent, FALSE);

       // If not failing outright, pass this on to our PDO for further handling
        IoCopyCurrentIrpStackLocationToNext(Irp);

        // Set a completion routine so it can signal our event when
        //  the PDO is done with the Irp
        IoSetCompletionRoutine(Irp,
                               IsoUsb_IrpCompletionRoutine,
                               &event,  // pass the event to the completion routine as the Context
                               TRUE,    // invoke on success
                               TRUE,    // invoke on error
                               TRUE);   // invoke on cancellation

        PoStartNextPowerIrp(Irp);
        ntStatus = PoCallDriver(deviceExtension->TopOfStackDeviceObject,
                                Irp);

         // if PDO is not done yet, wait for the event to be set in our completion routine
        if (ntStatus == STATUS_PENDING) {
             // wait for irp to complete

            NTSTATUS waitStatus = KeWaitForSingleObject(
                &event,
                Suspended,
                KernelMode,
                FALSE,
                NULL);

            ISOUSB_KdPrint( DBGLVL_MEDIUM,("IsoUsb_ProcessPowerIrp() done waiting for PDO to finish IRP_MN_WAIT_WAKE\n"));
        }

		// now tell the device to actually wake up
		IsoUsb_SelfSuspendOrActivate( DeviceObject, FALSE );

        // flag we're done with wakeup irp
        deviceExtension->EnabledForWakeup = FALSE;

        IsoUsb_DecrementIoCount(DeviceObject);

        ISOUSB_KdPrint( DBGLVL_MEDIUM,("IsoUsb_ProcessPowerIrp() Exit IRP_MN_WAIT_WAKE\n"));
        break;

    case IRP_MN_SET_POWER:
        {

		// The system power policy manager sends this IRP to set the system power state. 
		// A device power policy manager sends this IRP to set the device power state for a device.

        ISOUSB_KdPrint( DBGLVL_MEDIUM,("IsoUsb_ProcessPowerIrp() Enter IRP_MN_SET_POWER\n"));

        // Set Irp->IoStatus.Status to STATUS_SUCCESS to indicate that the device
        // has entered the requested state. Drivers cannot fail this IRP.

        switch (irpStack->Parameters.Power.Type) {
            case SystemPowerState:

                // Get input system power state
                sysPowerState.SystemState = irpStack->Parameters.Power.State.SystemState;

                ISOUSB_KdPrint( DBGLVL_MEDIUM,("IsoUsb_ProcessPowerIrp() Set Power, type SystemPowerState = %s\n",
                    ISOUSB_StringForSysState( sysPowerState.SystemState ) ));

                // If system is in working state always set our device to D0
                //  regardless of the wait state or system-to-device state power map
                if ( sysPowerState.SystemState ==  PowerSystemWorking) {
                    desiredDevicePowerState.DeviceState = PowerDeviceD0;

                     ISOUSB_KdPrint( DBGLVL_MEDIUM,("IsoUsb_ProcessPowerIrp() PowerSystemWorking, will set D0, not use state map\n"));


                } else {
                     // set to corresponding system state if IRP_MN_WAIT_WAKE pending
                    if ( deviceExtension->EnabledForWakeup ) { // got a WAIT_WAKE IRP pending?

                        // Find the device power state equivalent to the given system state.
                        // We get this info from the DEVICE_CAPABILITIES struct in our device
                        // extension (initialized in IsoUsb_PnPAddDevice() )
                        desiredDevicePowerState.DeviceState =
                            deviceExtension->DeviceCapabilities.DeviceState[ sysPowerState.SystemState ];

                        ISOUSB_KdPrint( DBGLVL_MEDIUM,("IsoUsb_ProcessPowerIrp() IRP_MN_WAIT_WAKE pending, will use state map\n"));

                    } else {  
                        // if no wait pending and the system's not in working state, just turn off
                        desiredDevicePowerState.DeviceState = PowerDeviceD3;

                        ISOUSB_KdPrint( DBGLVL_MEDIUM,("IsoUsb_ProcessPowerIrp() Not EnabledForWakeup and the system's not in working state,\n  settting PowerDeviceD3 (off )\n"));
                    }
                }

                //
                // We've determined the desired device state; are we already in this state?
                //

                ISOUSB_KdPrint( DBGLVL_MEDIUM,("IsoUsb_ProcessPowerIrp() Set Power, desiredDevicePowerState = %s\n",
                    ISOUSB_StringForDevState( desiredDevicePowerState.DeviceState ) ));

                if (desiredDevicePowerState.DeviceState !=
                    deviceExtension->CurrentDevicePowerState) {


                    // No, request that we be put into this state
					// by requesting a new Power Irp from the Pnp manager
                    deviceExtension->PowerIrp = Irp;
                    ntStatus = PoRequestPowerIrp(deviceExtension->PhysicalDeviceObject,
                                               IRP_MN_SET_POWER,
                                               desiredDevicePowerState,
											   // completion routine will pass the Irp down to the PDO
                                               IsoUsb_PoRequestCompletion, 
                                               DeviceObject,
                                               NULL);

                } else {
                    // Yes, just pass it on to PDO (Physical Device Object)
                    IoCopyCurrentIrpStackLocationToNext(Irp);
                    PoStartNextPowerIrp(Irp);
                    ntStatus = PoCallDriver(deviceExtension->TopOfStackDeviceObject,
                                            Irp);

                    IsoUsb_DecrementIoCount(DeviceObject);
                    ISOUSB_KdPrint( DBGLVL_MEDIUM,("IsoUsb_ProcessPowerIrp() Exit IRP_MN_SET_POWER\n"));

                }
                break;

            case DevicePowerState:

                ISOUSB_KdPrint( DBGLVL_MEDIUM,("IsoUsb_ProcessPowerIrp() Set Power, type DevicePowerState = %s\n",
                    ISOUSB_StringForDevState( irpStack->Parameters.Power.State.DeviceState ) ));

                // For requests to D1, D2, or D3 ( sleep or off states ),
				// sets deviceExtension->CurrentDevicePowerState to DeviceState immediately.
				// This enables any code checking state to consider us as sleeping or off
				// already, as this will imminently become our state.

                // For requests to DeviceState D0 ( fully on ), sets fGoingToD0 flag TRUE
                // to flag that we must set a completion routine and update
				// deviceExtension->CurrentDevicePowerState there.
				// In the case of powering up to fully on, we really want to make sure
				// the process is completed before updating our CurrentDevicePowerState,
				// so no IO will be attempted or accepted before we're really ready.

                fGoingToD0 = IsoUsb_SetDevicePowerState(DeviceObject,
                                                      irpStack->Parameters.Power.State.DeviceState
                                                      ); // returns TRUE for D0

                IoCopyCurrentIrpStackLocationToNext(Irp);

                if (fGoingToD0) {
                    ISOUSB_KdPrint( DBGLVL_MEDIUM,("IsoUsb_ProcessPowerIrp() Set PowerIrp Completion Routine, fGoingToD0 =%d\n", fGoingToD0));
                    IoSetCompletionRoutine(Irp,
                           IsoUsb_PowerIrp_Complete,
                           // Always pass FDO to completion routine as its Context;
                           // This is because the DriverObject passed by the system to the routine
                           // is the Physical Device Object ( PDO ) not the Functional Device Object ( FDO )
                           DeviceObject,
                           TRUE,            // invoke on success
                           TRUE,            // invoke on error
                           TRUE);           // invoke on cancellation of the Irp
                }

                PoStartNextPowerIrp(Irp);
                ntStatus = PoCallDriver(deviceExtension->TopOfStackDeviceObject,
                                        Irp);

                if ( !fGoingToD0 ) // completion routine will decrement
                    IsoUsb_DecrementIoCount(DeviceObject);

                ISOUSB_KdPrint( DBGLVL_MEDIUM,("IsoUsb_ProcessPowerIrp() Exit IRP_MN_SET_POWER\n"));
                break;
            } /* case irpStack->Parameters.Power.Type */

        }
        break; /* IRP_MN_SET_POWER */

    case IRP_MN_QUERY_POWER:
		//
		// A power policy manager sends this IRP to determine whether it can change
		// the system or device power state, typically to go to sleep.
		//

        ISOUSB_KdPrint( DBGLVL_MEDIUM,("IsoUsb_ProcessPowerIrp() IRP_MN_QUERY_POWER\n"));

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
一区精品在线播放| 欧美成人免费网站| 美女被吸乳得到大胸91| 久久先锋影音av| 欧美日韩不卡视频| 91啪亚洲精品| 精品一区二区在线播放| 亚洲免费看黄网站| 亚洲精品一区二区三区四区高清 | 国产精品国产三级国产aⅴ无密码| 欧美日韩一区久久| 成人黄色软件下载| 国产一区在线视频| 亚洲第一主播视频| 亚洲欧美aⅴ...| 亚洲国产精品v| 91精品在线免费| 欧美综合天天夜夜久久| 99精品久久只有精品| 欧美激情中文不卡| av成人动漫在线观看| 成人国产视频在线观看| 久久久91精品国产一区二区三区| 亚洲成人激情社区| 久久这里只有精品视频网| 奇米精品一区二区三区在线观看 | 国产麻豆成人精品| 国产精品电影一区二区| 综合婷婷亚洲小说| 欧美日韩三级一区二区| 亚洲午夜在线电影| 精品第一国产综合精品aⅴ| 激情偷乱视频一区二区三区| 在线电影院国产精品| 日韩精彩视频在线观看| 日韩视频一区在线观看| 午夜精品久久一牛影视| 日本强好片久久久久久aaa| 日韩一区二区三区四区| 黄页视频在线91| 亚洲免费观看在线视频| 精品1区2区在线观看| 国产精品一区二区无线| 久久影视一区二区| 欧美中文字幕一区| 精品对白一区国产伦| 91精品国产欧美一区二区成人| 亚洲国产精品久久久久婷婷884 | 日韩欧美一二三四区| 91麻豆产精品久久久久久| 在线看国产日韩| 久久欧美中文字幕| 一区二区三区日韩欧美精品| 国产精品污网站| 精品久久久久久亚洲综合网| 国产精品久久久爽爽爽麻豆色哟哟 | 国产精品久线在线观看| 91在线云播放| 美女视频一区二区三区| 国内成人精品2018免费看| 韩国三级在线一区| 一区二区三区精品在线| 久久久久国产一区二区三区四区| 久久色在线观看| 亚洲婷婷综合久久一本伊一区 | 欧美精品在线观看播放| 欧美一区二区三区四区久久| 精品久久久久久亚洲综合网| 国产亚洲精品7777| 一区二区三区中文在线观看| 亚洲精品视频在线看| 日本不卡在线视频| 风间由美中文字幕在线看视频国产欧美| 91美女在线观看| 亚洲精品日产精品乱码不卡| 婷婷开心激情综合| 一区av在线播放| 亚洲一区二区三区四区五区黄| ...av二区三区久久精品| 亚洲色图在线视频| 国产精品18久久久久久久久| 成人性生交大片免费看中文| 欧美日韩在线一区二区| 欧美日韩一级大片网址| 99久久精品免费看| 欧美一区二区三区不卡| 9191成人精品久久| 精品处破学生在线二十三| 亚洲免费在线看| 奇米精品一区二区三区在线观看| 国产一区二区三区最好精华液| 成人高清视频在线观看| 91麻豆精品国产91久久久资源速度 | 欧美激情一区二区三区在线| 午夜精品福利久久久| 在线一区二区视频| 一区二区成人在线| 欧美日韩一级视频| 亚洲午夜电影在线| 欧美天堂一区二区三区| 亚洲一区视频在线| 欧美色成人综合| 美国毛片一区二区| 日韩欧美久久久| 国产电影精品久久禁18| 国产精品五月天| 高清视频一区二区| 亚洲色图另类专区| 欧美日韩美女一区二区| 三级亚洲高清视频| www一区二区| 99久久精品99国产精品 | 亚洲激情校园春色| 欧美三级欧美一级| 狠狠色综合播放一区二区| 中文字幕国产精品一区二区| 日韩有码一区二区三区| 26uuu国产电影一区二区| 国产91丝袜在线播放| 伊人一区二区三区| 日韩欧美电影在线| 久久这里只有精品视频网| 天天色综合天天| 国产午夜精品一区二区三区视频| 成人h动漫精品| 精品久久国产97色综合| 美国十次综合导航| 日本不卡中文字幕| 亚洲三级免费观看| 欧美亚洲国产一卡| 亚洲一区二区三区三| 69精品人人人人| 亚洲欧美日本韩国| 色播五月激情综合网| 日韩影院精彩在线| 亚洲日穴在线视频| 日韩欧美国产精品一区| 91麻豆国产在线观看| 国产xxx精品视频大全| 视频在线观看国产精品| 国产精品免费av| 精品欧美一区二区久久| 欧美欧美欧美欧美| 欧美三区免费完整视频在线观看| 成av人片一区二区| 国产成人亚洲综合a∨婷婷 | 亚洲高清免费观看| 亚洲人快播电影网| 一区二区三区四区视频精品免费| 久久亚洲综合色一区二区三区| 日韩一二三区视频| 91精品福利在线一区二区三区| 欧美日韩极品在线观看一区| 欧美性xxxxx极品少妇| 91久久久免费一区二区| 91美女在线观看| 欧美精品久久天天躁| 在线综合视频播放| 日韩一区二区三区av| 日韩一区二区电影| 国产色产综合色产在线视频| 国产精品区一区二区三| 亚洲欧洲av在线| 亚洲午夜电影网| 国产麻豆日韩欧美久久| 9色porny自拍视频一区二区| 欧美日韩视频在线观看一区二区三区| 欧美日韩免费视频| 26uuu久久天堂性欧美| 日韩一区有码在线| 图片区小说区国产精品视频| 国产麻豆午夜三级精品| youjizz国产精品| 日韩一区二区三区在线视频| 国产精品三级久久久久三级| 亚洲国产一二三| 国产精品18久久久久| 欧美三级中文字幕| 国产亚洲一区二区在线观看| 一区二区三区美女| 国产精品乡下勾搭老头1| 国产99久久久国产精品潘金 | 日韩国产高清在线| 日本不卡一区二区三区| 蜜臀久久久久久久| 色域天天综合网| 制服.丝袜.亚洲.另类.中文| 国产无一区二区| 亚洲三级理论片| 奇米四色…亚洲| 成人激情免费视频| 91免费国产视频网站| 久久蜜臀中文字幕| 国产美女精品一区二区三区| 欧美精品1区2区3区| 午夜av区久久| 欧美男生操女生| 亚洲综合另类小说| 欧洲精品在线观看| 亚洲成a人片综合在线|