Linux Audio

Check our new training course

Loading...
v6.13.7
   1// SPDX-License-Identifier: GPL-2.0-only
   2/*
   3 *  Driver for Goodix Touchscreens
   4 *
   5 *  Copyright (c) 2014 Red Hat Inc.
   6 *  Copyright (c) 2015 K. Merker <merker@debian.org>
   7 *
   8 *  This code is based on gt9xx.c authored by andrew@goodix.com:
   9 *
  10 *  2010 - 2012 Goodix Technology.
  11 */
  12
  13
  14#include <linux/kernel.h>
  15#include <linux/dmi.h>
  16#include <linux/firmware.h>
 
 
 
 
 
  17#include <linux/module.h>
  18#include <linux/delay.h>
  19#include <linux/irq.h>
  20#include <linux/interrupt.h>
  21#include <linux/platform_data/x86/soc.h>
  22#include <linux/slab.h>
  23#include <linux/acpi.h>
  24#include <linux/of.h>
  25#include <linux/unaligned.h>
  26#include "goodix.h"
  27
  28#define GOODIX_GPIO_INT_NAME		"irq"
  29#define GOODIX_GPIO_RST_NAME		"reset"
  30
  31#define GOODIX_MAX_HEIGHT		4096
  32#define GOODIX_MAX_WIDTH		4096
  33#define GOODIX_INT_TRIGGER		1
  34#define GOODIX_CONTACT_SIZE		8
  35#define GOODIX_MAX_CONTACT_SIZE		9
  36#define GOODIX_MAX_CONTACTS		10
 
  37
  38#define GOODIX_CONFIG_MIN_LENGTH	186
  39#define GOODIX_CONFIG_911_LENGTH	186
  40#define GOODIX_CONFIG_967_LENGTH	228
  41#define GOODIX_CONFIG_GT9X_LENGTH	240
 
 
 
 
 
 
 
 
 
 
  42
  43#define GOODIX_BUFFER_STATUS_READY	BIT(7)
  44#define GOODIX_HAVE_KEY			BIT(4)
  45#define GOODIX_BUFFER_STATUS_TIMEOUT	20
  46
  47#define RESOLUTION_LOC		1
  48#define MAX_CONTACTS_LOC	5
  49#define TRIGGER_LOC		6
  50
  51/* Our special handling for GPIO accesses through ACPI is x86 specific */
  52#if defined CONFIG_X86 && defined CONFIG_ACPI
  53#define ACPI_GPIO_SUPPORT
  54#endif
  55
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
  56struct goodix_chip_id {
  57	const char *id;
  58	const struct goodix_chip_data *data;
  59};
  60
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
  61static int goodix_check_cfg_8(struct goodix_ts_data *ts,
  62			      const u8 *cfg, int len);
  63static int goodix_check_cfg_16(struct goodix_ts_data *ts,
  64			       const u8 *cfg, int len);
  65static void goodix_calc_cfg_checksum_8(struct goodix_ts_data *ts);
  66static void goodix_calc_cfg_checksum_16(struct goodix_ts_data *ts);
  67
  68static const struct goodix_chip_data gt1x_chip_data = {
  69	.config_addr		= GOODIX_GT1X_REG_CONFIG_DATA,
  70	.config_len		= GOODIX_CONFIG_GT9X_LENGTH,
  71	.check_config		= goodix_check_cfg_16,
  72	.calc_config_checksum	= goodix_calc_cfg_checksum_16,
  73};
  74
  75static const struct goodix_chip_data gt911_chip_data = {
  76	.config_addr		= GOODIX_GT9X_REG_CONFIG_DATA,
  77	.config_len		= GOODIX_CONFIG_911_LENGTH,
  78	.check_config		= goodix_check_cfg_8,
  79	.calc_config_checksum	= goodix_calc_cfg_checksum_8,
  80};
  81
  82static const struct goodix_chip_data gt967_chip_data = {
  83	.config_addr		= GOODIX_GT9X_REG_CONFIG_DATA,
  84	.config_len		= GOODIX_CONFIG_967_LENGTH,
  85	.check_config		= goodix_check_cfg_8,
  86	.calc_config_checksum	= goodix_calc_cfg_checksum_8,
  87};
  88
  89static const struct goodix_chip_data gt9x_chip_data = {
  90	.config_addr		= GOODIX_GT9X_REG_CONFIG_DATA,
  91	.config_len		= GOODIX_CONFIG_GT9X_LENGTH,
  92	.check_config		= goodix_check_cfg_8,
  93	.calc_config_checksum	= goodix_calc_cfg_checksum_8,
  94};
  95
  96static const struct goodix_chip_id goodix_chip_ids[] = {
  97	{ .id = "1151", .data = &gt1x_chip_data },
  98	{ .id = "1158", .data = &gt1x_chip_data },
  99	{ .id = "5663", .data = &gt1x_chip_data },
 100	{ .id = "5688", .data = &gt1x_chip_data },
 101	{ .id = "917S", .data = &gt1x_chip_data },
 102	{ .id = "9286", .data = &gt1x_chip_data },
 103
 104	{ .id = "911", .data = &gt911_chip_data },
 105	{ .id = "9271", .data = &gt911_chip_data },
 106	{ .id = "9110", .data = &gt911_chip_data },
 107	{ .id = "9111", .data = &gt911_chip_data },
 108	{ .id = "927", .data = &gt911_chip_data },
 109	{ .id = "928", .data = &gt911_chip_data },
 110
 111	{ .id = "912", .data = &gt967_chip_data },
 112	{ .id = "9147", .data = &gt967_chip_data },
 113	{ .id = "967", .data = &gt967_chip_data },
 114	{ }
 115};
 116
 117static const unsigned long goodix_irq_flags[] = {
 118	IRQ_TYPE_EDGE_RISING,
 119	IRQ_TYPE_EDGE_FALLING,
 120	IRQ_TYPE_LEVEL_LOW,
 121	IRQ_TYPE_LEVEL_HIGH,
 122};
 123
 124static const struct dmi_system_id nine_bytes_report[] = {
 125#if defined(CONFIG_DMI) && defined(CONFIG_X86)
 126	{
 127		/* Lenovo Yoga Book X90F / X90L */
 128		.matches = {
 129			DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Intel Corporation"),
 130			DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "CHERRYVIEW D1 PLATFORM"),
 131			DMI_EXACT_MATCH(DMI_PRODUCT_VERSION, "YETI-11"),
 132		}
 133	},
 134	{
 135		/* Lenovo Yoga Book X91F / X91L */
 136		.matches = {
 137			/* Non exact match to match F + L versions */
 138			DMI_MATCH(DMI_PRODUCT_NAME, "Lenovo YB1-X91"),
 139		}
 140	},
 141#endif
 142	{}
 143};
 144
 145/*
 146 * Those tablets have their x coordinate inverted
 147 */
 148static const struct dmi_system_id inverted_x_screen[] = {
 149#if defined(CONFIG_DMI) && defined(CONFIG_X86)
 150	{
 151		.ident = "Cube I15-TC",
 152		.matches = {
 153			DMI_MATCH(DMI_SYS_VENDOR, "Cube"),
 154			DMI_MATCH(DMI_PRODUCT_NAME, "I15-TC")
 155		},
 156	},
 157#endif
 158	{}
 159};
 160
 161/**
 162 * goodix_i2c_read - read data from a register of the i2c slave device.
 163 *
 164 * @client: i2c device.
 165 * @reg: the register to read from.
 166 * @buf: raw write data buffer.
 167 * @len: length of the buffer to write
 168 */
 169int goodix_i2c_read(struct i2c_client *client, u16 reg, u8 *buf, int len)
 
 170{
 171	struct i2c_msg msgs[2];
 172	__be16 wbuf = cpu_to_be16(reg);
 173	int ret;
 174
 175	msgs[0].flags = 0;
 176	msgs[0].addr  = client->addr;
 177	msgs[0].len   = 2;
 178	msgs[0].buf   = (u8 *)&wbuf;
 179
 180	msgs[1].flags = I2C_M_RD;
 181	msgs[1].addr  = client->addr;
 182	msgs[1].len   = len;
 183	msgs[1].buf   = buf;
 184
 185	ret = i2c_transfer(client->adapter, msgs, 2);
 186	if (ret >= 0)
 187		ret = (ret == ARRAY_SIZE(msgs) ? 0 : -EIO);
 188
 189	if (ret)
 190		dev_err(&client->dev, "Error reading %d bytes from 0x%04x: %d\n",
 191			len, reg, ret);
 192	return ret;
 193}
 194
 195/**
 196 * goodix_i2c_write - write data to a register of the i2c slave device.
 197 *
 198 * @client: i2c device.
 199 * @reg: the register to write to.
 200 * @buf: raw data buffer to write.
 201 * @len: length of the buffer to write
 202 */
 203int goodix_i2c_write(struct i2c_client *client, u16 reg, const u8 *buf, int len)
 
 204{
 205	u8 *addr_buf;
 206	struct i2c_msg msg;
 207	int ret;
 208
 209	addr_buf = kmalloc(len + 2, GFP_KERNEL);
 210	if (!addr_buf)
 211		return -ENOMEM;
 212
 213	addr_buf[0] = reg >> 8;
 214	addr_buf[1] = reg & 0xFF;
 215	memcpy(&addr_buf[2], buf, len);
 216
 217	msg.flags = 0;
 218	msg.addr = client->addr;
 219	msg.buf = addr_buf;
 220	msg.len = len + 2;
 221
 222	ret = i2c_transfer(client->adapter, &msg, 1);
 223	if (ret >= 0)
 224		ret = (ret == 1 ? 0 : -EIO);
 225
 226	kfree(addr_buf);
 227
 228	if (ret)
 229		dev_err(&client->dev, "Error writing %d bytes to 0x%04x: %d\n",
 230			len, reg, ret);
 231	return ret;
 232}
 233
 234int goodix_i2c_write_u8(struct i2c_client *client, u16 reg, u8 value)
 235{
 236	return goodix_i2c_write(client, reg, &value, sizeof(value));
 237}
 238
 239static const struct goodix_chip_data *goodix_get_chip_data(const char *id)
 240{
 241	unsigned int i;
 242
 243	for (i = 0; goodix_chip_ids[i].id; i++) {
 244		if (!strcmp(goodix_chip_ids[i].id, id))
 245			return goodix_chip_ids[i].data;
 246	}
 247
 248	return &gt9x_chip_data;
 249}
 250
 251static int goodix_ts_read_input_report(struct goodix_ts_data *ts, u8 *data)
 252{
 253	unsigned long max_timeout;
 254	int touch_num;
 255	int error;
 256	u16 addr = GOODIX_READ_COOR_ADDR;
 257	/*
 258	 * We are going to read 1-byte header,
 259	 * ts->contact_size * max(1, touch_num) bytes of coordinates
 260	 * and 1-byte footer which contains the touch-key code.
 261	 */
 262	const int header_contact_keycode_size = 1 + ts->contact_size + 1;
 263
 264	/*
 265	 * The 'buffer status' bit, which indicates that the data is valid, is
 266	 * not set as soon as the interrupt is raised, but slightly after.
 267	 * This takes around 10 ms to happen, so we poll for 20 ms.
 268	 */
 269	max_timeout = jiffies + msecs_to_jiffies(GOODIX_BUFFER_STATUS_TIMEOUT);
 270	do {
 271		error = goodix_i2c_read(ts->client, addr, data,
 272					header_contact_keycode_size);
 273		if (error)
 
 
 274			return error;
 
 275
 276		if (data[0] & GOODIX_BUFFER_STATUS_READY) {
 277			touch_num = data[0] & 0x0f;
 278			if (touch_num > ts->max_touch_num)
 279				return -EPROTO;
 280
 281			if (touch_num > 1) {
 282				addr += header_contact_keycode_size;
 283				data += header_contact_keycode_size;
 284				error = goodix_i2c_read(ts->client,
 285						addr, data,
 286						ts->contact_size *
 287							(touch_num - 1));
 288				if (error)
 289					return error;
 290			}
 291
 292			return touch_num;
 293		}
 294
 295		if (data[0] == 0 && ts->firmware_name) {
 296			if (goodix_handle_fw_request(ts))
 297				return 0;
 298		}
 299
 300		usleep_range(1000, 2000); /* Poll every 1 - 2 ms */
 301	} while (time_before(jiffies, max_timeout));
 302
 303	/*
 304	 * The Goodix panel will send spurious interrupts after a
 305	 * 'finger up' event, which will always cause a timeout.
 306	 */
 307	return -ENOMSG;
 308}
 309
 310static int goodix_create_pen_input(struct goodix_ts_data *ts)
 311{
 312	struct device *dev = &ts->client->dev;
 313	struct input_dev *input;
 314
 315	input = devm_input_allocate_device(dev);
 316	if (!input)
 317		return -ENOMEM;
 318
 319	input_copy_abs(input, ABS_X, ts->input_dev, ABS_MT_POSITION_X);
 320	input_copy_abs(input, ABS_Y, ts->input_dev, ABS_MT_POSITION_Y);
 321	/*
 322	 * The resolution of these touchscreens is about 10 units/mm, the actual
 323	 * resolution does not matter much since we set INPUT_PROP_DIRECT.
 324	 * Userspace wants something here though, so just set it to 10 units/mm.
 325	 */
 326	input_abs_set_res(input, ABS_X, 10);
 327	input_abs_set_res(input, ABS_Y, 10);
 328	input_set_abs_params(input, ABS_PRESSURE, 0, 255, 0, 0);
 329
 330	input_set_capability(input, EV_KEY, BTN_TOUCH);
 331	input_set_capability(input, EV_KEY, BTN_TOOL_PEN);
 332	input_set_capability(input, EV_KEY, BTN_STYLUS);
 333	input_set_capability(input, EV_KEY, BTN_STYLUS2);
 334	__set_bit(INPUT_PROP_DIRECT, input->propbit);
 335
 336	input->name = "Goodix Active Pen";
 337	input->phys = "input/pen";
 338	input->id.bustype = BUS_I2C;
 339	input->id.vendor = 0x0416;
 340	if (kstrtou16(ts->id, 10, &input->id.product))
 341		input->id.product = 0x1001;
 342	input->id.version = ts->version;
 343
 344	ts->input_pen = input;
 345	return 0;
 346}
 347
 348static void goodix_ts_report_pen_down(struct goodix_ts_data *ts, u8 *data)
 349{
 350	int input_x, input_y, input_w, error;
 351	u8 key_value;
 352
 353	if (!ts->pen_input_registered) {
 354		error = input_register_device(ts->input_pen);
 355		ts->pen_input_registered = (error == 0) ? 1 : error;
 356	}
 357
 358	if (ts->pen_input_registered < 0)
 359		return;
 360
 361	if (ts->contact_size == 9) {
 362		input_x = get_unaligned_le16(&data[4]);
 363		input_y = get_unaligned_le16(&data[6]);
 364		input_w = get_unaligned_le16(&data[8]);
 365	} else {
 366		input_x = get_unaligned_le16(&data[2]);
 367		input_y = get_unaligned_le16(&data[4]);
 368		input_w = get_unaligned_le16(&data[6]);
 369	}
 370
 371	touchscreen_report_pos(ts->input_pen, &ts->prop, input_x, input_y, false);
 372	input_report_abs(ts->input_pen, ABS_PRESSURE, input_w);
 373
 374	input_report_key(ts->input_pen, BTN_TOUCH, 1);
 375	input_report_key(ts->input_pen, BTN_TOOL_PEN, 1);
 376
 377	if (data[0] & GOODIX_HAVE_KEY) {
 378		key_value = data[1 + ts->contact_size];
 379		input_report_key(ts->input_pen, BTN_STYLUS, key_value & 0x10);
 380		input_report_key(ts->input_pen, BTN_STYLUS2, key_value & 0x20);
 381	} else {
 382		input_report_key(ts->input_pen, BTN_STYLUS, 0);
 383		input_report_key(ts->input_pen, BTN_STYLUS2, 0);
 384	}
 385
 386	input_sync(ts->input_pen);
 387}
 388
 389static void goodix_ts_report_pen_up(struct goodix_ts_data *ts)
 390{
 391	if (!ts->input_pen)
 392		return;
 393
 394	input_report_key(ts->input_pen, BTN_TOUCH, 0);
 395	input_report_key(ts->input_pen, BTN_TOOL_PEN, 0);
 396	input_report_key(ts->input_pen, BTN_STYLUS, 0);
 397	input_report_key(ts->input_pen, BTN_STYLUS2, 0);
 398
 399	input_sync(ts->input_pen);
 400}
 401
 402static void goodix_ts_report_touch_8b(struct goodix_ts_data *ts, u8 *coor_data)
 403{
 404	int id = coor_data[0] & 0x0F;
 405	int input_x = get_unaligned_le16(&coor_data[1]);
 406	int input_y = get_unaligned_le16(&coor_data[3]);
 407	int input_w = get_unaligned_le16(&coor_data[5]);
 408
 409	input_mt_slot(ts->input_dev, id);
 410	input_mt_report_slot_state(ts->input_dev, MT_TOOL_FINGER, true);
 411	touchscreen_report_pos(ts->input_dev, &ts->prop,
 412			       input_x, input_y, true);
 413	input_report_abs(ts->input_dev, ABS_MT_TOUCH_MAJOR, input_w);
 414	input_report_abs(ts->input_dev, ABS_MT_WIDTH_MAJOR, input_w);
 415}
 416
 417static void goodix_ts_report_touch_9b(struct goodix_ts_data *ts, u8 *coor_data)
 418{
 419	int id = coor_data[1] & 0x0F;
 420	int input_x = get_unaligned_le16(&coor_data[3]);
 421	int input_y = get_unaligned_le16(&coor_data[5]);
 422	int input_w = get_unaligned_le16(&coor_data[7]);
 423
 424	input_mt_slot(ts->input_dev, id);
 425	input_mt_report_slot_state(ts->input_dev, MT_TOOL_FINGER, true);
 426	touchscreen_report_pos(ts->input_dev, &ts->prop,
 427			       input_x, input_y, true);
 428	input_report_abs(ts->input_dev, ABS_MT_TOUCH_MAJOR, input_w);
 429	input_report_abs(ts->input_dev, ABS_MT_WIDTH_MAJOR, input_w);
 430}
 431
 432static void goodix_ts_release_keys(struct goodix_ts_data *ts)
 433{
 434	int i;
 435
 436	for (i = 0; i < GOODIX_MAX_KEYS; i++)
 437		input_report_key(ts->input_dev, ts->keymap[i], 0);
 438}
 439
 440static void goodix_ts_report_key(struct goodix_ts_data *ts, u8 *data)
 441{
 442	int touch_num;
 443	u8 key_value;
 444	int i;
 445
 446	if (data[0] & GOODIX_HAVE_KEY) {
 447		touch_num = data[0] & 0x0f;
 448		key_value = data[1 + ts->contact_size * touch_num];
 449		for (i = 0; i < GOODIX_MAX_KEYS; i++)
 450			if (key_value & BIT(i))
 451				input_report_key(ts->input_dev,
 452						 ts->keymap[i], 1);
 453	} else {
 454		goodix_ts_release_keys(ts);
 
 455	}
 456}
 457
 458/**
 459 * goodix_process_events - Process incoming events
 460 *
 461 * @ts: our goodix_ts_data pointer
 462 *
 463 * Called when the IRQ is triggered. Read the current device state, and push
 464 * the input events to the user space.
 465 */
 466static void goodix_process_events(struct goodix_ts_data *ts)
 467{
 468	u8  point_data[2 + GOODIX_MAX_CONTACT_SIZE * GOODIX_MAX_CONTACTS];
 469	int touch_num;
 470	int i;
 471
 472	touch_num = goodix_ts_read_input_report(ts, point_data);
 473	if (touch_num < 0)
 474		return;
 475
 476	/* The pen being down is always reported as a single touch */
 477	if (touch_num == 1 && (point_data[1] & 0x80)) {
 478		goodix_ts_report_pen_down(ts, point_data);
 479		goodix_ts_release_keys(ts);
 480		goto sync; /* Release any previously registered touches */
 481	} else {
 482		goodix_ts_report_pen_up(ts);
 483	}
 484
 485	goodix_ts_report_key(ts, point_data);
 486
 487	for (i = 0; i < touch_num; i++)
 488		if (ts->contact_size == 9)
 489			goodix_ts_report_touch_9b(ts,
 490				&point_data[1 + ts->contact_size * i]);
 491		else
 492			goodix_ts_report_touch_8b(ts,
 493				&point_data[1 + ts->contact_size * i]);
 494
 495sync:
 496	input_mt_sync_frame(ts->input_dev);
 497	input_sync(ts->input_dev);
 498}
 499
 500/**
 501 * goodix_ts_irq_handler - The IRQ handler
 502 *
 503 * @irq: interrupt number.
 504 * @dev_id: private data pointer.
 505 */
 506static irqreturn_t goodix_ts_irq_handler(int irq, void *dev_id)
 507{
 508	struct goodix_ts_data *ts = dev_id;
 509
 510	goodix_process_events(ts);
 511	goodix_i2c_write_u8(ts->client, GOODIX_READ_COOR_ADDR, 0);
 
 
 512
 513	return IRQ_HANDLED;
 514}
 515
 516static void goodix_free_irq(struct goodix_ts_data *ts)
 517{
 518	devm_free_irq(&ts->client->dev, ts->client->irq, ts);
 519}
 520
 521static int goodix_request_irq(struct goodix_ts_data *ts)
 522{
 523	return devm_request_threaded_irq(&ts->client->dev, ts->client->irq,
 524					 NULL, goodix_ts_irq_handler,
 525					 ts->irq_flags, ts->client->name, ts);
 526}
 527
 528static int goodix_check_cfg_8(struct goodix_ts_data *ts, const u8 *cfg, int len)
 529{
 530	int i, raw_cfg_len = len - 2;
 531	u8 check_sum = 0;
 532
 533	for (i = 0; i < raw_cfg_len; i++)
 534		check_sum += cfg[i];
 535	check_sum = (~check_sum) + 1;
 536	if (check_sum != cfg[raw_cfg_len]) {
 537		dev_err(&ts->client->dev,
 538			"The checksum of the config fw is not correct");
 539		return -EINVAL;
 540	}
 541
 542	if (cfg[raw_cfg_len + 1] != 1) {
 543		dev_err(&ts->client->dev,
 544			"Config fw must have Config_Fresh register set");
 545		return -EINVAL;
 546	}
 547
 548	return 0;
 549}
 550
 551static void goodix_calc_cfg_checksum_8(struct goodix_ts_data *ts)
 552{
 553	int i, raw_cfg_len = ts->chip->config_len - 2;
 554	u8 check_sum = 0;
 555
 556	for (i = 0; i < raw_cfg_len; i++)
 557		check_sum += ts->config[i];
 558	check_sum = (~check_sum) + 1;
 559
 560	ts->config[raw_cfg_len] = check_sum;
 561	ts->config[raw_cfg_len + 1] = 1; /* Set "config_fresh" bit */
 562}
 563
 564static int goodix_check_cfg_16(struct goodix_ts_data *ts, const u8 *cfg,
 565			       int len)
 566{
 567	int i, raw_cfg_len = len - 3;
 568	u16 check_sum = 0;
 569
 570	for (i = 0; i < raw_cfg_len; i += 2)
 571		check_sum += get_unaligned_be16(&cfg[i]);
 572	check_sum = (~check_sum) + 1;
 573	if (check_sum != get_unaligned_be16(&cfg[raw_cfg_len])) {
 574		dev_err(&ts->client->dev,
 575			"The checksum of the config fw is not correct");
 576		return -EINVAL;
 577	}
 578
 579	if (cfg[raw_cfg_len + 2] != 1) {
 580		dev_err(&ts->client->dev,
 581			"Config fw must have Config_Fresh register set");
 582		return -EINVAL;
 583	}
 584
 585	return 0;
 586}
 587
 588static void goodix_calc_cfg_checksum_16(struct goodix_ts_data *ts)
 589{
 590	int i, raw_cfg_len = ts->chip->config_len - 3;
 591	u16 check_sum = 0;
 592
 593	for (i = 0; i < raw_cfg_len; i += 2)
 594		check_sum += get_unaligned_be16(&ts->config[i]);
 595	check_sum = (~check_sum) + 1;
 596
 597	put_unaligned_be16(check_sum, &ts->config[raw_cfg_len]);
 598	ts->config[raw_cfg_len + 2] = 1; /* Set "config_fresh" bit */
 599}
 600
 601/**
 602 * goodix_check_cfg - Checks if config fw is valid
 603 *
 604 * @ts: goodix_ts_data pointer
 605 * @cfg: firmware config data
 606 * @len: config data length
 607 */
 608static int goodix_check_cfg(struct goodix_ts_data *ts, const u8 *cfg, int len)
 609{
 610	if (len < GOODIX_CONFIG_MIN_LENGTH ||
 611	    len > GOODIX_CONFIG_MAX_LENGTH) {
 612		dev_err(&ts->client->dev,
 613			"The length of the config fw is not correct");
 614		return -EINVAL;
 615	}
 616
 617	return ts->chip->check_config(ts, cfg, len);
 618}
 619
 620/**
 621 * goodix_send_cfg - Write fw config to device
 622 *
 623 * @ts: goodix_ts_data pointer
 624 * @cfg: config firmware to write to device
 625 * @len: config data length
 626 */
 627int goodix_send_cfg(struct goodix_ts_data *ts, const u8 *cfg, int len)
 628{
 629	int error;
 630
 631	error = goodix_check_cfg(ts, cfg, len);
 632	if (error)
 633		return error;
 634
 635	error = goodix_i2c_write(ts->client, ts->chip->config_addr, cfg, len);
 636	if (error)
 
 
 637		return error;
 638
 639	dev_dbg(&ts->client->dev, "Config sent successfully.");
 640
 641	/* Let the firmware reconfigure itself, so sleep for 10ms */
 642	usleep_range(10000, 11000);
 643
 644	return 0;
 645}
 646
 647#ifdef ACPI_GPIO_SUPPORT
 648static int goodix_pin_acpi_direction_input(struct goodix_ts_data *ts)
 649{
 650	acpi_handle handle = ACPI_HANDLE(&ts->client->dev);
 651	acpi_status status;
 652
 653	status = acpi_evaluate_object(handle, "INTI", NULL, NULL);
 654	return ACPI_SUCCESS(status) ? 0 : -EIO;
 655}
 656
 657static int goodix_pin_acpi_output_method(struct goodix_ts_data *ts, int value)
 658{
 659	acpi_handle handle = ACPI_HANDLE(&ts->client->dev);
 660	acpi_status status;
 661
 662	status = acpi_execute_simple_method(handle, "INTO", value);
 663	return ACPI_SUCCESS(status) ? 0 : -EIO;
 664}
 665#else
 666static int goodix_pin_acpi_direction_input(struct goodix_ts_data *ts)
 667{
 668	dev_err(&ts->client->dev,
 669		"%s called on device without ACPI support\n", __func__);
 670	return -EINVAL;
 671}
 672
 673static int goodix_pin_acpi_output_method(struct goodix_ts_data *ts, int value)
 674{
 675	dev_err(&ts->client->dev,
 676		"%s called on device without ACPI support\n", __func__);
 677	return -EINVAL;
 678}
 679#endif
 680
 681static int goodix_irq_direction_output(struct goodix_ts_data *ts, int value)
 682{
 683	switch (ts->irq_pin_access_method) {
 684	case IRQ_PIN_ACCESS_NONE:
 685		dev_err(&ts->client->dev,
 686			"%s called without an irq_pin_access_method set\n",
 687			__func__);
 688		return -EINVAL;
 689	case IRQ_PIN_ACCESS_GPIO:
 690		return gpiod_direction_output(ts->gpiod_int, value);
 691	case IRQ_PIN_ACCESS_ACPI_GPIO:
 692		/*
 693		 * The IRQ pin triggers on a falling edge, so its gets marked
 694		 * as active-low, use output_raw to avoid the value inversion.
 695		 */
 696		return gpiod_direction_output_raw(ts->gpiod_int, value);
 697	case IRQ_PIN_ACCESS_ACPI_METHOD:
 698		return goodix_pin_acpi_output_method(ts, value);
 699	}
 700
 701	return -EINVAL; /* Never reached */
 702}
 703
 704static int goodix_irq_direction_input(struct goodix_ts_data *ts)
 705{
 706	switch (ts->irq_pin_access_method) {
 707	case IRQ_PIN_ACCESS_NONE:
 708		dev_err(&ts->client->dev,
 709			"%s called without an irq_pin_access_method set\n",
 710			__func__);
 711		return -EINVAL;
 712	case IRQ_PIN_ACCESS_GPIO:
 713		return gpiod_direction_input(ts->gpiod_int);
 714	case IRQ_PIN_ACCESS_ACPI_GPIO:
 715		return gpiod_direction_input(ts->gpiod_int);
 716	case IRQ_PIN_ACCESS_ACPI_METHOD:
 717		return goodix_pin_acpi_direction_input(ts);
 718	}
 719
 720	return -EINVAL; /* Never reached */
 721}
 722
 723int goodix_int_sync(struct goodix_ts_data *ts)
 724{
 725	int error;
 726
 727	error = goodix_irq_direction_output(ts, 0);
 728	if (error)
 729		goto error;
 730
 731	msleep(50);				/* T5: 50ms */
 732
 733	error = goodix_irq_direction_input(ts);
 734	if (error)
 735		goto error;
 736
 737	return 0;
 738
 739error:
 740	dev_err(&ts->client->dev, "Controller irq sync failed.\n");
 741	return error;
 742}
 743
 744/**
 745 * goodix_reset_no_int_sync - Reset device, leaving interrupt line in output mode
 746 *
 747 * @ts: goodix_ts_data pointer
 748 */
 749int goodix_reset_no_int_sync(struct goodix_ts_data *ts)
 750{
 751	int error;
 752
 753	/* begin select I2C slave addr */
 754	error = gpiod_direction_output(ts->gpiod_rst, 0);
 755	if (error)
 756		goto error;
 757
 758	msleep(20);				/* T2: > 10ms */
 759
 760	/* HIGH: 0x28/0x29, LOW: 0xBA/0xBB */
 761	error = goodix_irq_direction_output(ts, ts->client->addr == 0x14);
 762	if (error)
 763		goto error;
 764
 765	usleep_range(100, 2000);		/* T3: > 100us */
 766
 767	error = gpiod_direction_output(ts->gpiod_rst, 1);
 768	if (error)
 769		goto error;
 770
 771	usleep_range(6000, 10000);		/* T4: > 5ms */
 772
 773	/*
 774	 * Put the reset pin back in to input / high-impedance mode to save
 775	 * power. Only do this in the non ACPI case since some ACPI boards
 776	 * don't have a pull-up, so there the reset pin must stay active-high.
 777	 */
 778	if (ts->irq_pin_access_method == IRQ_PIN_ACCESS_GPIO) {
 779		error = gpiod_direction_input(ts->gpiod_rst);
 780		if (error)
 781			goto error;
 782	}
 783
 784	return 0;
 
 
 785
 786error:
 787	dev_err(&ts->client->dev, "Controller reset failed.\n");
 788	return error;
 789}
 790
 791/**
 792 * goodix_reset - Reset device during power on
 793 *
 794 * @ts: goodix_ts_data pointer
 795 */
 796static int goodix_reset(struct goodix_ts_data *ts)
 797{
 798	int error;
 799
 800	error = goodix_reset_no_int_sync(ts);
 801	if (error)
 802		return error;
 
 
 
 
 
 803
 804	return goodix_int_sync(ts);
 805}
 806
 807#ifdef ACPI_GPIO_SUPPORT
 808static const struct acpi_gpio_params first_gpio = { 0, 0, false };
 809static const struct acpi_gpio_params second_gpio = { 1, 0, false };
 810
 811static const struct acpi_gpio_mapping acpi_goodix_int_first_gpios[] = {
 812	{ GOODIX_GPIO_INT_NAME "-gpios", &first_gpio, 1 },
 813	{ GOODIX_GPIO_RST_NAME "-gpios", &second_gpio, 1 },
 814	{ },
 815};
 816
 817static const struct acpi_gpio_mapping acpi_goodix_int_last_gpios[] = {
 818	{ GOODIX_GPIO_RST_NAME "-gpios", &first_gpio, 1 },
 819	{ GOODIX_GPIO_INT_NAME "-gpios", &second_gpio, 1 },
 820	{ },
 821};
 822
 823static const struct acpi_gpio_mapping acpi_goodix_reset_only_gpios[] = {
 824	{ GOODIX_GPIO_RST_NAME "-gpios", &first_gpio, 1 },
 825	{ },
 826};
 827
 828static int goodix_resource(struct acpi_resource *ares, void *data)
 829{
 830	struct goodix_ts_data *ts = data;
 831	struct device *dev = &ts->client->dev;
 832	struct acpi_resource_gpio *gpio;
 833
 834	if (acpi_gpio_get_irq_resource(ares, &gpio)) {
 835		if (ts->gpio_int_idx == -1) {
 836			ts->gpio_int_idx = ts->gpio_count;
 837		} else {
 838			dev_err(dev, "More then one GpioInt resource, ignoring ACPI GPIO resources\n");
 839			ts->gpio_int_idx = -2;
 
 
 
 
 840		}
 841		ts->gpio_count++;
 842	} else if (acpi_gpio_get_io_resource(ares, &gpio))
 843		ts->gpio_count++;
 
 
 844
 845	return 0;
 846}
 847
 848/*
 849 * This function gets called in case we fail to get the irq GPIO directly
 850 * because the ACPI tables lack GPIO-name to APCI _CRS index mappings
 851 * (no _DSD UUID daffd814-6eba-4d8c-8a91-bc9bbf4aa301 data).
 852 * In that case we add our own mapping and then goodix_get_gpio_config()
 853 * retries to get the GPIOs based on the added mapping.
 854 */
 855static int goodix_add_acpi_gpio_mappings(struct goodix_ts_data *ts)
 856{
 857	const struct acpi_gpio_mapping *gpio_mapping = NULL;
 858	struct device *dev = &ts->client->dev;
 859	LIST_HEAD(resources);
 860	int irq, ret;
 861
 862	ts->gpio_count = 0;
 863	ts->gpio_int_idx = -1;
 864	ret = acpi_dev_get_resources(ACPI_COMPANION(dev), &resources,
 865				     goodix_resource, ts);
 866	if (ret < 0) {
 867		dev_err(dev, "Error getting ACPI resources: %d\n", ret);
 868		return ret;
 869	}
 870
 871	acpi_dev_free_resource_list(&resources);
 872
 873	/*
 874	 * CHT devices should have a GpioInt + a regular GPIO ACPI resource.
 875	 * Some CHT devices have a bug (where the also is bogus Interrupt
 876	 * resource copied from a previous BYT based generation). i2c-core-acpi
 877	 * will use the non-working Interrupt resource, fix this up.
 878	 */
 879	if (soc_intel_is_cht() && ts->gpio_count == 2 && ts->gpio_int_idx != -1) {
 880		irq = acpi_dev_gpio_irq_get(ACPI_COMPANION(dev), 0);
 881		if (irq > 0 && irq != ts->client->irq) {
 882			dev_warn(dev, "Overriding IRQ %d -> %d\n", ts->client->irq, irq);
 883			ts->client->irq = irq;
 884		}
 885	}
 886
 887	/* Some devices with gpio_int_idx 0 list a third unused GPIO */
 888	if ((ts->gpio_count == 2 || ts->gpio_count == 3) && ts->gpio_int_idx == 0) {
 889		ts->irq_pin_access_method = IRQ_PIN_ACCESS_ACPI_GPIO;
 890		gpio_mapping = acpi_goodix_int_first_gpios;
 891	} else if (ts->gpio_count == 2 && ts->gpio_int_idx == 1) {
 892		ts->irq_pin_access_method = IRQ_PIN_ACCESS_ACPI_GPIO;
 893		gpio_mapping = acpi_goodix_int_last_gpios;
 894	} else if (ts->gpio_count == 1 && ts->gpio_int_idx == -1 &&
 895		   acpi_has_method(ACPI_HANDLE(dev), "INTI") &&
 896		   acpi_has_method(ACPI_HANDLE(dev), "INTO")) {
 897		dev_info(dev, "Using ACPI INTI and INTO methods for IRQ pin access\n");
 898		ts->irq_pin_access_method = IRQ_PIN_ACCESS_ACPI_METHOD;
 899		gpio_mapping = acpi_goodix_reset_only_gpios;
 900	} else if (soc_intel_is_byt() && ts->gpio_count == 2 && ts->gpio_int_idx == -1) {
 901		dev_info(dev, "No ACPI GpioInt resource, assuming that the GPIO order is reset, int\n");
 902		ts->irq_pin_access_method = IRQ_PIN_ACCESS_ACPI_GPIO;
 903		gpio_mapping = acpi_goodix_int_last_gpios;
 904	} else if (ts->gpio_count == 1 && ts->gpio_int_idx == 0) {
 905		/*
 906		 * On newer devices there is only 1 GpioInt resource and _PS0
 907		 * does the whole reset sequence for us.
 908		 */
 909		acpi_device_fix_up_power(ACPI_COMPANION(dev));
 910
 911		/*
 912		 * Before the _PS0 call the int GPIO may have been in output
 913		 * mode and the call should have put the int GPIO in input mode,
 914		 * but the GPIO subsys cached state may still think it is
 915		 * in output mode, causing gpiochip_lock_as_irq() failure.
 916		 *
 917		 * Add a mapping for the int GPIO to make the
 918		 * gpiod_int = gpiod_get(..., GPIOD_IN) call succeed,
 919		 * which will explicitly set the direction to input.
 920		 */
 921		ts->irq_pin_access_method = IRQ_PIN_ACCESS_NONE;
 922		gpio_mapping = acpi_goodix_int_first_gpios;
 923	} else {
 924		dev_warn(dev, "Unexpected ACPI resources: gpio_count %d, gpio_int_idx %d\n",
 925			 ts->gpio_count, ts->gpio_int_idx);
 926		/*
 927		 * On some devices _PS0 does a reset for us and
 928		 * sometimes this is necessary for things to work.
 929		 */
 930		acpi_device_fix_up_power(ACPI_COMPANION(dev));
 931		return -EINVAL;
 932	}
 933
 934	/*
 935	 * Normally we put the reset pin in input / high-impedance mode to save
 936	 * power. But some x86/ACPI boards don't have a pull-up, so for the ACPI
 937	 * case, leave the pin as is. This results in the pin not being touched
 938	 * at all on x86/ACPI boards, except when needed for error-recover.
 939	 */
 940	ts->gpiod_rst_flags = GPIOD_ASIS;
 941
 942	return devm_acpi_dev_add_driver_gpios(dev, gpio_mapping);
 943}
 944#else
 945static int goodix_add_acpi_gpio_mappings(struct goodix_ts_data *ts)
 946{
 947	return -EINVAL;
 948}
 949#endif /* CONFIG_X86 && CONFIG_ACPI */
 950
 951/**
 952 * goodix_get_gpio_config - Get GPIO config from ACPI/DT
 953 *
 954 * @ts: goodix_ts_data pointer
 955 */
 956static int goodix_get_gpio_config(struct goodix_ts_data *ts)
 957{
 
 958	struct device *dev;
 959	struct gpio_desc *gpiod;
 960	bool added_acpi_mappings = false;
 961
 962	if (!ts->client)
 963		return -EINVAL;
 964	dev = &ts->client->dev;
 965
 966	/*
 967	 * By default we request the reset pin as input, leaving it in
 968	 * high-impedance when not resetting the controller to save power.
 969	 */
 970	ts->gpiod_rst_flags = GPIOD_IN;
 971
 972	ts->avdd28 = devm_regulator_get(dev, "AVDD28");
 973	if (IS_ERR(ts->avdd28))
 974		return dev_err_probe(dev, PTR_ERR(ts->avdd28), "Failed to get AVDD28 regulator\n");
 
 
 
 
 
 975
 976	ts->vddio = devm_regulator_get(dev, "VDDIO");
 977	if (IS_ERR(ts->vddio))
 978		return dev_err_probe(dev, PTR_ERR(ts->vddio), "Failed to get VDDIO regulator\n");
 
 
 
 
 
 979
 980retry_get_irq_gpio:
 981	/* Get the interrupt GPIO pin number */
 982	gpiod = devm_gpiod_get_optional(dev, GOODIX_GPIO_INT_NAME, GPIOD_IN);
 983	if (IS_ERR(gpiod))
 984		return dev_err_probe(dev, PTR_ERR(gpiod), "Failed to get %s GPIO\n",
 985				     GOODIX_GPIO_INT_NAME);
 986
 
 
 
 987	if (!gpiod && has_acpi_companion(dev) && !added_acpi_mappings) {
 988		added_acpi_mappings = true;
 989		if (goodix_add_acpi_gpio_mappings(ts) == 0)
 990			goto retry_get_irq_gpio;
 991	}
 992
 993	ts->gpiod_int = gpiod;
 994
 995	/* Get the reset line GPIO pin number */
 996	gpiod = devm_gpiod_get_optional(dev, GOODIX_GPIO_RST_NAME, ts->gpiod_rst_flags);
 997	if (IS_ERR(gpiod))
 998		return dev_err_probe(dev, PTR_ERR(gpiod), "Failed to get %s GPIO\n",
 999				     GOODIX_GPIO_RST_NAME);
 
 
 
 
1000
1001	ts->gpiod_rst = gpiod;
1002
1003	switch (ts->irq_pin_access_method) {
1004	case IRQ_PIN_ACCESS_ACPI_GPIO:
1005		/*
1006		 * We end up here if goodix_add_acpi_gpio_mappings() has
1007		 * called devm_acpi_dev_add_driver_gpios() because the ACPI
1008		 * tables did not contain name to index mappings.
1009		 * Check that we successfully got both GPIOs after we've
1010		 * added our own acpi_gpio_mapping and if we did not get both
1011		 * GPIOs reset irq_pin_access_method to IRQ_PIN_ACCESS_NONE.
1012		 */
1013		if (!ts->gpiod_int || !ts->gpiod_rst)
1014			ts->irq_pin_access_method = IRQ_PIN_ACCESS_NONE;
1015		break;
1016	case IRQ_PIN_ACCESS_ACPI_METHOD:
1017		if (!ts->gpiod_rst)
1018			ts->irq_pin_access_method = IRQ_PIN_ACCESS_NONE;
1019		break;
1020	default:
1021		if (ts->gpiod_int && ts->gpiod_rst) {
1022			ts->reset_controller_at_probe = true;
1023			ts->load_cfg_from_disk = true;
1024			ts->irq_pin_access_method = IRQ_PIN_ACCESS_GPIO;
1025		}
1026	}
1027
1028	return 0;
1029}
1030
1031/**
1032 * goodix_read_config - Read the embedded configuration of the panel
1033 *
1034 * @ts: our goodix_ts_data pointer
1035 *
1036 * Must be called during probe
1037 */
1038static void goodix_read_config(struct goodix_ts_data *ts)
1039{
1040	int x_max, y_max;
1041	int error;
1042
1043	/*
1044	 * On controllers where we need to upload the firmware
1045	 * (controllers without flash) ts->config already has the config
1046	 * at this point and the controller itself does not have it yet!
1047	 */
1048	if (!ts->firmware_name) {
1049		error = goodix_i2c_read(ts->client, ts->chip->config_addr,
1050					ts->config, ts->chip->config_len);
1051		if (error) {
1052			ts->int_trigger_type = GOODIX_INT_TRIGGER;
1053			ts->max_touch_num = GOODIX_MAX_CONTACTS;
1054			return;
1055		}
1056	}
1057
1058	ts->int_trigger_type = ts->config[TRIGGER_LOC] & 0x03;
1059	ts->max_touch_num = ts->config[MAX_CONTACTS_LOC] & 0x0f;
1060
1061	x_max = get_unaligned_le16(&ts->config[RESOLUTION_LOC]);
1062	y_max = get_unaligned_le16(&ts->config[RESOLUTION_LOC + 2]);
1063	if (x_max && y_max) {
1064		input_abs_set_max(ts->input_dev, ABS_MT_POSITION_X, x_max - 1);
1065		input_abs_set_max(ts->input_dev, ABS_MT_POSITION_Y, y_max - 1);
1066	}
1067
1068	ts->chip->calc_config_checksum(ts);
1069}
1070
1071/**
1072 * goodix_read_version - Read goodix touchscreen version
1073 *
1074 * @ts: our goodix_ts_data pointer
1075 */
1076static int goodix_read_version(struct goodix_ts_data *ts)
1077{
1078	int error;
1079	u8 buf[6];
1080	char id_str[GOODIX_ID_MAX_LEN + 1];
1081
1082	error = goodix_i2c_read(ts->client, GOODIX_REG_ID, buf, sizeof(buf));
1083	if (error)
 
1084		return error;
 
1085
1086	memcpy(id_str, buf, GOODIX_ID_MAX_LEN);
1087	id_str[GOODIX_ID_MAX_LEN] = 0;
1088	strscpy(ts->id, id_str, GOODIX_ID_MAX_LEN + 1);
1089
1090	ts->version = get_unaligned_le16(&buf[4]);
1091
1092	dev_info(&ts->client->dev, "ID %s, version: %04x\n", ts->id,
1093		 ts->version);
1094
1095	return 0;
1096}
1097
1098/**
1099 * goodix_i2c_test - I2C test function to check if the device answers.
1100 *
1101 * @client: the i2c client
1102 */
1103static int goodix_i2c_test(struct i2c_client *client)
1104{
1105	int retry = 0;
1106	int error;
1107	u8 test;
1108
1109	while (retry++ < 2) {
1110		error = goodix_i2c_read(client, GOODIX_REG_ID, &test, 1);
 
1111		if (!error)
1112			return 0;
1113
 
 
1114		msleep(20);
1115	}
1116
1117	return error;
1118}
1119
1120/**
1121 * goodix_configure_dev - Finish device initialization
1122 *
1123 * @ts: our goodix_ts_data pointer
1124 *
1125 * Must be called from probe to finish initialization of the device.
1126 * Contains the common initialization code for both devices that
1127 * declare gpio pins and devices that do not. It is either called
1128 * directly from probe or from request_firmware_wait callback.
1129 */
1130static int goodix_configure_dev(struct goodix_ts_data *ts)
1131{
1132	int error;
1133	int i;
1134
1135	ts->int_trigger_type = GOODIX_INT_TRIGGER;
1136	ts->max_touch_num = GOODIX_MAX_CONTACTS;
1137
1138	ts->input_dev = devm_input_allocate_device(&ts->client->dev);
1139	if (!ts->input_dev) {
1140		dev_err(&ts->client->dev, "Failed to allocate input device.");
1141		return -ENOMEM;
1142	}
1143
1144	ts->input_dev->name = "Goodix Capacitive TouchScreen";
1145	ts->input_dev->phys = "input/ts";
1146	ts->input_dev->id.bustype = BUS_I2C;
1147	ts->input_dev->id.vendor = 0x0416;
1148	if (kstrtou16(ts->id, 10, &ts->input_dev->id.product))
1149		ts->input_dev->id.product = 0x1001;
1150	ts->input_dev->id.version = ts->version;
1151
1152	ts->input_dev->keycode = ts->keymap;
1153	ts->input_dev->keycodesize = sizeof(ts->keymap[0]);
1154	ts->input_dev->keycodemax = GOODIX_MAX_KEYS;
1155
1156	/* Capacitive Windows/Home button on some devices */
1157	for (i = 0; i < GOODIX_MAX_KEYS; ++i) {
1158		if (i == 0)
1159			ts->keymap[i] = KEY_LEFTMETA;
1160		else
1161			ts->keymap[i] = KEY_F1 + (i - 1);
1162
1163		input_set_capability(ts->input_dev, EV_KEY, ts->keymap[i]);
1164	}
1165
1166	input_set_capability(ts->input_dev, EV_ABS, ABS_MT_POSITION_X);
1167	input_set_capability(ts->input_dev, EV_ABS, ABS_MT_POSITION_Y);
1168	input_set_abs_params(ts->input_dev, ABS_MT_WIDTH_MAJOR, 0, 255, 0, 0);
1169	input_set_abs_params(ts->input_dev, ABS_MT_TOUCH_MAJOR, 0, 255, 0, 0);
1170
1171retry_read_config:
1172	/* Read configuration and apply touchscreen parameters */
1173	goodix_read_config(ts);
1174
1175	/* Try overriding touchscreen parameters via device properties */
1176	touchscreen_parse_properties(ts->input_dev, true, &ts->prop);
1177
1178	if (!ts->prop.max_x || !ts->prop.max_y || !ts->max_touch_num) {
1179		if (!ts->reset_controller_at_probe &&
1180		    ts->irq_pin_access_method != IRQ_PIN_ACCESS_NONE) {
1181			dev_info(&ts->client->dev, "Config not set, resetting controller\n");
1182			/* Retry after a controller reset */
1183			ts->reset_controller_at_probe = true;
1184			error = goodix_reset(ts);
1185			if (error)
1186				return error;
1187			goto retry_read_config;
1188		}
1189		dev_err(&ts->client->dev,
1190			"Invalid config (%d, %d, %d), using defaults\n",
1191			ts->prop.max_x, ts->prop.max_y, ts->max_touch_num);
1192		ts->prop.max_x = GOODIX_MAX_WIDTH - 1;
1193		ts->prop.max_y = GOODIX_MAX_HEIGHT - 1;
1194		ts->max_touch_num = GOODIX_MAX_CONTACTS;
1195		input_abs_set_max(ts->input_dev,
1196				  ABS_MT_POSITION_X, ts->prop.max_x);
1197		input_abs_set_max(ts->input_dev,
1198				  ABS_MT_POSITION_Y, ts->prop.max_y);
1199	}
1200
1201	if (dmi_check_system(nine_bytes_report)) {
1202		ts->contact_size = 9;
1203
1204		dev_dbg(&ts->client->dev,
1205			"Non-standard 9-bytes report format quirk\n");
1206	}
1207
1208	if (dmi_check_system(inverted_x_screen)) {
1209		ts->prop.invert_x = true;
1210		dev_dbg(&ts->client->dev,
1211			"Applying 'inverted x screen' quirk\n");
1212	}
1213
1214	error = input_mt_init_slots(ts->input_dev, ts->max_touch_num,
1215				    INPUT_MT_DIRECT | INPUT_MT_DROP_UNUSED);
1216	if (error) {
1217		dev_err(&ts->client->dev,
1218			"Failed to initialize MT slots: %d", error);
1219		return error;
1220	}
1221
1222	error = input_register_device(ts->input_dev);
1223	if (error) {
1224		dev_err(&ts->client->dev,
1225			"Failed to register input device: %d", error);
1226		return error;
1227	}
1228
1229	/*
1230	 * Create the input_pen device before goodix_request_irq() calls
1231	 * devm_request_threaded_irq() so that the devm framework frees
1232	 * it after disabling the irq.
1233	 * Unfortunately there is no way to detect if the touchscreen has pen
1234	 * support, so registering the dev is delayed till the first pen event.
1235	 */
1236	error = goodix_create_pen_input(ts);
1237	if (error)
1238		return error;
1239
1240	ts->irq_flags = goodix_irq_flags[ts->int_trigger_type] | IRQF_ONESHOT;
1241	error = goodix_request_irq(ts);
1242	if (error) {
1243		dev_err(&ts->client->dev, "request IRQ failed: %d\n", error);
1244		return error;
1245	}
1246
1247	return 0;
1248}
1249
1250/**
1251 * goodix_config_cb - Callback to finish device init
1252 *
1253 * @cfg: firmware config
1254 * @ctx: our goodix_ts_data pointer
1255 *
1256 * request_firmware_wait callback that finishes
1257 * initialization of the device.
1258 */
1259static void goodix_config_cb(const struct firmware *cfg, void *ctx)
1260{
1261	struct goodix_ts_data *ts = ctx;
1262	int error;
1263
1264	if (ts->firmware_name) {
1265		if (!cfg)
1266			goto err_release_cfg;
1267
1268		error = goodix_check_cfg(ts, cfg->data, cfg->size);
1269		if (error)
1270			goto err_release_cfg;
1271
1272		memcpy(ts->config, cfg->data, cfg->size);
1273	} else if (cfg) {
1274		/* send device configuration to the firmware */
1275		error = goodix_send_cfg(ts, cfg->data, cfg->size);
1276		if (error)
1277			goto err_release_cfg;
1278	}
1279
1280	goodix_configure_dev(ts);
1281
1282err_release_cfg:
1283	release_firmware(cfg);
1284	complete_all(&ts->firmware_loading_complete);
1285}
1286
1287static void goodix_disable_regulators(void *arg)
1288{
1289	struct goodix_ts_data *ts = arg;
1290
1291	regulator_disable(ts->vddio);
1292	regulator_disable(ts->avdd28);
1293}
1294
1295static int goodix_ts_probe(struct i2c_client *client)
 
