Primary Git Repository for the Zephyr Project. Zephyr is a new generation, scalable, optimized, secure RTOS for multiple hardware architectures.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

408 lines
11 KiB

/*
* SPDX-FileCopyrightText: Copyright (c) 2024 Carl Zeiss Meditec AG
* SPDX-FileCopyrightText: Copyright (c) 2024 Jilay Sandeep Pandya
* SPDX-License-Identifier: Apache-2.0
*/
#define DT_DRV_COMPAT zephyr_gpio_stepper
#include <zephyr/drivers/gpio.h>
#include <zephyr/kernel.h>
#include <zephyr/sys_clock.h>
#include <zephyr/drivers/stepper.h>
#include <zephyr/sys/__assert.h>
#include <zephyr/logging/log.h>
LOG_MODULE_REGISTER(gpio_stepper_motor_controller, CONFIG_STEPPER_LOG_LEVEL);
#define MAX_MICRO_STEP_RES STEPPER_MICRO_STEP_2
#define NUM_CONTROL_PINS 4
static const uint8_t
half_step_lookup_table[NUM_CONTROL_PINS * MAX_MICRO_STEP_RES][NUM_CONTROL_PINS] = {
{1u, 1u, 0u, 0u}, {0u, 1u, 0u, 0u}, {0u, 1u, 1u, 0u}, {0u, 0u, 1u, 0u},
{0u, 0u, 1u, 1u}, {0u, 0u, 0u, 1u}, {1u, 0u, 0u, 1u}, {1u, 0u, 0u, 0u}};
struct gpio_stepper_config {
const struct gpio_dt_spec en_pin;
const struct gpio_dt_spec *control_pins;
bool invert_direction;
};
struct gpio_stepper_data {
const struct device *dev;
struct k_spinlock lock;
enum stepper_direction direction;
enum stepper_run_mode run_mode;
uint8_t step_gap;
uint8_t coil_charge;
struct k_work_delayable stepper_dwork;
int32_t actual_position;
uint64_t delay_in_ns;
int32_t step_count;
stepper_event_callback_t callback;
void *event_cb_user_data;
};
static int stepper_motor_set_coil_charge(const struct device *dev)
{
struct gpio_stepper_data *data = dev->data;
const struct gpio_stepper_config *config = dev->config;
for (int i = 0; i < NUM_CONTROL_PINS; i++) {
(void)gpio_pin_set_dt(&config->control_pins[i],
half_step_lookup_table[data->coil_charge][i]);
}
return 0;
}
static void increment_coil_charge(const struct device *dev)
{
struct gpio_stepper_data *data = dev->data;
if (data->coil_charge == NUM_CONTROL_PINS * MAX_MICRO_STEP_RES - data->step_gap) {
data->coil_charge = 0;
} else {
data->coil_charge = data->coil_charge + data->step_gap;
}
}
static void decrement_coil_charge(const struct device *dev)
{
struct gpio_stepper_data *data = dev->data;
if (data->coil_charge == 0) {
data->coil_charge = NUM_CONTROL_PINS * MAX_MICRO_STEP_RES - data->step_gap;
} else {
data->coil_charge = data->coil_charge - data->step_gap;
}
}
static int energize_coils(const struct device *dev, const bool energized)
{
const struct gpio_stepper_config *config = dev->config;
for (int i = 0; i < NUM_CONTROL_PINS; i++) {
const int err = gpio_pin_set_dt(&config->control_pins[i], energized);
if (err != 0) {
LOG_ERR("Failed to power down coil %d", i);
return err;
}
}
return 0;
}
static void update_coil_charge(const struct device *dev)
{
const struct gpio_stepper_config *config = dev->config;
struct gpio_stepper_data *data = dev->data;
if (data->direction == STEPPER_DIRECTION_POSITIVE) {
config->invert_direction ? decrement_coil_charge(dev) : increment_coil_charge(dev);
data->actual_position++;
} else if (data->direction == STEPPER_DIRECTION_NEGATIVE) {
config->invert_direction ? increment_coil_charge(dev) : decrement_coil_charge(dev);
data->actual_position--;
}
}
static void update_remaining_steps(const struct device *dev)
{
struct gpio_stepper_data *data = dev->data;
if (data->step_count > 0) {
data->step_count--;
} else if (data->step_count < 0) {
data->step_count++;
}
}
static void update_direction_from_step_count(const struct device *dev)
{
struct gpio_stepper_data *data = dev->data;
if (data->step_count > 0) {
data->direction = STEPPER_DIRECTION_POSITIVE;
} else if (data->step_count < 0) {
data->direction = STEPPER_DIRECTION_NEGATIVE;
} else {
LOG_ERR("Step count is zero");
}
}
static void position_mode_task(const struct device *dev)
{
struct gpio_stepper_data *data = dev->data;
update_remaining_steps(dev);
(void)stepper_motor_set_coil_charge(dev);
update_coil_charge(dev);
if (data->step_count) {
(void)k_work_reschedule(&data->stepper_dwork, K_NSEC(data->delay_in_ns));
} else {
if (data->callback) {
data->callback(data->dev, STEPPER_EVENT_STEPS_COMPLETED,
data->event_cb_user_data);
}
(void)k_work_cancel_delayable(&data->stepper_dwork);
}
}
static void velocity_mode_task(const struct device *dev)
{
struct gpio_stepper_data *data = dev->data;
(void)stepper_motor_set_coil_charge(dev);
update_coil_charge(dev);
(void)k_work_reschedule(&data->stepper_dwork, K_NSEC(data->delay_in_ns));
}
static void stepper_work_step_handler(struct k_work *work)
{
struct k_work_delayable *dwork = k_work_delayable_from_work(work);
struct gpio_stepper_data *data =
CONTAINER_OF(dwork, struct gpio_stepper_data, stepper_dwork);
K_SPINLOCK(&data->lock) {
switch (data->run_mode) {
case STEPPER_RUN_MODE_POSITION:
position_mode_task(data->dev);
break;
case STEPPER_RUN_MODE_VELOCITY:
velocity_mode_task(data->dev);
break;
default:
LOG_WRN("Unsupported run mode %d", data->run_mode);
break;
}
}
}
static int gpio_stepper_move_by(const struct device *dev, int32_t micro_steps)
{
struct gpio_stepper_data *data = dev->data;
if (data->delay_in_ns == 0) {
LOG_ERR("Step interval not set or invalid step interval set");
return -EINVAL;
}
K_SPINLOCK(&data->lock) {
data->run_mode = STEPPER_RUN_MODE_POSITION;
data->step_count = micro_steps;
update_direction_from_step_count(dev);
(void)k_work_reschedule(&data->stepper_dwork, K_NO_WAIT);
}
return 0;
}
static int gpio_stepper_set_reference_position(const struct device *dev, int32_t position)
{
struct gpio_stepper_data *data = dev->data;
K_SPINLOCK(&data->lock) {
data->actual_position = position;
}
return 0;
}
static int gpio_stepper_get_actual_position(const struct device *dev, int32_t *position)
{
struct gpio_stepper_data *data = dev->data;
K_SPINLOCK(&data->lock) {
*position = data->actual_position;
}
return 0;
}
static int gpio_stepper_move_to(const struct device *dev, int32_t micro_steps)
{
struct gpio_stepper_data *data = dev->data;
int32_t steps_to_move;
K_SPINLOCK(&data->lock) {
steps_to_move = micro_steps - data->actual_position;
}
return gpio_stepper_move_by(dev, steps_to_move);
}
static int gpio_stepper_is_moving(const struct device *dev, bool *is_moving)
{
struct gpio_stepper_data *data = dev->data;
*is_moving = k_work_delayable_is_pending(&data->stepper_dwork);
LOG_DBG("Motor is %s moving", *is_moving ? "" : "not");
return 0;
}
static int gpio_stepper_set_microstep_interval(const struct device *dev,
uint64_t microstep_interval_ns)
{
struct gpio_stepper_data *data = dev->data;
if (microstep_interval_ns == 0) {
LOG_ERR("Step interval is invalid.");
return -EINVAL;
}
K_SPINLOCK(&data->lock) {
data->delay_in_ns = microstep_interval_ns;
}
LOG_DBG("Setting Motor step interval to %llu", microstep_interval_ns);
return 0;
}
static int gpio_stepper_run(const struct device *dev, const enum stepper_direction direction)
{
struct gpio_stepper_data *data = dev->data;
K_SPINLOCK(&data->lock) {
data->run_mode = STEPPER_RUN_MODE_VELOCITY;
data->direction = direction;
(void)k_work_reschedule(&data->stepper_dwork, K_NO_WAIT);
}
return 0;
}
static int gpio_stepper_set_micro_step_res(const struct device *dev,
enum stepper_micro_step_resolution micro_step_res)
{
struct gpio_stepper_data *data = dev->data;
int err = 0;
K_SPINLOCK(&data->lock) {
switch (micro_step_res) {
case STEPPER_MICRO_STEP_1:
case STEPPER_MICRO_STEP_2:
data->step_gap = MAX_MICRO_STEP_RES >> (micro_step_res - 1);
break;
default:
LOG_ERR("Unsupported micro step resolution %d", micro_step_res);
err = -ENOTSUP;
}
}
return err;
}
static int gpio_stepper_get_micro_step_res(const struct device *dev,
enum stepper_micro_step_resolution *micro_step_res)
{
struct gpio_stepper_data *data = dev->data;
*micro_step_res = MAX_MICRO_STEP_RES >> (data->step_gap - 1);
return 0;
}
static int gpio_stepper_set_event_callback(const struct device *dev,
stepper_event_callback_t callback, void *user_data)
{
struct gpio_stepper_data *data = dev->data;
K_SPINLOCK(&data->lock) {
data->callback = callback;
}
data->event_cb_user_data = user_data;
return 0;
}
static int gpio_stepper_enable(const struct device *dev)
{
const struct gpio_stepper_config *config = dev->config;
struct gpio_stepper_data *data = dev->data;
int err;
K_SPINLOCK(&data->lock) {
if (config->en_pin.port != NULL) {
err = gpio_pin_set_dt(&config->en_pin, 1);
} else {
LOG_DBG("No en_pin detected");
err = -ENOTSUP;
}
}
return err;
}
static int gpio_stepper_disable(const struct device *dev)
{
const struct gpio_stepper_config *config = dev->config;
struct gpio_stepper_data *data = dev->data;
int err;
K_SPINLOCK(&data->lock) {
(void)energize_coils(dev, false);
if (config->en_pin.port != NULL) {
err = gpio_pin_set_dt(&config->en_pin, 0);
} else {
LOG_DBG("No en_pin detected, power stages will not be turned off if "
"stepper is in motion");
err = -ENOTSUP;
}
}
return err;
}
static int gpio_stepper_stop(const struct device *dev)
{
struct gpio_stepper_data *data = dev->data;
int err;
K_SPINLOCK(&data->lock) {
(void)k_work_cancel_delayable(&data->stepper_dwork);
err = energize_coils(dev, true);
if (data->callback && !err) {
data->callback(data->dev, STEPPER_EVENT_STOPPED, data->event_cb_user_data);
}
}
return err;
}
static int gpio_stepper_init(const struct device *dev)
{
struct gpio_stepper_data *data = dev->data;
const struct gpio_stepper_config *config = dev->config;
data->dev = dev;
LOG_DBG("Initializing %s gpio_stepper with %d pin", dev->name, NUM_CONTROL_PINS);
for (uint8_t n_pin = 0; n_pin < NUM_CONTROL_PINS; n_pin++) {
(void)gpio_pin_configure_dt(&config->control_pins[n_pin], GPIO_OUTPUT_INACTIVE);
}
k_work_init_delayable(&data->stepper_dwork, stepper_work_step_handler);
return 0;
}
static DEVICE_API(stepper, gpio_stepper_api) = {
.enable = gpio_stepper_enable,
.disable = gpio_stepper_disable,
.set_micro_step_res = gpio_stepper_set_micro_step_res,
.get_micro_step_res = gpio_stepper_get_micro_step_res,
.set_reference_position = gpio_stepper_set_reference_position,
.get_actual_position = gpio_stepper_get_actual_position,
.set_event_callback = gpio_stepper_set_event_callback,
.set_microstep_interval = gpio_stepper_set_microstep_interval,
.move_by = gpio_stepper_move_by,
.move_to = gpio_stepper_move_to,
.run = gpio_stepper_run,
.stop = gpio_stepper_stop,
.is_moving = gpio_stepper_is_moving,
};
#define GPIO_STEPPER_DEFINE(inst) \
static const struct gpio_dt_spec gpio_stepper_motor_control_pins_##inst[] = { \
DT_INST_FOREACH_PROP_ELEM_SEP(inst, gpios, GPIO_DT_SPEC_GET_BY_IDX, (,)), \
}; \
BUILD_ASSERT(ARRAY_SIZE(gpio_stepper_motor_control_pins_##inst) == 4, \
"gpio_stepper_controller driver currently supports only 4 wire configuration"); \
static const struct gpio_stepper_config gpio_stepper_config_##inst = { \
.invert_direction = DT_INST_PROP(inst, invert_direction), \
.control_pins = gpio_stepper_motor_control_pins_##inst}; \
static struct gpio_stepper_data gpio_stepper_data_##inst = { \
.step_gap = MAX_MICRO_STEP_RES >> (DT_INST_PROP(inst, micro_step_res) - 1), \
}; \
BUILD_ASSERT(DT_INST_PROP(inst, micro_step_res) <= STEPPER_MICRO_STEP_2, \
"gpio_stepper_controller driver supports up to 2 micro steps"); \
DEVICE_DT_INST_DEFINE(inst, gpio_stepper_init, NULL, &gpio_stepper_data_##inst, \
&gpio_stepper_config_##inst, POST_KERNEL, \
CONFIG_STEPPER_INIT_PRIORITY, &gpio_stepper_api);
DT_INST_FOREACH_STATUS_OKAY(GPIO_STEPPER_DEFINE)