db9c5f5c89
The timeval structure is removed in Linux kernel 5.0 since it is not year 2038 safe. Standardize on the ktime values. Signed-off-by: Shaun Ruffell <sruffell@sruffell.net>
208 lines
5.9 KiB
C
208 lines
5.9 KiB
C
/*
|
|
* 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");
|