File: ao_pwm.c

package info (click to toggle)
altos 1.6.8-5
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 63,748 kB
  • ctags: 36,577
  • sloc: ansic: 92,100; java: 36,273; makefile: 6,495; xml: 3,096; sh: 1,971; pascal: 1,581
file content (215 lines) | stat: -rw-r--r-- 5,423 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
208
209
210
211
212
213
214
215
/*
 * Copyright © 2016 Keith Packard <keithp@keithp.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
 */

#include "ao.h"
#include "ao_pwm.h"

static uint8_t	pwm_running;

static uint16_t	pwm_value[NUM_PWM];

static void
ao_pwm_up(void)
{
	if (pwm_running++ == 0) {
		struct stm_tim23	*tim = AO_PWM_TIMER;

		tim->ccr1 = 0;
		tim->ccr2 = 0;
		tim->ccr3 = 0;
		tim->ccr4 = 0;
		tim->arr = PWM_MAX - 1;	/* turn on the timer */
		tim->cr1 = ((STM_TIM23_CR1_CKD_1 << STM_TIM23_CR1_CKD) |
			    (0 << STM_TIM23_CR1_ARPE) |
			    (STM_TIM23_CR1_CMS_EDGE << STM_TIM23_CR1_CMS) |
			    (STM_TIM23_CR1_DIR_UP << STM_TIM23_CR1_DIR) |
			    (0 << STM_TIM23_CR1_OPM) |
			    (0 << STM_TIM23_CR1_URS) |
			    (0 << STM_TIM23_CR1_UDIS) |
			    (1 << STM_TIM23_CR1_CEN));

		/* Set the timer running */
		tim->egr = (1 << STM_TIM23_EGR_UG);
	}
}

static void
ao_pwm_down(void)
{
	if (--pwm_running == 0) {
		struct stm_tim23	*tim = AO_PWM_TIMER;

		tim->arr = 0;
		tim->cr1 = ((STM_TIM23_CR1_CKD_1 << STM_TIM23_CR1_CKD) |
			    (0 << STM_TIM23_CR1_ARPE) |
			    (STM_TIM23_CR1_CMS_EDGE << STM_TIM23_CR1_CMS) |
			    (STM_TIM23_CR1_DIR_UP << STM_TIM23_CR1_DIR) |
			    (0 << STM_TIM23_CR1_OPM) |
			    (0 << STM_TIM23_CR1_URS) |
			    (0 << STM_TIM23_CR1_UDIS) |
			    (0 << STM_TIM23_CR1_CEN));

		/* Stop the timer */
		tim->egr = (1 << STM_TIM23_EGR_UG);
	}
}

void
ao_pwm_set(uint8_t pwm, uint16_t value)
{
	struct stm_tim23	*tim = AO_PWM_TIMER;
	uint8_t			ch = AO_PWM_0_CH;

	if (value > PWM_MAX)
		value = PWM_MAX;
	if (value != 0) {
		if (pwm_value[pwm] == 0)
			ao_pwm_up();
	}
#if NUM_PWM > 1
	switch (pwm) {
	case 0:
		ch = AO_PWM_0_CH;
		break;
	case 1:
		ch = AO_PWM_0_CH;
		break;
#if NUM_PWM > 2
	case 2:
		ch = AO_PWM_0_CH;
		break;
#endif
#if NUM_PWM > 3
	case 3:
		ch = AO_PWM_0_CH;
		break;
#endif
	}
#endif

	switch (ch) {
	case 1:
		tim->ccr1 = value;
		break;
	case 2:
		tim->ccr2 = value;
		break;
	case 3:
		tim->ccr3 = value;
		break;
	case 4:
		tim->ccr4 = value;
		break;
	}
	if (value == 0) {
		if (pwm_value[pwm] != 0)
			ao_pwm_down();
	}
	pwm_value[pwm] = value;
}

static void
ao_pwm_cmd(void)
{
	uint8_t	ch;
	uint16_t val;

	ao_cmd_decimal();
	ch = ao_cmd_lex_u32;
	ao_cmd_decimal();
	val = ao_cmd_lex_u32;
	if (ao_cmd_status != ao_cmd_success)
		return;

	printf("Set channel %d to %d\n", ch, val);
	ao_pwm_set(ch, val);
}

static const struct ao_cmds ao_pwm_cmds[] = {
	{ ao_pwm_cmd,	"P <ch> <val>\0Set PWM ch to val" },
	{ 0, NULL },
};

