blob: 6a1b2ca5b6fe985cb234750a021c3a7deec6db08 [file] [log] [blame]
Hans de Goede1cd706d2017-04-06 09:24:36 +02001/*
2 * Intel Cherry Trail ACPI INT33FE pseudo device driver
3 *
4 * Copyright (C) 2017 Hans de Goede <hdegoede@redhat.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
10 * Some Intel Cherry Trail based device which ship with Windows 10, have
11 * this weird INT33FE ACPI device with a CRS table with 4 I2cSerialBusV2
12 * resources, for 4 different chips attached to various i2c busses:
13 * 1. The Whiskey Cove pmic, which is also described by the INT34D3 ACPI device
14 * 2. Maxim MAX17047 Fuel Gauge Controller
15 * 3. FUSB302 USB Type-C Controller
16 * 4. PI3USB30532 USB switch
17 *
18 * So this driver is a stub / pseudo driver whose only purpose is to
19 * instantiate i2c-clients for chips 2 - 4, so that standard i2c drivers
20 * for these chips can bind to the them.
21 */
22
23#include <linux/acpi.h>
24#include <linux/i2c.h>
25#include <linux/interrupt.h>
26#include <linux/module.h>
27#include <linux/slab.h>
28
29#define EXPECTED_PTYPE 4
30
31struct cht_int33fe_data {
32 struct i2c_client *max17047;
33 struct i2c_client *fusb302;
34 struct i2c_client *pi3usb30532;
35};
36
37static int cht_int33fe_probe(struct i2c_client *client)
38{
39 struct device *dev = &client->dev;
40 struct i2c_board_info board_info;
41 struct cht_int33fe_data *data;
42 unsigned long long ptyp;
43 acpi_status status;
44 int fusb302_irq;
45
46 status = acpi_evaluate_integer(ACPI_HANDLE(dev), "PTYP", NULL, &ptyp);
47 if (ACPI_FAILURE(status)) {
48 dev_err(dev, "Error getting PTYPE\n");
49 return -ENODEV;
50 }
51
52 /*
53 * The same ACPI HID is used for different configurations check PTYP
54 * to ensure that we are dealing with the expected config.
55 */
56 if (ptyp != EXPECTED_PTYPE)
57 return -ENODEV;
58
59 /* The FUSB302 uses the irq at index 1 and is the only irq user */
60 fusb302_irq = acpi_dev_gpio_irq_get(ACPI_COMPANION(dev), 1);
61 if (fusb302_irq < 0) {
62 if (fusb302_irq != -EPROBE_DEFER)
63 dev_err(dev, "Error getting FUSB302 irq\n");
64 return fusb302_irq;
65 }
66
67 data = devm_kzalloc(dev, sizeof(*data), GFP_KERNEL);
68 if (!data)
69 return -ENOMEM;
70
71 memset(&board_info, 0, sizeof(board_info));
72 strlcpy(board_info.type, "max17047", I2C_NAME_SIZE);
73
74 data->max17047 = i2c_acpi_new_device(dev, 1, &board_info);
75 if (!data->max17047)
76 return -EPROBE_DEFER; /* Wait for the i2c-adapter to load */
77
78 memset(&board_info, 0, sizeof(board_info));
79 strlcpy(board_info.type, "fusb302", I2C_NAME_SIZE);
80 board_info.irq = fusb302_irq;
81
82 data->fusb302 = i2c_acpi_new_device(dev, 2, &board_info);
83 if (!data->fusb302)
84 goto out_unregister_max17047;
85
86 memset(&board_info, 0, sizeof(board_info));
87 strlcpy(board_info.type, "pi3usb30532", I2C_NAME_SIZE);
88
89 data->pi3usb30532 = i2c_acpi_new_device(dev, 3, &board_info);
90 if (!data->pi3usb30532)
91 goto out_unregister_fusb302;
92
93 i2c_set_clientdata(client, data);
94
95 return 0;
96
97out_unregister_fusb302:
98 i2c_unregister_device(data->fusb302);
99
100out_unregister_max17047:
101 i2c_unregister_device(data->max17047);
102
103 return -EPROBE_DEFER; /* Wait for the i2c-adapter to load */
104}
105
106static int cht_int33fe_remove(struct i2c_client *i2c)
107{
108 struct cht_int33fe_data *data = i2c_get_clientdata(i2c);
109
110 i2c_unregister_device(data->pi3usb30532);
111 i2c_unregister_device(data->fusb302);
112 i2c_unregister_device(data->max17047);
113
114 return 0;
115}
116
117static const struct i2c_device_id cht_int33fe_i2c_id[] = {
118 { }
119};
120MODULE_DEVICE_TABLE(i2c, cht_int33fe_i2c_id);
121
122static const struct acpi_device_id cht_int33fe_acpi_ids[] = {
123 { "INT33FE", },
124 { }
125};
126MODULE_DEVICE_TABLE(acpi, cht_int33fe_acpi_ids);
127
128static struct i2c_driver cht_int33fe_driver = {
129 .driver = {
130 .name = "Intel Cherry Trail ACPI INT33FE driver",
131 .acpi_match_table = ACPI_PTR(cht_int33fe_acpi_ids),
132 },
133 .probe_new = cht_int33fe_probe,
134 .remove = cht_int33fe_remove,
135 .id_table = cht_int33fe_i2c_id,
136 .disable_i2c_core_irq_mapping = true,
137};
138
139module_i2c_driver(cht_int33fe_driver);
140
141MODULE_DESCRIPTION("Intel Cherry Trail ACPI INT33FE pseudo device driver");
142MODULE_AUTHOR("Hans de Goede <hdegoede@redhat.com>");
143MODULE_LICENSE("GPL");