summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-12-20 14:41:32 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-12-20 14:41:32 +0000
commitca038722e88f047a2eb0e35ef0954aebcf932791 (patch)
tree2f408755b3a07b39e65d2336ef3a023c0a412334
parentc4080df06cc977a0801794b83a51f6739e347379 (diff)
downloadnuttx-ca038722e88f047a2eb0e35ef0954aebcf932791.tar.gz
nuttx-ca038722e88f047a2eb0e35ef0954aebcf932791.tar.bz2
nuttx-ca038722e88f047a2eb0e35ef0954aebcf932791.zip
First round of PWM driver debug changes
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4204 42af7a65-404d-4744-a932-0658087f49c3
-rw-r--r--apps/examples/pwm/pwm_main.c8
-rw-r--r--nuttx/arch/arm/src/stm32/stm32_pwm.c6
-rwxr-xr-xnuttx/configs/stm3240g-eval/README.txt6
-rwxr-xr-xnuttx/configs/stm3240g-eval/include/board.h2
-rw-r--r--nuttx/drivers/pwm.c50
5 files changed, 67 insertions, 5 deletions
diff --git a/apps/examples/pwm/pwm_main.c b/apps/examples/pwm/pwm_main.c
index 18b93f8d1..cbabb564f 100644
--- a/apps/examples/pwm/pwm_main.c
+++ b/apps/examples/pwm/pwm_main.c
@@ -265,7 +265,10 @@ int pwm_main(int argc, char *argv[])
/* Configure the characteristics of the pulse train */
info.frequency = g_pwmstate.freq;
- info.duty = (info.duty < 16) / 100;
+ info.duty = ((uint32_t)g_pwmstate.duty << 16) / 100;
+
+ message("pwm_main: starting output with frequency: %d duty: %08x\n",
+ info.frequency, info.duty);
ret = ioctl(fd, PWMIOC_SETCHARACTERISTICS, (unsigned long)((uintptr_t)&info));
if (ret < 0)
@@ -289,6 +292,9 @@ int pwm_main(int argc, char *argv[])
/* Then stop the pulse train */
+ message("pwm_main: stopping output\n",
+ info.frequency, info.duty);
+
ret = ioctl(fd, PWMIOC_STOP, 0);
if (ret < 0)
{
diff --git a/nuttx/arch/arm/src/stm32/stm32_pwm.c b/nuttx/arch/arm/src/stm32/stm32_pwm.c
index 1e3f4f07d..420537ebb 100644
--- a/nuttx/arch/arm/src/stm32/stm32_pwm.c
+++ b/nuttx/arch/arm/src/stm32/stm32_pwm.c
@@ -70,6 +70,7 @@
* Pre-processor Definitions
****************************************************************************/
/* Debug ********************************************************************/
+/* Non-standard debug that may be enabled just for testing PWM */
#ifdef CONFIG_DEBUG_PWM
# define pwmdbg dbg
@@ -434,10 +435,13 @@ static int pwm_start(FAR struct pwm_lowerhalf_s *dev, FAR const struct pwm_info_
uint16_t ocmode1;
uint16_t ocmode2;
+ DEBUGASSERT(priv != NULL && info != NULL);
+
pwmvdbg("TIM%d channel: %d frequency: %d duty: %08x\n",
priv->timid, priv->channel, info->frequency, info->duty);
+ DEBUGASSERT(info->frequency > 0 && info->duty > 0 && info->duty < uitoub16(100));
- /* Caculate optimal values for the timer prescaler and for the timer reload
+ /* Calculate optimal values for the timer prescaler and for the timer reload
* register. If' frequency' is the desired frequency, then
*
* reload = timclk / frequency
diff --git a/nuttx/configs/stm3240g-eval/README.txt b/nuttx/configs/stm3240g-eval/README.txt
index 4fcc63938..ac3ebb103 100755
--- a/nuttx/configs/stm3240g-eval/README.txt
+++ b/nuttx/configs/stm3240g-eval/README.txt
@@ -521,3 +521,9 @@ Where <subdir> is one of the following:
CONFIG_NSH_IPADDR=(10<<24|0<<16|0<<8|2) : Target IP address 10.0.0.2
CONFIG_NSH_DRIPADDR=(10<<24|0<<16|0<<8|1) : Host IP address 10.0.0.1
+ NOTE: This example assumes that a network is connected. During its
+ initialization, it will try to negotiate the link speed. If you have
+ no network connected when you reset the board, there will be a long
+ delay (maybe 30 seconds?) before anything happens. That is the timeout
+ before the networking finally gives up and decides that no network is
+ available.
diff --git a/nuttx/configs/stm3240g-eval/include/board.h b/nuttx/configs/stm3240g-eval/include/board.h
index ba1016910..9ae54a4d0 100755
--- a/nuttx/configs/stm3240g-eval/include/board.h
+++ b/nuttx/configs/stm3240g-eval/include/board.h
@@ -274,7 +274,7 @@
* FSMC must be disabled in this case!
*/
-#define GPIO_TIM4_CH2 GPIO_TIM4_CH2_1
+#define GPIO_TIM4_CH2 GPIO_TIM4_CH2_2
/************************************************************************************
* Public Data
diff --git a/nuttx/drivers/pwm.c b/nuttx/drivers/pwm.c
index 15447e9be..455e72706 100644
--- a/nuttx/drivers/pwm.c
+++ b/nuttx/drivers/pwm.c
@@ -66,6 +66,20 @@
/****************************************************************************
* Pre-processor Definitions
****************************************************************************/
+/* Debug ********************************************************************/
+/* Non-standard debug that may be enabled just for testing PWM */
+
+#ifdef CONFIG_DEBUG_PWM
+# define pwmdbg dbg
+# define pwmvdbg vdbg
+# define pwmlldbg lldbg
+# define pwmllvdbg llvdbg
+#else
+# define pwmdbg(x...)
+# define pwmvdbg(x...)
+# define pwmlldbg(x...)
+# define pwmllvdbg(x...)
+#endif
/****************************************************************************
* Private Type Definitions
@@ -128,6 +142,8 @@ static int pwm_open(FAR struct file *filep)
uint8_t tmp;
int ret;
+ pwmvdbg("crefs: %d\n", upper->crefs);
+
/* Get exclusive access to the device structures */
ret = sem_wait(&upper->sem);
@@ -159,6 +175,9 @@ static int pwm_open(FAR struct file *filep)
/* Yes.. perform one time hardware initialization. */
+ DEBUGASSERT(lower->ops->setup != NULL);
+ pwmvdbg("calling setup\n");
+
ret = lower->ops->setup(lower);
if (ret < 0)
{
@@ -192,6 +211,8 @@ static int pwm_close(FAR struct file *filep)
FAR struct pwm_upperhalf_s *upper = inode->i_private;
int ret;
+ pwmvdbg("crefs: %d\n", upper->crefs);
+
/* Get exclusive access to the device structures */
ret = sem_wait(&upper->sem);
@@ -219,6 +240,9 @@ static int pwm_close(FAR struct file *filep)
/* Disable the PWM device */
+ DEBUGASSERT(lower->ops->shutdown != NULL);
+ pwmvdbg("calling shutdown: %d\n");
+
lower->ops->shutdown(lower);
}
ret = OK;
@@ -275,6 +299,8 @@ static int pwm_ioctl(FAR struct file *filep, int cmd, unsigned long arg)
/* Handle built-in ioctl commands */
+ pwmvdbg("cmd: %d arg: %ld\n", cmd, arg);
+
switch (cmd)
{
/* PWMIOC_SETCHARACTERISTICS - Set the characteristics of the next pulsed
@@ -290,6 +316,11 @@ static int pwm_ioctl(FAR struct file *filep, int cmd, unsigned long arg)
case PWMIOC_SETCHARACTERISTICS:
{
FAR const struct pwm_info_s *info = (FAR const struct pwm_info_s*)((uintptr_t)arg);
+ DEBUGASSERT(info != NULL && lower->ops->start != NULL);
+
+ pwmvdbg("PWMIOC_SETCHARACTERISTICS frequency: %d duty: %08x started: %d\n",
+ info->frequency, info->duty, upper->started);
+
memcpy(&upper->info, info, sizeof(struct pwm_info_s));
if (upper->started)
{
@@ -308,7 +339,11 @@ static int pwm_ioctl(FAR struct file *filep, int cmd, unsigned long arg)
case PWMIOC_GETCHARACTERISTICS:
{
FAR struct pwm_info_s *info = (FAR struct pwm_info_s*)((uintptr_t)arg);
+ DEBUGASSERT(info != NULL);
+
memcpy(info, &upper->info, sizeof(struct pwm_info_s));
+ pwmvdbg("PWMIOC_GETCHARACTERISTICS frequency: %d duty: %08x\n",
+ info->frequency, info->duty);
}
break;
@@ -320,6 +355,11 @@ static int pwm_ioctl(FAR struct file *filep, int cmd, unsigned long arg)
case PWMIOC_START:
{
+ pwmvdbg("PWMIOC_START frequency: %d duty: %08x started: %d\n",
+ upper->info.frequency, upper->info.duty, upper->started);
+
+ DEBUGASSERT(lower->ops->start != NULL);
+
if (!upper->started)
{
ret = lower->ops->start(lower, &upper->info);
@@ -335,6 +375,9 @@ static int pwm_ioctl(FAR struct file *filep, int cmd, unsigned long arg)
case PWMIOC_STOP:
{
+ pwmvdbg("PWMIOC_STOP: started: %d\n", upper->started);
+ DEBUGASSERT(lower->ops->stop != NULL);
+
if (upper->started)
{
ret = lower->ops->stop(lower);
@@ -347,6 +390,8 @@ static int pwm_ioctl(FAR struct file *filep, int cmd, unsigned long arg)
default:
{
+ pwmvdbg("Forwarding unrecognized cmd: %d arg: %ld\n", cmd, arg);
+ DEBUGASSERT(lower->ops->ioctl != NULL);
ret = lower->ops->ioctl(lower, cmd, arg);
}
break;
@@ -392,6 +437,7 @@ int pwm_register(FAR const char *path, FAR struct pwm_lowerhalf_s *dev)
upper = (FAR struct pwm_upperhalf_s *)zalloc(sizeof(struct pwm_upperhalf_s));
if (!upper)
{
+ pwmdbg("Allocation failed\n");
return -ENOMEM;
}
@@ -402,8 +448,8 @@ int pwm_register(FAR const char *path, FAR struct pwm_lowerhalf_s *dev)
/* Register the PWM device */
- vdbg("Registering %s\n", path);
- return register_driver(path, &g_pwmops, 0666, dev);
+ pwmvdbg("Registering %s\n", path);
+ return register_driver(path, &g_pwmops, 0666, upper);
}
#endif /* CONFIG_PWM */