void
ao_pwm_init(void)
{
	struct stm_tim23	*tim = AO_PWM_TIMER;

	stm_rcc.apb1enr |= (1 << AO_PWM_TIMER_ENABLE);

	tim->cr1 = 0;
	tim->psc = AO_PWM_TIMER_SCALE - 1;
	tim->cnt = 0;
	tim->ccer = ((1 << STM_TIM23_CCER_CC1E) |
		     (0 << STM_TIM23_CCER_CC1P) |
		     (1 << STM_TIM23_CCER_CC2E) |
		     (0 << STM_TIM23_CCER_CC2P) |
		     (1 << STM_TIM23_CCER_CC3E) |
		     (0 << STM_TIM23_CCER_CC3P) |
		     (1 << STM_TIM23_CCER_CC4E) |
		     (0 << STM_TIM23_CCER_CC4P));

	tim->ccmr1 = ((0 << STM_TIM23_CCMR1_OC2CE) |
		      (STM_TIM23_CCMR1_OC2M_PWM_MODE_1 << STM_TIM23_CCMR1_OC2M) |
		      (0 << STM_TIM23_CCMR1_OC2PE) |
		      (0 << STM_TIM23_CCMR1_OC2FE) |
		      (STM_TIM23_CCMR1_CC2S_OUTPUT << STM_TIM23_CCMR1_CC2S) |

		      (0 << STM_TIM23_CCMR1_OC1CE) |
		      (STM_TIM23_CCMR1_OC1M_PWM_MODE_1 << STM_TIM23_CCMR1_OC1M) |
		      (0 << STM_TIM23_CCMR1_OC1PE) |
		      (0 << STM_TIM23_CCMR1_OC1FE) |
		      (STM_TIM23_CCMR1_CC1S_OUTPUT << STM_TIM23_CCMR1_CC1S));


	tim->ccmr2 = ((0 << STM_TIM23_CCMR2_OC4CE) |
		      (STM_TIM23_CCMR2_OC4M_PWM_MODE_1 << STM_TIM23_CCMR2_OC4M) |
		      (0 << STM_TIM23_CCMR2_OC4PE) |
		      (0 << STM_TIM23_CCMR2_OC4FE) |
		      (STM_TIM23_CCMR2_CC4S_OUTPUT << STM_TIM23_CCMR2_CC4S) |

		      (0 << STM_TIM23_CCMR2_OC3CE) |
		      (STM_TIM23_CCMR2_OC3M_PWM_MODE_1 << STM_TIM23_CCMR2_OC3M) |
		      (0 << STM_TIM23_CCMR2_OC3PE) |
		      (0 << STM_TIM23_CCMR2_OC3FE) |
		      (STM_TIM23_CCMR2_CC3S_OUTPUT << STM_TIM23_CCMR2_CC3S));
	tim->egr = 0;

	tim->sr = 0;
	tim->dier = 0;
	tim->smcr = 0;
	tim->cr2 = ((0 << STM_TIM23_CR2_TI1S) |
		    (STM_TIM23_CR2_MMS_RESET<< STM_TIM23_CR2_MMS) |
		    (0 << STM_TIM23_CR2_CCDS));

	stm_afr_set(AO_PWM_0_GPIO, AO_PWM_0_PIN, STM_AFR_AF1);
	stm_ospeedr_set(AO_PWM_0_GPIO, AO_PWM_0_PIN, STM_OSPEEDR_MEDIUM);
#if NUM_PWM > 1
	stm_afr_set(AO_PWM_1_GPIO, AO_PWM_1_PIN, STM_AFR_AF1);
	stm_ospeedr_set(AO_PWM_1_GPIO, AO_PWM_1_PIN, STM_OSPEEDR_MEDIUM);
#endif
#if NUM_PWM > 2
	stm_afr_set(AO_PWM_2_GPIO, AO_PWM_2_PIN, STM_AFR_AF1);
	stm_ospeedr_set(AO_PWM_2_GPIO, AO_PWM_2_PIN, STM_OSPEEDR_MEDIUM);
#endif
#if NUM_PWM > 3
	stm_afr_set(AO_PWM_3_GPIO, AO_PWM_3_PIN, STM_AFR_AF1);
	stm_ospeedr_set(AO_PWM_3_GPIO, AO_PWM_3_PIN, STM_OSPEEDR_MEDIUM);
#endif
	ao_cmd_register(&ao_pwm_cmds[0]);
}