SAMA5 ADC/Touchscreen: A little more logic

This commit is contained in:
Gregory Nutt 2013-10-01 14:40:34 -06:00
parent 183421fe07
commit afa475e948
5 changed files with 311 additions and 147 deletions

View File

@ -432,12 +432,16 @@
# define ADC_TSMR_TSMODE_5WIRE (3 << ADC_TSMR_TSMODE_SHIFT) /* 5-wire Touchscreen */
#define ADC_TSMR_TSAV_SHIFT (4) /* Bit 4-5: Touchscreen Average */
#define ADC_TSMR_TSAV_MASK (3 << ADC_TSMR_TSAV_SHIFT)
# define ADC_TSMR_TSAV_ NFILTER (0 << ADC_TSMR_TSAV_SHIFT) /* No Filtering */
# define ADC_TSMR_TSAV_ 2CONV (1 << ADC_TSMR_TSAV_SHIFT) /* Average 2 ADC conversions */
# define ADC_TSMR_TSAV_ 4CONV (2 << ADC_TSMR_TSAV_SHIFT) /* Average 4 ADC conversions */
# define ADC_TSMR_TSAV_ 8CONV (3 << ADC_TSMR_TSAV_SHIFT) /* Averages 8 ADC conversions */
# define ADC_TSMR_TSAV_NFILTER (0 << ADC_TSMR_TSAV_SHIFT) /* No Filtering */
# define ADC_TSMR_TSAV_2CONV (1 << ADC_TSMR_TSAV_SHIFT) /* Average 2 ADC conversions */
# define ADC_TSMR_TSAV_4CONV (2 << ADC_TSMR_TSAV_SHIFT) /* Average 4 ADC conversions */
# define ADC_TSMR_TSAV_8CONV (3 << ADC_TSMR_TSAV_SHIFT) /* Averages 8 ADC conversions */
#define ADC_TSMR_TSFREQ_SHIFT (8) /* Bit 8-11: Touchscreen Frequency */
#define ADC_TSMR_TSFREQ_MASK (15 << ADC_TSMR_TSFREQ_SHIFT)
# define ADC_TSMR_TSFREQ_DIV1 (0 << ADC_TSMR_TSFREQ_SHIFT) /* TS freq = trigger freq */
# define ADC_TSMR_TSFREQ_DIV2 (1 << ADC_TSMR_TSFREQ_SHIFT) /* TS freq = trigger freq / 2 */
# define ADC_TSMR_TSFREQ_DIV4 (2 << ADC_TSMR_TSFREQ_SHIFT) /* TS freq = trigger freq / 4 */
# define ADC_TSMR_TSFREQ_DIV8 (3 << ADC_TSMR_TSFREQ_SHIFT) /* TS freq = trigger freq / 8 */
# define ADC_TSMR_TSFREQ(n) ((uint32_t)(n) << ADC_TSMR_TSFREQ_SHIFT)
#define ADC_TSMR_TSSCTIM_SHIFT (16) /* Bit 16-19: Touchscreen Switches Closure Time */
#define ADC_TSMR_TSSCTIM_MASK (15 << ADC_TSMR_TSSCTIM_SHIFT)

View File

