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
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "shared-bindings/displayio/ParallelBus.h"
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#include "common-hal/microcontroller/Pin.h"
|
|
|
|
#include "py/runtime.h"
|
|
|
|
#include "shared-bindings/digitalio/DigitalInOut.h"
|
|
|
|
|
|
|
|
#include "tick.h"
|
|
|
|
|
|
|
|
void common_hal_displayio_parallelbus_construct(displayio_parallelbus_obj_t* self,
|
|
|
|
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) {
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
2019-01-17 18:15:59 -05:00
|
|
|
self->bus = ((uint8_t*) &g->OUT) + (data0->number % num_pins_in_port / 8);
|
|
|
|
|
|
|
|
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->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);
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
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);
|
|
|
|
never_reset_pin_number(reset->number);
|
|
|
|
for (uint8_t i = 0; i < 8; i++) {
|
|
|
|
never_reset_pin_number(data_pin + i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void common_hal_displayio_parallelbus_deinit(displayio_parallelbus_obj_t* self) {
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool common_hal_displayio_parallelbus_begin_transaction(mp_obj_t obj) {
|
|
|
|
displayio_parallelbus_obj_t* self = MP_OBJ_TO_PTR(obj);
|
|
|
|
common_hal_digitalio_digitalinout_set_value(&self->chip_select, false);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void common_hal_displayio_parallelbus_send(mp_obj_t obj, bool command, uint8_t *data, uint32_t data_length) {
|
|
|
|
displayio_parallelbus_obj_t* self = MP_OBJ_TO_PTR(obj);
|
|
|
|
common_hal_digitalio_digitalinout_set_value(&self->command, !command);
|
|
|
|
uint32_t* clear_write = (uint32_t*) &self->write_group->OUTCLR;
|
|
|
|
uint32_t* set_write = (uint32_t*) &self->write_group->OUTSET;
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void common_hal_displayio_parallelbus_end_transaction(mp_obj_t obj) {
|
|
|
|
displayio_parallelbus_obj_t* self = MP_OBJ_TO_PTR(obj);
|
|
|
|
common_hal_digitalio_digitalinout_set_value(&self->chip_select, true);
|
|
|
|
}
|