Changeset 675
- Timestamp:
- Feb 15, 2021, 9:44:30 AM (4 years ago)
- Location:
- GPL/branches/uniaud32-next
- Files:
-
- 1 added
- 5 deleted
- 16 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified GPL/branches/uniaud32-next/drv32/Makefile ¶
r667 r675 55 55 56 56 FILES = begin.obj startup.obj strategy.obj read.obj init.obj parse.obj idc.obj & 57 dispatch.obj rmhelp.obj irq.obj util.objimpdos.lib impkee.lib end.obj57 dispatch.obj rmhelp.obj irq.obj impdos.lib impkee.lib end.obj 58 58 59 59 LIBS = $(ALSA_LIB)\linuxlib.lib $(ALSA_LIB)\core.lib $(ALSA_LIB)\ac97.lib $(ALSA_LIB)\pci.lib & -
TabularUnified GPL/branches/uniaud32-next/drv32/devown.h ¶
r32 r675 23 23 */ 24 24 25 26 extern WORD32 deviceOwner;27 extern WORD32 numOS2Opens;28 29 25 #define DEV_NO_OWNER 0 30 26 #define DEV_PDD_OWNER 1 //owner is still unknown -
TabularUnified GPL/branches/uniaud32-next/drv32/dispatch.c ¶
r598 r675 29 29 #include <dbgos2.h> 30 30 #include <devhelp.h> 31 #include <devtype.h>32 #include <strategy.h>33 #include "devown.h"34 31 #include <ossidc.h> 35 32 #include <ossidc32.h> 36 33 #include <version.h> 37 38 extern int cdecl printk(const char * fmt, ...); 39 //****************************************************************************** 40 // Dispatch IOCtl requests received from the Strategy routine 41 //****************************************************************************** 42 extern int GetUniaudCardInfo(ULONG deviceid, void *info); 43 extern int GetUniaudControlNum(ULONG deviceid); 44 extern int GetUniaudControls(ULONG deviceid, void *pids); 45 extern int GetUniaudControlInfo(ULONG deviceid, ULONG id, void *info); 46 extern int GetUniaudControlValueGet(ULONG deviceid, ULONG id, void *value); 47 extern int GetUniaudControlValuePut(ULONG deviceid, ULONG id, void *value); 48 extern int GetNumberOfPcm(int card_id); 49 extern int GetUniaudPcmCaps(ULONG deviceid, void *caps); 50 extern int SetPCMInstance(int card_id, int pcm); 51 extern int WaitForControlChange(int card_id, int timeout); 52 extern int GetNumberOfCards(void); 53 extern OSSRET OSS32_WaveOpen(ULONG deviceid, ULONG streamtype, OSSSTREAMID *pStreamId, int pcm, USHORT fileid); 54 extern OSSRET OSS32_WaveClose(OSSSTREAMID streamid); 55 extern int UniaudIoctlHWRefine(OSSSTREAMID streamid, void *pHwParams); 56 extern int UniaudIoctlHWParamSet(OSSSTREAMID streamid, void *pHwParams); 57 extern int UniaudIoctlSWParamSet(OSSSTREAMID streamid, void *pSwParams); 58 extern int UniaudIoctlPCMStatus(OSSSTREAMID streamid, void *pstatus); 59 extern int UniaudIoctlPCMWrite(OSSSTREAMID streamid, char *buf, int size); 60 extern int UniaudIoctlPCMRead(OSSSTREAMID streamid, char *buf, int size); 61 extern int UniaudIoctlPCMPrepare(OSSSTREAMID streamid); 62 extern int UniaudIoctlPCMStart(OSSSTREAMID streamid); 63 extern int UniaudIoctlPCMDrop(OSSSTREAMID streamid); 64 extern int UniaudIoctlPCMResume(OSSSTREAMID streamid, int pause); 65 extern void UniaudCloseAll(USHORT fileid); 66 extern int WaitForPCMInterrupt(void *file, int timeout); 67 extern int unlock_all; 68 extern int OSS32_CloseUNI16(void); 69 extern int UniaudCtlGetPowerState(ULONG deviceid, void *state); 70 extern int UniaudCtlSetPowerState(ULONG deviceid, void *state); 34 #include <u32ioctl.h> 35 #include "strategy.h" 71 36 72 37 typedef UCHAR LOCKHANDLE[12]; … … 87 52 ULONG StratIOCtl(REQPACKET __far* rp) 88 53 { 89 USHORT rc = 0; ;54 USHORT rc = 0; 90 55 LOCKHANDLE lhParm, lhData; 91 56 LINEAR linParm, linData; … … 588 553 return (rc); 589 554 } 590 591 //******************************************************************************592 // Dispatch Close requests received from the strategy routine593 //******************************************************************************594 ULONG StratClose(REQPACKET __far* rp)595 {596 // only called if device successfully opened597 // printk("strat close\n");598 numOS2Opens--;599 600 UniaudCloseAll(rp->open_close.usSysFileNum);601 602 if (numOS2Opens == 0) {603 deviceOwner = DEV_NO_OWNER;604 }605 return(RPDONE);606 }607 -
TabularUnified GPL/branches/uniaud32-next/drv32/idc.c ¶
r591 r675 28 28 #include <os2.h> 29 29 //DAZ } 30 #include <devtype.h>31 30 #include <devhelp.h> 32 //#include <strategy.h>33 31 #include <ossidc32.h> 34 32 #include <irqos2.h> 35 #include <stacktoflat.h>36 33 #include <dbgos2.h> 37 34 … … 39 36 IDC16_HANDLER idc16_PddHandler = 0; 40 37 extern int pcm_device; 41 WORD32OSS32IDC(ULONG cmd, PIDC32_PACKET pPacket);38 OSSRET OSS32IDC(ULONG cmd, PIDC32_PACKET pPacket); 42 39 43 40 //packet pointer must reference a structure on the stack -
TabularUnified GPL/branches/uniaud32-next/drv32/init.c ¶
r667 r675 30 30 // Device support 31 31 #include <devhelp.h> 32 #include <devtype.h>33 //DAZ #include <devrp.h>34 #include <strategy.h>35 #include "devown.h"36 32 #include <version.h> 37 33 #include <ossidc32.h> 38 34 #include <dbgos2.h> 39 #include <irqos2.h>40 35 #include <osspci.h> 41 36 #include <kee.h> 37 #include <malloc.h> 42 38 #include "parse.h" 43 #include "malloc.h"44 39 #include "sound/version.h" 40 #include "strategy.h" 45 41 46 42 const char ERR_ERROR[] = "ERROR: "; … … 228 224 WriteString(debugmsg, strlen(debugmsg)); 229 225 } 230 231 //get the current time (to force retrieval of GIS pointer)232 os2gettimemsec();233 226 234 227 char szMixerName[64]; -
TabularUnified GPL/branches/uniaud32-next/drv32/irq.c ¶
r604 r675 26 26 #include <os2.h> 27 27 28 #include <devtype.h>29 #include <devinfo.h>30 28 #include <devhelp.h> 31 29 #include <include.h> // Defn's for WatCom based drivers. -
TabularUnified GPL/branches/uniaud32-next/drv32/parse.c ¶
r607 r675 33 33 34 34 #include <devhelp.h> 35 #include <devtype.h> 36 #include <unicard.h> 35 #include <string.h> 37 36 #include "parse.h" // NUM_DEVICES 38 #include <string.h>39 37 40 38 #define COMM_DEBUG -
TabularUnified GPL/branches/uniaud32-next/drv32/read.c ¶
r587 r675 1 1 #define INCL_NOPMAPI 2 2 #include <os2.h> 3 #include <devhelp.h>4 #include <strategy.h>5 3 #include <dbgos2.h> 6 4 #include <string.h> // memcpy 5 #include "strategy.h" 7 6 8 7 int rdOffset= 0; -
TabularUnified GPL/branches/uniaud32-next/drv32/rmhelp.c ¶
r656 r675 14 14 15 15 #include <devhelp.h> 16 #include <devinfo.h>17 18 #include <rmbase.h> // Resource manager definitions.19 #include "rmcalls.h"20 #include <rmioctl.h>21 22 16 #include <version.h> 23 17 #include <dbgos2.h> 24 #include <unicard.h>25 18 #include <osspci.h> 26 19 #include <ossidc32.h> 20 #include <string.h> 21 #include "rmbase.h" // Resource manager definitions. 22 #include "rmcalls.h" 27 23 #include "pciids.h" 28 29 #include <string.h>30 24 31 25 #define MAX_RESHANDLES 16 -
TabularUnified GPL/branches/uniaud32-next/drv32/strategy.c ¶
r591 r675 29 29 30 30 #include <devhelp.h> 31 //DAZ #include <devrp.h>32 #include <devown.h>33 #include "strategy.h"34 31 #include <ossidc32.h> 35 32 #include <dbgos2.h> 36 33 #include <string.h> 34 #include <u32ioctl.h> 35 #include "devown.h" 36 #include "strategy.h" 37 37 38 38 ULONG StratRead(REQPACKET __far *_rp); 39 39 ULONG StratIOCtl(REQPACKET __far *_rp); 40 ULONG StratClose(REQPACKET __far *_rp);41 40 42 41 ULONG DiscardableInit(REQPACKET __far*); … … 54 53 } 55 54 numOS2Opens++; 55 return RPDONE; 56 } 57 58 //****************************************************************************** 59 ULONG StratClose(REQPACKET __far* rp) 60 { 61 // only called if device successfully opened 62 // printk("strat close\n"); 63 numOS2Opens--; 64 65 UniaudCloseAll(rp->open_close.usSysFileNum); 66 67 if (numOS2Opens == 0) 68 { 69 deviceOwner = DEV_NO_OWNER; 70 } 56 71 return RPDONE; 57 72 } -
TabularUnified GPL/branches/uniaud32-next/include/irqos2.h ¶
r545 r675 60 60 61 61 BOOL process_interrupt(ULONG ulSlotNo, ULONG *pulIrq); 62 void PciAdjustInterrupts(void);63 ULONG os2gettimemsec();64 ULONG os2gettimesec();65 62 66 63 #ifdef __cplusplus -
TabularUnified GPL/branches/uniaud32-next/lib32/Makefile ¶
r667 r675 6 6 !include $(ROOT)\tools\header.mif 7 7 8 # note: Watcom headers must be before DDK headers to avoid conflicts 9 # with C runtime headers 10 %INCLUDE = $(%INCLUDE)$(DDK)\base\h; 8 11 AINCLUDES = $(DDK)\base\H 9 12 -
TabularUnified GPL/branches/uniaud32-next/lib32/ioctl.c ¶
r644 r675 21 21 #include "soundoss.h" 22 22 23 #include <u32ioctl.h> 24 23 25 POSS32_DEVCAPS pcmcaps[8] = {0,0,0,0,0,0,0,0}; 24 26 extern int pcm_device; … … 34 36 int card_id_changed = 0; 35 37 int unlock_all = 0; 36 int GetUniaudPcmCaps(ULONG deviceid, void *caps);37 void FillCaps(ULONG deviceid);38 38 int pcm_instances(int card_id); 39 39 … … 180 180 } 181 181 182 /* 182 183 int GetPcmForChannels(ULONG deviceid, int type, int channels) 183 184 { … … 220 221 return sel_pcm; 221 222 } 223 */ 222 224 223 225 int GetMaxChannels(ULONG deviceid, int type) … … 262 264 returns pcm caps 263 265 */ 264 int GetUniaudPcmCaps1(ULONG deviceid, void *caps)266 static int GetUniaudPcmCaps1(ULONG deviceid, void *caps) 265 267 { 266 268 POSS32_DEVCAPS pcaps = (POSS32_DEVCAPS)caps; -
TabularUnified GPL/branches/uniaud32-next/lib32/ossidc.c ¶
r667 r675 33 33 #include <version.h> 34 34 #include "initcall.h" 35 #include <u32ioctl.h> 35 36 36 37 extern DWORD TimerHandler16; //drv32\strategy.asm … … 95 96 int fStrategyInit = FALSE; 96 97 void pcm_info(void); 97 void FillCaps(ULONG deviceid);98 98 99 99 //****************************************************************************** -
TabularUnified GPL/branches/uniaud32-next/lib32/sound.c ¶
r672 r675 37 37 #include <stdlib.h> 38 38 #include <proto.h> 39 //#include <dbgos2.h>39 #include <u32ioctl.h> 40 40 #include "soundoss.h" 41 41 … … 44 44 #define samples_to_bytes(a) ((a*pHandle->doublesamplesize)/2) 45 45 #define bytes_to_samples(a) (pHandle->doublesamplesize ? ((a*2)/pHandle->doublesamplesize) : a) 46 int GetMaxChannels(ULONG deviceid, int type);47 46 48 47 struct file_operations oss_devices[OSS32_MAX_DEVICES] = {0}; -
TabularUnified GPL/branches/uniaud32-next/lib32/timer.c ¶
r629 r675 38 38 #include <dbgos2.h> 39 39 40 #pragma pack(1) 41 #include "infoseg.h" 42 #pragma pack() 43 extern PVOID KernSISData; 44 #define KernSISData ((struct InfoSegGDT *)&KernSISData) 45 40 46 static long jiffiems = 1000/HZ; 41 47 static long lasttime = 0; … … 49 55 long delta, newtime, remainder; 50 56 51 newtime = os2gettimemsec();57 newtime = KernSISData->SIS_MsCount; 52 58 delta = newtime - lasttime; 53 59 … … 97 103 { 98 104 #if 0 99 tv->tv_sec = 0; // os2gettimesec();100 tv->tv_usec = os2gettimemsec()* 1000;105 tv->tv_sec = 0; //KernSISData->SIS_BigTime; 106 tv->tv_usec = KernSISData->SIS_MsCount * 1000; 101 107 #else /* r.ihle patch */ 102 unsigned u = os2gettimemsec();108 unsigned u = KernSISData->SIS_MsCount; 103 109 tv->tv_sec = u / 1000; 104 110 tv->tv_usec = (u % 1000) * 1000;
Note:
See TracChangeset
for help on using the changeset viewer.