circuitpython/ports/nrf/common-hal/paralleldisplay/ParallelBus.c

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

162 lines
6.6 KiB
C
Raw Normal View History

2019-01-17 18:15:59 -05:00
/*
* This file is part of the MicroPython project, http://micropython.org/
*
* The MIT License (MIT)
*
* Copyright (c) 2018 Scott Shawcroft for Adafruit Industries
*
* 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
2021-03-16 09:29:04 -04:00
* THE SOFTWARE.
2019-01-17 18:15:59 -05:00
*/
2021-08-29 08:26:47 -04:00
#include "shared-bindings/paralleldisplay/ParallelBus.h"
2019-01-17 18:15:59 -05:00
#include <stdint.h>
#include "common-hal/microcontroller/Pin.h"
#include "py/runtime.h"
#include "shared-bindings/digitalio/DigitalInOut.h"
#include "shared-bindings/microcontroller/__init__.h"
2019-01-17 18:15:59 -05:00
2021-08-29 08:26:47 -04:00
void common_hal_paralleldisplay_parallelbus_construct(paralleldisplay_parallelbus_obj_t *self,
2021-03-16 09:22:02 -04:00
const mcu_pin_obj_t *data0, const mcu_pin_obj_t *command, const mcu_pin_obj_t *chip_select,
const mcu_pin_obj_t *write, const mcu_pin_obj_t *read, const mcu_pin_obj_t *reset, uint32_t frequency) {
2019-01-17 18:15:59 -05:00
uint8_t data_pin = data0->number;
2019-01-18 19:37:06 -05:00
if (data_pin % 8 != 0) {
2019-01-17 18:15:59 -05:00
mp_raise_ValueError(translate("Data 0 pin must be byte aligned"));
}
for (uint8_t i = 0; i < 8; i++) {
if (!pin_number_is_free(data_pin + i)) {
mp_raise_ValueError_varg(translate("Bus pin %d is already in use"), i);
}
}
NRF_GPIO_Type *g;
uint8_t num_pins_in_port;
if (data0->number < P0_PIN_NUM) {
g = NRF_P0;
num_pins_in_port = P0_PIN_NUM;
} else {
g = NRF_P1;
num_pins_in_port = P1_PIN_NUM;
}
g->DIRSET = 0xff << (data_pin % num_pins_in_port);
2019-01-18 19:37:06 -05:00
for (uint8_t i = 0; i < 8; i++) {
g->PIN_CNF[data_pin + i] |= NRF_GPIO_PIN_S0S1 << GPIO_PIN_CNF_DRIVE_Pos;
}
2021-03-15 09:57:36 -04:00
self->bus = ((uint8_t *)&g->OUT) + (data0->number % num_pins_in_port / 8);
2019-01-17 18:15:59 -05:00
self->command.base.type = &digitalio_digitalinout_type;
common_hal_digitalio_digitalinout_construct(&self->command, command);
common_hal_digitalio_digitalinout_switch_to_output(&self->command, true, DRIVE_MODE_PUSH_PULL);
self->chip_select.base.type = &digitalio_digitalinout_type;
common_hal_digitalio_digitalinout_construct(&self->chip_select, chip_select);
common_hal_digitalio_digitalinout_switch_to_output(&self->chip_select, true, DRIVE_MODE_PUSH_PULL);
self->write.base.type = &digitalio_digitalinout_type;
common_hal_digitalio_digitalinout_construct(&self->write, write);
common_hal_digitalio_digitalinout_switch_to_output(&self->write, true, DRIVE_MODE_PUSH_PULL);
self->read.base.type = &digitalio_digitalinout_type;
common_hal_digitalio_digitalinout_construct(&self->read, read);
common_hal_digitalio_digitalinout_switch_to_output(&self->read, true, DRIVE_MODE_PUSH_PULL);
self->data0_pin = data_pin;
uint8_t num_pins_in_write_port;
if (data0->number < P0_PIN_NUM) {
self->write_group = NRF_P0;
num_pins_in_write_port = P0_PIN_NUM;
} else {
self->write_group = NRF_P1;
num_pins_in_write_port = P1_PIN_NUM;
}
self->write_mask = 1 << (write->number % num_pins_in_write_port);
2019-08-21 17:14:47 -04:00
self->reset.base.type = &mp_type_NoneType;
if (reset != NULL) {
self->reset.base.type = &digitalio_digitalinout_type;
common_hal_digitalio_digitalinout_construct(&self->reset, reset);
common_hal_digitalio_digitalinout_switch_to_output(&self->reset, true, DRIVE_MODE_PUSH_PULL);
never_reset_pin_number(reset->number);
2021-08-29 08:26:47 -04:00
common_hal_paralleldisplay_parallelbus_reset(self);
}
2019-01-17 18:15:59 -05:00
never_reset_pin_number(command->number);
never_reset_pin_number(chip_select->number);
never_reset_pin_number(write->number);
never_reset_pin_number(read->number);
for (uint8_t i = 0; i < 8; i++) {
never_reset_pin_number(data_pin + i);
}
}
2021-08-29 08:26:47 -04:00
void common_hal_paralleldisplay_parallelbus_deinit(paralleldisplay_parallelbus_obj_t *self) {
2019-01-17 18:15:59 -05:00
for (uint8_t i = 0; i < 8; i++) {
reset_pin_number(self->data0_pin + i);
}
reset_pin_number(self->command.pin->number);
reset_pin_number(self->chip_select.pin->number);
reset_pin_number(self->write.pin->number);
reset_pin_number(self->read.pin->number);
reset_pin_number(self->reset.pin->number);
}
2021-08-29 08:26:47 -04:00
bool common_hal_paralleldisplay_parallelbus_reset(mp_obj_t obj) {
paralleldisplay_parallelbus_obj_t *self = MP_OBJ_TO_PTR(obj);
2019-08-21 17:14:47 -04:00
if (self->reset.base.type == &mp_type_NoneType) {
return false;
}
common_hal_digitalio_digitalinout_set_value(&self->reset, false);
common_hal_mcu_delay_us(4);
common_hal_digitalio_digitalinout_set_value(&self->reset, true);
2019-08-21 17:14:47 -04:00
return true;
}
2021-08-29 08:26:47 -04:00
bool common_hal_paralleldisplay_parallelbus_bus_free(mp_obj_t obj) {
return true;
}
2021-08-29 08:26:47 -04:00
bool common_hal_paralleldisplay_parallelbus_begin_transaction(mp_obj_t obj) {
paralleldisplay_parallelbus_obj_t *self = MP_OBJ_TO_PTR(obj);
2019-01-17 18:15:59 -05:00
common_hal_digitalio_digitalinout_set_value(&self->chip_select, false);
return true;
}
2019-08-23 18:27:21 -04:00
// This ignores chip_select behaviour because data is clocked in by the write line toggling.
2021-08-29 08:26:47 -04:00
void common_hal_paralleldisplay_parallelbus_send(mp_obj_t obj, display_byte_type_t byte_type,
2020-11-12 15:39:31 -05:00
display_chip_select_behavior_t chip_select, const uint8_t *data, uint32_t data_length) {
2021-08-29 08:26:47 -04:00
paralleldisplay_parallelbus_obj_t *self = MP_OBJ_TO_PTR(obj);
2019-08-23 18:27:21 -04:00
common_hal_digitalio_digitalinout_set_value(&self->command, byte_type == DISPLAY_DATA);
2021-03-15 09:57:36 -04:00
uint32_t *clear_write = (uint32_t *)&self->write_group->OUTCLR;
uint32_t *set_write = (uint32_t *)&self->write_group->OUTSET;
2019-01-17 18:15:59 -05:00
uint32_t mask = self->write_mask;
for (uint32_t i = 0; i < data_length; i++) {
*clear_write = mask;
*self->bus = data[i];
*set_write = mask;
}
}
2021-08-29 08:26:47 -04:00
void common_hal_paralleldisplay_parallelbus_end_transaction(mp_obj_t obj) {
paralleldisplay_parallelbus_obj_t *self = MP_OBJ_TO_PTR(obj);
2019-01-17 18:15:59 -05:00
common_hal_digitalio_digitalinout_set_value(&self->chip_select, true);
}