mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
658 lines
14 KiB
658 lines
14 KiB
/*++
|
|
|
|
Copyright (c) 1993 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
init.c
|
|
|
|
Abstract:
|
|
|
|
This module contains code for the initialization phase of the
|
|
Midi Synthesiser device
|
|
|
|
Author:
|
|
|
|
Geraint Davies
|
|
|
|
Environment:
|
|
|
|
Kernel mode
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#include "sound.h"
|
|
#include "string.h"
|
|
#include "stdlib.h"
|
|
|
|
//
|
|
// Local definitions
|
|
//
|
|
BOOLEAN
|
|
SoundExcludeRoutine(
|
|
IN OUT PLOCAL_DEVICE_INFO pLDI,
|
|
IN SOUND_EXCLUDE_CODE Code
|
|
);
|
|
NTSTATUS
|
|
DriverEntry(
|
|
IN PDRIVER_OBJECT pDriverObject,
|
|
IN PUNICODE_STRING RegistryPathName
|
|
);
|
|
VOID
|
|
SoundCleanup(
|
|
IN PGLOBAL_DEVICE_INFO pGDI
|
|
);
|
|
VOID SoundUnload(
|
|
IN PDRIVER_OBJECT pDriverObject
|
|
);
|
|
|
|
//
|
|
// Remove initialization stuff from resident memory
|
|
//
|
|
|
|
#ifdef ALLOC_PRAGMA
|
|
#pragma alloc_text(INIT,DriverEntry)
|
|
#endif
|
|
|
|
//
|
|
// Device initialization data
|
|
//
|
|
|
|
SOUND_DEVICE_INIT DeviceInit[NumberOfDevices] =
|
|
{
|
|
{
|
|
REG_VALUENAME_LEFTSYNTH, REG_VALUENAME_RIGHTSYNTH,
|
|
DEF_SYNTH_VOLUME,
|
|
FILE_DEVICE_MIDI_OUT,
|
|
MIDI_OUT,
|
|
"LDMo",
|
|
STR_ADLIB_DEVICENAME,
|
|
NULL,
|
|
SoundExcludeRoutine,
|
|
SoundMidiDispatch, // Handles CREATE, CLOSE and WRITE
|
|
NULL, // Low level driver takes care of caps
|
|
SoundNoVolume,
|
|
0
|
|
},
|
|
{
|
|
REG_VALUENAME_LEFTSYNTH, REG_VALUENAME_RIGHTSYNTH,
|
|
DEF_SYNTH_VOLUME,
|
|
FILE_DEVICE_MIDI_OUT,
|
|
MIDI_OUT,
|
|
"LDMo",
|
|
STR_OPL3_DEVICENAME,
|
|
NULL,
|
|
SoundExcludeRoutine,
|
|
SoundMidiDispatch, // Handles CREATE, CLOSE and WRITE
|
|
NULL, // Low level driver takes care of caps
|
|
SoundNoVolume,
|
|
0
|
|
}
|
|
};
|
|
|
|
|
|
NTSTATUS
|
|
SoundShutdown(
|
|
IN PDEVICE_OBJECT pDO,
|
|
IN PIRP pIrp
|
|
)
|
|
/*++
|
|
|
|
Routine Description:
|
|
|
|
Save away volume settings when the system is shut down
|
|
|
|
Arguments:
|
|
|
|
pDO - the device object we registered for shutdown with
|
|
pIrp - No used
|
|
|
|
Return Value:
|
|
|
|
The function value is the final status from the initialization operation.
|
|
Here STATUS_SUCCESS
|
|
|
|
--*/
|
|
{
|
|
//
|
|
// Save volume for all devices
|
|
//
|
|
|
|
PLOCAL_DEVICE_INFO pLDI;
|
|
|
|
pLDI = pDO->DeviceExtension;
|
|
|
|
SoundSaveVolume(pLDI->pGlobalInfo);
|
|
|
|
return STATUS_SUCCESS;
|
|
}
|
|
|
|
|
|
BOOLEAN
|
|
SoundExcludeRoutine(
|
|
IN OUT PLOCAL_DEVICE_INFO pLDI,
|
|
IN SOUND_EXCLUDE_CODE Code
|
|
)
|
|
|
|
/*++
|
|
|
|
Routine Description:
|
|
|
|
Perform mutual exclusion for our devices
|
|
|
|
Arguments:
|
|
|
|
pLDI - device info for the device being open, closed, entered or left
|
|
Code - Function to perform (see devices.h)
|
|
|
|
Return Value:
|
|
|
|
The function value is the final status from the initialization operation.
|
|
|
|
--*/
|
|
{
|
|
PGLOBAL_DEVICE_INFO pGDI;
|
|
BOOLEAN ReturnCode;
|
|
|
|
pGDI = pLDI->pGlobalInfo;
|
|
|
|
ReturnCode = FALSE;
|
|
|
|
switch (Code) {
|
|
case SoundExcludeOpen:
|
|
if (pGDI->DeviceInUse == 0xFF) {
|
|
pGDI->DeviceInUse = pLDI->DeviceIndex;
|
|
ReturnCode = TRUE;
|
|
}
|
|
break;
|
|
|
|
case SoundExcludeClose:
|
|
|
|
ReturnCode = TRUE;
|
|
ASSERT(pGDI->DeviceInUse == pLDI->DeviceIndex);
|
|
pGDI->DeviceInUse = 0xFF;
|
|
break;
|
|
|
|
|
|
case SoundExcludeEnter:
|
|
|
|
ReturnCode = TRUE;
|
|
|
|
KeWaitForSingleObject(&pGDI->MidiMutex,
|
|
Executive,
|
|
KernelMode,
|
|
FALSE, // Not alertable
|
|
NULL);
|
|
|
|
break;
|
|
|
|
case SoundExcludeLeave:
|
|
|
|
ReturnCode = TRUE;
|
|
|
|
KeReleaseMutex(&pGDI->MidiMutex, FALSE);
|
|
break;
|
|
|
|
case SoundExcludeQueryOpen:
|
|
ReturnCode = pGDI->DeviceInUse == pLDI->DeviceIndex;
|
|
break;
|
|
|
|
}
|
|
|
|
return ReturnCode;
|
|
}
|
|
|
|
|
|
NTSTATUS
|
|
DriverEntry(
|
|
IN PDRIVER_OBJECT pDriverObject,
|
|
IN PUNICODE_STRING RegistryPathName
|
|
)
|
|
|
|
/*++
|
|
|
|
Routine Description:
|
|
|
|
This routine performs initialization for the sound system
|
|
device driver when it is first loaded.
|
|
|
|
It is called DriverEntry by convention as this is the entry
|
|
point the IO subsystem looks for by default.
|
|
|
|
The design is as follows :
|
|
|
|
0. Cleanup is always by calling SoundCleanup. This routine
|
|
is also called by the unload entry point.
|
|
|
|
1. Find which bus our device is on (this is needed for
|
|
mapping things via the Hal).
|
|
|
|
1. Allocate space to store our global info
|
|
|
|
1. Open the driver's registry information and read it
|
|
|
|
2. Fill in the driver object with our routines
|
|
|
|
3. Create device
|
|
|
|
Currently, one device only is created -
|
|
1. Midi output
|
|
|
|
Customize each device type and initialize data
|
|
|
|
Also store the registry string in our global info so we can
|
|
open it again to store volume settings etc on shutdown
|
|
|
|
4. Check hardware conflicts by calling IoReportResourceUsage
|
|
for each device (as required)
|
|
(this may need to be called again later if
|
|
|
|
5. Find our IO port and check the device is really there
|
|
|
|
|
|
Arguments:
|
|
|
|
pDriverObject - Pointer to a driver object.
|
|
RegistryPathName - the path to our driver services node
|
|
|
|
Return Value:
|
|
|
|
The function value is the final status from the initialization operation.
|
|
|
|
--*/
|
|
|
|
{
|
|
/********************************************************************
|
|
*
|
|
* Local variables
|
|
*
|
|
********************************************************************/
|
|
|
|
//
|
|
// Return code from last function called
|
|
//
|
|
|
|
NTSTATUS Status;
|
|
|
|
//
|
|
// Configuration data :
|
|
//
|
|
|
|
SOUND_CONFIG_DATA ConfigData;
|
|
|
|
//
|
|
// Where we keep all general driver information
|
|
// We avoid using static data because :
|
|
// 1. Accesses are slower with 32-bit offsets
|
|
// 2. If we supported more than one card with the same driver
|
|
// we could not use static data
|
|
//
|
|
|
|
PGLOBAL_DEVICE_INFO pGDI;
|
|
|
|
/********************************************************************
|
|
*
|
|
* Initialize debugging
|
|
*
|
|
********************************************************************/
|
|
#if DBG
|
|
DriverName = "SYNTH";
|
|
#endif
|
|
|
|
|
|
#if DBG
|
|
if (SoundDebugLevel >= 4) {
|
|
DbgBreakPoint();
|
|
}
|
|
#endif
|
|
|
|
/********************************************************************
|
|
*
|
|
* Allocate our global info
|
|
*
|
|
********************************************************************/
|
|
|
|
pGDI =
|
|
(PGLOBAL_DEVICE_INFO)ExAllocatePool(
|
|
NonPagedPool,
|
|
sizeof(GLOBAL_DEVICE_INFO));
|
|
|
|
|
|
if (pGDI == NULL) {
|
|
return STATUS_INSUFFICIENT_RESOURCES;
|
|
}
|
|
|
|
dprintf4((" GlobalInfo : %08lXH", pGDI));
|
|
RtlZeroMemory(pGDI, sizeof(GLOBAL_DEVICE_INFO));
|
|
pGDI->Key = GDI_KEY;
|
|
|
|
pGDI->DriverObject = pDriverObject;
|
|
|
|
//
|
|
// Initialize some of the device global info.
|
|
//
|
|
|
|
pGDI->DeviceInUse = 0xFF; // Free
|
|
|
|
KeInitializeMutex(&pGDI->MidiMutex,
|
|
1 // Level
|
|
);
|
|
|
|
|
|
/********************************************************************
|
|
*
|
|
* See if we can find our bus. We run on both ISA and EISA
|
|
* We ASSUME that if there's an ISA bus we're on that
|
|
*
|
|
********************************************************************/
|
|
|
|
Status = SoundGetBusNumber(Isa, &pGDI->BusNumber);
|
|
|
|
if (!NT_SUCCESS(Status)) {
|
|
//
|
|
// Cound not find an ISA bus so try EISA
|
|
//
|
|
Status = SoundGetBusNumber(Eisa, &pGDI->BusNumber);
|
|
|
|
if (!NT_SUCCESS(Status)) {
|
|
|
|
Status = SoundGetBusNumber(MicroChannel, &pGDI->BusNumber);
|
|
|
|
if (!NT_SUCCESS(Status)) {
|
|
dprintf1(("driver does not work on non-Isa/Eisa/Mca"));
|
|
SoundCleanup(pGDI);
|
|
return Status;
|
|
}
|
|
pGDI->BusType = MicroChannel;
|
|
|
|
} else {
|
|
pGDI->BusType = Eisa;
|
|
}
|
|
} else {
|
|
pGDI->BusType = Isa;
|
|
}
|
|
|
|
|
|
/********************************************************************
|
|
*
|
|
* Save our registry path. This is needed to save volume settings
|
|
* into the registry on shutdown. We append the parameters subkey
|
|
* at this stage to make things easier (since we discard this code).
|
|
*
|
|
********************************************************************/
|
|
|
|
Status = SoundSaveRegistryPath(RegistryPathName, &pGDI->RegistryPathName);
|
|
if (!NT_SUCCESS(Status)) {
|
|
SoundCleanup(pGDI);
|
|
return STATUS_INSUFFICIENT_RESOURCES;
|
|
}
|
|
|
|
|
|
//
|
|
// Set configuration to default in case we don't get all the
|
|
// values back from the registry.
|
|
//
|
|
// Also set default volume for all devices
|
|
//
|
|
|
|
{
|
|
int i;
|
|
for (i = 0; i < NumberOfDevices ; i++) {
|
|
ConfigData.Volume[i].Left =
|
|
DeviceInit[i].DefaultVolume;
|
|
ConfigData.Volume[i].Right =
|
|
DeviceInit[i].DefaultVolume;
|
|
}
|
|
}
|
|
|
|
//
|
|
// Get the system configuration information for this driver:
|
|
//
|
|
//
|
|
// Volume settings
|
|
//
|
|
|
|
{
|
|
RTL_QUERY_REGISTRY_TABLE Table[2];
|
|
|
|
RtlZeroMemory(Table, sizeof(Table));
|
|
|
|
Table[0].QueryRoutine = SoundReadConfiguration;
|
|
|
|
Status = RtlQueryRegistryValues(
|
|
RTL_REGISTRY_ABSOLUTE,
|
|
pGDI->RegistryPathName,
|
|
Table,
|
|
&ConfigData,
|
|
NULL);
|
|
|
|
// all we read is volume - not important if fails.
|
|
// if (!NT_SUCCESS(Status)) {
|
|
// SoundCleanup(pGDI);
|
|
// return Status;
|
|
// }
|
|
|
|
}
|
|
|
|
//
|
|
// Check the synthesizer config
|
|
// safe to do this before creating devices as the resource usage
|
|
// is reported by the driver object, not the device object.
|
|
//
|
|
//
|
|
Status = SoundSynthPortValid(pGDI);
|
|
|
|
if (!NT_SUCCESS(Status)) {
|
|
dprintf1(("Problem finding synthesizer hardware!"));
|
|
SoundCleanup(pGDI);
|
|
return Status;
|
|
}
|
|
|
|
|
|
//
|
|
// Create our devices
|
|
//
|
|
{
|
|
int i;
|
|
|
|
for (i = 0; i < NumberOfDevices ; i++) {
|
|
|
|
if (i == Opl3Device) {
|
|
//
|
|
// only create the Opl3 device if there is
|
|
// a new (opl3-compatible) synthesizer chip
|
|
if (!SoundMidiIsOpl3(&pGDI->Hw)) {
|
|
continue;
|
|
}
|
|
}
|
|
|
|
Status = SoundCreateDevice(
|
|
&DeviceInit[i],
|
|
SOUND_CREATION_NO_NAME_RANGE, // No range for midi out
|
|
pDriverObject,
|
|
pGDI,
|
|
NULL,
|
|
&pGDI->Hw,
|
|
i,
|
|
&pGDI->DeviceObject[i]);
|
|
|
|
if (!NT_SUCCESS(Status)) {
|
|
dprintf1(("Failed to create device %ls - status %8X",
|
|
DeviceInit[i].PrototypeName, Status));
|
|
SoundCleanup(pGDI);
|
|
return Status;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
//
|
|
// Say we want to be called at shutdown time
|
|
//
|
|
|
|
IoRegisterShutdownNotification(pGDI->DeviceObject[AdlibDevice]);
|
|
|
|
|
|
SoundMidiQuiet(AdlibDevice, &pGDI->Hw);
|
|
|
|
|
|
|
|
//
|
|
// Initialize volume settings in hardware
|
|
//
|
|
|
|
{
|
|
int i;
|
|
for (i = 0; i < NumberOfDevices; i++) {
|
|
PLOCAL_DEVICE_INFO pLDI;
|
|
|
|
if (pGDI->DeviceObject[i]) {
|
|
pLDI = pGDI->DeviceObject[i]->DeviceExtension;
|
|
|
|
pLDI->Volume = ConfigData.Volume[i];
|
|
|
|
(*pLDI->DeviceInit->HwSetVolume)(pLDI);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
//
|
|
// Initialize the driver object dispatch table.
|
|
//
|
|
|
|
pDriverObject->DriverUnload = SoundUnload;
|
|
pDriverObject->MajorFunction[IRP_MJ_CREATE] = SoundDispatch;
|
|
pDriverObject->MajorFunction[IRP_MJ_CLOSE] = SoundDispatch;
|
|
pDriverObject->MajorFunction[IRP_MJ_DEVICE_CONTROL] = SoundDispatch;
|
|
pDriverObject->MajorFunction[IRP_MJ_READ] = SoundDispatch;
|
|
pDriverObject->MajorFunction[IRP_MJ_WRITE] = SoundDispatch;
|
|
pDriverObject->MajorFunction[IRP_MJ_CLEANUP] = SoundDispatch;
|
|
pDriverObject->MajorFunction[IRP_MJ_SHUTDOWN] = SoundShutdown;
|
|
|
|
|
|
return STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
VOID
|
|
SoundCleanup(
|
|
IN PGLOBAL_DEVICE_INFO pGDI
|
|
)
|
|
|
|
/*++
|
|
|
|
Routine Description:
|
|
|
|
Clean up all resources allocated by our initialization
|
|
|
|
Arguments:
|
|
|
|
pGDI - Pointer to global data
|
|
|
|
Return Value:
|
|
|
|
NONE
|
|
|
|
--*/
|
|
|
|
{
|
|
//
|
|
// Unreport the driver's resources - we have to do this because
|
|
// we may not have any devices at this point
|
|
//
|
|
|
|
{
|
|
BOOLEAN ResourceConflict;
|
|
CM_RESOURCE_LIST NullResourceList;
|
|
NullResourceList.Count = 0;
|
|
|
|
IoReportResourceUsage(NULL,
|
|
pGDI->DriverObject,
|
|
&NullResourceList,
|
|
sizeof(ULONG),
|
|
NULL,
|
|
NULL,
|
|
0,
|
|
FALSE,
|
|
&ResourceConflict);
|
|
}
|
|
|
|
if (pGDI->DeviceObject[AdlibDevice]) {
|
|
PDRIVER_OBJECT DriverObject;
|
|
|
|
IoUnregisterShutdownNotification(pGDI->DeviceObject[AdlibDevice]);
|
|
|
|
|
|
DriverObject = pGDI->DeviceObject[AdlibDevice]->DriverObject;
|
|
|
|
// delete the devices we created
|
|
while (DriverObject->DeviceObject != NULL) {
|
|
//
|
|
// Undeclare resources used by device and
|
|
// delete the device object and associated data
|
|
//
|
|
|
|
// one side-effect of freeing a device is that the
|
|
// DriverObject->DeviceObject pointer will be updated
|
|
// to point to the next remaining device object.
|
|
|
|
SoundFreeDevice(DriverObject->DeviceObject);
|
|
}
|
|
}
|
|
|
|
if (pGDI->Hw.SynthBase && pGDI->MemType == 0) {
|
|
MmUnmapIoSpace(pGDI->Hw.SynthBase, NUMBER_OF_SYNTH_PORTS);
|
|
}
|
|
|
|
//
|
|
// Free device name
|
|
//
|
|
|
|
if (pGDI->RegistryPathName) {
|
|
ExFreePool(pGDI->RegistryPathName);
|
|
}
|
|
|
|
ExFreePool(pGDI);
|
|
}
|
|
|
|
|
|
VOID
|
|
SoundUnload(
|
|
IN OUT PDRIVER_OBJECT pDriverObject
|
|
)
|
|
{
|
|
PGLOBAL_DEVICE_INFO pGDI;
|
|
|
|
dprintf3(("Unload request"));
|
|
|
|
//
|
|
// Find our global data
|
|
//
|
|
|
|
pGDI = ((PLOCAL_DEVICE_INFO)pDriverObject->DeviceObject->DeviceExtension)
|
|
->pGlobalInfo;
|
|
|
|
//
|
|
// Write out volume settings
|
|
//
|
|
|
|
SoundSaveVolume(pGDI);
|
|
|
|
//
|
|
// Assume all handles (and therefore interrupts etc) are closed down
|
|
//
|
|
|
|
//
|
|
// Delete the things we allocated - devices, Interrupt objects,
|
|
// adapter objects. The driver object has a chain of devices
|
|
// across it.
|
|
//
|
|
|
|
SoundCleanup(pGDI);
|
|
|
|
}
|