File: oct612x-user.c

package info (click to toggle)
osmocom-dahdi-linux 0.0~git20241003.b2ea348-4
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 7,996 kB
  • sloc: ansic: 116,373; perl: 2,391; sh: 982; makefile: 357
file content (207 lines) | stat: -rw-r--r-- 6,017 bytes parent folder | download | duplicates (5)
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
/*
 * Octasic OCT6100 Interface
 *
 * Copyright (C) 2013 Digium, Inc.
 *
 * All rights reserved.
 *
 */

/*
 * See http://www.asterisk.org for more information about
 * the Asterisk project. Please do not directly contact
 * any of the maintainers of this project for assistance;
 * the project provides a web site, mailing lists and IRC
 * channels for your use.
 *
 * This program is free software, distributed under the terms of
 * the GNU General Public License Version 2 as published by the
 * Free Software Foundation. See the LICENSE file included with
 * this program for more details.
 */

#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/slab.h>
#include <linux/hrtimer.h>

#include <dahdi/kernel.h>

#include "oct612x.h"

UINT32 Oct6100UserGetTime(tPOCT6100_GET_TIME f_pTime)
{
	/* Why couldn't they just take a timeval like everyone else? */
	u64 total_usecs;

	total_usecs = ktime_to_us(ktime_get_real());
	f_pTime->aulWallTimeUs[0] = total_usecs;
	f_pTime->aulWallTimeUs[1] = total_usecs >> 32;
	return cOCT6100_ERR_OK;
}

UINT32 Oct6100UserMemSet(PVOID f_pAddress, UINT32 f_ulPattern,
			 UINT32 f_ulLength)
{
	memset(f_pAddress, f_ulPattern, f_ulLength);
	return cOCT6100_ERR_OK;
}

UINT32 Oct6100UserMemCopy(PVOID f_pDestination, const void *f_pSource,
			  UINT32 f_ulLength)
{
	memcpy(f_pDestination, f_pSource, f_ulLength);
	return cOCT6100_ERR_OK;
}

UINT32 Oct6100UserCreateSerializeObject(
			tPOCT6100_CREATE_SERIALIZE_OBJECT f_pCreate)
{
	struct oct612x_context *context = f_pCreate->pProcessContext;
	struct mutex *lock = kzalloc(sizeof(*lock), GFP_KERNEL);
	if (!lock) {
		dev_err(context->dev, "Out of memory in %s.\n", __func__);
		return cOCT6100_ERR_BASE;
	}
	mutex_init(lock);
	f_pCreate->ulSerialObjHndl = lock;
	return cOCT6100_ERR_OK;
}

UINT32 Oct6100UserDestroySerializeObject(
			tPOCT6100_DESTROY_SERIALIZE_OBJECT f_pDestroy)
{
	struct mutex *lock = f_pDestroy->ulSerialObjHndl;
	kfree(lock);
	return cOCT6100_ERR_OK;
}

UINT32 Oct6100UserSeizeSerializeObject(
		tPOCT6100_SEIZE_SERIALIZE_OBJECT f_pSeize)
{
	struct mutex *lock = f_pSeize->ulSerialObjHndl;
	mutex_lock(lock);
	return cOCT6100_ERR_OK;
}

UINT32 Oct6100UserReleaseSerializeObject(
		tPOCT6100_RELEASE_SERIALIZE_OBJECT f_pRelease)
{
	struct mutex *lock = f_pRelease->ulSerialObjHndl;
	mutex_unlock(lock);
	return cOCT6100_ERR_OK;
}

UINT32 Oct6100UserDriverWriteApi(tPOCT6100_WRITE_PARAMS f_pWriteParams)
{
	struct oct612x_context *context = f_pWriteParams->pProcessContext;
#ifdef OCTASIC_DEBUG
	if (!context || !context->ops || !context->ops->write) {
		pr_debug("Invalid call to %s\n", __func__);
		return cOCT6100_ERR_BASE;
	}
#endif
	context->ops->write(context, f_pWriteParams->ulWriteAddress,
			    f_pWriteParams->usWriteData);
	return cOCT6100_ERR_OK;
}

