2 * TSC2004 touchscreen driver
4 * Copyright (C) 2015 QWERTY Embedded Design
5 * Copyright (C) 2015 EMAC Inc.
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
18 #include <linux/module.h>
19 #include <linux/input.h>
21 #include <linux/i2c.h>
22 #include <linux/regmap.h>
23 #include "tsc200x-core.h"
25 static const struct input_id tsc2004_input_id
= {
30 static int tsc2004_cmd(struct device
*dev
, u8 cmd
)
32 u8 tx
= TSC200X_CMD
| TSC200X_CMD_12BIT
| cmd
;
34 struct i2c_client
*i2c
= to_i2c_client(dev
);
36 data
= i2c_smbus_write_byte(i2c
, tx
);
38 dev_err(dev
, "%s: failed, command: %x i2c error: %d\n",
46 static int tsc2004_probe(struct i2c_client
*i2c
,
47 const struct i2c_device_id
*id
)
50 return tsc200x_probe(&i2c
->dev
, i2c
->irq
, &tsc2004_input_id
,
51 devm_regmap_init_i2c(i2c
, &tsc200x_regmap_config
),
55 static int tsc2004_remove(struct i2c_client
*i2c
)
57 return tsc200x_remove(&i2c
->dev
);
60 static const struct i2c_device_id tsc2004_idtable
[] = {
64 MODULE_DEVICE_TABLE(i2c
, tsc2004_idtable
);
67 static const struct of_device_id tsc2004_of_match
[] = {
68 { .compatible
= "ti,tsc2004" },
71 MODULE_DEVICE_TABLE(of
, tsc2004_of_match
);
74 static struct i2c_driver tsc2004_driver
= {
77 .of_match_table
= of_match_ptr(tsc2004_of_match
),
78 .pm
= &tsc200x_pm_ops
,
80 .id_table
= tsc2004_idtable
,
81 .probe
= tsc2004_probe
,
82 .remove
= tsc2004_remove
,
84 module_i2c_driver(tsc2004_driver
);
86 MODULE_AUTHOR("Michael Welling <mwelling@ieee.org>");
87 MODULE_DESCRIPTION("TSC2004 Touchscreen Driver");
88 MODULE_LICENSE("GPL");