2020-06-24 15:46:36 -04:00
|
|
|
/*
|
|
|
|
* This file is part of the MicroPython project, http://micropython.org/
|
|
|
|
*
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
|
|
|
* Copyright (c) 2019 Lucian Copeland 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.
|
2020-06-24 15:46:36 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#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 "shared-bindings/microcontroller/__init__.h"
|
|
|
|
|
2021-01-22 15:42:09 -05:00
|
|
|
/*
|
2021-01-23 12:30:17 -05:00
|
|
|
* Current pin limitations for ESP32-S2 ParallelBus:
|
2021-01-25 17:51:12 -05:00
|
|
|
* - data0 pin must be byte aligned
|
2021-01-23 12:30:17 -05:00
|
|
|
*/
|
2021-01-22 15:42:09 -05:00
|
|
|
|
2021-03-16 09:22:02 -04:00
|
|
|
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, uint32_t frequency) {
|
2020-06-24 15:46:36 -04:00
|
|
|
|
2021-01-22 15:42:09 -05:00
|
|
|
uint8_t data_pin = data0->number;
|
2021-01-25 17:51:12 -05:00
|
|
|
if (data_pin % 8 != 0) {
|
2021-01-25 17:25:56 -05:00
|
|
|
mp_raise_ValueError(translate("Data 0 pin must be byte aligned."));
|
2021-01-22 15:42:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-23 12:30:17 -05:00
|
|
|
gpio_dev_t *g = &GPIO; // this is the GPIO registers, see "extern gpio_dev_t GPIO" from file:gpio_struct.h
|
2021-01-22 15:42:09 -05:00
|
|
|
|
2021-01-23 12:30:17 -05:00
|
|
|
// Setup the pins as "Simple GPIO outputs" see section 19.3.3 of the ESP32-S2 Reference Manual
|
|
|
|
// Enable pins with "enable_w1ts"
|
2021-01-22 15:42:09 -05:00
|
|
|
|
|
|
|
for (uint8_t i = 0; i < 8; i++) {
|
2021-03-15 09:57:36 -04:00
|
|
|
g->enable_w1ts = (0x1 << (data_pin + i));
|
|
|
|
g->func_out_sel_cfg[data_pin + i].val = 256; /* setup output pin for simple GPIO Output, (0x100 = 256) */
|
2021-01-22 15:42:09 -05:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2021-01-23 12:30:17 -05:00
|
|
|
/* From my understanding, there is a limitation of the ESP32-S2 that does not allow single-byte writes
|
|
|
|
* into the GPIO registers. See section 10.3.3 regarding "non-aligned writes" into the registers.
|
|
|
|
*/
|
2021-01-22 15:42:09 -05:00
|
|
|
|
2021-01-25 17:25:56 -05:00
|
|
|
|
|
|
|
if (data_pin < 31) {
|
2021-03-15 09:57:36 -04:00
|
|
|
self->bus = (uint32_t *)&g->out; // pointer to GPIO output register (for pins 0-31)
|
|
|
|
} else {
|
|
|
|
self->bus = (uint32_t *)&g->out1.val; // pointer to GPIO output register (for pins >= 32)
|
|
|
|
}
|
2021-01-22 15:42:09 -05:00
|
|
|
|
|
|
|
/* SNIP - common setup of command, chip select, write and read pins, same as from SAMD and NRF ports */
|
|
|
|
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;
|
2021-01-25 17:25:56 -05:00
|
|
|
|
|
|
|
if (write->number < 32) {
|
2021-03-15 09:57:36 -04:00
|
|
|
self->write_clear_register = (uint32_t *)&g->out_w1tc;
|
|
|
|
self->write_set_register = (uint32_t *)&g->out_w1ts;
|
2021-01-25 17:25:56 -05:00
|
|
|
} else {
|
2021-03-15 09:57:36 -04:00
|
|
|
self->write_clear_register = (uint32_t *)&g->out1_w1tc.val;
|
|
|
|
self->write_set_register = (uint32_t *)&g->out1_w1ts.val;
|
2021-01-25 17:25:56 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Check to see if the data and write pins are on the same register:
|
2021-03-15 09:57:36 -04:00
|
|
|
if ((((self->data0_pin < 32) && (write->number < 32))) ||
|
|
|
|
(((self->data0_pin > 31) && (write->number > 31)))) {
|
|
|
|
self->data_write_same_register = true; // data pins and write pin are on the same register
|
2021-01-25 17:25:56 -05:00
|
|
|
} else {
|
2021-03-15 09:57:36 -04:00
|
|
|
self->data_write_same_register = false; // data pins and write pins are on different registers
|
|
|
|
}
|
2021-01-25 17:25:56 -05:00
|
|
|
|
|
|
|
|
2021-01-22 15:42:09 -05:00
|
|
|
self->write_mask = 1 << (write->number % 32); /* the write pin triggers the LCD to latch the data */
|
|
|
|
|
|
|
|
/* SNIP - common setup of the reset pin, same as from SAMD and NRF ports */
|
|
|
|
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);
|
|
|
|
common_hal_displayio_parallelbus_reset(self);
|
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2020-06-24 15:46:36 -04:00
|
|
|
}
|
|
|
|
|
2021-03-15 09:57:36 -04:00
|
|
|
void common_hal_displayio_parallelbus_deinit(displayio_parallelbus_obj_t *self) {
|
|
|
|
/* SNIP - same as from SAMD and NRF ports */
|
2021-01-22 15:42:09 -05:00
|
|
|
for (uint8_t i = 0; i < 8; i++) {
|
|
|
|
reset_pin_number(self->data0_pin + i);
|
|
|
|
}
|
2020-06-24 15:46:36 -04:00
|
|
|
|
2021-01-22 15:42:09 -05:00
|
|
|
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);
|
2020-06-24 15:46:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool common_hal_displayio_parallelbus_reset(mp_obj_t obj) {
|
2021-03-15 09:57:36 -04:00
|
|
|
/* SNIP - same as from SAMD and NRF ports */
|
|
|
|
displayio_parallelbus_obj_t *self = MP_OBJ_TO_PTR(obj);
|
2021-01-22 15:42:09 -05: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);
|
|
|
|
return true;
|
|
|
|
|
2020-06-24 15:46:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool common_hal_displayio_parallelbus_bus_free(mp_obj_t obj) {
|
2021-03-15 09:57:36 -04:00
|
|
|
/* SNIP - same as from SAMD and NRF ports */
|
2021-01-22 15:42:09 -05:00
|
|
|
return true;
|
2020-06-24 15:46:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool common_hal_displayio_parallelbus_begin_transaction(mp_obj_t obj) {
|
2021-03-15 09:57:36 -04:00
|
|
|
/* SNIP - same as from SAMD and NRF ports */
|
|
|
|
displayio_parallelbus_obj_t *self = MP_OBJ_TO_PTR(obj);
|
2021-01-22 15:42:09 -05:00
|
|
|
common_hal_digitalio_digitalinout_set_value(&self->chip_select, false);
|
|
|
|
return true;
|
2020-06-24 15:46:36 -04:00
|
|
|
}
|
|
|
|
|
2020-11-10 21:02:16 -05:00
|
|
|
void common_hal_displayio_parallelbus_send(mp_obj_t obj, display_byte_type_t byte_type,
|
2021-03-15 09:57:36 -04:00
|
|
|
display_chip_select_behavior_t chip_select, const uint8_t *data, uint32_t data_length) {
|
|
|
|
displayio_parallelbus_obj_t *self = MP_OBJ_TO_PTR(obj);
|
2021-01-22 15:42:09 -05: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 = self->write_clear_register;
|
|
|
|
uint32_t *set_write = self->write_set_register;
|
2021-01-22 23:29:51 -05:00
|
|
|
|
|
|
|
const uint32_t mask = self->write_mask;
|
|
|
|
|
2021-01-22 15:42:09 -05:00
|
|
|
/* Setup structures for data writing. The ESP32-S2 port differs from the SAMD and NRF ports
|
2021-01-23 12:30:17 -05:00
|
|
|
* because I have not found a way to write a single byte into the ESP32-S2 registers.
|
|
|
|
* For the ESP32-S2, I create a 32-bit data_buffer that is used to transfer the data bytes.
|
|
|
|
*/
|
2021-01-22 15:42:09 -05:00
|
|
|
|
2021-01-23 12:30:17 -05:00
|
|
|
*clear_write = mask; // Clear the write pin to prepare the registers before storing the
|
2021-03-15 09:57:36 -04:00
|
|
|
// register value into data_buffer
|
2021-01-22 23:29:51 -05:00
|
|
|
|
|
|
|
const uint32_t data_buffer = *self->bus; // store the initial output register values into the data output buffer
|
2021-03-15 09:57:36 -04:00
|
|
|
uint8_t *data_address = ((uint8_t *)&data_buffer) + (self->data0_pin / 8); /* address inside data_buffer where
|
|
|
|
* each data byte will be written to the data pin registers
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
if (self->data_write_same_register) { // data and write pins are on the same register
|
|
|
|
for (uint32_t i = 0; i < data_length; i++) {
|
|
|
|
|
|
|
|
/* Note: If the write pin and data pins are controlled by the same GPIO register, we can eliminate
|
|
|
|
* the "clear_write" step below, since the write pin is cleared when the data_buffer is written
|
|
|
|
* to the bus.
|
|
|
|
*/
|
|
|
|
|
|
|
|
*(data_address) = data[i]; // stuff the data byte into the data_buffer at the correct offset byte location
|
|
|
|
*self->bus = data_buffer; // write the data to the output register
|
|
|
|
*set_write = mask; // set the write pin
|
|
|
|
}
|
|
|
|
} else { // data and write pins are on different registers
|
|
|
|
for (uint32_t i = 0; i < data_length; i++) {
|
|
|
|
*clear_write = mask; // clear the write pin (See comment above, this may not be necessary).
|
|
|
|
*(data_address) = data[i]; // stuff the data byte into the data_buffer at the correct offset byte location
|
|
|
|
*self->bus = data_buffer; // write the data to the output register
|
|
|
|
*set_write = mask; // set the write pin
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
2020-06-24 15:46:36 -04:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void common_hal_displayio_parallelbus_end_transaction(mp_obj_t obj) {
|
2021-03-15 09:57:36 -04:00
|
|
|
/* SNIP - same as from SAMD and NRF ports */
|
|
|
|
displayio_parallelbus_obj_t *self = MP_OBJ_TO_PTR(obj);
|
2021-01-22 15:42:09 -05:00
|
|
|
common_hal_digitalio_digitalinout_set_value(&self->chip_select, true);
|
2020-06-24 15:46:36 -04:00
|
|
|
}
|