@@ -258,9 +258,9 @@ static void rampstat_work_handler(struct k_work *work)
258
258
259
259
#endif
260
260
261
- static int tmc50xx_stepper_enable (const struct device * dev , const bool enable )
261
+ static int tmc50xx_stepper_enable (const struct device * dev )
262
262
{
263
- LOG_DBG ("Stepper motor controller %s %s " , dev -> name , enable ? "enabled" : "disabled" );
263
+ LOG_DBG ("Enabling Stepper motor controller %s" , dev -> name );
264
264
const struct tmc50xx_stepper_config * config = dev -> config ;
265
265
uint32_t reg_value ;
266
266
int err ;
@@ -270,17 +270,26 @@ static int tmc50xx_stepper_enable(const struct device *dev, const bool enable)
270
270
return - EIO ;
271
271
}
272
272
273
- if (enable ) {
274
- reg_value |= TMC5XXX_CHOPCONF_DRV_ENABLE_MASK ;
275
- } else {
276
- reg_value &= ~TMC5XXX_CHOPCONF_DRV_ENABLE_MASK ;
277
- }
273
+ reg_value |= TMC5XXX_CHOPCONF_DRV_ENABLE_MASK ;
278
274
279
- err = tmc50xx_write (config -> controller , TMC50XX_CHOPCONF (config -> index ), reg_value );
275
+ return tmc50xx_write (config -> controller , TMC50XX_CHOPCONF (config -> index ), reg_value );
276
+ }
277
+
278
+ static int tmc50xx_stepper_disable (const struct device * dev )
279
+ {
280
+ LOG_DBG ("Disabling Stepper motor controller %s" , dev -> name );
281
+ const struct tmc50xx_stepper_config * config = dev -> config ;
282
+ uint32_t reg_value ;
283
+ int err ;
284
+
285
+ err = tmc50xx_read (config -> controller , TMC50XX_CHOPCONF (config -> index ), & reg_value );
280
286
if (err != 0 ) {
281
287
return - EIO ;
282
288
}
283
- return 0 ;
289
+
290
+ reg_value &= ~TMC5XXX_CHOPCONF_DRV_ENABLE_MASK ;
291
+
292
+ return tmc50xx_write (config -> controller , TMC50XX_CHOPCONF (config -> index ), reg_value );
284
293
}
285
294
286
295
static int tmc50xx_stepper_is_moving (const struct device * dev , bool * is_moving )
@@ -681,6 +690,20 @@ static int tmc50xx_stepper_init(const struct device *dev)
681
690
return 0 ;
682
691
}
683
692
693
+ static DEVICE_API (stepper , tmc50xx_stepper_api ) = {
694
+ .enable = tmc50xx_stepper_enable ,
695
+ .disable = tmc50xx_stepper_disable ,
696
+ .is_moving = tmc50xx_stepper_is_moving ,
697
+ .move_by = tmc50xx_stepper_move_by ,
698
+ .set_micro_step_res = tmc50xx_stepper_set_micro_step_res ,
699
+ .get_micro_step_res = tmc50xx_stepper_get_micro_step_res ,
700
+ .set_reference_position = tmc50xx_stepper_set_reference_position ,
701
+ .get_actual_position = tmc50xx_stepper_get_actual_position ,
702
+ .move_to = tmc50xx_stepper_move_to ,
703
+ .run = tmc50xx_stepper_run ,
704
+ .set_event_callback = tmc50xx_stepper_set_event_callback ,
705
+ };
706
+
684
707
#define TMC50XX_SHAFT_CONFIG (child ) \
685
708
(DT_PROP(child, invert_direction) << TMC50XX_GCONF_SHAFT_SHIFT(DT_REG_ADDR(child))) |
686
709
@@ -705,23 +728,10 @@ static int tmc50xx_stepper_init(const struct device *dev)
705
728
static struct tmc50xx_stepper_data tmc50xx_stepper_data_##child = { \
706
729
.stepper = DEVICE_DT_GET(child),};
707
730
708
- #define TMC50XX_STEPPER_API_DEFINE (child ) \
709
- static DEVICE_API(stepper, tmc50xx_stepper_api_##child) = { \
710
- .enable = tmc50xx_stepper_enable, \
711
- .is_moving = tmc50xx_stepper_is_moving, \
712
- .move_by = tmc50xx_stepper_move_by, \
713
- .set_micro_step_res = tmc50xx_stepper_set_micro_step_res, \
714
- .get_micro_step_res = tmc50xx_stepper_get_micro_step_res, \
715
- .set_reference_position = tmc50xx_stepper_set_reference_position, \
716
- .get_actual_position = tmc50xx_stepper_get_actual_position, \
717
- .move_to = tmc50xx_stepper_move_to, \
718
- .run = tmc50xx_stepper_run, \
719
- .set_event_callback = tmc50xx_stepper_set_event_callback, };
720
-
721
731
#define TMC50XX_STEPPER_DEFINE (child ) \
722
732
DEVICE_DT_DEFINE(child, tmc50xx_stepper_init, NULL, &tmc50xx_stepper_data_##child, \
723
733
&tmc50xx_stepper_config_##child, POST_KERNEL, \
724
- CONFIG_STEPPER_INIT_PRIORITY, &tmc50xx_stepper_api_##child );
734
+ CONFIG_STEPPER_INIT_PRIORITY, &tmc50xx_stepper_api );
725
735
726
736
#define TMC50XX_DEFINE (inst ) \
727
737
BUILD_ASSERT(DT_INST_CHILD_NUM(inst) <= 2, "tmc50xx can drive two steppers at max"); \
@@ -739,7 +749,6 @@ static int tmc50xx_stepper_init(const struct device *dev)
739
749
.clock_frequency = DT_INST_PROP(inst, clock_frequency),}; \
740
750
DT_INST_FOREACH_CHILD(inst, TMC50XX_STEPPER_CONFIG_DEFINE); \
741
751
DT_INST_FOREACH_CHILD(inst, TMC50XX_STEPPER_DATA_DEFINE); \
742
- DT_INST_FOREACH_CHILD(inst, TMC50XX_STEPPER_API_DEFINE); \
743
752
DT_INST_FOREACH_CHILD(inst, TMC50XX_STEPPER_DEFINE); \
744
753
DEVICE_DT_INST_DEFINE(inst, tmc50xx_init, NULL, &tmc50xx_data_##inst, \
745
754
&tmc50xx_config_##inst, POST_KERNEL, CONFIG_STEPPER_INIT_PRIORITY,\
0 commit comments