2017-08-14 09:05:19 +00:00
|
|
|
/*
|
2018-02-26 13:06:10 +00:00
|
|
|
* This file is part of the TREZOR project, https://trezor.io/
|
2017-08-14 09:05:19 +00:00
|
|
|
*
|
2018-02-26 13:06:10 +00:00
|
|
|
* Copyright (c) SatoshiLabs
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2017-08-14 09:05:19 +00:00
|
|
|
*/
|
|
|
|
|
2017-03-07 13:50:09 +00:00
|
|
|
#include STM32_HAL_H
|
|
|
|
|
2017-03-07 14:52:19 +00:00
|
|
|
#include <string.h>
|
2017-10-20 15:18:55 +00:00
|
|
|
|
|
|
|
#include "common.h"
|
2017-10-26 21:51:39 +00:00
|
|
|
#include "secbool.h"
|
2017-04-07 00:34:53 +00:00
|
|
|
#include "touch.h"
|
2017-03-07 13:50:09 +00:00
|
|
|
|
2018-01-24 12:41:02 +00:00
|
|
|
#define TOUCH_ADDRESS (0x38U << 1) // the HAL requires the 7-bit address to be shifted by one bit
|
|
|
|
#define TOUCH_PACKET_SIZE 7U
|
|
|
|
#define EVENT_PRESS_DOWN 0x00U
|
|
|
|
#define EVENT_CONTACT 0x80U
|
|
|
|
#define EVENT_LIFT_UP 0x40U
|
|
|
|
#define EVENT_NO_EVENT 0xC0U
|
|
|
|
#define GESTURE_NO_GESTURE 0x00U
|
|
|
|
#define X_POS_MSB (touch_data[3] & 0x0FU)
|
|
|
|
#define X_POS_LSB (touch_data[4])
|
|
|
|
#define Y_POS_MSB (touch_data[5] & 0x0FU)
|
|
|
|
#define Y_POS_LSB (touch_data[6])
|
|
|
|
|
2017-10-29 12:04:40 +00:00
|
|
|
static I2C_HandleTypeDef i2c_handle;
|
2017-03-07 13:50:09 +00:00
|
|
|
|
2018-07-26 22:40:30 +00:00
|
|
|
static void touch_default_pin_state(void) {
|
|
|
|
// set power off and other pins as per section 3.5 of FT6236 datasheet
|
|
|
|
HAL_GPIO_WritePin(GPIOB, GPIO_PIN_10, GPIO_PIN_SET); // CTP_ON/PB10 (active low) i.e.- CTPM power off when set/high/log 1
|
2018-07-18 22:01:54 +00:00
|
|
|
HAL_GPIO_WritePin(GPIOB, GPIO_PIN_6, GPIO_PIN_RESET); // CTP_I2C_SCL/PB6
|
|
|
|
HAL_GPIO_WritePin(GPIOB, GPIO_PIN_7, GPIO_PIN_RESET); // CTP_I2C_SDA/PB7
|
2018-07-26 22:40:30 +00:00
|
|
|
HAL_GPIO_WritePin(GPIOC, GPIO_PIN_4, GPIO_PIN_RESET); // CTP_INT/PC4 normally an input, but drive low as an output while powered off
|
|
|
|
HAL_GPIO_WritePin(GPIOC, GPIO_PIN_5, GPIO_PIN_RESET); // CTP_REST/PC5 (active low) i.e.- CTPM held in reset until released
|
2018-07-19 11:44:29 +00:00
|
|
|
|
|
|
|
// set above pins to OUTPUT / NOPULL
|
|
|
|
GPIO_InitTypeDef GPIO_InitStructure;
|
|
|
|
|
|
|
|
GPIO_InitStructure.Mode = GPIO_MODE_OUTPUT_PP;
|
|
|
|
GPIO_InitStructure.Pull = GPIO_NOPULL;
|
|
|
|
GPIO_InitStructure.Speed = GPIO_SPEED_FREQ_LOW;
|
|
|
|
GPIO_InitStructure.Pin = GPIO_PIN_10 | GPIO_PIN_6 | GPIO_PIN_7;
|
|
|
|
HAL_GPIO_Init(GPIOB, &GPIO_InitStructure);
|
2018-07-26 22:40:30 +00:00
|
|
|
GPIO_InitStructure.Pin = GPIO_PIN_4 | GPIO_PIN_5;
|
2018-07-19 11:44:29 +00:00
|
|
|
HAL_GPIO_Init(GPIOC, &GPIO_InitStructure);
|
2018-07-26 22:40:30 +00:00
|
|
|
|
|
|
|
// in-case power was on, or CTPM was active make sure to wait long enough
|
|
|
|
// for these changes to take effect. a reset needs to be low for
|
|
|
|
// a minimum of 5ms. also wait for power circuitry to stabilize (if it changed).
|
|
|
|
HAL_Delay(100); // 100ms (being conservative)
|
2018-07-09 19:13:49 +00:00
|
|
|
}
|
|
|
|
|
2018-07-26 22:40:30 +00:00
|
|
|
static void touch_active_pin_state(void) {
|
2018-07-19 11:44:29 +00:00
|
|
|
HAL_GPIO_WritePin(GPIOB, GPIO_PIN_10, GPIO_PIN_RESET); // CTP_ON/PB10
|
2018-07-23 09:57:06 +00:00
|
|
|
HAL_Delay(10); // we need to wait until the circuit fully kicks-in
|
|
|
|
|
2017-11-04 00:57:57 +00:00
|
|
|
GPIO_InitTypeDef GPIO_InitStructure;
|
|
|
|
|
2018-07-18 22:01:54 +00:00
|
|
|
// configure CTP I2C SCL and SDA GPIO lines (PB6 & PB7)
|
2017-11-04 00:57:57 +00:00
|
|
|
GPIO_InitStructure.Mode = GPIO_MODE_AF_OD;
|
|
|
|
GPIO_InitStructure.Pull = GPIO_NOPULL;
|
2017-11-11 16:16:17 +00:00
|
|
|
GPIO_InitStructure.Speed = GPIO_SPEED_FREQ_LOW; // I2C is a KHz bus and low speed is still good into the low MHz
|
2017-11-04 00:57:57 +00:00
|
|
|
GPIO_InitStructure.Alternate = GPIO_AF4_I2C1;
|
2018-07-18 22:01:54 +00:00
|
|
|
GPIO_InitStructure.Pin = GPIO_PIN_6 | GPIO_PIN_7;
|
2017-03-07 13:50:09 +00:00
|
|
|
HAL_GPIO_Init(GPIOB, &GPIO_InitStructure);
|
|
|
|
|
2018-07-18 22:01:54 +00:00
|
|
|
// PC4 capacitive touch panel module (CTPM) interrupt (INT) input
|
2018-07-26 22:40:30 +00:00
|
|
|
GPIO_InitStructure.Mode = GPIO_MODE_INPUT;
|
|
|
|
GPIO_InitStructure.Pull = GPIO_PULLUP;
|
2018-07-18 22:01:54 +00:00
|
|
|
GPIO_InitStructure.Speed = GPIO_SPEED_FREQ_LOW;
|
2018-07-26 22:40:30 +00:00
|
|
|
GPIO_InitStructure.Pin = GPIO_PIN_4;
|
2018-07-18 22:01:54 +00:00
|
|
|
HAL_GPIO_Init(GPIOC, &GPIO_InitStructure);
|
|
|
|
|
2018-07-26 22:40:30 +00:00
|
|
|
HAL_GPIO_WritePin(GPIOC, GPIO_PIN_5, GPIO_PIN_SET); // release CTPM reset
|
|
|
|
HAL_Delay(310); // "Time of starting to report point after resetting" min is 300ms, giving an extra 10ms
|
2018-07-18 22:01:54 +00:00
|
|
|
}
|
|
|
|
|
2018-07-19 11:44:29 +00:00
|
|
|
void touch_init(void) {
|
|
|
|
touch_default_pin_state();
|
|
|
|
}
|
|
|
|
|
2018-07-18 22:01:54 +00:00
|
|
|
void HAL_I2C_MspInit(I2C_HandleTypeDef *hi2c) {
|
|
|
|
// enable I2C clock
|
|
|
|
__HAL_RCC_I2C1_CLK_ENABLE();
|
|
|
|
// GPIO have already been initialised by touch_init
|
|
|
|
}
|
|
|
|
|
|
|
|
void HAL_I2C_MspDeInit(I2C_HandleTypeDef *hi2c) {
|
|
|
|
__HAL_RCC_I2C1_CLK_DISABLE();
|
|
|
|
}
|
|
|
|
|
|
|
|
void touch_power_on(void) {
|
|
|
|
if (i2c_handle.Instance) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// turn on CTP circuitry
|
2018-07-19 11:44:29 +00:00
|
|
|
touch_active_pin_state();
|
2018-07-18 22:01:54 +00:00
|
|
|
HAL_Delay(50);
|
|
|
|
|
|
|
|
// I2C device interface configuration
|
2017-10-29 12:04:40 +00:00
|
|
|
i2c_handle.Instance = I2C1;
|
|
|
|
i2c_handle.Init.ClockSpeed = 400000;
|
|
|
|
i2c_handle.Init.DutyCycle = I2C_DUTYCYCLE_16_9;
|
|
|
|
i2c_handle.Init.OwnAddress1 = 0xFE; // master
|
|
|
|
i2c_handle.Init.AddressingMode = I2C_ADDRESSINGMODE_7BIT;
|
|
|
|
i2c_handle.Init.DualAddressMode = I2C_DUALADDRESS_DISABLE;
|
|
|
|
i2c_handle.Init.OwnAddress2 = 0;
|
|
|
|
i2c_handle.Init.GeneralCallMode = I2C_GENERALCALL_DISABLE;
|
|
|
|
i2c_handle.Init.NoStretchMode = I2C_NOSTRETCH_DISABLE;
|
2017-03-07 14:11:21 +00:00
|
|
|
|
2018-07-18 22:01:54 +00:00
|
|
|
if (HAL_OK != HAL_I2C_Init(&i2c_handle)) {
|
|
|
|
ensure(secfalse, NULL);
|
|
|
|
return;
|
|
|
|
}
|
2017-11-11 16:16:17 +00:00
|
|
|
|
|
|
|
// set register 0xA4 G_MODE to interrupt polling mode (0x00). basically, CTPM keeps this input line (to PC4) low while a finger is on the screen.
|
2018-07-18 22:01:54 +00:00
|
|
|
uint8_t touch_panel_config[] = {0xA4, 0x00};
|
|
|
|
ensure(sectrue * (HAL_OK == HAL_I2C_Master_Transmit(&i2c_handle, TOUCH_ADDRESS, touch_panel_config, sizeof(touch_panel_config), 10)), NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
void touch_power_off(void) {
|
2018-07-19 16:38:38 +00:00
|
|
|
if (i2c_handle.Instance) {
|
2018-07-18 22:01:54 +00:00
|
|
|
HAL_I2C_DeInit(&i2c_handle);
|
|
|
|
i2c_handle.Instance = NULL;
|
|
|
|
}
|
|
|
|
// turn off CTP circuitry
|
|
|
|
HAL_Delay(50);
|
|
|
|
touch_default_pin_state();
|
2017-11-11 16:16:17 +00:00
|
|
|
}
|
2017-06-07 15:12:07 +00:00
|
|
|
|
2017-10-18 14:54:03 +00:00
|
|
|
uint32_t touch_read(void)
|
|
|
|
{
|
2017-10-29 15:56:32 +00:00
|
|
|
static uint8_t touch_data[TOUCH_PACKET_SIZE], previous_touch_data[TOUCH_PACKET_SIZE];
|
|
|
|
|
2017-11-11 16:16:17 +00:00
|
|
|
uint8_t outgoing[] = {0x00}; // start reading from address 0x00
|
|
|
|
if (HAL_OK != HAL_I2C_Master_Transmit(&i2c_handle, TOUCH_ADDRESS, outgoing, sizeof(outgoing), 1)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-10-29 15:56:32 +00:00
|
|
|
if (HAL_OK != HAL_I2C_Master_Receive(&i2c_handle, TOUCH_ADDRESS, touch_data, TOUCH_PACKET_SIZE, 1)) {
|
2017-03-07 14:52:19 +00:00
|
|
|
return 0; // read failure
|
|
|
|
}
|
2017-10-29 15:56:32 +00:00
|
|
|
|
|
|
|
if (0 == memcmp(previous_touch_data, touch_data, TOUCH_PACKET_SIZE)) {
|
|
|
|
return 0; // polled and got the same event again
|
|
|
|
} else {
|
|
|
|
memcpy(previous_touch_data, touch_data, TOUCH_PACKET_SIZE);
|
2017-03-07 14:52:19 +00:00
|
|
|
}
|
2017-10-29 15:56:32 +00:00
|
|
|
|
|
|
|
const uint32_t number_of_touch_points = touch_data[2] & 0x0F; // valid values are 0, 1, 2 (invalid 0xF before first touch) (tested with FT6206)
|
|
|
|
const uint32_t event_flag = touch_data[3] & 0xC0;
|
|
|
|
if (touch_data[1] == GESTURE_NO_GESTURE) {
|
2018-01-24 12:41:02 +00:00
|
|
|
uint32_t xy = touch_pack_xy((X_POS_MSB << 8) | X_POS_LSB, (Y_POS_MSB << 8) | Y_POS_LSB);
|
2017-10-29 15:56:32 +00:00
|
|
|
if ((number_of_touch_points == 1) && (event_flag == EVENT_PRESS_DOWN)) {
|
2018-01-24 12:41:02 +00:00
|
|
|
return TOUCH_START | xy;
|
2017-10-29 15:56:32 +00:00
|
|
|
} else if ((number_of_touch_points == 1) && (event_flag == EVENT_CONTACT)) {
|
2018-01-24 12:41:02 +00:00
|
|
|
return TOUCH_MOVE | xy;
|
2017-10-29 15:56:32 +00:00
|
|
|
} else if ((number_of_touch_points == 0) && (event_flag == EVENT_LIFT_UP)) {
|
2018-01-24 12:41:02 +00:00
|
|
|
return TOUCH_END | xy;
|
2017-06-07 15:12:07 +00:00
|
|
|
}
|
2017-03-07 14:52:19 +00:00
|
|
|
}
|
2017-06-07 15:12:07 +00:00
|
|
|
|
|
|
|
return 0;
|
2017-03-07 13:50:09 +00:00
|
|
|
}
|
2017-03-07 16:33:39 +00:00
|
|
|
|
2017-10-24 15:59:25 +00:00
|
|
|
uint32_t touch_click(void)
|
2017-09-29 08:11:12 +00:00
|
|
|
{
|
2017-10-29 15:56:32 +00:00
|
|
|
uint32_t r = 0;
|
2017-09-29 08:11:12 +00:00
|
|
|
// flush touch events if any
|
|
|
|
while (touch_read()) { }
|
|
|
|
// wait for TOUCH_START
|
|
|
|
while ((touch_read() & TOUCH_START) == 0) { }
|
|
|
|
// wait for TOUCH_END
|
2017-10-24 15:59:25 +00:00
|
|
|
while (((r = touch_read()) & TOUCH_END) == 0) { }
|
2017-09-29 08:11:12 +00:00
|
|
|
// flush touch events if any
|
|
|
|
while (touch_read()) { }
|
2017-10-24 15:59:25 +00:00
|
|
|
// return last touch coordinate
|
|
|
|
return r;
|
2017-09-29 08:11:12 +00:00
|
|
|
}
|
2018-07-26 22:40:30 +00:00
|
|
|
|
|
|
|
uint32_t touch_is_detected(void)
|
|
|
|
{
|
|
|
|
// check the interrupt line coming in from the CTPM.
|
|
|
|
// the line goes low when a touch event is actively detected.
|
|
|
|
// reference section 1.2 of "Application Note for FT6x06 CTPM".
|
|
|
|
// we configure the touch controller to use "interrupt polling mode".
|
|
|
|
return GPIO_PIN_RESET == HAL_GPIO_ReadPin(GPIOC, GPIO_PIN_4);
|
|
|
|
}
|