Merge remote-tracking branch 'chrome-platform-stop-being-a-platform-driver-plus-atmel_mxt_ts-for-v4.17' into working-branch-for-4.17
This commit is contained in:
commit
72655f6cf7
|
@ -2394,7 +2394,6 @@ T: git git://github.com/ndyer/linux.git
|
||||||
S: Maintained
|
S: Maintained
|
||||||
F: Documentation/devicetree/bindings/input/atmel,maxtouch.txt
|
F: Documentation/devicetree/bindings/input/atmel,maxtouch.txt
|
||||||
F: drivers/input/touchscreen/atmel_mxt_ts.c
|
F: drivers/input/touchscreen/atmel_mxt_ts.c
|
||||||
F: include/linux/platform_data/atmel_mxt_ts.h
|
|
||||||
|
|
||||||
ATMEL SAMA5D2 ADC DRIVER
|
ATMEL SAMA5D2 ADC DRIVER
|
||||||
M: Ludovic Desroches <ludovic.desroches@microchip.com>
|
M: Ludovic Desroches <ludovic.desroches@microchip.com>
|
||||||
|
|
|
@ -23,12 +23,13 @@
|
||||||
#include <linux/delay.h>
|
#include <linux/delay.h>
|
||||||
#include <linux/firmware.h>
|
#include <linux/firmware.h>
|
||||||
#include <linux/i2c.h>
|
#include <linux/i2c.h>
|
||||||
#include <linux/platform_data/atmel_mxt_ts.h>
|
|
||||||
#include <linux/input/mt.h>
|
#include <linux/input/mt.h>
|
||||||
#include <linux/interrupt.h>
|
#include <linux/interrupt.h>
|
||||||
#include <linux/of.h>
|
#include <linux/of.h>
|
||||||
|
#include <linux/property.h>
|
||||||
#include <linux/slab.h>
|
#include <linux/slab.h>
|
||||||
#include <linux/gpio/consumer.h>
|
#include <linux/gpio/consumer.h>
|
||||||
|
#include <linux/property.h>
|
||||||
#include <asm/unaligned.h>
|
#include <asm/unaligned.h>
|
||||||
#include <media/v4l2-device.h>
|
#include <media/v4l2-device.h>
|
||||||
#include <media/v4l2-ioctl.h>
|
#include <media/v4l2-ioctl.h>
|
||||||
|
@ -268,12 +269,16 @@ static const struct v4l2_file_operations mxt_video_fops = {
|
||||||
.poll = vb2_fop_poll,
|
.poll = vb2_fop_poll,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
enum mxt_suspend_mode {
|
||||||
|
MXT_SUSPEND_DEEP_SLEEP = 0,
|
||||||
|
MXT_SUSPEND_T9_CTRL = 1,
|
||||||
|
};
|
||||||
|
|
||||||
/* Each client has this additional data */
|
/* Each client has this additional data */
|
||||||
struct mxt_data {
|
struct mxt_data {
|
||||||
struct i2c_client *client;
|
struct i2c_client *client;
|
||||||
struct input_dev *input_dev;
|
struct input_dev *input_dev;
|
||||||
char phys[64]; /* device physical location */
|
char phys[64]; /* device physical location */
|
||||||
const struct mxt_platform_data *pdata;
|
|
||||||
struct mxt_object *object_table;
|
struct mxt_object *object_table;
|
||||||
struct mxt_info info;
|
struct mxt_info info;
|
||||||
unsigned int irq;
|
unsigned int irq;
|
||||||
|
@ -324,6 +329,11 @@ struct mxt_data {
|
||||||
|
|
||||||
/* for config update handling */
|
/* for config update handling */
|
||||||
struct completion crc_completion;
|
struct completion crc_completion;
|
||||||
|
|
||||||
|
u32 *t19_keymap;
|
||||||
|
unsigned int t19_num_keys;
|
||||||
|
|
||||||
|
enum mxt_suspend_mode suspend_mode;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct mxt_vb2_buffer {
|
struct mxt_vb2_buffer {
|
||||||
|
@ -742,15 +752,14 @@ static int mxt_write_object(struct mxt_data *data,
|
||||||
static void mxt_input_button(struct mxt_data *data, u8 *message)
|
static void mxt_input_button(struct mxt_data *data, u8 *message)
|
||||||
{
|
{
|
||||||
struct input_dev *input = data->input_dev;
|
struct input_dev *input = data->input_dev;
|
||||||
const struct mxt_platform_data *pdata = data->pdata;
|
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
for (i = 0; i < pdata->t19_num_keys; i++) {
|
for (i = 0; i < data->t19_num_keys; i++) {
|
||||||
if (pdata->t19_keymap[i] == KEY_RESERVED)
|
if (data->t19_keymap[i] == KEY_RESERVED)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
/* Active-low switch */
|
/* Active-low switch */
|
||||||
input_report_key(input, pdata->t19_keymap[i],
|
input_report_key(input, data->t19_keymap[i],
|
||||||
!(message[1] & BIT(i)));
|
!(message[1] & BIT(i)));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -758,7 +767,7 @@ static void mxt_input_button(struct mxt_data *data, u8 *message)
|
||||||
static void mxt_input_sync(struct mxt_data *data)
|
static void mxt_input_sync(struct mxt_data *data)
|
||||||
{
|
{
|
||||||
input_mt_report_pointer_emulation(data->input_dev,
|
input_mt_report_pointer_emulation(data->input_dev,
|
||||||
data->pdata->t19_num_keys);
|
data->t19_num_keys);
|
||||||
input_sync(data->input_dev);
|
input_sync(data->input_dev);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1858,7 +1867,6 @@ static void mxt_input_close(struct input_dev *dev);
|
||||||
static void mxt_set_up_as_touchpad(struct input_dev *input_dev,
|
static void mxt_set_up_as_touchpad(struct input_dev *input_dev,
|
||||||
struct mxt_data *data)
|
struct mxt_data *data)
|
||||||
{
|
{
|
||||||
const struct mxt_platform_data *pdata = data->pdata;
|
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
input_dev->name = "Atmel maXTouch Touchpad";
|
input_dev->name = "Atmel maXTouch Touchpad";
|
||||||
|
@ -1872,15 +1880,14 @@ static void mxt_set_up_as_touchpad(struct input_dev *input_dev,
|
||||||
input_abs_set_res(input_dev, ABS_MT_POSITION_Y,
|
input_abs_set_res(input_dev, ABS_MT_POSITION_Y,
|
||||||
MXT_PIXELS_PER_MM);
|
MXT_PIXELS_PER_MM);
|
||||||
|
|
||||||
for (i = 0; i < pdata->t19_num_keys; i++)
|
for (i = 0; i < data->t19_num_keys; i++)
|
||||||
if (pdata->t19_keymap[i] != KEY_RESERVED)
|
if (data->t19_keymap[i] != KEY_RESERVED)
|
||||||
input_set_capability(input_dev, EV_KEY,
|
input_set_capability(input_dev, EV_KEY,
|
||||||
pdata->t19_keymap[i]);
|
data->t19_keymap[i]);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int mxt_initialize_input_device(struct mxt_data *data)
|
static int mxt_initialize_input_device(struct mxt_data *data)
|
||||||
{
|
{
|
||||||
const struct mxt_platform_data *pdata = data->pdata;
|
|
||||||
struct device *dev = &data->client->dev;
|
struct device *dev = &data->client->dev;
|
||||||
struct input_dev *input_dev;
|
struct input_dev *input_dev;
|
||||||
int error;
|
int error;
|
||||||
|
@ -1946,7 +1953,7 @@ static int mxt_initialize_input_device(struct mxt_data *data)
|
||||||
}
|
}
|
||||||
|
|
||||||
/* If device has buttons we assume it is a touchpad */
|
/* If device has buttons we assume it is a touchpad */
|
||||||
if (pdata->t19_num_keys) {
|
if (data->t19_num_keys) {
|
||||||
mxt_set_up_as_touchpad(input_dev, data);
|
mxt_set_up_as_touchpad(input_dev, data);
|
||||||
mt_flags |= INPUT_MT_POINTER;
|
mt_flags |= INPUT_MT_POINTER;
|
||||||
} else {
|
} else {
|
||||||
|
@ -2868,7 +2875,7 @@ static const struct attribute_group mxt_attr_group = {
|
||||||
|
|
||||||
static void mxt_start(struct mxt_data *data)
|
static void mxt_start(struct mxt_data *data)
|
||||||
{
|
{
|
||||||
switch (data->pdata->suspend_mode) {
|
switch (data->suspend_mode) {
|
||||||
case MXT_SUSPEND_T9_CTRL:
|
case MXT_SUSPEND_T9_CTRL:
|
||||||
mxt_soft_reset(data);
|
mxt_soft_reset(data);
|
||||||
|
|
||||||
|
@ -2886,12 +2893,11 @@ static void mxt_start(struct mxt_data *data)
|
||||||
mxt_t6_command(data, MXT_COMMAND_CALIBRATE, 1, false);
|
mxt_t6_command(data, MXT_COMMAND_CALIBRATE, 1, false);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void mxt_stop(struct mxt_data *data)
|
static void mxt_stop(struct mxt_data *data)
|
||||||
{
|
{
|
||||||
switch (data->pdata->suspend_mode) {
|
switch (data->suspend_mode) {
|
||||||
case MXT_SUSPEND_T9_CTRL:
|
case MXT_SUSPEND_T9_CTRL:
|
||||||
/* Touch disable */
|
/* Touch disable */
|
||||||
mxt_write_object(data,
|
mxt_write_object(data,
|
||||||
|
@ -2921,55 +2927,49 @@ static void mxt_input_close(struct input_dev *dev)
|
||||||
mxt_stop(data);
|
mxt_stop(data);
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_OF
|
static int mxt_parse_device_properties(struct mxt_data *data)
|
||||||
static const struct mxt_platform_data *mxt_parse_dt(struct i2c_client *client)
|
|
||||||
{
|
{
|
||||||
struct mxt_platform_data *pdata;
|
static const char keymap_property[] = "linux,gpio-keymap";
|
||||||
struct device_node *np = client->dev.of_node;
|
struct device *dev = &data->client->dev;
|
||||||
u32 *keymap;
|
u32 *keymap;
|
||||||
int proplen, ret;
|
int n_keys;
|
||||||
|
int error;
|
||||||
|
|
||||||
if (!np)
|
if (device_property_present(dev, keymap_property)) {
|
||||||
return ERR_PTR(-ENOENT);
|
n_keys = device_property_read_u32_array(dev, keymap_property,
|
||||||
|
NULL, 0);
|
||||||
|
if (n_keys <= 0) {
|
||||||
|
error = n_keys < 0 ? n_keys : -EINVAL;
|
||||||
|
dev_err(dev, "invalid/malformed '%s' property: %d\n",
|
||||||
|
keymap_property, error);
|
||||||
|
return error;
|
||||||
|
}
|
||||||
|
|
||||||
pdata = devm_kzalloc(&client->dev, sizeof(*pdata), GFP_KERNEL);
|
keymap = devm_kmalloc_array(dev, n_keys, sizeof(*keymap),
|
||||||
if (!pdata)
|
GFP_KERNEL);
|
||||||
return ERR_PTR(-ENOMEM);
|
|
||||||
|
|
||||||
if (of_find_property(np, "linux,gpio-keymap", &proplen)) {
|
|
||||||
pdata->t19_num_keys = proplen / sizeof(u32);
|
|
||||||
|
|
||||||
keymap = devm_kzalloc(&client->dev,
|
|
||||||
pdata->t19_num_keys * sizeof(keymap[0]),
|
|
||||||
GFP_KERNEL);
|
|
||||||
if (!keymap)
|
if (!keymap)
|
||||||
return ERR_PTR(-ENOMEM);
|
return -ENOMEM;
|
||||||
|
|
||||||
ret = of_property_read_u32_array(np, "linux,gpio-keymap",
|
error = device_property_read_u32_array(dev, keymap_property,
|
||||||
keymap, pdata->t19_num_keys);
|
keymap, n_keys);
|
||||||
if (ret)
|
if (error) {
|
||||||
dev_warn(&client->dev,
|
dev_err(dev, "failed to parse '%s' property: %d\n",
|
||||||
"Couldn't read linux,gpio-keymap: %d\n", ret);
|
keymap_property, error);
|
||||||
|
return error;
|
||||||
|
}
|
||||||
|
|
||||||
pdata->t19_keymap = keymap;
|
data->t19_keymap = keymap;
|
||||||
|
data->t19_num_keys = n_keys;
|
||||||
}
|
}
|
||||||
|
|
||||||
pdata->suspend_mode = MXT_SUSPEND_DEEP_SLEEP;
|
return 0;
|
||||||
|
|
||||||
return pdata;
|
|
||||||
}
|
}
|
||||||
#else
|
|
||||||
static const struct mxt_platform_data *mxt_parse_dt(struct i2c_client *client)
|
|
||||||
{
|
|
||||||
return ERR_PTR(-ENOENT);
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef CONFIG_ACPI
|
#ifdef CONFIG_ACPI
|
||||||
|
|
||||||
struct mxt_acpi_platform_data {
|
struct mxt_acpi_platform_data {
|
||||||
const char *hid;
|
const char *hid;
|
||||||
struct mxt_platform_data pdata;
|
const struct property_entry *props;
|
||||||
};
|
};
|
||||||
|
|
||||||
static unsigned int samus_touchpad_buttons[] = {
|
static unsigned int samus_touchpad_buttons[] = {
|
||||||
|
@ -2979,14 +2979,16 @@ static unsigned int samus_touchpad_buttons[] = {
|
||||||
BTN_LEFT
|
BTN_LEFT
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static const struct property_entry samus_touchpad_props[] = {
|
||||||
|
PROPERTY_ENTRY_U32_ARRAY("linux,gpio-keymap", samus_touchpad_buttons),
|
||||||
|
{ }
|
||||||
|
};
|
||||||
|
|
||||||
static struct mxt_acpi_platform_data samus_platform_data[] = {
|
static struct mxt_acpi_platform_data samus_platform_data[] = {
|
||||||
{
|
{
|
||||||
/* Touchpad */
|
/* Touchpad */
|
||||||
.hid = "ATML0000",
|
.hid = "ATML0000",
|
||||||
.pdata = {
|
.props = samus_touchpad_props,
|
||||||
.t19_num_keys = ARRAY_SIZE(samus_touchpad_buttons),
|
|
||||||
.t19_keymap = samus_touchpad_buttons,
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
/* Touchscreen */
|
/* Touchscreen */
|
||||||
|
@ -3004,14 +3006,16 @@ static unsigned int chromebook_tp_buttons[] = {
|
||||||
BTN_LEFT
|
BTN_LEFT
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static const struct property_entry chromebook_tp_props[] = {
|
||||||
|
PROPERTY_ENTRY_U32_ARRAY("linux,gpio-keymap", chromebook_tp_buttons),
|
||||||
|
{ }
|
||||||
|
};
|
||||||
|
|
||||||
static struct mxt_acpi_platform_data chromebook_platform_data[] = {
|
static struct mxt_acpi_platform_data chromebook_platform_data[] = {
|
||||||
{
|
{
|
||||||
/* Touchpad */
|
/* Touchpad */
|
||||||
.hid = "ATML0000",
|
.hid = "ATML0000",
|
||||||
.pdata = {
|
.props = chromebook_tp_props,
|
||||||
.t19_num_keys = ARRAY_SIZE(chromebook_tp_buttons),
|
|
||||||
.t19_keymap = chromebook_tp_buttons,
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
/* Touchscreen */
|
/* Touchscreen */
|
||||||
|
@ -3041,12 +3045,73 @@ static const struct dmi_system_id mxt_dmi_table[] = {
|
||||||
{ }
|
{ }
|
||||||
};
|
};
|
||||||
|
|
||||||
static const struct mxt_platform_data *mxt_parse_acpi(struct i2c_client *client)
|
static int mxt_prepare_acpi_properties(struct i2c_client *client)
|
||||||
{
|
{
|
||||||
struct acpi_device *adev;
|
struct acpi_device *adev;
|
||||||
const struct dmi_system_id *system_id;
|
const struct dmi_system_id *system_id;
|
||||||
const struct mxt_acpi_platform_data *acpi_pdata;
|
const struct mxt_acpi_platform_data *acpi_pdata;
|
||||||
|
|
||||||
|
adev = ACPI_COMPANION(&client->dev);
|
||||||
|
if (!adev)
|
||||||
|
return -ENOENT;
|
||||||
|
|
||||||
|
system_id = dmi_first_match(mxt_dmi_table);
|
||||||
|
if (!system_id)
|
||||||
|
return -ENOENT;
|
||||||
|
|
||||||
|
acpi_pdata = system_id->driver_data;
|
||||||
|
if (!acpi_pdata)
|
||||||
|
return -ENOENT;
|
||||||
|
|
||||||
|
while (acpi_pdata->hid) {
|
||||||
|
if (!strcmp(acpi_device_hid(adev), acpi_pdata->hid)) {
|
||||||
|
/*
|
||||||
|
* Remove previously installed properties if we
|
||||||
|
* are probing this device not for the very first
|
||||||
|
* time.
|
||||||
|
*/
|
||||||
|
device_remove_properties(&client->dev);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Now install the platform-specific properties
|
||||||
|
* that are missing from ACPI.
|
||||||
|
*/
|
||||||
|
device_add_properties(&client->dev, acpi_pdata->props);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
acpi_pdata++;
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
#else
|
||||||
|
static int mxt_prepare_acpi_properties(struct i2c_client *client)
|
||||||
|
{
|
||||||
|
return -ENOENT;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
static const struct dmi_system_id chromebook_T9_suspend_dmi[] = {
|
||||||
|
{
|
||||||
|
.matches = {
|
||||||
|
DMI_MATCH(DMI_SYS_VENDOR, "GOOGLE"),
|
||||||
|
DMI_MATCH(DMI_PRODUCT_NAME, "Link"),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.matches = {
|
||||||
|
DMI_MATCH(DMI_PRODUCT_NAME, "Peppy"),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{ }
|
||||||
|
};
|
||||||
|
|
||||||
|
static int mxt_probe(struct i2c_client *client, const struct i2c_device_id *id)
|
||||||
|
{
|
||||||
|
struct mxt_data *data;
|
||||||
|
int error;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Ignore ACPI devices representing bootloader mode.
|
* Ignore ACPI devices representing bootloader mode.
|
||||||
*
|
*
|
||||||
|
@ -3057,67 +3122,8 @@ static const struct mxt_platform_data *mxt_parse_acpi(struct i2c_client *client)
|
||||||
* application mode addresses were all above 0x40, so we'll use it
|
* application mode addresses were all above 0x40, so we'll use it
|
||||||
* as a threshold.
|
* as a threshold.
|
||||||
*/
|
*/
|
||||||
if (client->addr < 0x40)
|
if (ACPI_COMPANION(&client->dev) && client->addr < 0x40)
|
||||||
return ERR_PTR(-ENXIO);
|
return -ENXIO;
|
||||||
|
|
||||||
adev = ACPI_COMPANION(&client->dev);
|
|
||||||
if (!adev)
|
|
||||||
return ERR_PTR(-ENOENT);
|
|
||||||
|
|
||||||
system_id = dmi_first_match(mxt_dmi_table);
|
|
||||||
if (!system_id)
|
|
||||||
return ERR_PTR(-ENOENT);
|
|
||||||
|
|
||||||
acpi_pdata = system_id->driver_data;
|
|
||||||
if (!acpi_pdata)
|
|
||||||
return ERR_PTR(-ENOENT);
|
|
||||||
|
|
||||||
while (acpi_pdata->hid) {
|
|
||||||
if (!strcmp(acpi_device_hid(adev), acpi_pdata->hid))
|
|
||||||
return &acpi_pdata->pdata;
|
|
||||||
|
|
||||||
acpi_pdata++;
|
|
||||||
}
|
|
||||||
|
|
||||||
return ERR_PTR(-ENOENT);
|
|
||||||
}
|
|
||||||
#else
|
|
||||||
static const struct mxt_platform_data *mxt_parse_acpi(struct i2c_client *client)
|
|
||||||
{
|
|
||||||
return ERR_PTR(-ENOENT);
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
static const struct mxt_platform_data *
|
|
||||||
mxt_get_platform_data(struct i2c_client *client)
|
|
||||||
{
|
|
||||||
const struct mxt_platform_data *pdata;
|
|
||||||
|
|
||||||
pdata = dev_get_platdata(&client->dev);
|
|
||||||
if (pdata)
|
|
||||||
return pdata;
|
|
||||||
|
|
||||||
pdata = mxt_parse_dt(client);
|
|
||||||
if (!IS_ERR(pdata) || PTR_ERR(pdata) != -ENOENT)
|
|
||||||
return pdata;
|
|
||||||
|
|
||||||
pdata = mxt_parse_acpi(client);
|
|
||||||
if (!IS_ERR(pdata) || PTR_ERR(pdata) != -ENOENT)
|
|
||||||
return pdata;
|
|
||||||
|
|
||||||
dev_err(&client->dev, "No platform data specified\n");
|
|
||||||
return ERR_PTR(-EINVAL);
|
|
||||||
}
|
|
||||||
|
|
||||||
static int mxt_probe(struct i2c_client *client, const struct i2c_device_id *id)
|
|
||||||
{
|
|
||||||
struct mxt_data *data;
|
|
||||||
const struct mxt_platform_data *pdata;
|
|
||||||
int error;
|
|
||||||
|
|
||||||
pdata = mxt_get_platform_data(client);
|
|
||||||
if (IS_ERR(pdata))
|
|
||||||
return PTR_ERR(pdata);
|
|
||||||
|
|
||||||
data = devm_kzalloc(&client->dev, sizeof(struct mxt_data), GFP_KERNEL);
|
data = devm_kzalloc(&client->dev, sizeof(struct mxt_data), GFP_KERNEL);
|
||||||
if (!data)
|
if (!data)
|
||||||
|
@ -3127,7 +3133,6 @@ static int mxt_probe(struct i2c_client *client, const struct i2c_device_id *id)
|
||||||
client->adapter->nr, client->addr);
|
client->adapter->nr, client->addr);
|
||||||
|
|
||||||
data->client = client;
|
data->client = client;
|
||||||
data->pdata = pdata;
|
|
||||||
data->irq = client->irq;
|
data->irq = client->irq;
|
||||||
i2c_set_clientdata(client, data);
|
i2c_set_clientdata(client, data);
|
||||||
|
|
||||||
|
@ -3135,6 +3140,17 @@ static int mxt_probe(struct i2c_client *client, const struct i2c_device_id *id)
|
||||||
init_completion(&data->reset_completion);
|
init_completion(&data->reset_completion);
|
||||||
init_completion(&data->crc_completion);
|
init_completion(&data->crc_completion);
|
||||||
|
|
||||||
|
data->suspend_mode = dmi_check_system(chromebook_T9_suspend_dmi) ?
|
||||||
|
MXT_SUSPEND_T9_CTRL : MXT_SUSPEND_DEEP_SLEEP;
|
||||||
|
|
||||||
|
error = mxt_prepare_acpi_properties(client);
|
||||||
|
if (error && error != -ENOENT)
|
||||||
|
return error;
|
||||||
|
|
||||||
|
error = mxt_parse_device_properties(data);
|
||||||
|
if (error)
|
||||||
|
return error;
|
||||||
|
|
||||||
data->reset_gpio = devm_gpiod_get_optional(&client->dev,
|
data->reset_gpio = devm_gpiod_get_optional(&client->dev,
|
||||||
"reset", GPIOD_OUT_LOW);
|
"reset", GPIOD_OUT_LOW);
|
||||||
if (IS_ERR(data->reset_gpio)) {
|
if (IS_ERR(data->reset_gpio)) {
|
||||||
|
@ -3144,8 +3160,7 @@ static int mxt_probe(struct i2c_client *client, const struct i2c_device_id *id)
|
||||||
}
|
}
|
||||||
|
|
||||||
error = devm_request_threaded_irq(&client->dev, client->irq,
|
error = devm_request_threaded_irq(&client->dev, client->irq,
|
||||||
NULL, mxt_interrupt,
|
NULL, mxt_interrupt, IRQF_ONESHOT,
|
||||||
pdata->irqflags | IRQF_ONESHOT,
|
|
||||||
client->name, data);
|
client->name, data);
|
||||||
if (error) {
|
if (error) {
|
||||||
dev_err(&client->dev, "Failed to register interrupt\n");
|
dev_err(&client->dev, "Failed to register interrupt\n");
|
||||||
|
@ -3265,7 +3280,7 @@ MODULE_DEVICE_TABLE(i2c, mxt_id);
|
||||||
static struct i2c_driver mxt_driver = {
|
static struct i2c_driver mxt_driver = {
|
||||||
.driver = {
|
.driver = {
|
||||||
.name = "atmel_mxt_ts",
|
.name = "atmel_mxt_ts",
|
||||||
.of_match_table = of_match_ptr(mxt_of_match),
|
.of_match_table = mxt_of_match,
|
||||||
.acpi_match_table = ACPI_PTR(mxt_acpi_id),
|
.acpi_match_table = ACPI_PTR(mxt_acpi_id),
|
||||||
.pm = &mxt_pm_ops,
|
.pm = &mxt_pm_ops,
|
||||||
},
|
},
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1,31 +0,0 @@
|
||||||
/*
|
|
||||||
* Atmel maXTouch Touchscreen driver
|
|
||||||
*
|
|
||||||
* Copyright (C) 2010 Samsung Electronics Co.Ltd
|
|
||||||
* Author: Joonyoung Shim <jy0922.shim@samsung.com>
|
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or modify it
|
|
||||||
* under the terms of the GNU General Public License as published by the
|
|
||||||
* Free Software Foundation; either version 2 of the License, or (at your
|
|
||||||
* option) any later version.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef __LINUX_PLATFORM_DATA_ATMEL_MXT_TS_H
|
|
||||||
#define __LINUX_PLATFORM_DATA_ATMEL_MXT_TS_H
|
|
||||||
|
|
||||||
#include <linux/types.h>
|
|
||||||
|
|
||||||
enum mxt_suspend_mode {
|
|
||||||
MXT_SUSPEND_DEEP_SLEEP = 0,
|
|
||||||
MXT_SUSPEND_T9_CTRL = 1,
|
|
||||||
};
|
|
||||||
|
|
||||||
/* The platform data for the Atmel maXTouch touchscreen driver */
|
|
||||||
struct mxt_platform_data {
|
|
||||||
unsigned long irqflags;
|
|
||||||
u8 t19_num_keys;
|
|
||||||
const unsigned int *t19_keymap;
|
|
||||||
enum mxt_suspend_mode suspend_mode;
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif /* __LINUX_PLATFORM_DATA_ATMEL_MXT_TS_H */
|
|
Loading…
Reference in New Issue