@ -50,6 +50,7 @@
#include <arch/board/board.h>
#include <nuttx/arch.h>
#include <nuttx/wqueue.h>
#include <nuttx/analog/adc.h>
#include "up_internal.h"
@ -147,11 +148,13 @@ struct sam_adc_s
{
#ifdef SAMA5_ADC_HAVE_CHANNELS
struct adc_dev_s dev; /* The external via of the ADC device */
uint32_t pending; /* Pending EOC events */
#ifdef CONFIG_SAMA5_ADC_DMA
DMA_HANDLE dma; /* Handle for DMA channel */
#endif
struct work_s work; /* Supports the interrupt handling "bottom half" */
#endif
sem_t exclsem; /* Supports exclusive access to the ADC interface */
/* Debug stuff */
@ -184,7 +187,8 @@ static int sam_adc_dmasetup(struct sam_adc_s *priv, FAR uint8_t *buffer,
/* ADC interrupt handling */
#ifdef SAMA5_ADC_HAVE_CHANNELS
static void sam_adc_endconversion(struct sam_adc_s *priv, uint32_t pending);
static void sam_tsd_bottomhalf(void *arg);
static int sam_tsd_schedule(struct sam_tsd_s *priv, uint32_t pending);
#endif
static int sam_adc_interrupt(int irq, void *context);
@ -321,7 +325,7 @@ static void sam_adc_dmacallback(DMA_HANDLE handle, void *arg, int result)
* invalidating the data cache.
*
* Input Parameters:
* dev - An instance of the SDIO device interface
* priv - An instance of the ADC device interface
* buffer - The memory to DMA from
* buflen - The size of the DMA transfer in bytes
*
@ -331,10 +335,9 @@ static void sam_adc_dmacallback(DMA_HANDLE handle, void *arg, int result)
****************************************************************************/
#ifdef CONFIG_SAMA5_ADC_DMA
static int sam_adc_dmasetup(FAR struct sdio_dev_s *dev, FAR uint8_t *buffer,
static int sam_adc_dmasetup(FAR struct sam_adc_s *priv, FAR uint8_t *buffer,
size_t buflen)
{
struct sam_dev_s *priv = (struct sam_dev_s *)dev;
uint32_t paddr;
uint32_t maddr;
@ -370,18 +373,40 @@ static int sam_adc_dmasetup(FAR struct sdio_dev_s *dev, FAR uint8_t *buffer,
* ADC interrupt handling
****************************************************************************/
/****************************************************************************
* Name: sam_adc_endconversion
* Name: sam_tsd_bottomhalf
*
* Description:
* End of conversion interrupt handler
* This function executes on the worker thread. It is scheduled by
* sam_tsd_interrupt whenever any enabled end-of-conversion event occurs.
* All EOC interrupts are disabled when this function runs. sam_tsd_bottomhalf
* will re-enable EOC interrupts when it completes processing all pending
* EOC events.
*
* Input Parameters
* arg - The ADC private data structure cast to (void *)
*
* Returned Value:
* None
*
****************************************************************************/
static void sam_adc_endconversion(struct sam_adc_s *priv, uint32_t pending)
static void sam_tsd_bottomhalf(void *arg)
{
struct sam_tsd_s *priv = (struct sam_tsd_s *)arg;
uint32_t regval;
uint32_t pending;
int chan;
ASSERT(priv != NULL);
/* Get the set of unmasked, pending ADC interrupts */
pending = priv->pending;
/* Get exclusive access to the driver data structure */
sam_adc_lock(priv->adc);
/* Check for the end of conversion event on each channel */
for (chan = 0; chan < SAM_ADC_NCHANNELS && pending != 0; chan++)
@ -396,8 +421,54 @@ static void sam_adc_endconversion(struct sam_adc_s *priv, uint32_t pending)
pending &= ~bit;
}
}
/* Exit, re-enabling ADC interrupts */
ignored:
/* Re-enable ADC interrupts. */
sam_adc_putreg32(priv->adc, SAM_ADC_IER, SAMA5_CHAN_ENABLE);
/* Release our lock on the ADC structure */
sem_adc_unlock(priv->adc);
}
/****************************************************************************
* Name: sam_tsd_schedule
****************************************************************************/
static int sam_tsd_schedule(struct sam_tsd_s *priv, uint32_t pending)
{
int ret;
/* Disable further touchscreen interrupts. Touchscreen interrupts will be
* re-enabled after the worker thread executes.
*/
sam_adc_putreg32(priv->adc, SAM_ADC_IDR, ADC_INT_EOCALL);
/* Save the set of pending interrupts for the bottom half (in case any
* were cleared by reading the ISR.
*/
priv->pending = pending.
/* Transfer processing to the worker thread. Since touchscreen ADC interrupts are
* disabled while the work is pending, no special action should be required
* to protected the work queue.
*/
DEBUGASSERT(priv->work.worker == NULL);
ret = work_queue(HPWORK, &priv->work, sam_tsd_bottomhalf, priv, 0);
if (ret != 0)
{
illdbg("Failed to queue work: %d\n", ret);
}
return OK;
}
#endif /* SAMA5_ADC_HAVE_CHANNELS */
/****************************************************************************
@ -439,9 +510,16 @@ static int sam_adc_interrupt(int irq, void *context)
if ((pending & ADC_INT_EOCALL) != 0)
{
/* Let the touchscreen handle its interrupts */
/* Schedule sampling to occur by the interrupt bottom half on the
* worker thread.
*/
ret = sam_tsd_schedule(priv, pending);
if (ret < 0)
{
idbg("ERROR: sam_tsd_schedule failed: %d\n", ret);
}
sam_adc_endconversion(pending);
pending &= ~ADC_INT_EOCALL;
}
#endif
@ -649,6 +727,10 @@ struct adc_dev_s *sam_adc_initialize(void)
sam_configpio(PIO_ADC_TRG);
#endif
/* Initialize the ADC device data structure */
sem_init(&priv->exclsem, 0, 1);
#ifdef CONFIG_SAMA5_ADC_DMA
/* Allocate a DMA channel */
@ -669,6 +751,44 @@ struct adc_dev_s *sam_adc_initialize(void)
return &g_adcdev;
}
/****************************************************************************
* Name: sam_adc_lock
*
* Description:
* Get exclusive access to the ADC interface
*
****************************************************************************/
void sam_adc_lock(FAR struct sam_adc_s *priv)
{
int ret;
do
{
ret = sem_wait(&priv->exclsem);
/* This should only fail if the wait was canceled by an signal
* (and the worker thread will receive a lot of signals).
*/
DEBUGASSERT(ret == OK || errno == EINTR);
}
while (ret < 0);
}
/****************************************************************************
* Name: sam_adc_unlock
*
* Description:
* Relinquish the lock on the ADC interface
*
****************************************************************************/
void sam_adc_unlock(FAR struct sam_adc_s *priv)
{
sem_post(&priv->exclsem)
}
/****************************************************************************
* Name: sam_adc_getreg
*
@ -678,9 +798,8 @@ struct adc_dev_s *sam_adc_initialize(void)
****************************************************************************/
#ifdef CONFIG_SAMA5_ADC_REGDEBUG
static uint32_t sam_adc_getreg(ADC_HANDLE handle, uintptr_t address)
static uint32_t sam_adc_getreg(struct sam_adc_s *priv, uintptr_t address)
{
struct sam_adc_s *priv = (struct sam_adc_s *)handle;
uint32_t regval = getreg32(address);
if (sam_adc_checkreg(priv, false, regval, address))
@ -701,10 +820,8 @@ static uint32_t sam_adc_getreg(ADC_HANDLE handle, uintptr_t address)
****************************************************************************/
#ifdef CONFIG_SAMA5_ADC_REGDEBUG
void sam_adc_putreg(ADC_HANDLE handle, uintptr_t address, uint32_t regval)
void sam_adc_putreg(struct sam_adc_s *priv, uintptr_t address, uint32_t regval)
{
struct sam_adc_s *priv = (struct sam_adc_s *)handle;
if (sam_adc_checkreg(priv, true, regval, address))
{
lldbg("%08x<-%08x\n", address, regval);

View File

@ -50,6 +50,10 @@
****************************************************************************/
/* Configuration ************************************************************/
#ifndef CONFIG_SCHED_WORKQUEUE
# error Work queue support is required (CONFIG_SCHED_WORKQUEUE)
#endif
#ifndef CONFIG_DEBUG
# undef CONFIG_SAMA5_ADC_REGDEBUG
#endif
@ -116,22 +120,43 @@ extern "C"
*
****************************************************************************/
FAR struct adc_dev_s *sam_adcinitialize(void);
struct sam_adc_s;
FAR struct sam_adc_s *sam_adcinitialize(void);
/****************************************************************************
* Interfaces exported from the ADC to the touchscreen driver
****************************************************************************/
/****************************************************************************
* Name: sam_adc_lock
*
* Description:
* Get exclusive access to the ADC interface
*
****************************************************************************/
void sam_adc_lock(FAR struct sam_adc_s *priv);
/****************************************************************************
* Name: sam_adc_unlock
*
* Description:
* Relinquish the lock on the ADC interface
*
****************************************************************************/
void sam_adc_unlock(FAR struct sam_adc_s *priv);
/****************************************************************************
* Name: sam_adc_getreg
*
* Description:
* Read any 32-bit register using an absolute address.
* Read any 32-bit register using an absolute address.
*
****************************************************************************/
#ifdef CONFIG_SAMA5_ADC_REGDEBUG
uint32_t sam_adc_getreg(FAR struct adc_dev_s *, uintptr_t address)
uint32_t sam_adc_getreg(FAR struct sam_adc_s *priv, uintptr_t address);
#else
# define sam_adc_getreg(handle,addr) getreg32(addr)
#endif
@ -140,13 +165,13 @@ uint32_t sam_adc_getreg(FAR struct adc_dev_s *, uintptr_t address)
* Name: sam_adc_putreg
*
* Description:
* Write to any 32-bit register using an absolute address.
* Write to any 32-bit register using an absolute address.
*
****************************************************************************/
#ifdef CONFIG_SAMA5_ADC_REGDEBUG
void sam_adc_putreg(FAR struct adc_dev_s *dev, uintptr_t address,
uint32_t regval)
void sam_adc_putreg(FAR struct sam_adc_s *priv, uintptr_t address,
uint32_t regval);
#else
# define sam_adc_putreg(handle,addr,val) putreg32(val,addr)
#endif

View File

@ -139,10 +139,9 @@ struct sam_tsd_s
uint16_t threshx; /* Thresholding X value */
uint16_t threshy; /* Thresholding Y value */
volatile uint32_t pending; /* Pending interrupt set set */
sem_t devsem; /* Manages exclusive access to this structure */
sem_t waitsem; /* Used to wait for the availability of data */
struct adc_dev_s *dev; /* ADC device handle */
struct sam_adc_s *adc; /* ADC device handle */
struct work_s work; /* Supports the interrupt handling "bottom half" */
struct sam_sample_s sample; /* Last sampled touch point data */
WDOG_ID wdog; /* Poll the position while the pen is down */
@ -163,22 +162,22 @@ struct sam_tsd_s
/* Interrupt bottom half logic and data sampling */
static void sam_notify(struct sam_tsd_s *priv);
static int sam_sample(struct sam_tsd_s *priv, struct sam_sample_s *sample);
static int sam_waitsample(struct sam_tsd_s *priv,
static void sam_tsd_notify(struct sam_tsd_s *priv);
static int sam_tsd_sample(struct sam_tsd_s *priv, struct sam_sample_s *sample);
static int sam_tsd_waitsample(struct sam_tsd_s *priv,
struct sam_sample_s *sample);
static void sam_bottomhalf(void *arg);
static int sam_schedule(struct sam_tsd_s *priv, uint32_t pending);
static void sam_wdog(int argc, uint32_t arg1, ...);
static void sam_tsd_bottomhalf(void *arg);
static int sam_tsd_schedule(struct sam_tsd_s *priv, uint32_t pending);
static void sam_tsd_expiry(int argc, uint32_t arg1, ...);
/* Character driver methods */
static int sam_open(struct file *filep);
static int sam_close(struct file *filep);
static ssize_t sam_read(struct file *filep, char *buffer, size_t len);
static int sam_ioctl(struct file *filep, int cmd, unsigned long arg);
static int sam_tsd_open(struct file *filep);
static int sam_tsd_close(struct file *filep);
static ssize_t sam_tsd_read(struct file *filep, char *buffer, size_t len);
static int sam_tsd_ioctl(struct file *filep, int cmd, unsigned long arg);
#ifndef CONFIG_DISABLE_POLL
static int sam_poll(struct file *filep, struct pollfd *fds, bool setup);
static int sam_tsd_poll(struct file *filep, struct pollfd *fds, bool setup);
#endif
/****************************************************************************
@ -189,14 +188,14 @@ static int sam_poll(struct file *filep, struct pollfd *fds, bool setup);
static const struct file_operations g_tsdops =
{
sam_open, /* open */
sam_close, /* close */
sam_read, /* read */
0, /* write */
0, /* seek */
sam_ioctl /* ioctl */
sam_tsd_open, /* open */
sam_tsd_close, /* close */
sam_tsd_read, /* read */
0, /* write */
0, /* seek */
sam_tsd_ioctl /* ioctl */
#ifndef CONFIG_DISABLE_POLL
, sam_poll /* poll */
, sam_tsd_poll /* poll */
#endif
};
@ -209,10 +208,10 @@ static struct sam_tsd_s g_tsd;
****************************************************************************/
/****************************************************************************
* Name: sam_notify
* Name: sam_tsd_notify
****************************************************************************/
static void sam_notify(struct sam_tsd_s *priv)
static void sam_tsd_notify(struct sam_tsd_s *priv)
{
#ifndef CONFIG_DISABLE_POLL
int i;
@ -252,10 +251,10 @@ static void sam_notify(struct sam_tsd_s *priv)
}
/****************************************************************************
* Name: sam_sample
* Name: sam_tsd_sample
****************************************************************************/
static int sam_sample(struct sam_tsd_s *priv, struct sam_sample_s *sample)
static int sam_tsd_sample(struct sam_tsd_s *priv, struct sam_sample_s *sample)
{
irqstate_t flags;
int ret = -EAGAIN;
@ -305,10 +304,10 @@ static int sam_sample(struct sam_tsd_s *priv, struct sam_sample_s *sample)
}
/****************************************************************************
* Name: sam_waitsample
* Name: sam_tsd_waitsample
****************************************************************************/
static int sam_waitsample(struct sam_tsd_s *priv, struct sam_sample_s *sample)
static int sam_tsd_waitsample(struct sam_tsd_s *priv, struct sam_sample_s *sample)
{
irqstate_t flags;
int ret;
@ -329,13 +328,13 @@ static int sam_waitsample(struct sam_tsd_s *priv, struct sam_sample_s *sample)
* run, but they cannot run yet because pre-emption is disabled.
*/
sem_post(&priv->devsem);
sam_adc_unlock(priv->adc);
/* Try to get the a sample... if we cannot, then wait on the semaphore
* that is posted when new sample data is available.
*/
while (sam_sample(priv, sample) < 0)
while (sam_tsd_sample(priv, sample) < 0)
{
/* Wait for a sample data */
@ -350,7 +349,7 @@ static int sam_waitsample(struct sam_tsd_s *priv, struct sam_sample_s *sample)
* the failure now.
*/
idbg("sem_wait: %d\n", errno);
idbg("ERROR: sem_wait: %d\n", errno);
DEBUGASSERT(errno == EINTR);
ret = -EINTR;
goto errout;
@ -364,7 +363,7 @@ static int sam_waitsample(struct sam_tsd_s *priv, struct sam_sample_s *sample)
* Interrupts and pre-emption will be re-enabled while we wait.
*/
ret = sem_wait(&priv->devsem);
sam_adc_lock(priv->adc);
errout:
/* Then re-enable interrupts. We might get interrupt here and there
@ -385,12 +384,71 @@ errout:
}
/****************************************************************************
* Name: sam_bottomhalf
* Name: sam_tsd_setaverage
*
* Description:
* The ADC hardware can filter the touchscreen samples by averaging. The
* function selects (or de-selects) that filtering.
*
* Input Parameters
* priv - The touchscreen private data structure
* tsav - The new (shifted) value of the TSAV field of the ADC TSMR regsiter.
*
* Returned Value:
* None
*
****************************************************************************/
static void sam_tsd_setaverage(truct sam_tsd_s *priv, uint32_t tsav)
{
uint32_t regval;
uint32_t minfreq;
uint32_t tsfreq;
/* Get the current value of the TSMR register */
regval = sam_adc_getreg(priv->dev, SAM_ADC_TSMR);
/* Get the unshifted TSAVE value and compare it to the touchscreen
* frequency
*
* minfreq = 0: No filtering
* minfreq = 1: Averages 2 ADC conversions
* minfreq = 2: Averages 4 ADC conversions
* minfreq = 3: Averages 8 ADC conversions
*/
minfreq = (tsav >> ADC_TSMR_TSAV_SHIF);
if (minfreq)
{
/* TSFREQ: Defines the Touchscreen Frequency compared to the Trigger
* Frequency. --> TSFREQ must be greater or equal to TSAV. <--
*/
tsfreq = (regval & ADC_TSMR_TSFREQ_MASK) >> ADC_TSMR_TSFREQ_SHIFT;
if (minfreq > tsfreq)
{
/* Set TSFREQ = TSAV */
regval &= ~ADC_TSMR_TSFREQ_MASK;
regval |= ADC_TSMR_TSFREQ(minfreq);
}
}
/* Save the new filter value */
regval &= ADC_TSMR_TSAV_MASK
regval |= tsav;
sam_adc_putreg(priv->dev, SAM_ADC_TSMR, regval);
}
/****************************************************************************
* Name: sam_tsd_bottomhalf
*
* Description:
* This function executes on the worker thread. It is scheduled by
* sam_tsd_interrupt whenever any interesting, enabled TSD event occurs.
* All TSD interrupts are disabled when this function runs. sam_bottomhalf
* All TSD interrupts are disabled when this function runs. sam_tsd_bottomhalf
* will re-enable TSD interrupts when it completes processing all pending
* TSD events.
*
@ -402,7 +460,7 @@ errout:
*
****************************************************************************/
static void sam_bottomhalf(void *arg)
static void sam_tsd_bottomhalf(void *arg)
{
struct sam_tsd_s *priv = (struct sam_tsd_s *)arg;
uint32_t pending;
@ -428,17 +486,7 @@ static void sam_bottomhalf(void *arg)
/* Get exclusive access to the driver data structure */
do
{
ret = sem_wait(&priv->devsem);
/* This should only fail if the wait was canceled by an signal
* (and the worker thread will receive a lot of signals).
*/
DEBUGASSERT(ret == OK || errno == EINTR);
}
while (ret < 0);
sam_adc_lock(priv->adc);
/* Check for pen up or down by reading the PENIRQ GPIO. */
#warning Missing logic
@ -484,7 +532,7 @@ static void sam_bottomhalf(void *arg)
* later.
*/
wd_start(priv->wdog, TSD_WDOG_DELAY, sam_wdog, 1, (uint32_t)priv);
wd_start(priv->wdog, TSD_WDOG_DELAY, sam_tsd_expiry, 1, (uint32_t)priv);
goto ignored;
}
else
@ -502,7 +550,7 @@ static void sam_bottomhalf(void *arg)
/* Continue to sample the position while the pen is down */
wd_start(priv->wdog, TSD_WDOG_DELAY, sam_wdog, 1, (uint32_t)priv);
wd_start(priv->wdog, TSD_WDOG_DELAY, sam_tsd_expiry, 1, (uint32_t)priv);
/* Check the thresholds. Bail if there is no significant difference */
@ -547,25 +595,25 @@ static void sam_bottomhalf(void *arg)
/* Notify any waiters that new touchscreen data is available */
sam_notify(priv);
sam_tsd_notify(priv);
/* Exit, re-enabling touchscreen interrupts */
ignored:
/* Re-enable touchscreen interrupts. */
sam_adc_putreg32(priv->dev, SAM_ADC_IER, ADC_TSD_ALLINTS);
sam_adc_putreg32(priv->adc, SAM_ADC_IER, ADC_TSD_ALLINTS);
/* Release our lock on the state structure */
sem_post(&priv->devsem);
sem_adc_unlock(priv->adc);
}
/****************************************************************************
* Name: sam_schedule
* Name: sam_tsd_schedule
****************************************************************************/
static int sam_schedule(struct sam_tsd_s *priv, uint32_t pending)
static int sam_tsd_schedule(struct sam_tsd_s *priv, uint32_t pending)
{
int ret;
@ -579,7 +627,7 @@ static int sam_schedule(struct sam_tsd_s *priv, uint32_t pending)
* re-enabled after the worker thread executes.
*/
sam_adc_putreg32(priv->dev, SAM_ADC_IDR, ADC_TSD_ALLINTS);
sam_adc_putreg32(priv->adc, SAM_ADC_IDR, ADC_TSD_ALLINTS);
/* Save the set of pending interrupts for the bottom half (in case any
* were cleared by reading the ISR.
@ -593,7 +641,7 @@ static int sam_schedule(struct sam_tsd_s *priv, uint32_t pending)
*/
DEBUGASSERT(priv->work.worker == NULL);
ret = work_queue(HPWORK, &priv->work, sam_bottomhalf, priv, 0);
ret = work_queue(HPWORK, &priv->work, sam_tsd_bottomhalf, priv, 0);
if (ret != 0)
{
illdbg("Failed to queue work: %d\n", ret);
@ -603,7 +651,7 @@ static int sam_schedule(struct sam_tsd_s *priv, uint32_t pending)
}
/****************************************************************************
* Name: sam_wdog
* Name: sam_tsd_expiry
*
* Description:
* While the pen is pressed, pen position is periodically polled via a
@ -611,7 +659,7 @@ static int sam_schedule(struct sam_tsd_s *priv, uint32_t pending)
*
****************************************************************************/
static void sam_wdog(int argc, uint32_t arg1, ...)
static void sam_tsd_expiry(int argc, uint32_t arg1, ...)
{
struct sam_tsd_s *priv = (struct sam_tsd_s *)((uintptr_t)arg1);
uint32_t pending;
@ -621,34 +669,34 @@ static void sam_wdog(int argc, uint32_t arg1, ...)
*/
pending = sam_adc_getreg(priv, SAM_ADC_ISR) & ADC_TSD_ALLSTATUS;
(void)sam_schedule(priv, pending);
(void)sam_tsd_schedule(priv, pending);
}
/****************************************************************************
* Name: sam_open
* Name: sam_tsd_open
****************************************************************************/
static int sam_open(struct file *filep)
static int sam_tsd_open(struct file *filep)
{
ivdbg("Opening\n");
return OK;
}
/****************************************************************************
* Name: sam_close
* Name: sam_tsd_close
****************************************************************************/
static int sam_close(struct file *filep)
static int sam_tsd_close(struct file *filep)
{
ivdbg("Closing\n");
return OK;
}
/****************************************************************************
* Name: sam_read
* Name: sam_tsd_read
****************************************************************************/
static ssize_t sam_read(struct file *filep, char *buffer, size_t len)
static ssize_t sam_tsd_read(struct file *filep, char *buffer, size_t len)
{
struct inode *inode;
struct sam_tsd_s *priv;
@ -673,25 +721,17 @@ static ssize_t sam_read(struct file *filep, char *buffer, size_t len)
* handle smaller reads... but why?
*/
idbg("Unsupported read size: %d\n", len);
idbg("ERROR: Unsupported read size: %d\n", len);
return -ENOSYS;
}
/* Get exclusive access to the driver data structure */
ret = sem_wait(&priv->devsem);
if (ret < 0)
{
/* This should only happen if the wait was canceled by an signal */
idbg("sem_wait: %d\n", errno);
DEBUGASSERT(errno == EINTR);
return -EINTR;
}
sem_adc_lock(priv->adc);
/* Try to read sample data. */
ret = sam_sample(priv, &sample);
ret = sam_tsd_sample(priv, &sample);
if (ret < 0)
{
/* Sample data is not available now. We would ave to wait to get
@ -708,12 +748,12 @@ static ssize_t sam_read(struct file *filep, char *buffer, size_t len)
/* Wait for sample data */
ret = sam_waitsample(priv, &sample);
ret = sam_tsd_waitsample(priv, &sample);
if (ret < 0)
{
/* We might have been awakened by a signal */
idbg("sam_waitsample: %d\n", ret);
idbg("ERROR: sam_tsd_waitsample: %d\n", ret);
goto errout;
}
}
@ -768,16 +808,16 @@ static ssize_t sam_read(struct file *filep, char *buffer, size_t len)
ret = SIZEOF_TOUCH_SAMPLE_S(1);
errout:
sem_post(&priv->devsem);
sem_adc_unlock(priv->adc);
ivdbg("Returning: %d\n", ret);
return ret;
}
/****************************************************************************
* Name:sam_ioctl
* Name:sam_tsd_ioctl
****************************************************************************/
static int sam_ioctl(struct file *filep, int cmd, unsigned long arg)
static int sam_tsd_ioctl(struct file *filep, int cmd, unsigned long arg)
{
struct inode *inode;
struct sam_tsd_s *priv;
@ -792,14 +832,7 @@ static int sam_ioctl(struct file *filep, int cmd, unsigned long arg)
/* Get exclusive access to the driver data structure */
ret = sem_wait(&priv->devsem);
if (ret < 0)
{
/* This should only happen if the wait was canceled by an signal */
DEBUGASSERT(errno == EINTR);
return -EINTR;
}
sam_adc_lock(priv->adc);
/* Process the IOCTL by command */
@ -810,16 +843,16 @@ static int sam_ioctl(struct file *filep, int cmd, unsigned long arg)
break;
}
sem_post(&priv->devsem);
sam_adc_unlock(priv->adc);
return ret;
}
/****************************************************************************
* Name: sam_poll
* Name: sam_tsd_poll
****************************************************************************/
#ifndef CONFIG_DISABLE_POLL
static int sam_poll(struct file *filep, struct pollfd *fds, bool setup)
static int sam_tsd_poll(struct file *filep, struct pollfd *fds, bool setup)
{
struct inode *inode;
struct sam_tsd_s *priv;
@ -833,17 +866,12 @@ static int sam_poll(struct file *filep, struct pollfd *fds, bool setup)
DEBUGASSERT(inode && inode->i_private);
priv = (struct sam_tsd_s *)inode->i_private;
/* Get exclusive access to the ADC hardware */
sam_adc_lock(priv->adc);
/* Are we setting up the poll? Or tearing it down? */
ret = sem_wait(&priv->devsem);
if (ret < 0)
{
/* This should only happen if the wait was canceled by an signal */
DEBUGASSERT(errno == EINTR);
return -EINTR;
}
if (setup)
{
/* Ignore waits that do not include POLLIN */
@ -883,7 +911,7 @@ static int sam_poll(struct file *filep, struct pollfd *fds, bool setup)
if (priv->penchange)
{
sam_notify(priv);
sam_tsd_notify(priv);
}
}
else if (fds->priv)
@ -900,7 +928,7 @@ static int sam_poll(struct file *filep, struct pollfd *fds, bool setup)
}
errout:
sem_post(&priv->devsem);
sam_adc_unlock(priv->adc);
return ret;
}
#endif
@ -921,7 +949,8 @@ errout:
* /dev/inputN where N is the minor device number
*
* Input Parameters:
* minor - The input device minor number
* adc - An opaque reference to the ADC device structure
* minor - The input device minor number
*
* Returned Value:
* Zero is returned on success. Otherwise, a negated errno value is
@ -929,7 +958,7 @@ errout:
*
****************************************************************************/
int sam_tsd_register(struct adc_dev_s *dev, int minor)
int sam_tsd_register(struct sam_adc_s *adc, int minor)
{
struct sam_tsd_s *priv = &g_tsd;
char devname[DEV_NAMELEN];
@ -939,17 +968,16 @@ int sam_tsd_register(struct adc_dev_s *dev, int minor)
/* Debug-only sanity checks */
DEBUGASSERT(dev && minor >= 0 && minor < 100);
DEBUGASSERT(adc && minor >= 0 && minor < 100);
/* Initialize the touchscreen device driver instance */
memset(priv, 0, sizeof(struct sam_tsd_s));
priv->dev = dev; /* Save the ADC device handle */
priv->adc = adc; /* Save the ADC device handle */
priv->wdog = wd_create(); /* Create a watchdog timer */
priv->threshx = INVALID_THRESHOLD; /* Initialize thresholding logic */
priv->threshy = INVALID_THRESHOLD; /* Initialize thresholding logic */
sem_init(&priv->devsem, 0, 1); /* Initialize device structure semaphore */
sem_init(&priv->waitsem, 0, 0); /* Initialize pen event wait semaphore */
/* Make sure that interrupts are disabled and clear any pending interrupts */
@ -969,7 +997,7 @@ int sam_tsd_register(struct adc_dev_s *dev, int minor)
ret = register_driver(devname, &g_tsdops, 0666, priv);
if (ret < 0)
{
idbg("register_driver() failed: %d\n", ret);
idbg("ERROR: register_driver() failed: %d\n", ret);
goto errout_with_priv;
}
@ -977,10 +1005,10 @@ int sam_tsd_register(struct adc_dev_s *dev, int minor)
* availability conditions.
*/
ret = work_queue(HPWORK, &priv->work, sam_bottomhalf, priv, 0);
ret = work_queue(HPWORK, &priv->work, sam_tsd_bottomhalf, priv, 0);
if (ret != 0)
{
idbg("Failed to queue work: %d\n", ret);
idbg("ERROR: Failed to queue work: %d\n", ret);
goto errout_with_priv;
}
@ -989,7 +1017,6 @@ int sam_tsd_register(struct adc_dev_s *dev, int minor)
return OK;
errout_with_priv:
sem_destroy(&priv->devsem);
sem_destroy(&priv->waitsem);
return ret;
}
@ -1017,24 +1044,14 @@ void sam_tsd_interrupt(uint32_t pending)
if ((pending & ADC_TSD_ALLINTS) != 0)
{
/* Disable further touchscreen interrupts */
sam_adc_putreg32(priv->dev, SAM_ADC_IDR, ADC_TSD_ALLINTS);
/* Save the set of pending interrupts for the bottom half (in case any
* were cleared by reading the ISR.
*/
priv->pending = pending & ADC_TSD_ALLSTATUS;
/* Schedule sampling to occur by the interrupt bottom half on the
* worker thread.
*/
ret = sam_schedule(priv, pending);
ret = sam_tsd_schedule(priv, pending);
if (ret < 0)
{
idbg("ERROR: sam_schedule failed: %d\n", ret);
idbg("ERROR: sam_tsd_schedule failed: %d\n", ret);
}
}

View File

@ -88,7 +88,8 @@ extern "C"
*
****************************************************************************/
int sam_tsd_register(FAR struct adc_dev_s *dev, int minor);
struct sam_adc_s;
int sam_tsd_register(FAR struct sam_adc_s *adc, int minor);
/****************************************************************************
* Interfaces exported from the touchscreen to the ADC driver