-
Notifications
You must be signed in to change notification settings - Fork 49
/
driverPIO.pio
258 lines (227 loc) · 8.01 KB
/
driverPIO.pio
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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
;
; driverPIO.pio - driver code for RP2040 ARM processors
;
; Part of grblHAL
;
; Copyright (c) 2021 Terje Io
; Copyright (c) 2021 Volksolive
;
; Grbl 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 3 of the License, or
; (at your option) any later version.
;
; Grbl 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 Grbl. If not, see <http://www.gnu.org/licenses/>.
;
;
; stepper_timer: Generates the main stepper interrupt
;
.program stepper_timer
pull noblock ; Pull timer period from the TX FIFO, loads X into OSR if empty
mov x osr ; Reload X from OSR
mov y x
count:
jmp y-- count
irq 0
% c-sdk {
static inline void stepper_timer_program_init(PIO pio, uint32_t sm, uint32_t offset, float div) {
pio_sm_config c = stepper_timer_program_get_default_config(offset);
// Load our configuration, and jump to the start of the program
pio_sm_init(pio, sm, offset, &c);
// Set the clock divider
pio_sm_set_clkdiv(pio, sm, div);
}
static inline void stepper_timer_set_period(PIO pio, uint32_t sm, uint32_t offset, uint32_t period) {
static uint32_t period_prev = 0;
if(period_prev != period) {
period_prev = period;
pio_sm_put(pio, sm, period);
pio_sm_exec(pio, sm, pio_encode_jmp(offset));
}
if(!(pio->ctrl & (1 << sm))) {
pio_sm_set_enabled(pio, sm, true);
pio->inte0 |= PIO_INTR_SM0_BITS;
}
}
static inline void stepper_timer_stop(PIO pio, uint32_t sm) {
pio_sm_set_enabled(pio, sm, false);
pio->inte0 &= ~PIO_INTR_SM0_BITS;
}
static inline void stepper_timer_irq_clear(PIO pio) {
pio->irq = 1;
}
%}
;
; step_pulse: Generate step pulses for up to 6 axes with settable delay and pulse length
;
.program step_pulse
pull block
out x, 8
delay:
jmp x-- delay
out x, 8
out pins, 6
pulse:
jmp x-- pulse
out pins, 6
% c-sdk {
static inline void step_pulse_program_init(PIO pio, uint32_t sm, uint32_t offset, uint32_t startPin, uint32_t pinCount) {
pio_sm_config c = step_pulse_program_get_default_config(offset);
// Map the state machine's OUT pin group to the provided pin in pin count in parameters
sm_config_set_out_pins(&c, startPin, pinCount);
// Set these pins GPIO function (connect PIO to the pad)
for(uint32_t i=0;i<pinCount;i++)
pio_gpio_init(pio, startPin+i);
// Set the pin direction to output at the PIO
pio_sm_set_consecutive_pindirs(pio, sm, startPin, pinCount, true);
// Set the set pins group to the same pins as the out pins group to reset the pins when the steps are finished
sm_config_set_set_pins(&c, startPin, pinCount);
// Load our configuration, and jump to the start of the program
pio_sm_init(pio, sm, offset, &c);
pio_sm_set_clkdiv(pio, sm, 12.5f);
// Set the state machine running
pio_sm_set_enabled(pio, sm, true);
}
static inline void step_pulse_generate(PIO pio, uint32_t sm, uint32_t stepPulse) {
pio_sm_put(pio, sm, stepPulse);
}
%}
;
; step_dir_sr4: Generate dir signals and step pulses for up to 4 axes with settable delay and settable pulse length
; via a single 74HC595 shift register. Delay and pulse length timings are handled by separate programs.
;
.program step_dir_sr4
.define public T3 5 ; Shift register clock and latch pulse length
.side_set 2
pull block side 0x0
out y, 8 side 0x0
mov isr, y side 0x0
mov x, osr side 0x0
; output direction signals
set y, 7 side 0x0
loop1:
out pins, 1 side 0x0 [T3]
jmp y-- loop1 side 0x1 [T3]
irq set 4 side 0x2 [T3]
set y, 7 side 0x0
mov osr, isr side 0x0
wait 1 irq 5 side 0x0
; output step signals
loop2:
out pins, 1 side 0x0 [T3]
jmp y-- loop2 side 0x1 [T3]
irq set 6 side 0x2 [T3]
set y, 7 side 0x0
mov osr, x side 0x0
wait 1 irq 7 side 0x0
; reset step signals
loop3:
out pins, 1 side 0x0 [T3]
jmp y-- loop3 side 0x1 [T3]
set y, 0 side 0x2 [T3]
% c-sdk {
#include "hardware/gpio.h"
static inline void step_dir_sr4_program_init(PIO pio, uint32_t sm, uint32_t offset, uint32_t dataPin, uint32_t bckPin) {
pio_sm_config c = step_dir_sr4_program_get_default_config(offset);
sm_config_set_out_pins(&c, dataPin, 1);
sm_config_set_sideset_pins(&c, bckPin);
sm_config_set_clkdiv(&c, 1);
pio_sm_set_pins_with_mask(pio, sm, (3u << bckPin) | (1u << dataPin), (3u << bckPin) | (1u << dataPin));
pio_sm_set_pindirs_with_mask(pio, sm, (3u << bckPin) | (1u << dataPin), (3u << bckPin) | (1u << dataPin));
pio_gpio_init(pio, dataPin);
pio_gpio_init(pio, bckPin);
pio_gpio_init(pio, bckPin + 1);
pio_sm_init(pio, sm, offset, &c);
pio_sm_set_enabled(pio, sm, true);
}
static inline void step_dir_sr4_write(PIO pio, uint32_t sm, uint32_t data) {
pio_sm_put(pio, sm, data);
}
%}
;
; sr_delay: adds dir to step pulse delay for step_dir_sr4 above
;
.program sr_delay
pull noblock ; Pull timer period from the TX FIFO, loads X into OSR if empty
mov x osr ; Reload X from OSR
mov y x
wait 1 irq 4
count:
jmp y-- count
irq set 5
% c-sdk {
static inline void sr_delay_program_init(PIO pio, uint32_t sm, uint32_t offset, float div) {
pio_sm_config c = sr_delay_program_get_default_config(offset);
// Load our configuration, and jump to the start of the program
pio_sm_init(pio, sm, offset, &c);
// Set the clock divider
pio_sm_set_clkdiv(pio, sm, div);
pio_sm_set_enabled(pio, sm, true);
}
static inline void sr_delay_set(PIO pio, uint32_t sm, uint32_t period) {
pio_sm_put(pio, sm, period);
}
%}
;
; sr_hold: adds step pulse length delay for step_dir_sr4 above
;
.program sr_hold
pull noblock ; Pull timer period from the TX FIFO, loads X into OSR if empty
mov x osr ; Reload X from OSR
mov y x
wait 1 irq 6
count:
jmp y-- count
irq set 7
% c-sdk {
static inline void sr_hold_program_init(PIO pio, uint32_t sm, uint32_t offset, float div) {
pio_sm_config c = sr_hold_program_get_default_config(offset);
// Load our configuration, and jump to the start of the program
pio_sm_init(pio, sm, offset, &c);
// Set the clock divider
pio_sm_set_clkdiv(pio, sm, div);
pio_sm_set_enabled(pio, sm, true);
}
static inline void sr_hold_set(PIO pio, uint32_t sm, uint32_t period) {
pio_sm_put(pio, sm, period);
}
%}
;
; out_sr16: output up to 16 signals via two chained 74HC595 shift registers.
;
.program out_sr16
.define public T3 5 ; Shift register clock and latch pulse length
.side_set 2
pull block side 0x0
set y, 15 side 0x0
loop1:
out pins, 1 side 0x0 [T3]
jmp y-- loop1 side 0x1 [T3]
set y, 0 side 0x2 [T3]
% c-sdk {
#include "hardware/gpio.h"
static inline void out_sr16_program_init(PIO pio, uint32_t sm, uint32_t offset, uint32_t dataPin, uint32_t bckPin) {
uint32_t mask = (3u << bckPin) | (1u << dataPin);
pio_sm_config c = out_sr16_program_get_default_config(offset);
sm_config_set_out_pins(&c, dataPin, 1);
sm_config_set_sideset_pins(&c, bckPin);
sm_config_set_clkdiv(&c, 1);
pio_sm_set_pins_with_mask(pio, sm, mask, mask);
pio_sm_set_pindirs_with_mask(pio, sm, mask, mask);
pio_gpio_init(pio, dataPin);
pio_gpio_init(pio, bckPin);
pio_gpio_init(pio, bckPin + 1);
sm_config_set_fifo_join(&c, PIO_FIFO_JOIN_TX);
pio_sm_init(pio, sm, offset, &c);
pio_sm_set_enabled(pio, sm, true);
}
static inline void out_sr16_write(PIO pio, uint32_t sm, uint32_t data) {
pio_sm_put(pio, sm, data);
}
%}