aboutsummaryrefslogtreecommitdiff
path: root/drivers/staging/otus/wrap_mis.c
blob: 337918b9de9a1395a633fb77b57cdc569f600e4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
/*
 * Copyright (c) 2007-2008 Atheros Communications Inc.
 *
 * Permission to use, copy, modify, and/or distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 *
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 */
/*                                                                      */
/*  Module Name : wrap_mis.c                                            */
/*                                                                      */
/*  Abstract                                                            */
/*     This module contains wrapper functions for misc functions        */
/*                                                                      */
/*  NOTES                                                               */
/*     Platform dependent.                                              */
/*                                                                      */
/************************************************************************/

#include "oal_dt.h"
#include "usbdrv.h"

#include <linux/netlink.h>

#if WIRELESS_EXT > 12
#include <net/iw_handler.h>
#endif

//extern struct zsWdsStruct wds[ZM_WDS_PORT_NUMBER];
extern struct zsVapStruct vap[ZM_VAP_PORT_NUMBER];
extern u16_t zfLnxGetVapId(zdev_t* dev);

/* Simply return 0xffff if VAP function is not supported */
u16_t zfwGetVapId(zdev_t* dev)
{
    return zfLnxGetVapId(dev);
}

void zfwSleep(zdev_t* dev, u32_t ms)
{
    if (in_interrupt() == 0)
    {
        mdelay(ms);
    }
    else
    {
        int ii;
        int iter = 100000 * ms;

        for (ii = 0; ii < iter; ii++)
        {

        }
    }
}

#ifdef ZM_HALPLUS_LOCK
asmlinkage struct zsWlanDev *zfwGetWlanDev(zdev_t* dev)
{
	struct usbdrv_private *macp = dev->ml_priv;
	return macp->wd;
}

asmlinkage void zfwEnterCriticalSection(zdev_t* dev)
{
	struct usbdrv_private *macp = dev->ml_priv;
	spin_lock_irqsave(&macp->cs_lock, macp->hal_irqFlag);
}

asmlinkage void zfwLeaveCriticalSection(zdev_t* dev)
{
	struct usbdrv_private *macp = dev->ml_priv;
	spin_unlock_irqrestore(&macp->cs_lock, macp->hal_irqFlag);
}

asmlinkage u8_t zfwBufReadByte(zdev_t* dev, zbuf_t* buf, u16_t offset)
{
    return *(u8_t*)((u8_t*)buf->data+offset);
}

asmlinkage u16_t zfwBufReadHalfWord(zdev_t* dev, zbuf_t* buf, u16_t offset)
{
    return zmw_cpu_to_le16(*(u16_t*)((u8_t*)buf->data+offset));
}

asmlinkage void zfwBufWriteByte(zdev_t* dev, zbuf_t* buf, u16_t offset, u8_t value)
{
    *(u8_t*)((u8_t*)buf->data+offset) = value;
}

asmlinkage void zfwBufWriteHalfWord(zdev_t* dev, zbuf_t* buf, u16_t offset, u16_t value)
{
    *(u16_t*)((u8_t*)buf->data+offset) = zmw_cpu_to_le16(value);
}

asmlinkage u8_t *zfwGetBuffer(zdev_t* dev, zbuf_t* buf)
{
    return (u8_t*)(buf->data);
}
#endif

/* Leave an empty line below to remove warning message on some compiler */