Skip to content

Commit

Permalink
rp2: Provide direct memory access to PIO and SPI FIFOs via proxy arrays.
Browse files Browse the repository at this point in the history
Signed-off-by: Nicko van Someren <nicko@nicko.org>
  • Loading branch information
nickovs authored and dpgeorge committed Jan 7, 2024
1 parent f8cabe8 commit 1da45e8
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
13 changes: 13 additions & 0 deletions ports/rp2/machine_spi.c
Expand Up @@ -302,6 +302,18 @@ STATIC void machine_spi_transfer(mp_obj_base_t *self_in, size_t len, const uint8
}
}

// Buffer protocol implementation for SPI.
// The buffer represents the SPI data FIFO.
STATIC mp_int_t machine_spi_get_buffer(mp_obj_t o_in, mp_buffer_info_t *bufinfo, mp_uint_t flags) {
machine_spi_obj_t *self = MP_OBJ_TO_PTR(o_in);

bufinfo->len = 4;
bufinfo->typecode = 'I';
bufinfo->buf = (void *)&spi_get_hw(self->spi_inst)->dr;

return 0;
}

STATIC const mp_machine_spi_p_t machine_spi_p = {
.init = machine_spi_init,
.transfer = machine_spi_transfer,
Expand All @@ -314,6 +326,7 @@ MP_DEFINE_CONST_OBJ_TYPE(
make_new, machine_spi_make_new,
print, machine_spi_print,
protocol, &machine_spi_p,
buffer, machine_spi_get_buffer,
locals_dict, &mp_machine_spi_locals_dict
);

Expand Down
18 changes: 18 additions & 0 deletions ports/rp2/rp2_pio.c
Expand Up @@ -809,6 +809,23 @@ STATIC mp_obj_t rp2_state_machine_tx_fifo(mp_obj_t self_in) {
}
STATIC MP_DEFINE_CONST_FUN_OBJ_1(rp2_state_machine_tx_fifo_obj, rp2_state_machine_tx_fifo);

// Buffer protocol implementation for StateMachine.
// The buffer represents one of the FIFO ports of the state machine. Note that a different
// pointer is returned depending on if this is for reading or writing.
STATIC mp_int_t rp2_state_machine_get_buffer(mp_obj_t o_in, mp_buffer_info_t *bufinfo, mp_uint_t flags) {
rp2_state_machine_obj_t *self = MP_OBJ_TO_PTR(o_in);

bufinfo->len = 4;
bufinfo->typecode = 'I';

if (flags & MP_BUFFER_WRITE) {
bufinfo->buf = (void *)&self->pio->txf[self->sm];
} else {
bufinfo->buf = (void *)&self->pio->rxf[self->sm];
}
return 0;
}

// StateMachine.irq(handler=None, trigger=0|1, hard=False)
STATIC mp_obj_t rp2_state_machine_irq(size_t n_args, const mp_obj_t *pos_args, mp_map_t *kw_args) {
enum { ARG_handler, ARG_trigger, ARG_hard };
Expand Down Expand Up @@ -884,6 +901,7 @@ MP_DEFINE_CONST_OBJ_TYPE(
MP_TYPE_FLAG_NONE,
make_new, rp2_state_machine_make_new,
print, rp2_state_machine_print,
buffer, rp2_state_machine_get_buffer,
locals_dict, &rp2_state_machine_locals_dict
);

Expand Down

0 comments on commit 1da45e8

Please sign in to comment.