2018-08-15 14:01:01 -04:00
|
|
|
|
2019-01-17 03:20:16 -05:00
|
|
|
#include <string.h>
|
2019-01-16 15:04:42 -05:00
|
|
|
#include "shared-module/displayio/__init__.h"
|
2018-08-15 14:01:01 -04:00
|
|
|
|
2019-02-28 22:36:50 -05:00
|
|
|
#include "lib/utils/interrupt_char.h"
|
2019-02-15 16:52:25 -05:00
|
|
|
#include "py/reload.h"
|
2019-02-28 22:36:50 -05:00
|
|
|
#include "py/runtime.h"
|
2019-01-17 03:20:16 -05:00
|
|
|
#include "shared-bindings/displayio/Bitmap.h"
|
2019-01-16 15:04:42 -05:00
|
|
|
#include "shared-bindings/displayio/Display.h"
|
2019-01-17 03:20:16 -05:00
|
|
|
#include "shared-bindings/displayio/Group.h"
|
|
|
|
#include "shared-bindings/displayio/Palette.h"
|
2019-02-14 15:54:34 -05:00
|
|
|
#include "supervisor/shared/autoreload.h"
|
2019-01-24 20:25:08 -05:00
|
|
|
#include "supervisor/shared/display.h"
|
2019-01-25 19:59:18 -05:00
|
|
|
#include "supervisor/memory.h"
|
2019-01-17 17:45:29 -05:00
|
|
|
#include "supervisor/usb.h"
|
2018-08-15 14:01:01 -04:00
|
|
|
|
2019-01-17 03:20:16 -05:00
|
|
|
primary_display_t displays[CIRCUITPY_DISPLAY_LIMIT];
|
2018-08-15 14:01:01 -04:00
|
|
|
|
2019-02-01 03:32:03 -05:00
|
|
|
static inline void swap(uint16_t* a, uint16_t* b) {
|
|
|
|
uint16_t temp = *a;
|
|
|
|
*a = *b;
|
|
|
|
*b = temp;
|
|
|
|
}
|
|
|
|
|
2019-02-14 15:54:34 -05:00
|
|
|
bool refreshing_displays = false;
|
|
|
|
|
2019-01-17 03:20:16 -05:00
|
|
|
void displayio_refresh_displays(void) {
|
2019-02-28 22:36:50 -05:00
|
|
|
if (mp_hal_is_interrupted()) {
|
|
|
|
return;
|
|
|
|
}
|
2019-02-15 16:52:25 -05:00
|
|
|
// Somehow reloads from the sdcard are being lost. So, cheat and reraise.
|
2019-02-28 22:36:50 -05:00
|
|
|
// But don't re-raise if already pending.
|
|
|
|
if (reload_requested && MP_STATE_VM(mp_pending_exception) == MP_OBJ_NULL) {
|
2019-02-15 16:52:25 -05:00
|
|
|
mp_raise_reload_exception();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-02-14 15:54:34 -05:00
|
|
|
if (refreshing_displays) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
refreshing_displays = true;
|
2019-01-17 03:20:16 -05:00
|
|
|
for (uint8_t i = 0; i < CIRCUITPY_DISPLAY_LIMIT; i++) {
|
2019-01-17 21:51:40 -05:00
|
|
|
if (displays[i].display.base.type == NULL || displays[i].display.base.type == &mp_type_NoneType) {
|
2019-01-17 03:20:16 -05:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
displayio_display_obj_t* display = &displays[i].display;
|
2019-01-25 21:31:27 -05:00
|
|
|
displayio_display_update_backlight(display);
|
2018-08-15 14:01:01 -04:00
|
|
|
|
2019-01-17 03:20:16 -05:00
|
|
|
if (!displayio_display_frame_queued(display)) {
|
2019-02-14 15:54:34 -05:00
|
|
|
refreshing_displays = false;
|
2019-01-17 03:20:16 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (displayio_display_refresh_queued(display)) {
|
2019-02-01 03:32:03 -05:00
|
|
|
// We compute the pixels. r and c are row and column to match the display memory
|
|
|
|
// structure. x and y match location within the groups.
|
|
|
|
uint16_t c0 = 0;
|
|
|
|
uint16_t r0 = 0;
|
|
|
|
uint16_t c1 = display->width;
|
|
|
|
uint16_t r1 = display->height;
|
|
|
|
if (display->transpose_xy) {
|
|
|
|
swap(&c1, &r1);
|
|
|
|
}
|
|
|
|
displayio_display_start_region_update(display, c0, r0, c1, r1);
|
|
|
|
|
2019-01-17 03:20:16 -05:00
|
|
|
uint16_t x0 = 0;
|
2019-02-01 03:32:03 -05:00
|
|
|
uint16_t x1 = display->width - 1;
|
|
|
|
uint16_t startx = 0;
|
|
|
|
int8_t dx = 1;
|
|
|
|
if (display->mirror_x) {
|
|
|
|
dx = -1;
|
|
|
|
startx = x1;
|
|
|
|
}
|
2019-01-17 03:20:16 -05:00
|
|
|
uint16_t y0 = 0;
|
2019-02-01 03:32:03 -05:00
|
|
|
uint16_t y1 = display->height - 1;
|
|
|
|
uint16_t starty = 0;
|
|
|
|
int8_t dy = 1;
|
|
|
|
if (display->mirror_y) {
|
|
|
|
dy = -1;
|
|
|
|
starty = y1;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool transpose = false;
|
|
|
|
if (display->transpose_xy) {
|
|
|
|
transpose = true;
|
|
|
|
int8_t temp_dx = dx;
|
|
|
|
dx = dy;
|
|
|
|
dy = temp_dx;
|
|
|
|
|
|
|
|
swap(&starty, &startx);
|
|
|
|
swap(&x0, &y0);
|
|
|
|
swap(&x1, &y1);
|
|
|
|
}
|
|
|
|
|
2019-01-17 03:20:16 -05:00
|
|
|
size_t index = 0;
|
|
|
|
uint16_t buffer_size = 256;
|
|
|
|
uint32_t buffer[buffer_size / 2];
|
2019-02-01 03:32:03 -05:00
|
|
|
for (uint16_t y = starty; y0 <= y && y <= y1; y += dy) {
|
|
|
|
for (uint16_t x = startx; x0 <= x && x <= x1; x += dx) {
|
2019-01-17 03:20:16 -05:00
|
|
|
uint16_t* pixel = &(((uint16_t*)buffer)[index]);
|
|
|
|
*pixel = 0;
|
|
|
|
|
2019-01-18 16:47:40 -05:00
|
|
|
if (display->current_group != NULL) {
|
2019-02-01 03:32:03 -05:00
|
|
|
if (transpose) {
|
|
|
|
displayio_group_get_pixel(display->current_group, y, x, pixel);
|
|
|
|
} else {
|
|
|
|
displayio_group_get_pixel(display->current_group, x, y, pixel);
|
|
|
|
}
|
2019-01-18 16:47:40 -05:00
|
|
|
}
|
2019-01-14 20:26:36 -05:00
|
|
|
|
2019-01-17 03:20:16 -05:00
|
|
|
index += 1;
|
|
|
|
// The buffer is full, send it.
|
|
|
|
if (index >= buffer_size) {
|
2019-02-14 15:54:34 -05:00
|
|
|
if (!displayio_display_send_pixels(display, buffer, buffer_size / 2) || reload_requested) {
|
2019-01-17 03:20:16 -05:00
|
|
|
displayio_display_finish_region_update(display);
|
2019-02-14 15:54:34 -05:00
|
|
|
refreshing_displays = false;
|
2019-01-17 03:20:16 -05:00
|
|
|
return;
|
|
|
|
}
|
2019-01-17 17:45:29 -05:00
|
|
|
// TODO(tannewt): Make refresh displays faster so we don't starve other
|
|
|
|
// background tasks.
|
|
|
|
usb_background();
|
2019-01-17 03:20:16 -05:00
|
|
|
index = 0;
|
2018-08-15 14:01:01 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-01-17 03:20:16 -05:00
|
|
|
// Send the remaining data.
|
|
|
|
if (index && !displayio_display_send_pixels(display, buffer, index * 2)) {
|
|
|
|
displayio_display_finish_region_update(display);
|
2019-02-14 15:54:34 -05:00
|
|
|
refreshing_displays = false;
|
2019-01-17 03:20:16 -05:00
|
|
|
return;
|
|
|
|
}
|
2019-01-16 15:04:42 -05:00
|
|
|
displayio_display_finish_region_update(display);
|
2018-08-15 14:01:01 -04:00
|
|
|
}
|
2019-01-17 03:20:16 -05:00
|
|
|
displayio_display_finish_refresh(display);
|
2018-08-15 14:01:01 -04:00
|
|
|
}
|
2019-02-14 15:54:34 -05:00
|
|
|
refreshing_displays = false;
|
2019-01-16 15:04:42 -05:00
|
|
|
}
|
|
|
|
|
2019-01-25 19:59:18 -05:00
|
|
|
void common_hal_displayio_release_displays(void) {
|
|
|
|
for (uint8_t i = 0; i < CIRCUITPY_DISPLAY_LIMIT; i++) {
|
|
|
|
mp_const_obj_t bus_type = displays[i].fourwire_bus.base.type;
|
|
|
|
if (bus_type == NULL) {
|
|
|
|
continue;
|
|
|
|
} else if (bus_type == &displayio_fourwire_type) {
|
|
|
|
common_hal_displayio_fourwire_deinit(&displays[i].fourwire_bus);
|
|
|
|
} else if (bus_type == &displayio_parallelbus_type) {
|
|
|
|
common_hal_displayio_parallelbus_deinit(&displays[i].parallel_bus);
|
|
|
|
}
|
|
|
|
displays[i].fourwire_bus.base.type = &mp_type_NoneType;
|
|
|
|
}
|
|
|
|
for (uint8_t i = 0; i < CIRCUITPY_DISPLAY_LIMIT; i++) {
|
2019-01-25 21:31:27 -05:00
|
|
|
release_display(&displays[i].display);
|
2019-01-25 19:59:18 -05:00
|
|
|
displays[i].display.base.type = &mp_type_NoneType;
|
|
|
|
}
|
2019-01-17 03:20:16 -05:00
|
|
|
|
2019-01-25 19:59:18 -05:00
|
|
|
supervisor_stop_terminal();
|
|
|
|
}
|
2019-01-17 03:20:16 -05:00
|
|
|
|
|
|
|
void reset_displays(void) {
|
2019-01-29 18:04:07 -05:00
|
|
|
#if CIRCUITPY_DISPLAYIO
|
2019-01-17 03:20:16 -05:00
|
|
|
// The SPI buses used by FourWires may be allocated on the heap so we need to move them inline.
|
|
|
|
for (uint8_t i = 0; i < CIRCUITPY_DISPLAY_LIMIT; i++) {
|
|
|
|
if (displays[i].fourwire_bus.base.type != &displayio_fourwire_type) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
displayio_fourwire_obj_t* fourwire = &displays[i].fourwire_bus;
|
|
|
|
if (((uint32_t) fourwire->bus) < ((uint32_t) &displays) ||
|
|
|
|
((uint32_t) fourwire->bus) > ((uint32_t) &displays + CIRCUITPY_DISPLAY_LIMIT)) {
|
|
|
|
busio_spi_obj_t* original_spi = fourwire->bus;
|
2019-01-17 21:19:07 -05:00
|
|
|
if (original_spi == board_spi()) {
|
|
|
|
continue;
|
|
|
|
}
|
2019-01-17 03:20:16 -05:00
|
|
|
memcpy(&fourwire->inline_bus, original_spi, sizeof(busio_spi_obj_t));
|
|
|
|
fourwire->bus = &fourwire->inline_bus;
|
|
|
|
// Check for other displays that use the same spi bus and swap them too.
|
|
|
|
for (uint8_t j = i + 1; j < CIRCUITPY_DISPLAY_LIMIT; j++) {
|
|
|
|
if (displays[i].fourwire_bus.bus == original_spi) {
|
|
|
|
displays[i].fourwire_bus.bus = &fourwire->inline_bus;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (uint8_t i = 0; i < CIRCUITPY_DISPLAY_LIMIT; i++) {
|
|
|
|
if (displays[i].display.base.type == NULL) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
displayio_display_obj_t* display = &displays[i].display;
|
2019-01-25 21:31:27 -05:00
|
|
|
display->auto_brightness = true;
|
2019-01-25 19:59:18 -05:00
|
|
|
common_hal_displayio_display_show(display, &circuitpython_splash);
|
2019-01-17 03:20:16 -05:00
|
|
|
}
|
2019-01-29 18:04:07 -05:00
|
|
|
#endif
|
2018-08-15 14:01:01 -04:00
|
|
|
}
|