1296{
1297	struct goodix_ts_data *ts;
1298	const char *cfg_name;
1299	int error;
1300
1301	dev_dbg(&client->dev, "I2C Address: 0x%02x\n", client->addr);
1302
1303	if (!i2c_check_functionality(client->adapter, I2C_FUNC_I2C)) {
1304		dev_err(&client->dev, "I2C check functionality failed.\n");
1305		return -ENXIO;
1306	}
1307
1308	ts = devm_kzalloc(&client->dev, sizeof(*ts), GFP_KERNEL);
1309	if (!ts)
1310		return -ENOMEM;
1311
1312	ts->client = client;
1313	i2c_set_clientdata(client, ts);
1314	init_completion(&ts->firmware_loading_complete);
1315	ts->contact_size = GOODIX_CONTACT_SIZE;
1316
1317	error = goodix_get_gpio_config(ts);
1318	if (error)
1319		return error;
1320
1321	/* power up the controller */
1322	error = regulator_enable(ts->avdd28);
1323	if (error) {
1324		dev_err(&client->dev,
1325			"Failed to enable AVDD28 regulator: %d\n",
1326			error);
1327		return error;
1328	}
1329
1330	error = regulator_enable(ts->vddio);
1331	if (error) {
1332		dev_err(&client->dev,
1333			"Failed to enable VDDIO regulator: %d\n",
1334			error);
1335		regulator_disable(ts->avdd28);
1336		return error;
1337	}
1338
1339	error = devm_add_action_or_reset(&client->dev,
1340					 goodix_disable_regulators, ts);
1341	if (error)
1342		return error;
1343
1344reset:
1345	if (ts->reset_controller_at_probe) {
1346		/* reset the controller */
1347		error = goodix_reset(ts);
1348		if (error)
 
1349			return error;
 
1350	}
1351
1352	error = goodix_i2c_test(client);
1353	if (error) {
1354		if (!ts->reset_controller_at_probe &&
1355		    ts->irq_pin_access_method != IRQ_PIN_ACCESS_NONE) {
1356			/* Retry after a controller reset */
1357			ts->reset_controller_at_probe = true;
1358			goto reset;
1359		}
1360		dev_err(&client->dev, "I2C communication failure: %d\n", error);
1361		return error;
1362	}
1363
1364	error = goodix_firmware_check(ts);
1365	if (error)
1366		return error;
1367
1368	error = goodix_read_version(ts);
1369	if (error)
 
1370		return error;
 
1371
1372	ts->chip = goodix_get_chip_data(ts->id);
1373
1374	if (ts->load_cfg_from_disk) {
1375		/* update device config */
1376		error = device_property_read_string(&client->dev,
1377						    "goodix,config-name",
1378						    &cfg_name);
1379		if (!error)
1380			snprintf(ts->cfg_name, sizeof(ts->cfg_name),
1381				 "goodix/%s", cfg_name);
1382		else
1383			snprintf(ts->cfg_name, sizeof(ts->cfg_name),
1384				 "goodix_%s_cfg.bin", ts->id);
1385
1386		error = request_firmware_nowait(THIS_MODULE, true, ts->cfg_name,
1387						&client->dev, GFP_KERNEL, ts,
1388						goodix_config_cb);
1389		if (error) {
1390			dev_err(&client->dev,
1391				"Failed to invoke firmware loader: %d\n",
1392				error);
1393			return error;
1394		}
1395
1396		return 0;
1397	} else {
1398		error = goodix_configure_dev(ts);
1399		if (error)
1400			return error;
1401	}
1402
1403	return 0;
1404}
1405
1406static void goodix_ts_remove(struct i2c_client *client)
1407{
1408	struct goodix_ts_data *ts = i2c_get_clientdata(client);
1409
1410	if (ts->load_cfg_from_disk)
1411		wait_for_completion(&ts->firmware_loading_complete);
 
 
1412}
1413
1414static int goodix_suspend(struct device *dev)
1415{
1416	struct i2c_client *client = to_i2c_client(dev);
1417	struct goodix_ts_data *ts = i2c_get_clientdata(client);
1418	int error;
1419
1420	if (ts->load_cfg_from_disk)
1421		wait_for_completion(&ts->firmware_loading_complete);
1422
1423	/* We need gpio pins to suspend/resume */
1424	if (ts->irq_pin_access_method == IRQ_PIN_ACCESS_NONE) {
1425		disable_irq(client->irq);
1426		return 0;
1427	}
1428
1429	/* Free IRQ as IRQ pin is used as output in the suspend sequence */
1430	goodix_free_irq(ts);
1431
1432	/* Save reference (calibration) info if necessary */
1433	goodix_save_bak_ref(ts);
1434
1435	/* Output LOW on the INT pin for 5 ms */
1436	error = goodix_irq_direction_output(ts, 0);
1437	if (error) {
1438		goodix_request_irq(ts);
1439		return error;
1440	}
1441
1442	usleep_range(5000, 6000);
1443
1444	error = goodix_i2c_write_u8(ts->client, GOODIX_REG_COMMAND,
1445				    GOODIX_CMD_SCREEN_OFF);
1446	if (error) {
 
1447		goodix_irq_direction_input(ts);
1448		goodix_request_irq(ts);
1449		return -EAGAIN;
1450	}
1451
1452	/*
1453	 * The datasheet specifies that the interval between sending screen-off
1454	 * command and wake-up should be longer than 58 ms. To avoid waking up
1455	 * sooner, delay 58ms here.
1456	 */
1457	msleep(58);
1458	return 0;
1459}
1460
1461static int goodix_resume(struct device *dev)
1462{
1463	struct i2c_client *client = to_i2c_client(dev);
1464	struct goodix_ts_data *ts = i2c_get_clientdata(client);
1465	u8 config_ver;
1466	int error;
1467
1468	if (ts->irq_pin_access_method == IRQ_PIN_ACCESS_NONE) {
1469		enable_irq(client->irq);
1470		return 0;
1471	}
1472
1473	/*
1474	 * Exit sleep mode by outputting HIGH level to INT pin
1475	 * for 2ms~5ms.
1476	 */
1477	error = goodix_irq_direction_output(ts, 1);
1478	if (error)
1479		return error;
1480
1481	usleep_range(2000, 5000);
1482
1483	error = goodix_int_sync(ts);
1484	if (error)
1485		return error;
1486
1487	error = goodix_i2c_read(ts->client, ts->chip->config_addr,
1488				&config_ver, 1);
1489	if (!error && config_ver != ts->config[0])
 
 
 
1490		dev_info(dev, "Config version mismatch %d != %d, resetting controller\n",
1491			 config_ver, ts->config[0]);
1492
1493	if (error != 0 || config_ver != ts->config[0]) {
1494		error = goodix_reset(ts);
1495		if (error)
 
1496			return error;
 
1497
1498		error = goodix_send_cfg(ts, ts->config, ts->chip->config_len);
1499		if (error)
1500			return error;
1501	}
1502
1503	error = goodix_request_irq(ts);
1504	if (error)
1505		return error;
1506
1507	return 0;
1508}
1509
1510static DEFINE_SIMPLE_DEV_PM_OPS(goodix_pm_ops, goodix_suspend, goodix_resume);
1511
1512static const struct i2c_device_id goodix_ts_id[] = {
1513	{ "GDIX1001:00" },
1514	{ }
1515};
1516MODULE_DEVICE_TABLE(i2c, goodix_ts_id);
1517
1518#ifdef CONFIG_ACPI
1519static const struct acpi_device_id goodix_acpi_match[] = {
1520	{ "GDIX1001", 0 },
1521	{ "GDIX1002", 0 },
1522	{ "GDX9110", 0 },
1523	{ }
1524};
1525MODULE_DEVICE_TABLE(acpi, goodix_acpi_match);
1526#endif
1527
1528#ifdef CONFIG_OF
1529static const struct of_device_id goodix_of_match[] = {
1530	{ .compatible = "goodix,gt1151" },
1531	{ .compatible = "goodix,gt1158" },
1532	{ .compatible = "goodix,gt5663" },
1533	{ .compatible = "goodix,gt5688" },
1534	{ .compatible = "goodix,gt911" },
1535	{ .compatible = "goodix,gt9110" },
1536	{ .compatible = "goodix,gt912" },
1537	{ .compatible = "goodix,gt9147" },
1538	{ .compatible = "goodix,gt917s" },
1539	{ .compatible = "goodix,gt927" },
1540	{ .compatible = "goodix,gt9271" },
1541	{ .compatible = "goodix,gt928" },
1542	{ .compatible = "goodix,gt9286" },
1543	{ .compatible = "goodix,gt967" },
1544	{ }
1545};
1546MODULE_DEVICE_TABLE(of, goodix_of_match);
1547#endif
1548
1549static struct i2c_driver goodix_ts_driver = {
1550	.probe = goodix_ts_probe,
1551	.remove = goodix_ts_remove,
1552	.id_table = goodix_ts_id,
1553	.driver = {
1554		.name = "Goodix-TS",
1555		.acpi_match_table = ACPI_PTR(goodix_acpi_match),
1556		.of_match_table = of_match_ptr(goodix_of_match),
1557		.pm = pm_sleep_ptr(&goodix_pm_ops),
1558	},
1559};
1560module_i2c_driver(goodix_ts_driver);
1561
1562MODULE_AUTHOR("Benjamin Tissoires <benjamin.tissoires@gmail.com>");
1563MODULE_AUTHOR("Bastien Nocera <hadess@hadess.net>");
1564MODULE_DESCRIPTION("Goodix touchscreen driver");
1565MODULE_LICENSE("GPL v2");
v5.14.15
   1// SPDX-License-Identifier: GPL-2.0-only
   2/*
   3 *  Driver for Goodix Touchscreens
   4 *
   5 *  Copyright (c) 2014 Red Hat Inc.
   6 *  Copyright (c) 2015 K. Merker <merker@debian.org>
   7 *
   8 *  This code is based on gt9xx.c authored by andrew@goodix.com:
   9 *
  10 *  2010 - 2012 Goodix Technology.
  11 */
  12
  13
  14#include <linux/kernel.h>
  15#include <linux/dmi.h>
  16#include <linux/firmware.h>
  17#include <linux/gpio/consumer.h>
  18#include <linux/i2c.h>
  19#include <linux/input.h>
  20#include <linux/input/mt.h>
  21#include <linux/input/touchscreen.h>
  22#include <linux/module.h>
  23#include <linux/delay.h>
  24#include <linux/irq.h>
  25#include <linux/interrupt.h>
  26#include <linux/regulator/consumer.h>
  27#include <linux/slab.h>
  28#include <linux/acpi.h>
  29#include <linux/of.h>
  30#include <asm/unaligned.h>
 
  31
  32#define GOODIX_GPIO_INT_NAME		"irq"
  33#define GOODIX_GPIO_RST_NAME		"reset"
  34
  35#define GOODIX_MAX_HEIGHT		4096
  36#define GOODIX_MAX_WIDTH		4096
  37#define GOODIX_INT_TRIGGER		1
  38#define GOODIX_CONTACT_SIZE		8
  39#define GOODIX_MAX_CONTACT_SIZE		9
  40#define GOODIX_MAX_CONTACTS		10
  41#define GOODIX_MAX_KEYS			7
  42
  43#define GOODIX_CONFIG_MIN_LENGTH	186
  44#define GOODIX_CONFIG_911_LENGTH	186
  45#define GOODIX_CONFIG_967_LENGTH	228
  46#define GOODIX_CONFIG_GT9X_LENGTH	240
  47#define GOODIX_CONFIG_MAX_LENGTH	240
  48
  49/* Register defines */
  50#define GOODIX_REG_COMMAND		0x8040
  51#define GOODIX_CMD_SCREEN_OFF		0x05
  52
  53#define GOODIX_READ_COOR_ADDR		0x814E
  54#define GOODIX_GT1X_REG_CONFIG_DATA	0x8050
  55#define GOODIX_GT9X_REG_CONFIG_DATA	0x8047
  56#define GOODIX_REG_ID			0x8140
  57
  58#define GOODIX_BUFFER_STATUS_READY	BIT(7)
  59#define GOODIX_HAVE_KEY			BIT(4)
  60#define GOODIX_BUFFER_STATUS_TIMEOUT	20
  61
  62#define RESOLUTION_LOC		1
  63#define MAX_CONTACTS_LOC	5
  64#define TRIGGER_LOC		6
  65
  66/* Our special handling for GPIO accesses through ACPI is x86 specific */
  67#if defined CONFIG_X86 && defined CONFIG_ACPI
  68#define ACPI_GPIO_SUPPORT
  69#endif
  70
  71struct goodix_ts_data;
  72
  73enum goodix_irq_pin_access_method {
  74	IRQ_PIN_ACCESS_NONE,
  75	IRQ_PIN_ACCESS_GPIO,
  76	IRQ_PIN_ACCESS_ACPI_GPIO,
  77	IRQ_PIN_ACCESS_ACPI_METHOD,
  78};
  79
  80struct goodix_chip_data {
  81	u16 config_addr;
  82	int config_len;
  83	int (*check_config)(struct goodix_ts_data *ts, const u8 *cfg, int len);
  84	void (*calc_config_checksum)(struct goodix_ts_data *ts);
  85};
  86
  87struct goodix_chip_id {
  88	const char *id;
  89	const struct goodix_chip_data *data;
  90};
  91
  92#define GOODIX_ID_MAX_LEN	4
  93
  94struct goodix_ts_data {
  95	struct i2c_client *client;
  96	struct input_dev *input_dev;
  97	const struct goodix_chip_data *chip;
  98	struct touchscreen_properties prop;
  99	unsigned int max_touch_num;
 100	unsigned int int_trigger_type;
 101	struct regulator *avdd28;
 102	struct regulator *vddio;
 103	struct gpio_desc *gpiod_int;
 104	struct gpio_desc *gpiod_rst;
 105	int gpio_count;
 106	int gpio_int_idx;
 107	char id[GOODIX_ID_MAX_LEN + 1];
 108	u16 version;
 109	const char *cfg_name;
 110	bool reset_controller_at_probe;
 111	bool load_cfg_from_disk;
 112	struct completion firmware_loading_complete;
 113	unsigned long irq_flags;
 114	enum goodix_irq_pin_access_method irq_pin_access_method;
 115	unsigned int contact_size;
 116	u8 config[GOODIX_CONFIG_MAX_LENGTH];
 117	unsigned short keymap[GOODIX_MAX_KEYS];
 118};
 119
 120static int goodix_check_cfg_8(struct goodix_ts_data *ts,
 121			      const u8 *cfg, int len);
 122static int goodix_check_cfg_16(struct goodix_ts_data *ts,
 123			       const u8 *cfg, int len);
 124static void goodix_calc_cfg_checksum_8(struct goodix_ts_data *ts);
 125static void goodix_calc_cfg_checksum_16(struct goodix_ts_data *ts);
 126
 127static const struct goodix_chip_data gt1x_chip_data = {
 128	.config_addr		= GOODIX_GT1X_REG_CONFIG_DATA,
 129	.config_len		= GOODIX_CONFIG_GT9X_LENGTH,
 130	.check_config		= goodix_check_cfg_16,
 131	.calc_config_checksum	= goodix_calc_cfg_checksum_16,
 132};
 133
 134static const struct goodix_chip_data gt911_chip_data = {
 135	.config_addr		= GOODIX_GT9X_REG_CONFIG_DATA,
 136	.config_len		= GOODIX_CONFIG_911_LENGTH,
 137	.check_config		= goodix_check_cfg_8,
 138	.calc_config_checksum	= goodix_calc_cfg_checksum_8,
 139};
 140
 141static const struct goodix_chip_data gt967_chip_data = {
 142	.config_addr		= GOODIX_GT9X_REG_CONFIG_DATA,
 143	.config_len		= GOODIX_CONFIG_967_LENGTH,
 144	.check_config		= goodix_check_cfg_8,
 145	.calc_config_checksum	= goodix_calc_cfg_checksum_8,
 146};
 147
 148static const struct goodix_chip_data gt9x_chip_data = {
 149	.config_addr		= GOODIX_GT9X_REG_CONFIG_DATA,
 150	.config_len		= GOODIX_CONFIG_GT9X_LENGTH,
 151	.check_config		= goodix_check_cfg_8,
 152	.calc_config_checksum	= goodix_calc_cfg_checksum_8,
 153};
 154
 155static const struct goodix_chip_id goodix_chip_ids[] = {
 156	{ .id = "1151", .data = &gt1x_chip_data },
 
 157	{ .id = "5663", .data = &gt1x_chip_data },
 158	{ .id = "5688", .data = &gt1x_chip_data },
 159	{ .id = "917S", .data = &gt1x_chip_data },
 160	{ .id = "9286", .data = &gt1x_chip_data },
 161
 162	{ .id = "911", .data = &gt911_chip_data },
 163	{ .id = "9271", .data = &gt911_chip_data },
 164	{ .id = "9110", .data = &gt911_chip_data },
 
 165	{ .id = "927", .data = &gt911_chip_data },
 166	{ .id = "928", .data = &gt911_chip_data },
 167
 168	{ .id = "912", .data = &gt967_chip_data },
 169	{ .id = "9147", .data = &gt967_chip_data },
 170	{ .id = "967", .data = &gt967_chip_data },
 171	{ }
 172};
 173
 174static const unsigned long goodix_irq_flags[] = {
 175	IRQ_TYPE_EDGE_RISING,
 176	IRQ_TYPE_EDGE_FALLING,
 177	IRQ_TYPE_LEVEL_LOW,
 178	IRQ_TYPE_LEVEL_HIGH,
 179};
 180
 181static const struct dmi_system_id nine_bytes_report[] = {
 182#if defined(CONFIG_DMI) && defined(CONFIG_X86)
 183	{
 184		.ident = "Lenovo YogaBook",
 185		/* YB1-X91L/F and YB1-X90L/F */
 
 
 
 
 
 
 
 186		.matches = {
 187			DMI_MATCH(DMI_PRODUCT_NAME, "Lenovo YB1-X9")
 
 188		}
 189	},
 190#endif
 191	{}
 192};
 193
 194/*
 195 * Those tablets have their x coordinate inverted
 196 */
 197static const struct dmi_system_id inverted_x_screen[] = {
 198#if defined(CONFIG_DMI) && defined(CONFIG_X86)
 199	{
 200		.ident = "Cube I15-TC",
 201		.matches = {
 202			DMI_MATCH(DMI_SYS_VENDOR, "Cube"),
 203			DMI_MATCH(DMI_PRODUCT_NAME, "I15-TC")
 204		},
 205	},
 206#endif
 207	{}
 208};
 209
 210/**
 211 * goodix_i2c_read - read data from a register of the i2c slave device.
 212 *
 213 * @client: i2c device.
 214 * @reg: the register to read from.
 215 * @buf: raw write data buffer.
 216 * @len: length of the buffer to write
 217 */
 218static int goodix_i2c_read(struct i2c_client *client,
 219			   u16 reg, u8 *buf, int len)
 220{
 221	struct i2c_msg msgs[2];
 222	__be16 wbuf = cpu_to_be16(reg);
 223	int ret;
 224
 225	msgs[0].flags = 0;
 226	msgs[0].addr  = client->addr;
 227	msgs[0].len   = 2;
 228	msgs[0].buf   = (u8 *)&wbuf;
 229
 230	msgs[1].flags = I2C_M_RD;
 231	msgs[1].addr  = client->addr;
 232	msgs[1].len   = len;
 233	msgs[1].buf   = buf;
 234
 235	ret = i2c_transfer(client->adapter, msgs, 2);
 236	return ret < 0 ? ret : (ret != ARRAY_SIZE(msgs) ? -EIO : 0);
 
 
 
 
 
 
 237}
 238
 239/**
 240 * goodix_i2c_write - write data to a register of the i2c slave device.
 241 *
 242 * @client: i2c device.
 243 * @reg: the register to write to.
 244 * @buf: raw data buffer to write.
 245 * @len: length of the buffer to write
 246 */
 247static int goodix_i2c_write(struct i2c_client *client, u16 reg, const u8 *buf,
 248			    unsigned len)
 249{
 250	u8 *addr_buf;
 251	struct i2c_msg msg;
 252	int ret;
 253
 254	addr_buf = kmalloc(len + 2, GFP_KERNEL);
 255	if (!addr_buf)
 256		return -ENOMEM;
 257
 258	addr_buf[0] = reg >> 8;
 259	addr_buf[1] = reg & 0xFF;
 260	memcpy(&addr_buf[2], buf, len);
 261
 262	msg.flags = 0;
 263	msg.addr = client->addr;
 264	msg.buf = addr_buf;
 265	msg.len = len + 2;
 266
 267	ret = i2c_transfer(client->adapter, &msg, 1);
 
 
 
 268	kfree(addr_buf);
 269	return ret < 0 ? ret : (ret != 1 ? -EIO : 0);
 
 
 
 
 270}
 271
 272static int goodix_i2c_write_u8(struct i2c_client *client, u16 reg, u8 value)
 273{
 274	return goodix_i2c_write(client, reg, &value, sizeof(value));
 275}
 276
 277static const struct goodix_chip_data *goodix_get_chip_data(const char *id)
 278{
 279	unsigned int i;
 280
 281	for (i = 0; goodix_chip_ids[i].id; i++) {
 282		if (!strcmp(goodix_chip_ids[i].id, id))
 283			return goodix_chip_ids[i].data;
 284	}
 285
 286	return &gt9x_chip_data;
 287}
 288
 289static int goodix_ts_read_input_report(struct goodix_ts_data *ts, u8 *data)
 290{
 291	unsigned long max_timeout;
 292	int touch_num;
 293	int error;
 294	u16 addr = GOODIX_READ_COOR_ADDR;
 295	/*
 296	 * We are going to read 1-byte header,
 297	 * ts->contact_size * max(1, touch_num) bytes of coordinates
 298	 * and 1-byte footer which contains the touch-key code.
 299	 */
 300	const int header_contact_keycode_size = 1 + ts->contact_size + 1;
 301
 302	/*
 303	 * The 'buffer status' bit, which indicates that the data is valid, is
 304	 * not set as soon as the interrupt is raised, but slightly after.
 305	 * This takes around 10 ms to happen, so we poll for 20 ms.
 306	 */
 307	max_timeout = jiffies + msecs_to_jiffies(GOODIX_BUFFER_STATUS_TIMEOUT);
 308	do {
 309		error = goodix_i2c_read(ts->client, addr, data,
 310					header_contact_keycode_size);
 311		if (error) {
 312			dev_err(&ts->client->dev, "I2C transfer error: %d\n",
 313					error);
 314			return error;
 315		}
 316
 317		if (data[0] & GOODIX_BUFFER_STATUS_READY) {
 318			touch_num = data[0] & 0x0f;
 319			if (touch_num > ts->max_touch_num)
 320				return -EPROTO;
 321
 322			if (touch_num > 1) {
 323				addr += header_contact_keycode_size;
 324				data += header_contact_keycode_size;
 325				error = goodix_i2c_read(ts->client,
 326						addr, data,
 327						ts->contact_size *
 328							(touch_num - 1));
 329				if (error)
 330					return error;
 331			}
 332
 333			return touch_num;
 334		}
 335
 
 
 
 
 
 336		usleep_range(1000, 2000); /* Poll every 1 - 2 ms */
 337	} while (time_before(jiffies, max_timeout));
 338
 339	/*
 340	 * The Goodix panel will send spurious interrupts after a
 341	 * 'finger up' event, which will always cause a timeout.
 342	 */
 343	return -ENOMSG;
 344}
 345
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 346static void goodix_ts_report_touch_8b(struct goodix_ts_data *ts, u8 *coor_data)
 347{
 348	int id = coor_data[0] & 0x0F;
 349	int input_x = get_unaligned_le16(&coor_data[1]);
 350	int input_y = get_unaligned_le16(&coor_data[3]);
 351	int input_w = get_unaligned_le16(&coor_data[5]);
 352
 353	input_mt_slot(ts->input_dev, id);
 354	input_mt_report_slot_state(ts->input_dev, MT_TOOL_FINGER, true);
 355	touchscreen_report_pos(ts->input_dev, &ts->prop,
 356			       input_x, input_y, true);
 357	input_report_abs(ts->input_dev, ABS_MT_TOUCH_MAJOR, input_w);
 358	input_report_abs(ts->input_dev, ABS_MT_WIDTH_MAJOR, input_w);
 359}
 360
 361static void goodix_ts_report_touch_9b(struct goodix_ts_data *ts, u8 *coor_data)
 362{
 363	int id = coor_data[1] & 0x0F;
 364	int input_x = get_unaligned_le16(&coor_data[3]);
 365	int input_y = get_unaligned_le16(&coor_data[5]);
 366	int input_w = get_unaligned_le16(&coor_data[7]);
 367
 368	input_mt_slot(ts->input_dev, id);
 369	input_mt_report_slot_state(ts->input_dev, MT_TOOL_FINGER, true);
 370	touchscreen_report_pos(ts->input_dev, &ts->prop,
 371			       input_x, input_y, true);
 372	input_report_abs(ts->input_dev, ABS_MT_TOUCH_MAJOR, input_w);
 373	input_report_abs(ts->input_dev, ABS_MT_WIDTH_MAJOR, input_w);
 374}
 375
 
 
 
 
 
 
 
 
 376static void goodix_ts_report_key(struct goodix_ts_data *ts, u8 *data)
 377{
 378	int touch_num;
 379	u8 key_value;
 380	int i;
 381
 382	if (data[0] & GOODIX_HAVE_KEY) {
 383		touch_num = data[0] & 0x0f;
 384		key_value = data[1 + ts->contact_size * touch_num];
 385		for (i = 0; i < GOODIX_MAX_KEYS; i++)
 386			if (key_value & BIT(i))
 387				input_report_key(ts->input_dev,
 388						 ts->keymap[i], 1);
 389	} else {
 390		for (i = 0; i < GOODIX_MAX_KEYS; i++)
 391			input_report_key(ts->input_dev, ts->keymap[i], 0);
 392	}
 393}
 394
 395/**
 396 * goodix_process_events - Process incoming events
 397 *
 398 * @ts: our goodix_ts_data pointer
 399 *
 400 * Called when the IRQ is triggered. Read the current device state, and push
 401 * the input events to the user space.
 402 */
 403static void goodix_process_events(struct goodix_ts_data *ts)
 404{
 405	u8  point_data[2 + GOODIX_MAX_CONTACT_SIZE * GOODIX_MAX_CONTACTS];
 406	int touch_num;
 407	int i;
 408
 409	touch_num = goodix_ts_read_input_report(ts, point_data);
 410	if (touch_num < 0)
 411		return;
 412
 
 
 
 
 
 
 
 
 
 413	goodix_ts_report_key(ts, point_data);
 414
 415	for (i = 0; i < touch_num; i++)
 416		if (ts->contact_size == 9)
 417			goodix_ts_report_touch_9b(ts,
 418				&point_data[1 + ts->contact_size * i]);
 419		else
 420			goodix_ts_report_touch_8b(ts,
 421				&point_data[1 + ts->contact_size * i]);
 422
 
 423	input_mt_sync_frame(ts->input_dev);
 424	input_sync(ts->input_dev);
 425}
 426
 427/**
 428 * goodix_ts_irq_handler - The IRQ handler
 429 *
 430 * @irq: interrupt number.
 431 * @dev_id: private data pointer.
 432 */
 433static irqreturn_t goodix_ts_irq_handler(int irq, void *dev_id)
 434{
 435	struct goodix_ts_data *ts = dev_id;
 436
 437	goodix_process_events(ts);
 438
 439	if (goodix_i2c_write_u8(ts->client, GOODIX_READ_COOR_ADDR, 0) < 0)
 440		dev_err(&ts->client->dev, "I2C write end_cmd error\n");
 441
 442	return IRQ_HANDLED;
 443}
 444
 445static void goodix_free_irq(struct goodix_ts_data *ts)
 446{
 447	devm_free_irq(&ts->client->dev, ts->client->irq, ts);
 448}
 449
 450static int goodix_request_irq(struct goodix_ts_data *ts)
 451{
 452	return devm_request_threaded_irq(&ts->client->dev, ts->client->irq,
 453					 NULL, goodix_ts_irq_handler,
 454					 ts->irq_flags, ts->client->name, ts);
 455}
 456
 457static int goodix_check_cfg_8(struct goodix_ts_data *ts, const u8 *cfg, int len)
 458{
 459	int i, raw_cfg_len = len - 2;
 460	u8 check_sum = 0;
 461
 462	for (i = 0; i < raw_cfg_len; i++)
 463		check_sum += cfg[i];
 464	check_sum = (~check_sum) + 1;
 465	if (check_sum != cfg[raw_cfg_len]) {
 466		dev_err(&ts->client->dev,
 467			"The checksum of the config fw is not correct");
 468		return -EINVAL;
 469	}
 470
 471	if (cfg[raw_cfg_len + 1] != 1) {
 472		dev_err(&ts->client->dev,
 473			"Config fw must have Config_Fresh register set");
 474		return -EINVAL;
 475	}
 476
 477	return 0;
 478}
 479
 480static void goodix_calc_cfg_checksum_8(struct goodix_ts_data *ts)
 481{
 482	int i, raw_cfg_len = ts->chip->config_len - 2;
 483	u8 check_sum = 0;
 484
 485	for (i = 0; i < raw_cfg_len; i++)
 486		check_sum += ts->config[i];
 487	check_sum = (~check_sum) + 1;
 488
 489	ts->config[raw_cfg_len] = check_sum;
 490	ts->config[raw_cfg_len + 1] = 1; /* Set "config_fresh" bit */
 491}
 492
 493static int goodix_check_cfg_16(struct goodix_ts_data *ts, const u8 *cfg,
 494			       int len)
 495{
 496	int i, raw_cfg_len = len - 3;
 497	u16 check_sum = 0;
 498
 499	for (i = 0; i < raw_cfg_len; i += 2)
 500		check_sum += get_unaligned_be16(&cfg[i]);
 501	check_sum = (~check_sum) + 1;
 502	if (check_sum != get_unaligned_be16(&cfg[raw_cfg_len])) {
 503		dev_err(&ts->client->dev,
 504			"The checksum of the config fw is not correct");
 505		return -EINVAL;
 506	}
 507
 508	if (cfg[raw_cfg_len + 2] != 1) {
 509		dev_err(&ts->client->dev,
 510			"Config fw must have Config_Fresh register set");
 511		return -EINVAL;
 512	}
 513
 514	return 0;
 515}
 516
 517static void goodix_calc_cfg_checksum_16(struct goodix_ts_data *ts)
 518{
 519	int i, raw_cfg_len = ts->chip->config_len - 3;
 520	u16 check_sum = 0;
 521
 522	for (i = 0; i < raw_cfg_len; i += 2)
 523		check_sum += get_unaligned_be16(&ts->config[i]);
 524	check_sum = (~check_sum) + 1;
 525
 526	put_unaligned_be16(check_sum, &ts->config[raw_cfg_len]);
 527	ts->config[raw_cfg_len + 2] = 1; /* Set "config_fresh" bit */
 528}
 529
 530/**
 531 * goodix_check_cfg - Checks if config fw is valid
 532 *
 533 * @ts: goodix_ts_data pointer
 534 * @cfg: firmware config data
 535 * @len: config data length
 536 */
 537static int goodix_check_cfg(struct goodix_ts_data *ts, const u8 *cfg, int len)
 538{
 539	if (len < GOODIX_CONFIG_MIN_LENGTH ||
 540	    len > GOODIX_CONFIG_MAX_LENGTH) {
 541		dev_err(&ts->client->dev,
 542			"The length of the config fw is not correct");
 543		return -EINVAL;
 544	}
 545
 546	return ts->chip->check_config(ts, cfg, len);
 547}
 548
 549/**
 550 * goodix_send_cfg - Write fw config to device
 551 *
 552 * @ts: goodix_ts_data pointer
 553 * @cfg: config firmware to write to device
 554 * @len: config data length
 555 */
 556static int goodix_send_cfg(struct goodix_ts_data *ts, const u8 *cfg, int len)
 557{
 558	int error;
 559
 560	error = goodix_check_cfg(ts, cfg, len);
 561	if (error)
 562		return error;
 563
 564	error = goodix_i2c_write(ts->client, ts->chip->config_addr, cfg, len);
 565	if (error) {
 566		dev_err(&ts->client->dev, "Failed to write config data: %d",
 567			error);
 568		return error;
 569	}
 570	dev_dbg(&ts->client->dev, "Config sent successfully.");
 571
 572	/* Let the firmware reconfigure itself, so sleep for 10ms */
 573	usleep_range(10000, 11000);
 574
 575	return 0;
 576}
 577
 578#ifdef ACPI_GPIO_SUPPORT
 579static int goodix_pin_acpi_direction_input(struct goodix_ts_data *ts)
 580{
 581	acpi_handle handle = ACPI_HANDLE(&ts->client->dev);
 582	acpi_status status;
 583
 584	status = acpi_evaluate_object(handle, "INTI", NULL, NULL);
 585	return ACPI_SUCCESS(status) ? 0 : -EIO;
 586}
 587
 588static int goodix_pin_acpi_output_method(struct goodix_ts_data *ts, int value)
 589{
 590	acpi_handle handle = ACPI_HANDLE(&ts->client->dev);
 591	acpi_status status;
 592
 593	status = acpi_execute_simple_method(handle, "INTO", value);
 594	return ACPI_SUCCESS(status) ? 0 : -EIO;
 595}
 596#else
 597static int goodix_pin_acpi_direction_input(struct goodix_ts_data *ts)
 598{
 599	dev_err(&ts->client->dev,
 600		"%s called on device without ACPI support\n", __func__);
 601	return -EINVAL;
 602}
 603
 604static int goodix_pin_acpi_output_method(struct goodix_ts_data *ts, int value)
 605{
 606	dev_err(&ts->client->dev,
 607		"%s called on device without ACPI support\n", __func__);
 608	return -EINVAL;
 609}
 610#endif
 611
 612static int goodix_irq_direction_output(struct goodix_ts_data *ts, int value)
 613{
 614	switch (ts->irq_pin_access_method) {
 615	case IRQ_PIN_ACCESS_NONE:
 616		dev_err(&ts->client->dev,
 617			"%s called without an irq_pin_access_method set\n",
 618			__func__);
 619		return -EINVAL;
 620	case IRQ_PIN_ACCESS_GPIO:
 621		return gpiod_direction_output(ts->gpiod_int, value);
 622	case IRQ_PIN_ACCESS_ACPI_GPIO:
 623		/*
 624		 * The IRQ pin triggers on a falling edge, so its gets marked
 625		 * as active-low, use output_raw to avoid the value inversion.
 626		 */
 627		return gpiod_direction_output_raw(ts->gpiod_int, value);
 628	case IRQ_PIN_ACCESS_ACPI_METHOD:
 629		return goodix_pin_acpi_output_method(ts, value);
 630	}
 631
 632	return -EINVAL; /* Never reached */
 633}
 634
 635static int goodix_irq_direction_input(struct goodix_ts_data *ts)
 636{
 637	switch (ts->irq_pin_access_method) {
 638	case IRQ_PIN_ACCESS_NONE:
 639		dev_err(&ts->client->dev,
 640			"%s called without an irq_pin_access_method set\n",
 641			__func__);
 642		return -EINVAL;
 643	case IRQ_PIN_ACCESS_GPIO:
 644		return gpiod_direction_input(ts->gpiod_int);
 645	case IRQ_PIN_ACCESS_ACPI_GPIO:
 646		return gpiod_direction_input(ts->gpiod_int);
 647	case IRQ_PIN_ACCESS_ACPI_METHOD:
 648		return goodix_pin_acpi_direction_input(ts);
 649	}
 650
 651	return -EINVAL; /* Never reached */
 652}
 653
 654static int goodix_int_sync(struct goodix_ts_data *ts)
 655{
 656	int error;
 657
 658	error = goodix_irq_direction_output(ts, 0);
 659	if (error)
 660		return error;
 661
 662	msleep(50);				/* T5: 50ms */
 663
 664	error = goodix_irq_direction_input(ts);
 665	if (error)
 666		return error;
 667
 668	return 0;
 
 
 
 
 669}
 670
 671/**
 672 * goodix_reset - Reset device during power on
 673 *
 674 * @ts: goodix_ts_data pointer
 675 */
 676static int goodix_reset(struct goodix_ts_data *ts)
 677{
 678	int error;
 679
 680	/* begin select I2C slave addr */
 681	error = gpiod_direction_output(ts->gpiod_rst, 0);
 682	if (error)
 683		return error;
 684
 685	msleep(20);				/* T2: > 10ms */
 686
 687	/* HIGH: 0x28/0x29, LOW: 0xBA/0xBB */
 688	error = goodix_irq_direction_output(ts, ts->client->addr == 0x14);
 689	if (error)
 690		return error;
 691
 692	usleep_range(100, 2000);		/* T3: > 100us */
 693
 694	error = gpiod_direction_output(ts->gpiod_rst, 1);
 695	if (error)
 696		return error;
 697
 698	usleep_range(6000, 10000);		/* T4: > 5ms */
 699
 700	/* end select I2C slave addr */
 701	error = gpiod_direction_input(ts->gpiod_rst);
 702	if (error)
 703		return error;
 
 
 
 
 
 
 704
 705	error = goodix_int_sync(ts);
 706	if (error)
 707		return error;
 708
 709	return 0;
 
 
 710}
 711
 712#ifdef ACPI_GPIO_SUPPORT
 713#include <asm/cpu_device_id.h>
 714#include <asm/intel-family.h>
 
 
 
 
 
 715
 716static const struct x86_cpu_id baytrail_cpu_ids[] = {
 717	{ X86_VENDOR_INTEL, 6, INTEL_FAM6_ATOM_SILVERMONT, X86_FEATURE_ANY, },
 718	{}
 719};
 720
 721static inline bool is_byt(void)
 722{
 723	const struct x86_cpu_id *id = x86_match_cpu(baytrail_cpu_ids);
 724
 725	return !!id;
 726}
 727
 
 728static const struct acpi_gpio_params first_gpio = { 0, 0, false };
 729static const struct acpi_gpio_params second_gpio = { 1, 0, false };
 730
 731static const struct acpi_gpio_mapping acpi_goodix_int_first_gpios[] = {
 732	{ GOODIX_GPIO_INT_NAME "-gpios", &first_gpio, 1 },
 733	{ GOODIX_GPIO_RST_NAME "-gpios", &second_gpio, 1 },
 734	{ },
 735};
 736
 737static const struct acpi_gpio_mapping acpi_goodix_int_last_gpios[] = {
 738	{ GOODIX_GPIO_RST_NAME "-gpios", &first_gpio, 1 },
 739	{ GOODIX_GPIO_INT_NAME "-gpios", &second_gpio, 1 },
 740	{ },
 741};
 742
 743static const struct acpi_gpio_mapping acpi_goodix_reset_only_gpios[] = {
 744	{ GOODIX_GPIO_RST_NAME "-gpios", &first_gpio, 1 },
 745	{ },
 746};
 747
 748static int goodix_resource(struct acpi_resource *ares, void *data)
 749{
 750	struct goodix_ts_data *ts = data;
 751	struct device *dev = &ts->client->dev;
 752	struct acpi_resource_gpio *gpio;
 753
 754	switch (ares->type) {
 755	case ACPI_RESOURCE_TYPE_GPIO:
 756		gpio = &ares->data.gpio;
 757		if (gpio->connection_type == ACPI_RESOURCE_GPIO_TYPE_INT) {
 758			if (ts->gpio_int_idx == -1) {
 759				ts->gpio_int_idx = ts->gpio_count;
 760			} else {
 761				dev_err(dev, "More then one GpioInt resource, ignoring ACPI GPIO resources\n");
 762				ts->gpio_int_idx = -2;
 763			}
 764		}
 765		ts->gpio_count++;
 766		break;
 767	default:
 768		break;
 769	}
 770
 771	return 0;
 772}
 773
 774/*
 775 * This function gets called in case we fail to get the irq GPIO directly
 776 * because the ACPI tables lack GPIO-name to APCI _CRS index mappings
 777 * (no _DSD UUID daffd814-6eba-4d8c-8a91-bc9bbf4aa301 data).
 778 * In that case we add our own mapping and then goodix_get_gpio_config()
 779 * retries to get the GPIOs based on the added mapping.
 780 */
 781static int goodix_add_acpi_gpio_mappings(struct goodix_ts_data *ts)
 782{
 783	const struct acpi_gpio_mapping *gpio_mapping = NULL;
 784	struct device *dev = &ts->client->dev;
 785	LIST_HEAD(resources);
 786	int ret;
 787
 788	ts->gpio_count = 0;
 789	ts->gpio_int_idx = -1;
 790	ret = acpi_dev_get_resources(ACPI_COMPANION(dev), &resources,
 791				     goodix_resource, ts);
 792	if (ret < 0) {
 793		dev_err(dev, "Error getting ACPI resources: %d\n", ret);
 794		return ret;
 795	}
 796
 797	acpi_dev_free_resource_list(&resources);
 798
 799	if (ts->gpio_count == 2 && ts->gpio_int_idx == 0) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 800		ts->irq_pin_access_method = IRQ_PIN_ACCESS_ACPI_GPIO;
 801		gpio_mapping = acpi_goodix_int_first_gpios;
 802	} else if (ts->gpio_count == 2 && ts->gpio_int_idx == 1) {
 803		ts->irq_pin_access_method = IRQ_PIN_ACCESS_ACPI_GPIO;
 804		gpio_mapping = acpi_goodix_int_last_gpios;
 805	} else if (ts->gpio_count == 1 && ts->gpio_int_idx == -1 &&
 806		   acpi_has_method(ACPI_HANDLE(dev), "INTI") &&
 807		   acpi_has_method(ACPI_HANDLE(dev), "INTO")) {
 808		dev_info(dev, "Using ACPI INTI and INTO methods for IRQ pin access\n");
 809		ts->irq_pin_access_method = IRQ_PIN_ACCESS_ACPI_METHOD;
 810		gpio_mapping = acpi_goodix_reset_only_gpios;
 811	} else if (is_byt() && ts->gpio_count == 2 && ts->gpio_int_idx == -1) {
 812		dev_info(dev, "No ACPI GpioInt resource, assuming that the GPIO order is reset, int\n");
 813		ts->irq_pin_access_method = IRQ_PIN_ACCESS_ACPI_GPIO;
 814		gpio_mapping = acpi_goodix_int_last_gpios;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 815	} else {
 816		dev_warn(dev, "Unexpected ACPI resources: gpio_count %d, gpio_int_idx %d\n",
 817			 ts->gpio_count, ts->gpio_int_idx);
 
 
 
 
 
 818		return -EINVAL;
 819	}
 820
 
 
 
 
 
 
 
 
 821	return devm_acpi_dev_add_driver_gpios(dev, gpio_mapping);
 822}
 823#else
 824static int goodix_add_acpi_gpio_mappings(struct goodix_ts_data *ts)
 825{
 826	return -EINVAL;
 827}
 828#endif /* CONFIG_X86 && CONFIG_ACPI */
 829
 830/**
 831 * goodix_get_gpio_config - Get GPIO config from ACPI/DT
 832 *
 833 * @ts: goodix_ts_data pointer
 834 */
 835static int goodix_get_gpio_config(struct goodix_ts_data *ts)
 836{
 837	int error;
 838	struct device *dev;
 839	struct gpio_desc *gpiod;
 840	bool added_acpi_mappings = false;
 841
 842	if (!ts->client)
 843		return -EINVAL;
 844	dev = &ts->client->dev;
 845
 
 
 
 
 
 
 846	ts->avdd28 = devm_regulator_get(dev, "AVDD28");
 847	if (IS_ERR(ts->avdd28)) {
 848		error = PTR_ERR(ts->avdd28);
 849		if (error != -EPROBE_DEFER)
 850			dev_err(dev,
 851				"Failed to get AVDD28 regulator: %d\n", error);
 852		return error;
 853	}
 854
 855	ts->vddio = devm_regulator_get(dev, "VDDIO");
 856	if (IS_ERR(ts->vddio)) {
 857		error = PTR_ERR(ts->vddio);
 858		if (error != -EPROBE_DEFER)
 859			dev_err(dev,
 860				"Failed to get VDDIO regulator: %d\n", error);
 861		return error;
 862	}
 863
 864retry_get_irq_gpio:
 865	/* Get the interrupt GPIO pin number */
 866	gpiod = devm_gpiod_get_optional(dev, GOODIX_GPIO_INT_NAME, GPIOD_IN);
 867	if (IS_ERR(gpiod)) {
 868		error = PTR_ERR(gpiod);
 869		if (error != -EPROBE_DEFER)
 870			dev_dbg(dev, "Failed to get %s GPIO: %d\n",
 871				GOODIX_GPIO_INT_NAME, error);
 872		return error;
 873	}
 874	if (!gpiod && has_acpi_companion(dev) && !added_acpi_mappings) {
 875		added_acpi_mappings = true;
 876		if (goodix_add_acpi_gpio_mappings(ts) == 0)
 877			goto retry_get_irq_gpio;
 878	}
 879
 880	ts->gpiod_int = gpiod;
 881
 882	/* Get the reset line GPIO pin number */
 883	gpiod = devm_gpiod_get_optional(dev, GOODIX_GPIO_RST_NAME, GPIOD_IN);
 884	if (IS_ERR(gpiod)) {
 885		error = PTR_ERR(gpiod);
 886		if (error != -EPROBE_DEFER)
 887			dev_dbg(dev, "Failed to get %s GPIO: %d\n",
 888				GOODIX_GPIO_RST_NAME, error);
 889		return error;
 890	}
 891
 892	ts->gpiod_rst = gpiod;
 893
 894	switch (ts->irq_pin_access_method) {
 895	case IRQ_PIN_ACCESS_ACPI_GPIO:
 896		/*
 897		 * We end up here if goodix_add_acpi_gpio_mappings() has
 898		 * called devm_acpi_dev_add_driver_gpios() because the ACPI
 899		 * tables did not contain name to index mappings.
 900		 * Check that we successfully got both GPIOs after we've
 901		 * added our own acpi_gpio_mapping and if we did not get both
 902		 * GPIOs reset irq_pin_access_method to IRQ_PIN_ACCESS_NONE.
 903		 */
 904		if (!ts->gpiod_int || !ts->gpiod_rst)
 905			ts->irq_pin_access_method = IRQ_PIN_ACCESS_NONE;
 906		break;
 907	case IRQ_PIN_ACCESS_ACPI_METHOD:
 908		if (!ts->gpiod_rst)
 909			ts->irq_pin_access_method = IRQ_PIN_ACCESS_NONE;
 910		break;
 911	default:
 912		if (ts->gpiod_int && ts->gpiod_rst) {
 913			ts->reset_controller_at_probe = true;
 914			ts->load_cfg_from_disk = true;
 915			ts->irq_pin_access_method = IRQ_PIN_ACCESS_GPIO;
 916		}
 917	}
 918
 919	return 0;
 920}
 921
 922/**
 923 * goodix_read_config - Read the embedded configuration of the panel
 924 *
 925 * @ts: our goodix_ts_data pointer
 926 *
 927 * Must be called during probe
 928 */
 929static void goodix_read_config(struct goodix_ts_data *ts)
 930{
 931	int x_max, y_max;
 932	int error;
 933
 934	error = goodix_i2c_read(ts->client, ts->chip->config_addr,
 935				ts->config, ts->chip->config_len);
 936	if (error) {
 937		dev_warn(&ts->client->dev, "Error reading config: %d\n",
 938			 error);
 939		ts->int_trigger_type = GOODIX_INT_TRIGGER;
 940		ts->max_touch_num = GOODIX_MAX_CONTACTS;
 941		return;
 
 
 
 
 
 942	}
 943
 944	ts->int_trigger_type = ts->config[TRIGGER_LOC] & 0x03;
 945	ts->max_touch_num = ts->config[MAX_CONTACTS_LOC] & 0x0f;
 946
 947	x_max = get_unaligned_le16(&ts->config[RESOLUTION_LOC]);
 948	y_max = get_unaligned_le16(&ts->config[RESOLUTION_LOC + 2]);
 949	if (x_max && y_max) {
 950		input_abs_set_max(ts->input_dev, ABS_MT_POSITION_X, x_max - 1);
 951		input_abs_set_max(ts->input_dev, ABS_MT_POSITION_Y, y_max - 1);
 952	}
 953
 954	ts->chip->calc_config_checksum(ts);
 955}
 956
 957/**
 958 * goodix_read_version - Read goodix touchscreen version
 959 *
 960 * @ts: our goodix_ts_data pointer
 961 */
 962static int goodix_read_version(struct goodix_ts_data *ts)
 963{
 964	int error;
 965	u8 buf[6];
 966	char id_str[GOODIX_ID_MAX_LEN + 1];
 967
 968	error = goodix_i2c_read(ts->client, GOODIX_REG_ID, buf, sizeof(buf));
 969	if (error) {
 970		dev_err(&ts->client->dev, "read version failed: %d\n", error);
 971		return error;
 972	}
 973
 974	memcpy(id_str, buf, GOODIX_ID_MAX_LEN);
 975	id_str[GOODIX_ID_MAX_LEN] = 0;
 976	strscpy(ts->id, id_str, GOODIX_ID_MAX_LEN + 1);
 977
 978	ts->version = get_unaligned_le16(&buf[4]);
 979
 980	dev_info(&ts->client->dev, "ID %s, version: %04x\n", ts->id,
 981		 ts->version);
 982
 983	return 0;
 984}
 985
 986/**
 987 * goodix_i2c_test - I2C test function to check if the device answers.
 988 *
 989 * @client: the i2c client
 990 */
 991static int goodix_i2c_test(struct i2c_client *client)
 992{
 993	int retry = 0;
 994	int error;
 995	u8 test;
 996
 997	while (retry++ < 2) {
 998		error = goodix_i2c_read(client, GOODIX_REG_ID,
 999					&test, 1);
1000		if (!error)
1001			return 0;
1002
1003		dev_err(&client->dev, "i2c test failed attempt %d: %d\n",
1004			retry, error);
1005		msleep(20);
1006	}
1007
1008	return error;
1009}
1010
1011/**
1012 * goodix_configure_dev - Finish device initialization
1013 *
1014 * @ts: our goodix_ts_data pointer
1015 *
1016 * Must be called from probe to finish initialization of the device.
1017 * Contains the common initialization code for both devices that
1018 * declare gpio pins and devices that do not. It is either called
1019 * directly from probe or from request_firmware_wait callback.
1020 */
1021static int goodix_configure_dev(struct goodix_ts_data *ts)
1022{
1023	int error;
1024	int i;
1025
1026	ts->int_trigger_type = GOODIX_INT_TRIGGER;
1027	ts->max_touch_num = GOODIX_MAX_CONTACTS;
1028
1029	ts->input_dev = devm_input_allocate_device(&ts->client->dev);
1030	if (!ts->input_dev) {
1031		dev_err(&ts->client->dev, "Failed to allocate input device.");
1032		return -ENOMEM;
1033	}
1034
1035	ts->input_dev->name = "Goodix Capacitive TouchScreen";
1036	ts->input_dev->phys = "input/ts";
1037	ts->input_dev->id.bustype = BUS_I2C;
1038	ts->input_dev->id.vendor = 0x0416;
1039	if (kstrtou16(ts->id, 10, &ts->input_dev->id.product))
1040		ts->input_dev->id.product = 0x1001;
1041	ts->input_dev->id.version = ts->version;
1042
1043	ts->input_dev->keycode = ts->keymap;
1044	ts->input_dev->keycodesize = sizeof(ts->keymap[0]);
1045	ts->input_dev->keycodemax = GOODIX_MAX_KEYS;
1046
1047	/* Capacitive Windows/Home button on some devices */
1048	for (i = 0; i < GOODIX_MAX_KEYS; ++i) {
1049		if (i == 0)
1050			ts->keymap[i] = KEY_LEFTMETA;
1051		else
1052			ts->keymap[i] = KEY_F1 + (i - 1);
1053
1054		input_set_capability(ts->input_dev, EV_KEY, ts->keymap[i]);
1055	}
1056
1057	input_set_capability(ts->input_dev, EV_ABS, ABS_MT_POSITION_X);
1058	input_set_capability(ts->input_dev, EV_ABS, ABS_MT_POSITION_Y);
1059	input_set_abs_params(ts->input_dev, ABS_MT_WIDTH_MAJOR, 0, 255, 0, 0);
1060	input_set_abs_params(ts->input_dev, ABS_MT_TOUCH_MAJOR, 0, 255, 0, 0);
1061
 
1062	/* Read configuration and apply touchscreen parameters */
1063	goodix_read_config(ts);
1064
1065	/* Try overriding touchscreen parameters via device properties */
1066	touchscreen_parse_properties(ts->input_dev, true, &ts->prop);
1067
1068	if (!ts->prop.max_x || !ts->prop.max_y || !ts->max_touch_num) {
 
 
 
 
 
 
 
 
 
 
1069		dev_err(&ts->client->dev,
1070			"Invalid config (%d, %d, %d), using defaults\n",
1071			ts->prop.max_x, ts->prop.max_y, ts->max_touch_num);
1072		ts->prop.max_x = GOODIX_MAX_WIDTH - 1;
1073		ts->prop.max_y = GOODIX_MAX_HEIGHT - 1;
1074		ts->max_touch_num = GOODIX_MAX_CONTACTS;
1075		input_abs_set_max(ts->input_dev,
1076				  ABS_MT_POSITION_X, ts->prop.max_x);
1077		input_abs_set_max(ts->input_dev,
1078				  ABS_MT_POSITION_Y, ts->prop.max_y);
1079	}
1080
1081	if (dmi_check_system(nine_bytes_report)) {
1082		ts->contact_size = 9;
1083
1084		dev_dbg(&ts->client->dev,
1085			"Non-standard 9-bytes report format quirk\n");
1086	}
1087
1088	if (dmi_check_system(inverted_x_screen)) {
1089		ts->prop.invert_x = true;
1090		dev_dbg(&ts->client->dev,
1091			"Applying 'inverted x screen' quirk\n");
1092	}
1093
1094	error = input_mt_init_slots(ts->input_dev, ts->max_touch_num,
1095				    INPUT_MT_DIRECT | INPUT_MT_DROP_UNUSED);
1096	if (error) {
1097		dev_err(&ts->client->dev,
1098			"Failed to initialize MT slots: %d", error);
1099		return error;
1100	}
1101
1102	error = input_register_device(ts->input_dev);
1103	if (error) {
1104		dev_err(&ts->client->dev,
1105			"Failed to register input device: %d", error);
1106		return error;
1107	}
1108
 
 
 
 
 
 
 
 
 
 
 
1109	ts->irq_flags = goodix_irq_flags[ts->int_trigger_type] | IRQF_ONESHOT;
1110	error = goodix_request_irq(ts);
1111	if (error) {
1112		dev_err(&ts->client->dev, "request IRQ failed: %d\n", error);
1113		return error;
1114	}
1115
1116	return 0;
1117}
1118
1119/**
1120 * goodix_config_cb - Callback to finish device init
1121 *
1122 * @cfg: firmware config
1123 * @ctx: our goodix_ts_data pointer
1124 *
1125 * request_firmware_wait callback that finishes
1126 * initialization of the device.
1127 */
1128static void goodix_config_cb(const struct firmware *cfg, void *ctx)
1129{
1130	struct goodix_ts_data *ts = ctx;
1131	int error;
1132
1133	if (cfg) {
 
 
 
 
 
 
 
 
 
1134		/* send device configuration to the firmware */
1135		error = goodix_send_cfg(ts, cfg->data, cfg->size);
1136		if (error)
1137			goto err_release_cfg;
1138	}
1139
1140	goodix_configure_dev(ts);
1141
1142err_release_cfg:
1143	release_firmware(cfg);
1144	complete_all(&ts->firmware_loading_complete);
1145}
1146
1147static void goodix_disable_regulators(void *arg)
1148{
1149	struct goodix_ts_data *ts = arg;
1150
1151	regulator_disable(ts->vddio);
1152	regulator_disable(ts->avdd28);
1153}
1154
1155static int goodix_ts_probe(struct i2c_client *client,
1156			   const struct i2c_device_id *id)
1157{
1158	struct goodix_ts_data *ts;
 
1159	int error;
1160
1161	dev_dbg(&client->dev, "I2C Address: 0x%02x\n", client->addr);
1162
1163	if (!i2c_check_functionality(client->adapter, I2C_FUNC_I2C)) {
1164		dev_err(&client->dev, "I2C check functionality failed.\n");
1165		return -ENXIO;
1166	}
1167
1168	ts = devm_kzalloc(&client->dev, sizeof(*ts), GFP_KERNEL);
1169	if (!ts)
1170		return -ENOMEM;
1171
1172	ts->client = client;
1173	i2c_set_clientdata(client, ts);
1174	init_completion(&ts->firmware_loading_complete);
1175	ts->contact_size = GOODIX_CONTACT_SIZE;
1176
1177	error = goodix_get_gpio_config(ts);
1178	if (error)
1179		return error;
1180
1181	/* power up the controller */
1182	error = regulator_enable(ts->avdd28);
1183	if (error) {
1184		dev_err(&client->dev,
1185			"Failed to enable AVDD28 regulator: %d\n",
1186			error);
1187		return error;
1188	}
1189
1190	error = regulator_enable(ts->vddio);
1191	if (error) {
1192		dev_err(&client->dev,
1193			"Failed to enable VDDIO regulator: %d\n",
1194			error);
1195		regulator_disable(ts->avdd28);
1196		return error;
1197	}
1198
1199	error = devm_add_action_or_reset(&client->dev,
1200					 goodix_disable_regulators, ts);
1201	if (error)
1202		return error;
1203
1204reset:
1205	if (ts->reset_controller_at_probe) {
1206		/* reset the controller */
1207		error = goodix_reset(ts);
1208		if (error) {
1209			dev_err(&client->dev, "Controller reset failed.\n");
1210			return error;
1211		}
1212	}
1213
1214	error = goodix_i2c_test(client);
1215	if (error) {
1216		if (!ts->reset_controller_at_probe &&
1217		    ts->irq_pin_access_method != IRQ_PIN_ACCESS_NONE) {
1218			/* Retry after a controller reset */
1219			ts->reset_controller_at_probe = true;
1220			goto reset;
1221		}
1222		dev_err(&client->dev, "I2C communication failure: %d\n", error);
1223		return error;
1224	}
1225
 
 
 
 
1226	error = goodix_read_version(ts);
1227	if (error) {
1228		dev_err(&client->dev, "Read version failed.\n");
1229		return error;
1230	}
1231
1232	ts->chip = goodix_get_chip_data(ts->id);
1233
1234	if (ts->load_cfg_from_disk) {
1235		/* update device config */
1236		ts->cfg_name = devm_kasprintf(&client->dev, GFP_KERNEL,
1237					      "goodix_%s_cfg.bin", ts->id);
1238		if (!ts->cfg_name)
1239			return -ENOMEM;
 
 
 
 
 
1240
1241		error = request_firmware_nowait(THIS_MODULE, true, ts->cfg_name,
1242						&client->dev, GFP_KERNEL, ts,
1243						goodix_config_cb);
1244		if (error) {
1245			dev_err(&client->dev,
1246				"Failed to invoke firmware loader: %d\n",
1247				error);
1248			return error;
1249		}
1250
1251		return 0;
1252	} else {
1253		error = goodix_configure_dev(ts);
1254		if (error)
1255			return error;
1256	}
1257
1258	return 0;
1259}
1260
1261static int goodix_ts_remove(struct i2c_client *client)
1262{
1263	struct goodix_ts_data *ts = i2c_get_clientdata(client);
1264
1265	if (ts->load_cfg_from_disk)
1266		wait_for_completion(&ts->firmware_loading_complete);
1267
1268	return 0;
1269}
1270
1271static int __maybe_unused goodix_suspend(struct device *dev)
1272{
1273	struct i2c_client *client = to_i2c_client(dev);
1274	struct goodix_ts_data *ts = i2c_get_clientdata(client);
1275	int error;
1276
1277	if (ts->load_cfg_from_disk)
1278		wait_for_completion(&ts->firmware_loading_complete);
1279
1280	/* We need gpio pins to suspend/resume */
1281	if (ts->irq_pin_access_method == IRQ_PIN_ACCESS_NONE) {
1282		disable_irq(client->irq);
1283		return 0;
1284	}
1285
1286	/* Free IRQ as IRQ pin is used as output in the suspend sequence */
1287	goodix_free_irq(ts);
1288
 
 
 
1289	/* Output LOW on the INT pin for 5 ms */
1290	error = goodix_irq_direction_output(ts, 0);
1291	if (error) {
1292		goodix_request_irq(ts);
1293		return error;
1294	}
1295
1296	usleep_range(5000, 6000);
1297
1298	error = goodix_i2c_write_u8(ts->client, GOODIX_REG_COMMAND,
1299				    GOODIX_CMD_SCREEN_OFF);
1300	if (error) {
1301		dev_err(&ts->client->dev, "Screen off command failed\n");
1302		goodix_irq_direction_input(ts);
1303		goodix_request_irq(ts);
1304		return -EAGAIN;
1305	}
1306
1307	/*
1308	 * The datasheet specifies that the interval between sending screen-off
1309	 * command and wake-up should be longer than 58 ms. To avoid waking up
1310	 * sooner, delay 58ms here.
1311	 */
1312	msleep(58);
1313	return 0;
1314}
1315
1316static int __maybe_unused goodix_resume(struct device *dev)
1317{
1318	struct i2c_client *client = to_i2c_client(dev);
1319	struct goodix_ts_data *ts = i2c_get_clientdata(client);
1320	u8 config_ver;
1321	int error;
1322
1323	if (ts->irq_pin_access_method == IRQ_PIN_ACCESS_NONE) {
1324		enable_irq(client->irq);
1325		return 0;
1326	}
1327
1328	/*
1329	 * Exit sleep mode by outputting HIGH level to INT pin
1330	 * for 2ms~5ms.
1331	 */
1332	error = goodix_irq_direction_output(ts, 1);
1333	if (error)
1334		return error;
1335
1336	usleep_range(2000, 5000);
1337
1338	error = goodix_int_sync(ts);
1339	if (error)
1340		return error;
1341
1342	error = goodix_i2c_read(ts->client, ts->chip->config_addr,
1343				&config_ver, 1);
1344	if (error)
1345		dev_warn(dev, "Error reading config version: %d, resetting controller\n",
1346			 error);
1347	else if (config_ver != ts->config[0])
1348		dev_info(dev, "Config version mismatch %d != %d, resetting controller\n",
1349			 config_ver, ts->config[0]);
1350
1351	if (error != 0 || config_ver != ts->config[0]) {
1352		error = goodix_reset(ts);
1353		if (error) {
1354			dev_err(dev, "Controller reset failed.\n");
1355			return error;
1356		}
1357
1358		error = goodix_send_cfg(ts, ts->config, ts->chip->config_len);
1359		if (error)
1360			return error;
1361	}
1362
1363	error = goodix_request_irq(ts);
1364	if (error)
1365		return error;
1366
1367	return 0;
1368}
1369
1370static SIMPLE_DEV_PM_OPS(goodix_pm_ops, goodix_suspend, goodix_resume);
1371
1372static const struct i2c_device_id goodix_ts_id[] = {
1373	{ "GDIX1001:00", 0 },
1374	{ }
1375};
1376MODULE_DEVICE_TABLE(i2c, goodix_ts_id);
1377
1378#ifdef CONFIG_ACPI
1379static const struct acpi_device_id goodix_acpi_match[] = {
1380	{ "GDIX1001", 0 },
1381	{ "GDIX1002", 0 },
 
1382	{ }
1383};
1384MODULE_DEVICE_TABLE(acpi, goodix_acpi_match);
1385#endif
1386
1387#ifdef CONFIG_OF
1388static const struct of_device_id goodix_of_match[] = {
1389	{ .compatible = "goodix,gt1151" },
 
1390	{ .compatible = "goodix,gt5663" },
1391	{ .compatible = "goodix,gt5688" },
1392	{ .compatible = "goodix,gt911" },
1393	{ .compatible = "goodix,gt9110" },
1394	{ .compatible = "goodix,gt912" },
1395	{ .compatible = "goodix,gt9147" },
1396	{ .compatible = "goodix,gt917s" },
1397	{ .compatible = "goodix,gt927" },
1398	{ .compatible = "goodix,gt9271" },
1399	{ .compatible = "goodix,gt928" },
1400	{ .compatible = "goodix,gt9286" },
1401	{ .compatible = "goodix,gt967" },
1402	{ }
1403};
1404MODULE_DEVICE_TABLE(of, goodix_of_match);
1405#endif
1406
1407static struct i2c_driver goodix_ts_driver = {
1408	.probe = goodix_ts_probe,
1409	.remove = goodix_ts_remove,
1410	.id_table = goodix_ts_id,
1411	.driver = {
1412		.name = "Goodix-TS",
1413		.acpi_match_table = ACPI_PTR(goodix_acpi_match),
1414		.of_match_table = of_match_ptr(goodix_of_match),
1415		.pm = &goodix_pm_ops,
1416	},
1417};
1418module_i2c_driver(goodix_ts_driver);
1419
1420MODULE_AUTHOR("Benjamin Tissoires <benjamin.tissoires@gmail.com>");
1421MODULE_AUTHOR("Bastien Nocera <hadess@hadess.net>");
1422MODULE_DESCRIPTION("Goodix touchscreen driver");
1423MODULE_LICENSE("GPL v2");