|
28 | 28 | #include "mpconfigboard.h" |
29 | 29 | #include "hal/include/hal_gpio.h" |
30 | 30 |
|
| 31 | +#include "shared-bindings/displayio/FourWire.h" |
| 32 | +#include "shared-module/displayio/mipi_constants.h" |
| 33 | + |
| 34 | +#include "tick.h" |
| 35 | + |
| 36 | +displayio_fourwire_obj_t board_display_obj; |
| 37 | + |
| 38 | +#define DELAY 0x80 |
| 39 | + |
| 40 | +uint8_t display_init_sequence[] = { |
| 41 | + 0xEF, 3, 0x03, 0x80, 0x02, |
| 42 | + 0xCF, 3, 0x00, 0xC1, 0x30, |
| 43 | + 0xED, 4, 0x64, 0x03, 0x12, 0x81, |
| 44 | + 0xE8, 3, 0x85, 0x00, 0x78, |
| 45 | + 0xCB, 5, 0x39, 0x2C, 0x00, 0x34, 0x02, |
| 46 | + 0xF7, 1, 0x20, |
| 47 | + 0xEA, 2, 0x00, 0x00, |
| 48 | + 0xc0, 1, 0x23, // Power control VRH[5:0] |
| 49 | + 0xc1, 1, 0x10, // Power control SAP[2:0];BT[3:0] |
| 50 | + 0xc5, 2, 0x3e, 0x28, // VCM control |
| 51 | + 0xc7, 1, 0x86, // VCM control2 |
| 52 | + 0x36, 1, 0x48, // Memory Access Control |
| 53 | + 0x37, 1, 0x00, // Vertical scroll zero |
| 54 | + 0x3a, 1, 0x55, // COLMOD: Pixel Format Set |
| 55 | + 0xb1, 2, 0x00, 0x18, // Frame Rate Control (In Normal Mode/Full Colors) |
| 56 | + 0xb6, 3, 0x08, 0x82, 0x27, // Display Function Control |
| 57 | + 0xF2, 1, 0x00, // 3Gamma Function Disable |
| 58 | + 0x26, 1, 0x01, // Gamma curve selected |
| 59 | + 0xe0, 15, 0x0F, 0x31, 0x2B, 0x0C, 0x0E, 0x08, // Set Gamma |
| 60 | + 0x4E, 0xF1, 0x37, 0x07, 0x10, 0x03, 0x0E, 0x09, 0x00, |
| 61 | + 0xe1, 15, 0x00, 0x0E, 0x14, 0x03, 0x11, 0x07, // Set Gamma |
| 62 | + 0x31, 0xC1, 0x48, 0x08, 0x0F, 0x0C, 0x31, 0x36, 0x0F, |
| 63 | + 0x11, DELAY, 120, // Exit Sleep |
| 64 | + 0x29, DELAY, 120, // Display on |
| 65 | +}; |
| 66 | + |
| 67 | + |
31 | 68 | void board_init(void) { |
| 69 | + board_display_obj.base.type = &displayio_fourwire_type; |
| 70 | + common_hal_displayio_fourwire_construct(&board_display_obj, |
| 71 | + &pin_PA13, // Clock |
| 72 | + &pin_PA12, // Data |
| 73 | + &pin_PB09, // Command or data |
| 74 | + &pin_PB06, // Chip select |
| 75 | + &pin_PB05, // Reset |
| 76 | + 240, // Width |
| 77 | + 320, // Height |
| 78 | + 0, // column start |
| 79 | + 0, // row start |
| 80 | + 16, // Color depth |
| 81 | + MIPI_COMMAND_SET_COLUMN_ADDRESS, // Set column command |
| 82 | + MIPI_COMMAND_SET_PAGE_ADDRESS, // Set row command |
| 83 | + MIPI_COMMAND_WRITE_MEMORY_START); // Write memory command |
| 84 | + |
| 85 | + uint32_t i = 0; |
| 86 | + common_hal_displayio_fourwire_begin_transaction(&board_display_obj); |
| 87 | + while (i < sizeof(display_init_sequence)) { |
| 88 | + uint8_t *cmd = display_init_sequence + i; |
| 89 | + uint8_t data_size = *(cmd + 1); |
| 90 | + bool delay = (data_size & DELAY) != 0; |
| 91 | + data_size &= ~DELAY; |
| 92 | + uint8_t *data = cmd + 2; |
| 93 | + common_hal_displayio_fourwire_send(&board_display_obj, true, cmd, 1); |
| 94 | + common_hal_displayio_fourwire_send(&board_display_obj, false, data, data_size); |
| 95 | + if (delay) { |
| 96 | + data_size++; |
| 97 | + uint16_t delay_length_ms = *(cmd + 1 + data_size); |
| 98 | + if (delay_length_ms == 255) { |
| 99 | + delay_length_ms = 500; |
| 100 | + } |
| 101 | + uint64_t start = ticks_ms; |
| 102 | + while (ticks_ms - start < delay_length_ms) {} |
| 103 | + } else { |
| 104 | + uint64_t start = ticks_ms; |
| 105 | + while (ticks_ms - start < 10) {} |
| 106 | + } |
| 107 | + i += 2 + data_size; |
| 108 | + } |
| 109 | + common_hal_displayio_fourwire_end_transaction(&board_display_obj); |
32 | 110 | } |
33 | 111 |
|
34 | 112 | bool board_requests_safe_mode(void) { |
35 | 113 | return false; |
36 | 114 | } |
37 | 115 |
|
38 | 116 | void reset_board(void) { |
| 117 | + common_hal_displayio_fourwire_show(&board_display_obj, NULL); |
39 | 118 | } |
0 commit comments