UINT32 Oct6100UserDriverWriteSmearApi(tPOCT6100_WRITE_SMEAR_PARAMS f_pSmearParams)
{
	struct oct612x_context *context = f_pSmearParams->pProcessContext;
#ifdef OCTASIC_DEBUG
	if (!context || !context->ops || !context->ops->write_smear) {
		pr_debug("Invalid call to %s\n", __func__);
		return cOCT6100_ERR_BASE;
	}
#endif
	context->ops->write_smear(context, f_pSmearParams->ulWriteAddress,
				  f_pSmearParams->usWriteData,
				  f_pSmearParams->ulWriteLength);
	return cOCT6100_ERR_OK;
}

UINT32 Oct6100UserDriverWriteBurstApi(
		tPOCT6100_WRITE_BURST_PARAMS f_pBurstParams)
{
	struct oct612x_context *context = f_pBurstParams->pProcessContext;
#ifdef OCTASIC_DEBUG
	if (!context || !context->ops || !context->ops->write_burst) {
		pr_debug("Invalid call to %s\n", __func__);
		return cOCT6100_ERR_BASE;
	}
#endif
	context->ops->write_burst(context, f_pBurstParams->ulWriteAddress,
				  f_pBurstParams->pusWriteData,
				  f_pBurstParams->ulWriteLength);
	return cOCT6100_ERR_OK;
}

UINT32 Oct6100UserDriverReadApi(tPOCT6100_READ_PARAMS f_pReadParams)
{
	struct oct612x_context *context = f_pReadParams->pProcessContext;
#ifdef OCTASIC_DEBUG
	if (!context || !context->ops || !context->ops->read) {
		pr_debug("Invalid call to %s\n", __func__);
		return cOCT6100_ERR_BASE;
	}
#endif
	context->ops->read(context, f_pReadParams->ulReadAddress,
			   f_pReadParams->pusReadData);
	return cOCT6100_ERR_OK;
}

UINT32 Oct6100UserDriverReadBurstApi(tPOCT6100_READ_BURST_PARAMS f_pBurstParams)
{
	struct oct612x_context *context = f_pBurstParams->pProcessContext;
#ifdef OCTASIC_DEBUG
	if (!context || !context->ops || !context->ops->read_burst) {
		pr_debug("Invalid call to %s\n", __func__);
		return cOCT6100_ERR_BASE;
	}
#endif
	context->ops->read_burst(context, f_pBurstParams->ulReadAddress,
				 f_pBurstParams->pusReadData,
				 f_pBurstParams->ulReadLength);
	return cOCT6100_ERR_OK;
}

EXPORT_SYMBOL(Oct6100ChipOpen);
EXPORT_SYMBOL(Oct6100ChipClose);
EXPORT_SYMBOL(Oct6100ChipCloseDef);
EXPORT_SYMBOL(Oct6100GetInstanceSize);
EXPORT_SYMBOL(Oct6100GetInstanceSizeDef);
EXPORT_SYMBOL(Oct6100ChipOpenDef);
EXPORT_SYMBOL(Oct6100ChannelModify);
EXPORT_SYMBOL(Oct6100ToneDetectionEnableDef);
EXPORT_SYMBOL(Oct6100InterruptServiceRoutine);
EXPORT_SYMBOL(Oct6100InterruptServiceRoutineDef);
EXPORT_SYMBOL(Oct6100ApiGetCapacityPins);
EXPORT_SYMBOL(Oct6100ToneDetectionEnable);
EXPORT_SYMBOL(Oct6100EventGetToneDef);
EXPORT_SYMBOL(Oct6100EventGetTone);
EXPORT_SYMBOL(Oct6100ApiGetCapacityPinsDef);
EXPORT_SYMBOL(Oct6100ChannelOpen);
EXPORT_SYMBOL(Oct6100ChannelOpenDef);
EXPORT_SYMBOL(Oct6100ChannelModifyDef);

static int __init oct612x_module_init(void)
{
	/* This registration with dahdi.ko will fail since the span is not
	 * defined, but it will make sure that this module is a dependency of
	 * dahdi.ko, so that when it is being unloded, this module will be
	 * unloaded as well. */
	dahdi_register_device(NULL, NULL);
	return 0;
}
module_init(oct612x_module_init);

static void __exit oct612x_module_cleanup(void)
{
	/* Nothing to do */;
}
module_exit(oct612x_module_cleanup);

MODULE_AUTHOR("Digium Incorporated <support@digium.com>");
MODULE_DESCRIPTION("Octasic OCT6100 Hardware Echocan Library");
MODULE_LICENSE("GPL v2");