mirror of
https://github.com/micropython/micropython.git
synced 2025-12-16 01:40:14 +01:00
This commit adds the beginning of a new alif port with support for Alif Ensemble MCUs. See https://alifsemi.com/ Supported features of this port added by this commit: - UART REPL. - TinyUSB support, for REPL and MSC. - Octal SPI flash support, for filesystem. - machine.Pin support. General notes about the port: - It uses make, similar to other bare-metal ports here. - The toolchain is the standard arm-none-eabi- toolchain. - Flashing a board can be done using either the built-in serial bootloader, or JLink (both supported here). - There are two required submodules (one for drivers/SDK, one for security tools), both of which are open source and on GitHub. - No special hardware or software is needed for development, just a board connected over USB. OpenMV have generously sponsored the development of this port. Signed-off-by: Damien George <damien@micropython.org> Signed-off-by: iabdalkader <i.abdalkader@gmail.com>
299 lines
11 KiB
C
299 lines
11 KiB
C
/*
|
|
* This file is part of the MicroPython project, http://micropython.org/
|
|
*
|
|
* The MIT License (MIT)
|
|
*
|
|
* Copyright (c) 2024 OpenMV LLC.
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
* THE SOFTWARE.
|
|
*/
|
|
|
|
#include "py/runtime.h"
|
|
#include "py/mphal.h"
|
|
#include "extmod/modmachine.h"
|
|
#include "extmod/virtpin.h"
|
|
#include "shared/runtime/mpirq.h"
|
|
|
|
extern const mp_obj_dict_t machine_pin_cpu_pins_locals_dict;
|
|
extern const mp_obj_dict_t machine_pin_board_pins_locals_dict;
|
|
|
|
static const machine_pin_obj_t *machine_pin_find_named(const mp_obj_dict_t *named_pins, mp_obj_t name) {
|
|
const mp_map_t *named_map = &named_pins->map;
|
|
mp_map_elem_t *named_elem = mp_map_lookup((mp_map_t *)named_map, name, MP_MAP_LOOKUP);
|
|
if (named_elem != NULL && named_elem->value != NULL) {
|
|
return MP_OBJ_TO_PTR(named_elem->value);
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
const machine_pin_obj_t *machine_pin_find(mp_obj_t pin) {
|
|
// Is already a object of the proper type
|
|
if (mp_obj_is_type(pin, &machine_pin_type)) {
|
|
return MP_OBJ_TO_PTR(pin);
|
|
}
|
|
if (mp_obj_is_str(pin)) {
|
|
// Try to find the pin in the board pins first.
|
|
const machine_pin_obj_t *self = machine_pin_find_named(&machine_pin_board_pins_locals_dict, pin);
|
|
if (self != NULL) {
|
|
return self;
|
|
}
|
|
|
|
// If not found, try to find the pin in the cpu pins.
|
|
self = machine_pin_find_named(&machine_pin_cpu_pins_locals_dict, pin);
|
|
if (self != NULL) {
|
|
return self;
|
|
}
|
|
|
|
// Pin name not found.
|
|
mp_raise_msg_varg(&mp_type_ValueError, MP_ERROR_TEXT("unknown named pin \"%s\""), mp_obj_str_get_str(pin));
|
|
}
|
|
mp_raise_ValueError(MP_ERROR_TEXT("invalid pin"));
|
|
}
|
|
|
|
static void machine_pin_print(const mp_print_t *print, mp_obj_t self_in, mp_print_kind_t kind) {
|
|
machine_pin_obj_t *self = self_in;
|
|
|
|
uint8_t alt_func, pad_ctrl;
|
|
pinconf_get(self->port, self->pin, &alt_func, &pad_ctrl);
|
|
|
|
qstr mode_qst;
|
|
if (gpio_get_direction(self->gpio, self->pin) == GPIO_PIN_DIR_INPUT) {
|
|
mode_qst = MP_QSTR_IN;
|
|
} else {
|
|
if (pad_ctrl & PADCTRL_DRIVER_OPEN_DRAIN) {
|
|
mode_qst = MP_QSTR_OPEN_DRAIN;
|
|
} else {
|
|
mode_qst = MP_QSTR_OUT;
|
|
}
|
|
}
|
|
mp_printf(print, "Pin(%q, mode=%q", self->name, mode_qst);
|
|
uint8_t pad_ctrl_pull = pad_ctrl & (PADCTRL_DRIVER_DISABLED_PULL_DOWN | PADCTRL_DRIVER_DISABLED_PULL_UP);
|
|
if (pad_ctrl_pull == PADCTRL_DRIVER_DISABLED_PULL_UP) {
|
|
mp_printf(print, ", pull=%q", MP_QSTR_PULL_UP);
|
|
} else if (pad_ctrl_pull == PADCTRL_DRIVER_DISABLED_PULL_DOWN) {
|
|
mp_printf(print, ", pull=%q", MP_QSTR_PULL_DOWN);
|
|
}
|
|
if (alt_func != PINMUX_ALTERNATE_FUNCTION_0) {
|
|
mp_printf(print, ", alt=%u", alt_func);
|
|
}
|
|
mp_printf(print, ")");
|
|
}
|
|
|
|
enum {
|
|
ARG_mode, ARG_pull, ARG_value, ARG_alt
|
|
};
|
|
static const mp_arg_t allowed_args[] = {
|
|
{MP_QSTR_mode, MP_ARG_OBJ, {.u_rom_obj = MP_ROM_NONE}},
|
|
{MP_QSTR_pull, MP_ARG_OBJ, {.u_rom_obj = MP_ROM_NONE}},
|
|
{MP_QSTR_value, MP_ARG_KW_ONLY | MP_ARG_OBJ, {.u_rom_obj = MP_ROM_NONE}},
|
|
{MP_QSTR_alt, MP_ARG_KW_ONLY | MP_ARG_INT, {.u_int = 0}},
|
|
};
|
|
|
|
static mp_obj_t machine_pin_obj_init_helper(const machine_pin_obj_t *self, size_t n_args, const mp_obj_t *pos_args, mp_map_t *kw_args) {
|
|
|
|
// parse args
|
|
mp_arg_val_t args[MP_ARRAY_SIZE(allowed_args)];
|
|
mp_arg_parse_all(n_args, pos_args, kw_args, MP_ARRAY_SIZE(allowed_args), allowed_args, args);
|
|
|
|
// get initial value of pin (only valid for OUT and OPEN_DRAIN modes)
|
|
int value = -1;
|
|
if (args[ARG_value].u_obj != mp_const_none) {
|
|
value = mp_obj_is_true(args[ARG_value].u_obj);
|
|
}
|
|
|
|
// configure mode
|
|
if (args[ARG_mode].u_obj != mp_const_none) {
|
|
mp_int_t mode = mp_obj_get_int(args[ARG_mode].u_obj);
|
|
if (mode == MP_HAL_PIN_MODE_INPUT) {
|
|
mp_hal_pin_input(self);
|
|
} else if (mode == MP_HAL_PIN_MODE_OUTPUT) {
|
|
if (value != -1) {
|
|
// set initial output value before configuring mode
|
|
mp_hal_pin_write(self, value);
|
|
}
|
|
mp_hal_pin_output(self);
|
|
} else if (mode == MP_HAL_PIN_MODE_OPEN_DRAIN) {
|
|
if (value != -1) {
|
|
// set initial output value before configuring mode
|
|
mp_hal_pin_write(self, value);
|
|
}
|
|
mp_hal_pin_open_drain(self);
|
|
}
|
|
}
|
|
|
|
// Configure pull (unconditionally because None means no-pull).
|
|
uint32_t pull = 0;
|
|
if (args[ARG_pull].u_obj != mp_const_none) {
|
|
pull = mp_obj_get_int(args[ARG_pull].u_obj);
|
|
}
|
|
uint8_t alt_func;
|
|
uint8_t pad_ctrl;
|
|
pinconf_get(self->port, self->pin, &alt_func, &pad_ctrl);
|
|
alt_func = PINMUX_ALTERNATE_FUNCTION_0;
|
|
pad_ctrl |= PADCTRL_READ_ENABLE;
|
|
pad_ctrl &= ~(PADCTRL_DRIVER_DISABLED_PULL_DOWN | PADCTRL_DRIVER_DISABLED_PULL_UP);
|
|
if (pull & MP_HAL_PIN_PULL_UP) {
|
|
pad_ctrl |= PADCTRL_DRIVER_DISABLED_PULL_UP;
|
|
}
|
|
if (pull & MP_HAL_PIN_PULL_DOWN) {
|
|
pad_ctrl |= PADCTRL_DRIVER_DISABLED_PULL_DOWN;
|
|
}
|
|
pinconf_set(self->port, self->pin, alt_func, pad_ctrl);
|
|
|
|
return mp_const_none;
|
|
}
|
|
|
|
// constructor(id, ...)
|
|
mp_obj_t mp_pin_make_new(const mp_obj_type_t *type, size_t n_args, size_t n_kw, const mp_obj_t *args) {
|
|
mp_arg_check_num(n_args, n_kw, 1, MP_OBJ_FUN_ARGS_MAX, true);
|
|
|
|
const machine_pin_obj_t *self = machine_pin_find(args[0]);
|
|
|
|
if (n_args > 1 || n_kw > 0) {
|
|
// pin mode given, so configure this GPIO
|
|
mp_map_t kw_args;
|
|
mp_map_init_fixed_table(&kw_args, n_kw, args + n_args);
|
|
machine_pin_obj_init_helper(self, n_args - 1, args + 1, &kw_args);
|
|
}
|
|
return MP_OBJ_FROM_PTR(self);
|
|
}
|
|
|
|
// fast method for getting/setting pin value
|
|
static mp_obj_t machine_pin_call(mp_obj_t self_in, size_t n_args, size_t n_kw, const mp_obj_t *args) {
|
|
mp_arg_check_num(n_args, n_kw, 0, 1, false);
|
|
machine_pin_obj_t *self = self_in;
|
|
if (n_args == 0) {
|
|
// get pin
|
|
return MP_OBJ_NEW_SMALL_INT(mp_hal_pin_read(self));
|
|
} else {
|
|
// set pin
|
|
bool value = mp_obj_is_true(args[0]);
|
|
mp_hal_pin_write(self, value);
|
|
return mp_const_none;
|
|
}
|
|
}
|
|
|
|
// pin.init(mode, pull)
|
|
static mp_obj_t machine_pin_obj_init(size_t n_args, const mp_obj_t *args, mp_map_t *kw_args) {
|
|
return machine_pin_obj_init_helper(args[0], n_args - 1, args + 1, kw_args);
|
|
}
|
|
MP_DEFINE_CONST_FUN_OBJ_KW(machine_pin_init_obj, 1, machine_pin_obj_init);
|
|
|
|
// pin.value([value])
|
|
static mp_obj_t machine_pin_value(size_t n_args, const mp_obj_t *args) {
|
|
return machine_pin_call(args[0], n_args - 1, 0, args + 1);
|
|
}
|
|
static MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(machine_pin_value_obj, 1, 2, machine_pin_value);
|
|
|
|
// pin.low()
|
|
static mp_obj_t machine_pin_low(mp_obj_t self_in) {
|
|
machine_pin_obj_t *self = MP_OBJ_TO_PTR(self_in);
|
|
mp_hal_pin_low(self);
|
|
return mp_const_none;
|
|
}
|
|
static MP_DEFINE_CONST_FUN_OBJ_1(machine_pin_low_obj, machine_pin_low);
|
|
|
|
// pin.high()
|
|
static mp_obj_t machine_pin_high(mp_obj_t self_in) {
|
|
machine_pin_obj_t *self = MP_OBJ_TO_PTR(self_in);
|
|
mp_hal_pin_high(self);
|
|
return mp_const_none;
|
|
}
|
|
static MP_DEFINE_CONST_FUN_OBJ_1(machine_pin_high_obj, machine_pin_high);
|
|
|
|
// pin.toggle()
|
|
static mp_obj_t machine_pin_toggle(mp_obj_t self_in) {
|
|
machine_pin_obj_t *self = MP_OBJ_TO_PTR(self_in);
|
|
gpio_toggle_value(self->gpio, self->pin);
|
|
return mp_const_none;
|
|
}
|
|
static MP_DEFINE_CONST_FUN_OBJ_1(machine_pin_toggle_obj, machine_pin_toggle);
|
|
|
|
static MP_DEFINE_CONST_OBJ_TYPE(
|
|
pin_cpu_pins_obj_type,
|
|
MP_QSTR_cpu,
|
|
MP_TYPE_FLAG_NONE,
|
|
locals_dict, &machine_pin_cpu_pins_locals_dict
|
|
);
|
|
|
|
static MP_DEFINE_CONST_OBJ_TYPE(
|
|
pin_board_pins_obj_type,
|
|
MP_QSTR_board,
|
|
MP_TYPE_FLAG_NONE,
|
|
locals_dict, &machine_pin_board_pins_locals_dict
|
|
);
|
|
|
|
static const mp_rom_map_elem_t machine_pin_locals_dict_table[] = {
|
|
// instance methods
|
|
{ MP_ROM_QSTR(MP_QSTR_init), MP_ROM_PTR(&machine_pin_init_obj) },
|
|
{ MP_ROM_QSTR(MP_QSTR_value), MP_ROM_PTR(&machine_pin_value_obj) },
|
|
{ MP_ROM_QSTR(MP_QSTR_low), MP_ROM_PTR(&machine_pin_low_obj) },
|
|
{ MP_ROM_QSTR(MP_QSTR_high), MP_ROM_PTR(&machine_pin_high_obj) },
|
|
{ MP_ROM_QSTR(MP_QSTR_off), MP_ROM_PTR(&machine_pin_low_obj) },
|
|
{ MP_ROM_QSTR(MP_QSTR_on), MP_ROM_PTR(&machine_pin_high_obj) },
|
|
{ MP_ROM_QSTR(MP_QSTR_toggle), MP_ROM_PTR(&machine_pin_toggle_obj) },
|
|
|
|
// class attributes
|
|
{ MP_ROM_QSTR(MP_QSTR_board), MP_ROM_PTR(&pin_board_pins_obj_type) },
|
|
{ MP_ROM_QSTR(MP_QSTR_cpu), MP_ROM_PTR(&pin_cpu_pins_obj_type) },
|
|
|
|
// class constants
|
|
{ MP_ROM_QSTR(MP_QSTR_IN), MP_ROM_INT(MP_HAL_PIN_MODE_INPUT) },
|
|
{ MP_ROM_QSTR(MP_QSTR_OUT), MP_ROM_INT(MP_HAL_PIN_MODE_OUTPUT) },
|
|
{ MP_ROM_QSTR(MP_QSTR_OPEN_DRAIN), MP_ROM_INT(MP_HAL_PIN_MODE_OPEN_DRAIN) },
|
|
{ MP_ROM_QSTR(MP_QSTR_PULL_UP), MP_ROM_INT(MP_HAL_PIN_PULL_UP) },
|
|
{ MP_ROM_QSTR(MP_QSTR_PULL_DOWN), MP_ROM_INT(MP_HAL_PIN_PULL_DOWN) },
|
|
};
|
|
static MP_DEFINE_CONST_DICT(machine_pin_locals_dict, machine_pin_locals_dict_table);
|
|
|
|
static mp_uint_t pin_ioctl(mp_obj_t self_in, mp_uint_t request, uintptr_t arg, int *errcode) {
|
|
(void)errcode;
|
|
machine_pin_obj_t *self = self_in;
|
|
|
|
switch (request) {
|
|
case MP_PIN_READ: {
|
|
return mp_hal_pin_read(self);
|
|
}
|
|
case MP_PIN_WRITE: {
|
|
mp_hal_pin_write(self, arg);
|
|
return 0;
|
|
}
|
|
}
|
|
return -1;
|
|
}
|
|
|
|
static const mp_pin_p_t pin_pin_p = {
|
|
.ioctl = pin_ioctl,
|
|
};
|
|
|
|
MP_DEFINE_CONST_OBJ_TYPE(
|
|
machine_pin_type,
|
|
MP_QSTR_Pin,
|
|
MP_TYPE_FLAG_NONE,
|
|
make_new, mp_pin_make_new,
|
|
print, machine_pin_print,
|
|
call, machine_pin_call,
|
|
protocol, &pin_pin_p,
|
|
locals_dict, &machine_pin_locals_dict
|
|
);
|
|
|
|
mp_hal_pin_obj_t mp_hal_get_pin_obj(mp_obj_t obj) {
|
|
return machine_pin_find(obj);
|
|
}
|