DVBCore  1.0
Open source DVB engine
platform/inc/stbhwos.h
Go to the documentation of this file.
00001 /*******************************************************************************
00002  * Copyright © 2014 The DTVKit Open Software Foundation Ltd (www.dtvkit.org)
00003  * Copyright © 2004 Ocean Blue Software Ltd
00004  *
00005  * This file is part of a DTVKit Software Component
00006  * You are permitted to copy, modify or distribute this file subject to the terms
00007  * of the DTVKit 1.0 Licence which can be found in licence.txt or at www.dtvkit.org
00008  * 
00009  * THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND,
00010  * EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES
00011  * OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE.
00012  * 
00013  * If you or your organisation is not a member of DTVKit then you have access
00014  * to this source code outside of the terms of the licence agreement
00015  * and you are expected to delete this and any associated files immediately.
00016  * Further information on DTVKit, membership and terms can be found at www.dtvkit.org
00017  *******************************************************************************/
00024 // pre-processor mechanism so multiple inclusions don't cause compilation error
00025 #ifndef _STBHWOS_H
00026 
00027 #define _STBHWOS_H
00028 
00029 //---Constant and macro definitions for public use-----------------------------
00030 
00031 // hardware event class and types
00032 #define HW_EV_CLASS_HANDSET             0
00033 #define HW_EV_CLASS_KEYPAD              1
00034 #define HW_EV_CLASS_LNB                 2
00035 #define HW_EV_CLASS_TUNER               3
00036 #define HW_EV_CLASS_DECODE              4
00037 #define HW_EV_CLASS_SCART               5
00038 #define HW_EV_CLASS_DISK                6
00039 #define HW_EV_CLASS_DVD                 7
00040 #define HW_EV_CLASS_PVR                 8
00041 #define HW_EV_CLASS_USB                 9
00042 #define HW_EV_CLASS_HDMI               10
00043 #define HW_EV_CLASS_CEC                11
00044 #define HW_EV_CLASS_PRIVATE           255    /* Class to allow events to be created that are unique to a platform */
00045 
00046 #define HW_EV_TYPE_FALSE                  0
00047 #define HW_EV_TYPE_TRUE                   1
00048 #define HW_EV_TYPE_LOCKED                 2
00049 #define HW_EV_TYPE_NOTLOCKED              3
00050 
00051 #define HW_EV_TYPE_AUDIO_STARTED          4
00052 #define HW_EV_TYPE_VIDEO_STARTED          5
00053 #define HW_EV_TYPE_AUDIO_STOPPED          6
00054 #define HW_EV_TYPE_VIDEO_STOPPED          7
00055 
00056 #define HW_EV_TYPE_4_3                    8
00057 #define HW_EV_TYPE_16_9                   9
00058 
00059 #define HW_EV_TYPE_SIGNAL_DATA_BAD        10
00060 #define HW_EV_TYPE_SIGNAL_DATA_OK         11
00061 
00062 #define HW_EV_TYPE_FORMAT_COMPLETE        12
00063 #define HW_EV_TYPE_FORMAT_FAILED          13
00064 
00065 #define HW_EV_TYPE_REPAIR_COMPLETE        14
00066 #define HW_EV_TYPE_REPAIR_FAILED          15
00067 
00068 #define HW_EV_TYPE_DVD_DISK_INSERTED      16
00069 #define HW_EV_TYPE_DVD_DISK_REMOVED       17
00070 
00071 #define HW_EV_TYPE_PVR_REC_START          18
00072 #define HW_EV_TYPE_PVR_REC_STOP           19
00073 #define HW_EV_TYPE_PVR_PLAY_START         20
00074 #define HW_EV_TYPE_PVR_PLAY_STOP          21
00075 #define HW_EV_TYPE_PVR_PLAY_BOF           22    /* Playback has reached the beginning of the file */
00076 #define HW_EV_TYPE_PVR_PLAY_EOF           23    /* Playback has reached the end of the file */
00077 #define HW_EV_TYPE_PVR_PLAY_NOTIFY_TIME   24    /* Playback has reached the end of the file */
00078 
00079 #define HW_EV_TYPE_SAMPLE_STOPPED         25
00080 
00081 #define HW_EV_TYPE_DISK_CONNECTED         26
00082 #define HW_EV_TYPE_DISK_REMOVED           27
00083 #define HW_EV_TYPE_DISK_FULL              28
00084 
00085 #define HW_EV_TYPE_HDMI_CONNECT           29
00086 #define HW_EV_TYPE_HDMI_DISCONNECT        30
00087 
00088 #define HW_EV_TYPE_CEC_PLAY               31
00089 #define HW_EV_TYPE_CEC_STANDBY            32
00090 
00091 #define HW_EV_TYPE_AD_STARTED             34
00092 #define HW_EV_TYPE_AD_STOPPED             35
00093 
00094 #define HW_EV_TYPE_VIDEO_UNDERFLOW        36
00095 #define HW_EV_TYPE_AUDIO_UNDERFLOW        37
00096 
00097 // timeouts for queues, semaphores etc
00098 #define TIMEOUT_NOW     0
00099 #define TIMEOUT_NEVER   0xffff
00100 
00101 //---Enumerations for public use-----------------------------------------------
00102 
00103 //---Global type defs for public use-------------------------------------------
00104 
00105 //---Global Function prototypes for public use---------------------------------
00106 
00110 void STB_OSInitialise(void);
00111 
00116 void STB_OSRegisterCallback(void (*func)(BOOLEAN, U16BIT, U16BIT, void *, U32BIT));
00117 
00126 void STB_OSSendEvent(BOOLEAN repeat, U16BIT event_class, U16BIT event_type, void *data, U32BIT data_size);
00127 
00132 void STB_OSSetClockRTC(U32BIT num_seconds);
00133 
00140 U32BIT STB_OSGetClockRTC(void);
00141 
00146 void STB_OSSetClockGMT(U32BIT num_seconds);
00147 
00152 U32BIT STB_OSGetClockGMT(void);
00153 
00158 U32BIT STB_OSGetClockMilliseconds(void);
00159 
00165 U32BIT STB_OSGetClockDiff(U32BIT timestamp);
00166 
00179 void* STB_OSCreateTask(void (*function)(void *), void *param, U32BIT stack, U8BIT priority, U8BIT *name);
00180 
00184 void STB_OSTaskSuspend(void);
00185 
00190 void STB_OSTaskDelay(U16BIT timeout);
00191 
00196 void STB_OSTaskSleep(void);
00197 
00202 void STB_OSDestroyTask(void *task);
00203 
00210 U8BIT STB_OSTaskPriority(void *task, U8BIT priority);
00211 
00218 void STB_OSTaskLock(void);
00219 
00226 void STB_OSTaskUnlock(void);
00227 
00232 void* STB_OSGetCurrentTask(void);
00233 
00240 void* STB_OSCreateQueue(U16BIT msg_size, U16BIT msg_max);
00241 
00250 BOOLEAN STB_OSReadQueue(void *queue, void *msg, U16BIT msg_size, U16BIT timeout);
00251 
00260 BOOLEAN STB_OSWriteQueue(void *queue, void *msg, U16BIT msg_size, U16BIT timeout);
00261 
00267 BOOLEAN STB_OSDestroyQueue(void *queue);
00268 
00273 void* STB_OSCreateSemaphore(void);
00274 
00280 void* STB_OSCreateCountSemaphore(U32BIT value);
00281 
00289 void STB_OSInitCountSemaphore(void *semaphore, U32BIT value);
00290 
00296 void STB_OSDeleteSemaphore(void *semaphore);
00297 
00303 void STB_OSSemaphoreWait(void *semaphore);
00304 
00309 void STB_OSSemaphoreSignal(void *semaphore);
00310 
00317 BOOLEAN STB_OSSemaphoreWaitTimeout(void *semaphore, U16BIT timeout);
00318 
00323 void* STB_OSCreateMutex(void);
00324 
00329 void STB_OSMutexLock(void *mutex);
00330 
00335 void STB_OSMutexUnlock(void *mutex);
00336 
00341 void STB_OSDeleteMutex(void *mutex);
00342 
00346 void STB_OSResetCPU(void);
00347 
00348 #endif //  _STBHWOS_H
00349 
00350 //*****************************************************************************
00351 // End of file
00352 //*****************************************************************************
00353 
 All Data Structures Files Functions Typedefs Defines