2015-10-13 21:27:16 +08:00
|
|
|
/****************************************************************************
|
|
|
|
* drivers/sensors/zerocross.c
|
|
|
|
*
|
2021-04-02 18:39:20 +08:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the
|
|
|
|
* License. You may obtain a copy of the License at
|
2015-10-13 21:27:16 +08:00
|
|
|
*
|
2021-04-02 18:39:20 +08:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2015-10-13 21:27:16 +08:00
|
|
|
*
|
2021-04-02 18:39:20 +08:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
2015-10-13 21:27:16 +08:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <debug.h>
|
|
|
|
|
|
|
|
#include <nuttx/kmalloc.h>
|
|
|
|
#include <nuttx/arch.h>
|
2017-10-08 00:57:09 +08:00
|
|
|
#include <nuttx/signal.h>
|
|
|
|
#include <nuttx/fs/fs.h>
|
2020-02-01 15:17:32 +08:00
|
|
|
#include <nuttx/semaphore.h>
|
2015-10-13 21:27:16 +08:00
|
|
|
#include <nuttx/sensors/zerocross.h>
|
|
|
|
|
2016-02-14 21:32:58 +08:00
|
|
|
#include <nuttx/irq.h>
|
2015-10-13 21:27:16 +08:00
|
|
|
|
2017-08-25 00:26:53 +08:00
|
|
|
#ifdef CONFIG_SENSORS_ZEROCROSS
|
2015-10-13 21:27:16 +08:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Type Definitions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/* This structure describes the state of the upper half driver */
|
|
|
|
|
|
|
|
struct zc_upperhalf_s
|
|
|
|
{
|
|
|
|
FAR struct zc_lowerhalf_s *lower; /* lower-half state */
|
|
|
|
sem_t exclsem; /* Supports mutual exclusion */
|
|
|
|
|
|
|
|
/* The following is a singly linked list of open references to the
|
|
|
|
* zero cross device.
|
|
|
|
*/
|
|
|
|
|
|
|
|
FAR struct zc_open_s *zu_open;
|
|
|
|
};
|
|
|
|
|
2021-04-02 20:56:34 +08:00
|
|
|
/* This structure describes the state of one open zero cross driver
|
|
|
|
* instance
|
|
|
|
*/
|
2015-10-13 21:27:16 +08:00
|
|
|
|
|
|
|
struct zc_open_s
|
|
|
|
{
|
|
|
|
/* Supports a singly linked list */
|
|
|
|
|
|
|
|
FAR struct zc_open_s *do_flink;
|
|
|
|
|
|
|
|
/* The following will be true if we are closing */
|
|
|
|
|
|
|
|
volatile bool do_closing;
|
|
|
|
|
|
|
|
/* Zero cross event notification information */
|
|
|
|
|
|
|
|
pid_t do_pid;
|
2019-01-27 22:53:12 +08:00
|
|
|
struct sigevent do_event;
|
2019-01-27 23:28:59 +08:00
|
|
|
struct sigwork_s do_work;
|
2015-10-13 21:27:16 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Function Prototypes
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static int zc_open(FAR struct file *filep);
|
|
|
|
static int zc_close(FAR struct file *filep);
|
|
|
|
static ssize_t zc_read(FAR struct file *filep, FAR char *buffer, size_t
|
|
|
|
buflen);
|
|
|
|
static ssize_t zc_write(FAR struct file *filep, FAR const char *buffer,
|
|
|
|
size_t buflen);
|
|
|
|
static int zc_ioctl(FAR struct file *filep, int cmd, unsigned long arg);
|
|
|
|
|
|
|
|
static void zerocross_enable(FAR struct zc_upperhalf_s *priv);
|
|
|
|
static void zerocross_interrupt(FAR const struct zc_lowerhalf_s *lower,
|
|
|
|
FAR void *arg);
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Data
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static const struct file_operations g_zcops =
|
|
|
|
{
|
2016-08-13 00:40:07 +08:00
|
|
|
zc_open, /* open */
|
|
|
|
zc_close, /* close */
|
|
|
|
zc_read, /* read */
|
|
|
|
zc_write, /* write */
|
2019-05-22 08:57:54 +08:00
|
|
|
NULL, /* seek */
|
|
|
|
zc_ioctl, /* ioctl */
|
|
|
|
NULL /* poll */
|
2016-08-13 00:40:07 +08:00
|
|
|
#ifndef CONFIG_DISABLE_PSEUDOFS_OPERATIONS
|
2022-01-10 22:51:17 +08:00
|
|
|
, NULL /* unlink */
|
2016-08-13 00:40:07 +08:00
|
|
|
#endif
|
2015-10-13 21:27:16 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
volatile int sample = 0;
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: zerocross_enable
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static void zerocross_enable(FAR struct zc_upperhalf_s *priv)
|
|
|
|
{
|
|
|
|
FAR const struct zc_lowerhalf_s *lower;
|
|
|
|
irqstate_t flags;
|
|
|
|
|
|
|
|
DEBUGASSERT(priv && priv->lower);
|
|
|
|
lower = priv->lower;
|
|
|
|
|
|
|
|
/* This routine is called both task level and interrupt level, so
|
|
|
|
* interrupts must be disabled.
|
|
|
|
*/
|
|
|
|
|
2016-02-14 21:32:58 +08:00
|
|
|
flags = enter_critical_section();
|
2015-10-13 21:27:16 +08:00
|
|
|
|
|
|
|
/* Enable interrupts */
|
|
|
|
|
|
|
|
DEBUGASSERT(lower->zc_enable);
|
|
|
|
|
|
|
|
/* Enable interrupts with the new button set */
|
|
|
|
|
|
|
|
lower->zc_enable(lower, (zc_interrupt_t)zerocross_interrupt, priv);
|
|
|
|
|
2016-02-14 21:32:58 +08:00
|
|
|
leave_critical_section(flags);
|
2015-10-13 21:27:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: zerocross_interrupt
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static void zerocross_interrupt(FAR const struct zc_lowerhalf_s *lower,
|
|
|
|
FAR void *arg)
|
|
|
|
{
|
|
|
|
FAR struct zc_upperhalf_s *priv = (FAR struct zc_upperhalf_s *)arg;
|
|
|
|
FAR struct zc_open_s *opriv;
|
|
|
|
irqstate_t flags;
|
|
|
|
|
|
|
|
/* This routine is called both task level and interrupt level, so
|
|
|
|
* interrupts must be disabled.
|
|
|
|
*/
|
|
|
|
|
2016-02-14 21:32:58 +08:00
|
|
|
flags = enter_critical_section();
|
2015-10-13 21:27:16 +08:00
|
|
|
|
|
|
|
/* Update sample value */
|
|
|
|
|
|
|
|
sample++;
|
|
|
|
|
|
|
|
/* Visit each opened reference and notify a zero cross event */
|
|
|
|
|
|
|
|
for (opriv = priv->zu_open; opriv; opriv = opriv->do_flink)
|
|
|
|
{
|
|
|
|
/* Signal the waiter */
|
|
|
|
|
2019-01-27 22:53:12 +08:00
|
|
|
opriv->do_event.sigev_value.sival_int = sample;
|
2019-01-27 23:28:59 +08:00
|
|
|
nxsig_notification(opriv->do_pid, &opriv->do_event,
|
|
|
|
SI_QUEUE, &opriv->do_work);
|
2015-10-13 21:27:16 +08:00
|
|
|
}
|
|
|
|
|
2016-02-14 21:32:58 +08:00
|
|
|
leave_critical_section(flags);
|
2015-10-13 21:27:16 +08:00
|
|
|
}
|
|
|
|
|
2017-10-08 00:57:09 +08:00
|
|
|
/****************************************************************************
|
2015-10-13 21:27:16 +08:00
|
|
|
* Name: zc_open
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* This function is called whenever the PWM device is opened.
|
|
|
|
*
|
2017-10-08 00:57:09 +08:00
|
|
|
****************************************************************************/
|
2015-10-13 21:27:16 +08:00
|
|
|
|
|
|
|
static int zc_open(FAR struct file *filep)
|
|
|
|
{
|
|
|
|
FAR struct inode *inode;
|
|
|
|
FAR struct zc_upperhalf_s *priv;
|
|
|
|
FAR struct zc_open_s *opriv;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
DEBUGASSERT(filep && filep->f_inode);
|
|
|
|
inode = filep->f_inode;
|
|
|
|
DEBUGASSERT(inode->i_private);
|
|
|
|
priv = (FAR struct zc_upperhalf_s *)inode->i_private;
|
|
|
|
|
|
|
|
/* Get exclusive access to the driver structure */
|
|
|
|
|
2017-10-05 05:22:27 +08:00
|
|
|
ret = nxsem_wait(&priv->exclsem);
|
2015-10-13 21:27:16 +08:00
|
|
|
if (ret < 0)
|
|
|
|
{
|
2017-10-05 05:22:27 +08:00
|
|
|
snerr("ERROR: nxsem_wait failed: %d\n", ret);
|
2015-10-13 21:27:16 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Allocate a new open structure */
|
|
|
|
|
|
|
|
opriv = (FAR struct zc_open_s *)kmm_zalloc(sizeof(struct zc_open_s));
|
|
|
|
if (!opriv)
|
|
|
|
{
|
2020-02-23 16:50:23 +08:00
|
|
|
snerr("ERROR: Failed to allocate open structure\n");
|
2015-10-13 21:27:16 +08:00
|
|
|
ret = -ENOMEM;
|
|
|
|
goto errout_with_sem;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Attach the open structure to the device */
|
|
|
|
|
|
|
|
opriv->do_flink = priv->zu_open;
|
|
|
|
priv->zu_open = opriv;
|
|
|
|
|
|
|
|
/* Attach the open structure to the file structure */
|
|
|
|
|
|
|
|
filep->f_priv = (FAR void *)opriv;
|
|
|
|
ret = OK;
|
|
|
|
|
|
|
|
errout_with_sem:
|
2017-10-04 05:35:24 +08:00
|
|
|
nxsem_post(&priv->exclsem);
|
2015-10-13 21:27:16 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2017-10-08 00:57:09 +08:00
|
|
|
/****************************************************************************
|
2015-10-13 21:27:16 +08:00
|
|
|
* Name: zc_close
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* This function is called when the PWM device is closed.
|
|
|
|
*
|
2017-10-08 00:57:09 +08:00
|
|
|
****************************************************************************/
|
2015-10-13 21:27:16 +08:00
|
|
|
|
|
|
|
static int zc_close(FAR struct file *filep)
|
|
|
|
{
|
|
|
|
FAR struct inode *inode;
|
|
|
|
FAR struct zc_upperhalf_s *priv;
|
|
|
|
FAR struct zc_open_s *opriv;
|
|
|
|
FAR struct zc_open_s *curr;
|
|
|
|
FAR struct zc_open_s *prev;
|
|
|
|
irqstate_t flags;
|
|
|
|
bool closing;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
DEBUGASSERT(filep && filep->f_priv && filep->f_inode);
|
|
|
|
opriv = filep->f_priv;
|
|
|
|
inode = filep->f_inode;
|
|
|
|
DEBUGASSERT(inode->i_private);
|
|
|
|
priv = (FAR struct zc_upperhalf_s *)inode->i_private;
|
|
|
|
|
|
|
|
/* Handle an improbable race conditions with the following atomic test
|
|
|
|
* and set.
|
|
|
|
*
|
|
|
|
* This is actually a pretty feeble attempt to handle this. The
|
|
|
|
* improbable race condition occurs if two different threads try to
|
|
|
|
* close the zero cross driver at the same time. The rule: don't do
|
|
|
|
* that! It is feeble because we do not really enforce stale pointer
|
|
|
|
* detection anyway.
|
|
|
|
*/
|
|
|
|
|
2016-02-14 21:32:58 +08:00
|
|
|
flags = enter_critical_section();
|
2015-10-13 21:27:16 +08:00
|
|
|
closing = opriv->do_closing;
|
|
|
|
opriv->do_closing = true;
|
2016-02-14 21:32:58 +08:00
|
|
|
leave_critical_section(flags);
|
2015-10-13 21:27:16 +08:00
|
|
|
|
|
|
|
if (closing)
|
|
|
|
{
|
|
|
|
/* Another thread is doing the close */
|
|
|
|
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get exclusive access to the driver structure */
|
|
|
|
|
2017-10-05 05:22:27 +08:00
|
|
|
ret = nxsem_wait(&priv->exclsem);
|
2015-10-13 21:27:16 +08:00
|
|
|
if (ret < 0)
|
|
|
|
{
|
2017-10-05 05:22:27 +08:00
|
|
|
snerr("ERROR: nxsem_wait failed: %d\n", ret);
|
2015-10-13 21:27:16 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Find the open structure in the list of open structures for the device */
|
|
|
|
|
|
|
|
for (prev = NULL, curr = priv->zu_open;
|
|
|
|
curr && curr != opriv;
|
|
|
|
prev = curr, curr = curr->do_flink);
|
|
|
|
|
|
|
|
DEBUGASSERT(curr);
|
|
|
|
if (!curr)
|
|
|
|
{
|
2016-06-21 01:59:15 +08:00
|
|
|
snerr("ERROR: Failed to find open entry\n");
|
2015-10-13 21:27:16 +08:00
|
|
|
ret = -ENOENT;
|
|
|
|
goto errout_with_exclsem;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Remove the structure from the device */
|
|
|
|
|
|
|
|
if (prev)
|
|
|
|
{
|
|
|
|
prev->do_flink = opriv->do_flink;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
priv->zu_open = opriv->do_flink;
|
|
|
|
}
|
|
|
|
|
2019-01-27 23:28:59 +08:00
|
|
|
/* Cancel any pending notification */
|
|
|
|
|
|
|
|
nxsig_cancel_notification(&opriv->do_work);
|
|
|
|
|
2015-10-13 21:27:16 +08:00
|
|
|
/* And free the open structure */
|
|
|
|
|
|
|
|
kmm_free(opriv);
|
|
|
|
|
|
|
|
/* Enable/disable interrupt handling */
|
|
|
|
|
|
|
|
zerocross_enable(priv);
|
|
|
|
ret = OK;
|
|
|
|
|
|
|
|
errout_with_exclsem:
|
2017-10-04 05:35:24 +08:00
|
|
|
nxsem_post(&priv->exclsem);
|
2015-10-13 21:27:16 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2017-10-08 00:57:09 +08:00
|
|
|
/****************************************************************************
|
2015-10-13 21:27:16 +08:00
|
|
|
* Name: zc_read
|
|
|
|
*
|
2018-02-02 02:03:55 +08:00
|
|
|
* Description:
|
2015-10-13 21:27:16 +08:00
|
|
|
* A dummy read method. This is provided only to satsify the VFS layer.
|
|
|
|
*
|
2017-10-08 00:57:09 +08:00
|
|
|
****************************************************************************/
|
2015-10-13 21:27:16 +08:00
|
|
|
|
2017-10-08 00:57:09 +08:00
|
|
|
static ssize_t zc_read(FAR struct file *filep, FAR char *buffer,
|
|
|
|
size_t buflen)
|
2015-10-13 21:27:16 +08:00
|
|
|
{
|
|
|
|
/* Return zero -- usually meaning end-of-file */
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-10-08 00:57:09 +08:00
|
|
|
/****************************************************************************
|
2015-10-13 21:27:16 +08:00
|
|
|
* Name: zc_write
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* A dummy write method. This is provided only to satsify the VFS layer.
|
|
|
|
*
|
2017-10-08 00:57:09 +08:00
|
|
|
****************************************************************************/
|
2015-10-13 21:27:16 +08:00
|
|
|
|
2017-10-08 00:57:09 +08:00
|
|
|
static ssize_t zc_write(FAR struct file *filep, FAR const char *buffer,
|
|
|
|
size_t buflen)
|
2015-10-13 21:27:16 +08:00
|
|
|
{
|
|
|
|
/* Return a failure */
|
|
|
|
|
|
|
|
return -EPERM;
|
|
|
|
}
|
|
|
|
|
2017-10-08 00:57:09 +08:00
|
|
|
/****************************************************************************
|
2015-10-13 21:27:16 +08:00
|
|
|
* Name: zc_ioctl
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* The standard ioctl method. This is where ALL of the PWM work is done.
|
|
|
|
*
|
2017-10-08 00:57:09 +08:00
|
|
|
****************************************************************************/
|
2015-10-13 21:27:16 +08:00
|
|
|
|
|
|
|
static int zc_ioctl(FAR struct file *filep, int cmd, unsigned long arg)
|
|
|
|
{
|
|
|
|
FAR struct inode *inode;
|
|
|
|
FAR struct zc_upperhalf_s *priv;
|
|
|
|
FAR struct zc_open_s *opriv;
|
|
|
|
int ret;
|
|
|
|
|
2016-06-12 01:59:51 +08:00
|
|
|
sninfo("cmd: %d arg: %ld\n", cmd, arg);
|
2015-10-13 21:27:16 +08:00
|
|
|
DEBUGASSERT(filep && filep->f_priv && filep->f_inode);
|
|
|
|
opriv = filep->f_priv;
|
|
|
|
inode = filep->f_inode;
|
2019-03-29 23:11:08 +08:00
|
|
|
DEBUGASSERT(inode->i_private);
|
2015-10-13 21:27:16 +08:00
|
|
|
priv = (FAR struct zc_upperhalf_s *)inode->i_private;
|
|
|
|
|
|
|
|
/* Get exclusive access to the device structures */
|
|
|
|
|
2017-10-05 05:22:27 +08:00
|
|
|
ret = nxsem_wait(&priv->exclsem);
|
2015-10-13 21:27:16 +08:00
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Handle built-in ioctl commands */
|
|
|
|
|
|
|
|
ret = -EINVAL;
|
|
|
|
switch (cmd)
|
|
|
|
{
|
2019-04-30 04:52:05 +08:00
|
|
|
/* Command: ZCIOC_REGISTER
|
|
|
|
* Description: Register to receive a signal whenever there is zero
|
|
|
|
* cross detection interrupt.
|
|
|
|
* Argument: A read-only pointer to an instance of struct
|
|
|
|
* zc_notify_s
|
|
|
|
* Return: Zero (OK) on success. Minus one will be returned on
|
|
|
|
* failure with the errno value set appropriately.
|
|
|
|
*/
|
|
|
|
|
|
|
|
case ZCIOC_REGISTER:
|
|
|
|
{
|
|
|
|
FAR struct sigevent *event =
|
|
|
|
(FAR struct sigevent *)((uintptr_t)arg);
|
|
|
|
|
|
|
|
if (event)
|
|
|
|
{
|
|
|
|
/* Save the notification events */
|
|
|
|
|
|
|
|
opriv->do_event = *event;
|
|
|
|
opriv->do_pid = getpid();
|
|
|
|
|
|
|
|
/* Enable/disable interrupt handling */
|
|
|
|
|
|
|
|
zerocross_enable(priv);
|
|
|
|
ret = OK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2015-10-13 21:27:16 +08:00
|
|
|
|
|
|
|
default:
|
|
|
|
{
|
2016-08-13 00:40:07 +08:00
|
|
|
snerr("ERROR: Unrecognized cmd: %d arg: %ld\n", cmd, arg);
|
2015-10-13 21:27:16 +08:00
|
|
|
ret = -ENOTTY;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2017-10-04 05:35:24 +08:00
|
|
|
nxsem_post(&priv->exclsem);
|
2015-10-13 21:27:16 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: zc_register
|
|
|
|
*
|
|
|
|
* Description:
|
2016-08-13 00:40:07 +08:00
|
|
|
* Register the Zero Cross character device as 'devpath'
|
2015-10-13 21:27:16 +08:00
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* devpath - The full path to the driver to register. E.g., "/dev/zc0"
|
|
|
|
* lower - An instance of the lower half interface
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* Zero (OK) on success; a negated errno value on failure. The following
|
|
|
|
* possible error values may be returned (most are returned by
|
|
|
|
* register_driver()):
|
|
|
|
*
|
|
|
|
* EINVAL - 'path' is invalid for this operation
|
|
|
|
* EEXIST - An inode already exists at 'path'
|
|
|
|
* ENOMEM - Failed to allocate in-memory resources for the operation
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
int zc_register(FAR const char *devname, FAR struct zc_lowerhalf_s *lower)
|
|
|
|
{
|
|
|
|
FAR struct zc_upperhalf_s *priv;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
DEBUGASSERT(devname && lower);
|
|
|
|
|
|
|
|
/* Allocate a new zero cross driver instance */
|
|
|
|
|
|
|
|
priv = (FAR struct zc_upperhalf_s *)
|
|
|
|
kmm_zalloc(sizeof(struct zc_upperhalf_s));
|
|
|
|
|
|
|
|
if (!priv)
|
|
|
|
{
|
2016-06-21 01:59:15 +08:00
|
|
|
snerr("ERROR: Failed to allocate device structure\n");
|
2015-10-13 21:27:16 +08:00
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Make sure that zero cross interrupt is disabled */
|
|
|
|
|
|
|
|
DEBUGASSERT(lower->zc_enable);
|
|
|
|
lower->zc_enable(lower, NULL, NULL);
|
|
|
|
|
|
|
|
/* Initialize the new zero cross driver instance */
|
|
|
|
|
|
|
|
priv->lower = lower;
|
2017-10-04 02:51:15 +08:00
|
|
|
nxsem_init(&priv->exclsem, 0, 1);
|
2015-10-13 21:27:16 +08:00
|
|
|
|
|
|
|
/* And register the zero cross driver */
|
|
|
|
|
|
|
|
ret = register_driver(devname, &g_zcops, 0666, priv);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
2016-06-21 01:59:15 +08:00
|
|
|
snerr("ERROR: register_driver failed: %d\n", ret);
|
2017-10-04 05:35:24 +08:00
|
|
|
nxsem_destroy(&priv->exclsem);
|
2015-10-13 21:27:16 +08:00
|
|
|
kmm_free(priv);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2017-08-25 00:26:53 +08:00
|
|
|
#endif /* CONFIG_SENSORS_ZEROCROSS */
|