blob: 94c30c8ca6624f0410bf5b0e54d8d8fce91cd32f [file] [log] [blame]
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +02001/*
2 *************************************************************************
3 * Ralink Tech Inc.
4 * 5F., No.36, Taiyuan St., Jhubei City,
5 * Hsinchu County 302,
6 * Taiwan, R.O.C.
7 *
8 * (c) Copyright 2002-2007, Ralink Technology, Inc.
9 *
10 * This program is free software; you can redistribute it and/or modify *
11 * it under the terms of the GNU General Public License as published by *
12 * the Free Software Foundation; either version 2 of the License, or *
13 * (at your option) any later version. *
14 * *
15 * This program is distributed in the hope that it will be useful, *
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
18 * GNU General Public License for more details. *
19 * *
20 * You should have received a copy of the GNU General Public License *
21 * along with this program; if not, write to the *
22 * Free Software Foundation, Inc., *
23 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
24 * *
25 *************************************************************************
26
27 Module Name:
28 rtmp_os.h
29
30 Abstract:
31
32 Revision History:
33 Who When What
34 --------- ---------- ----------------------------------------------
35 */
36
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +020037#ifndef __RTMP_OS_H__
38#define __RTMP_OS_H__
39
40#ifdef LINUX
41#include "rt_linux.h"
Bartlomiej Zolnierkiewiczcc277062009-12-11 12:23:15 -080042#endif /* LINUX // */
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +020043
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +020044/*
45 This data structure mainly strip some callback function defined in
46 "struct net_device" in kernel source "include/linux/netdevice.h".
47
48 The definition of this data structure may various depends on different
49 OS. Use it carefully.
50*/
Bartlomiej Zolnierkiewicz62eb7342009-12-11 12:23:16 -080051struct rt_rtmp_os_netdev_op_hook {
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +020052 const struct net_device_ops *netdev_ops;
Bartlomiej Zolnierkiewicz52b81c82009-12-11 12:23:14 -080053 void *priv;
54 int priv_flags;
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +020055 unsigned char devAddr[6];
Bartlomiej Zolnierkiewicz52b81c82009-12-11 12:23:14 -080056 unsigned char devName[16];
57 unsigned char needProtcted;
Bartlomiej Zolnierkiewicz62eb7342009-12-11 12:23:16 -080058};
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +020059
Bartlomiej Zolnierkiewicz52b81c82009-12-11 12:23:14 -080060typedef enum _RTMP_TASK_STATUS_ {
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +020061 RTMP_TASK_STAT_UNKNOWN = 0,
62 RTMP_TASK_STAT_INITED = 1,
63 RTMP_TASK_STAT_RUNNING = 2,
64 RTMP_TASK_STAT_STOPED = 4,
Bartlomiej Zolnierkiewicz52b81c82009-12-11 12:23:14 -080065} RTMP_TASK_STATUS;
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +020066#define RTMP_TASK_CAN_DO_INSERT (RTMP_TASK_STAT_INITED |RTMP_TASK_STAT_RUNNING)
67
68#define RTMP_OS_TASK_NAME_LEN 16
Bartlomiej Zolnierkiewicz62eb7342009-12-11 12:23:16 -080069struct rt_rtmp_os_task {
Bartlomiej Zolnierkiewicz52b81c82009-12-11 12:23:14 -080070 char taskName[RTMP_OS_TASK_NAME_LEN];
71 void *priv;
Bartlomiej Zolnierkiewiczcc277062009-12-11 12:23:15 -080072 /*unsigned long taskFlags; */
Bartlomiej Zolnierkiewicz52b81c82009-12-11 12:23:14 -080073 RTMP_TASK_STATUS taskStatus;
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +020074#ifndef KTHREAD_SUPPORT
Bartlomiej Zolnierkiewicz8a10a542009-12-11 12:23:15 -080075 struct semaphore taskSema;
76 struct pid *taskPID;
Bartlomiej Zolnierkiewicz52b81c82009-12-11 12:23:14 -080077 struct completion taskComplete;
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +020078#endif
Bartlomiej Zolnierkiewicz52b81c82009-12-11 12:23:14 -080079 unsigned char task_killed;
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +020080#ifdef KTHREAD_SUPPORT
Bartlomiej Zolnierkiewicz52b81c82009-12-11 12:23:14 -080081 struct task_struct *kthread_task;
82 wait_queue_head_t kthread_q;
83 BOOLEAN kthread_running;
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +020084#endif
Bartlomiej Zolnierkiewicz62eb7342009-12-11 12:23:16 -080085};
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +020086
Bartlomiej Zolnierkiewicz8a10a542009-12-11 12:23:15 -080087int RtmpOSIRQRequest(struct net_device *pNetDev);
88int RtmpOSIRQRelease(struct net_device *pNetDev);
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +020089
Bartlomiej Zolnierkiewiczcc277062009-12-11 12:23:15 -080090#endif /* __RMTP_OS_H__ // */