blob: e8a44a9bc916d9ff5a335bf74c9b0e979b26a90c [file] [log] [blame]
Benson Leungd1381f42012-10-25 14:21:21 -07001/*
2 * chromeos_laptop.c - Driver to instantiate Chromebook i2c/smbus devices.
3 *
4 * Author : Benson Leung <bleung@chromium.org>
5 *
6 * Copyright (C) 2012 Google, Inc.
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 *
22 */
23
24#include <linux/dmi.h>
25#include <linux/i2c.h>
Nick Dyer7f3884f72015-08-04 16:36:29 -070026#include <linux/platform_data/atmel_mxt_ts.h>
Benson Leung2ef39202013-03-07 19:43:34 -080027#include <linux/input.h>
28#include <linux/interrupt.h>
Benson Leungd1381f42012-10-25 14:21:21 -070029#include <linux/module.h>
Benson Leung9ad36922013-10-20 20:58:25 -070030#include <linux/platform_device.h>
Benson Leungd1381f42012-10-25 14:21:21 -070031
Benson Leung8e1ad4c2013-02-21 12:14:59 -080032#define ATMEL_TP_I2C_ADDR 0x4b
33#define ATMEL_TP_I2C_BL_ADDR 0x25
Yufeng Shen33a84f82013-02-21 12:15:00 -080034#define ATMEL_TS_I2C_ADDR 0x4a
35#define ATMEL_TS_I2C_BL_ADDR 0x26
Benson Leungd1381f42012-10-25 14:21:21 -070036#define CYAPA_TP_I2C_ADDR 0x67
Benson Leung9bd9a902016-05-02 08:57:16 +080037#define ELAN_TP_I2C_ADDR 0x15
Benson Leungd1381f42012-10-25 14:21:21 -070038#define ISL_ALS_I2C_ADDR 0x44
Benson Leungaabf3f42013-02-01 14:34:45 -080039#define TAOS_ALS_I2C_ADDR 0x29
Benson Leungd1381f42012-10-25 14:21:21 -070040
Benson Leung55024862014-07-15 17:43:11 -070041#define MAX_I2C_DEVICE_DEFERRALS 5
42
Benson Leungd1381f42012-10-25 14:21:21 -070043static struct i2c_client *als;
44static struct i2c_client *tp;
Yufeng Shen33a84f82013-02-21 12:15:00 -080045static struct i2c_client *ts;
Benson Leungd1381f42012-10-25 14:21:21 -070046
Olof Johansson6d3c1af2013-11-25 13:10:25 -080047static const char *i2c_adapter_names[] = {
Benson Leungd1381f42012-10-25 14:21:21 -070048 "SMBus I801 adapter",
Benson Leung741bf0c2013-02-21 12:14:55 -080049 "i915 gmbus vga",
50 "i915 gmbus panel",
Jarkko Nikulaebaf31c2015-11-03 13:09:00 +020051 "Synopsys DesignWare I2C adapter",
52 "Synopsys DesignWare I2C adapter",
Benson Leungd1381f42012-10-25 14:21:21 -070053};
54
55/* Keep this enum consistent with i2c_adapter_names */
56enum i2c_adapter_type {
57 I2C_ADAPTER_SMBUS = 0,
Benson Leung741bf0c2013-02-21 12:14:55 -080058 I2C_ADAPTER_VGADDC,
59 I2C_ADAPTER_PANEL,
Mika Westerbergda3b0ab2014-06-17 14:02:00 -070060 I2C_ADAPTER_DESIGNWARE_0,
61 I2C_ADAPTER_DESIGNWARE_1,
Benson Leungd1381f42012-10-25 14:21:21 -070062};
63
Benson Leung55024862014-07-15 17:43:11 -070064enum i2c_peripheral_state {
65 UNPROBED = 0,
66 PROBED,
67 TIMEDOUT,
Benson Leungd1381f42012-10-25 14:21:21 -070068};
69
Aaron Durbinec199dd2013-10-20 20:58:24 -070070struct i2c_peripheral {
Benson Leung9ad36922013-10-20 20:58:25 -070071 int (*add)(enum i2c_adapter_type type);
Aaron Durbinec199dd2013-10-20 20:58:24 -070072 enum i2c_adapter_type type;
Benson Leung55024862014-07-15 17:43:11 -070073 enum i2c_peripheral_state state;
74 int tries;
Aaron Durbinec199dd2013-10-20 20:58:24 -070075};
76
Benson Leung9bd9a902016-05-02 08:57:16 +080077#define MAX_I2C_PERIPHERALS 4
Aaron Durbinec199dd2013-10-20 20:58:24 -070078
79struct chromeos_laptop {
80 struct i2c_peripheral i2c_peripherals[MAX_I2C_PERIPHERALS];
81};
82
Benson Leung9ad36922013-10-20 20:58:25 -070083static struct chromeos_laptop *cros_laptop;
84
85static struct i2c_board_info cyapa_device = {
Benson Leungd1381f42012-10-25 14:21:21 -070086 I2C_BOARD_INFO("cyapa", CYAPA_TP_I2C_ADDR),
87 .flags = I2C_CLIENT_WAKE,
88};
89
Benson Leung9bd9a902016-05-02 08:57:16 +080090static struct i2c_board_info elantech_device = {
91 I2C_BOARD_INFO("elan_i2c", ELAN_TP_I2C_ADDR),
92 .flags = I2C_CLIENT_WAKE,
93};
94
Benson Leung9ad36922013-10-20 20:58:25 -070095static struct i2c_board_info isl_als_device = {
Benson Leungd1381f42012-10-25 14:21:21 -070096 I2C_BOARD_INFO("isl29018", ISL_ALS_I2C_ADDR),
97};
98
Benson Leung9ad36922013-10-20 20:58:25 -070099static struct i2c_board_info tsl2583_als_device = {
Benson Leung8016bcb2013-02-01 14:34:46 -0800100 I2C_BOARD_INFO("tsl2583", TAOS_ALS_I2C_ADDR),
101};
102
Benson Leung9ad36922013-10-20 20:58:25 -0700103static struct i2c_board_info tsl2563_als_device = {
Benson Leungaabf3f42013-02-01 14:34:45 -0800104 I2C_BOARD_INFO("tsl2563", TAOS_ALS_I2C_ADDR),
105};
106
Nick Dyerfb5e4c3e2014-05-18 23:00:15 -0700107static int mxt_t19_keys[] = {
108 KEY_RESERVED,
109 KEY_RESERVED,
110 KEY_RESERVED,
111 KEY_RESERVED,
112 KEY_RESERVED,
113 BTN_LEFT
114};
115
Benson Leung2ef39202013-03-07 19:43:34 -0800116static struct mxt_platform_data atmel_224s_tp_platform_data = {
Benson Leung2ef39202013-03-07 19:43:34 -0800117 .irqflags = IRQF_TRIGGER_FALLING,
Nick Dyerfb5e4c3e2014-05-18 23:00:15 -0700118 .t19_num_keys = ARRAY_SIZE(mxt_t19_keys),
119 .t19_keymap = mxt_t19_keys,
Nick Dyer7f3884f72015-08-04 16:36:29 -0700120 .suspend_mode = MXT_SUSPEND_T9_CTRL,
Benson Leung2ef39202013-03-07 19:43:34 -0800121};
122
Benson Leung9ad36922013-10-20 20:58:25 -0700123static struct i2c_board_info atmel_224s_tp_device = {
Benson Leung8e1ad4c2013-02-21 12:14:59 -0800124 I2C_BOARD_INFO("atmel_mxt_tp", ATMEL_TP_I2C_ADDR),
Benson Leung2ef39202013-03-07 19:43:34 -0800125 .platform_data = &atmel_224s_tp_platform_data,
Benson Leung8e1ad4c2013-02-21 12:14:59 -0800126 .flags = I2C_CLIENT_WAKE,
127};
128
Benson Leung2ef39202013-03-07 19:43:34 -0800129static struct mxt_platform_data atmel_1664s_platform_data = {
Benson Leung2ef39202013-03-07 19:43:34 -0800130 .irqflags = IRQF_TRIGGER_FALLING,
Nick Dyer7f3884f72015-08-04 16:36:29 -0700131 .suspend_mode = MXT_SUSPEND_T9_CTRL,
Benson Leung2ef39202013-03-07 19:43:34 -0800132};
133
Benson Leung9ad36922013-10-20 20:58:25 -0700134static struct i2c_board_info atmel_1664s_device = {
Yufeng Shen33a84f82013-02-21 12:15:00 -0800135 I2C_BOARD_INFO("atmel_mxt_ts", ATMEL_TS_I2C_ADDR),
Benson Leung2ef39202013-03-07 19:43:34 -0800136 .platform_data = &atmel_1664s_platform_data,
Yufeng Shen33a84f82013-02-21 12:15:00 -0800137 .flags = I2C_CLIENT_WAKE,
138};
139
Benson Leung9ad36922013-10-20 20:58:25 -0700140static struct i2c_client *__add_probed_i2c_device(
Benson Leungd1381f42012-10-25 14:21:21 -0700141 const char *name,
142 int bus,
143 struct i2c_board_info *info,
Dmitry Torokhov96cba9b2015-04-14 13:50:09 -0700144 const unsigned short *alt_addr_list)
Benson Leungd1381f42012-10-25 14:21:21 -0700145{
146 const struct dmi_device *dmi_dev;
147 const struct dmi_dev_onboard *dev_data;
148 struct i2c_adapter *adapter;
Dmitry Torokhov96cba9b2015-04-14 13:50:09 -0700149 struct i2c_client *client = NULL;
150 const unsigned short addr_list[] = { info->addr, I2C_CLIENT_END };
Benson Leungd1381f42012-10-25 14:21:21 -0700151
152 if (bus < 0)
153 return NULL;
154 /*
155 * If a name is specified, look for irq platform information stashed
156 * in DMI_DEV_TYPE_DEV_ONBOARD by the Chrome OS custom system firmware.
157 */
158 if (name) {
159 dmi_dev = dmi_find_device(DMI_DEV_TYPE_DEV_ONBOARD, name, NULL);
160 if (!dmi_dev) {
161 pr_err("%s failed to dmi find device %s.\n",
162 __func__,
163 name);
164 return NULL;
165 }
166 dev_data = (struct dmi_dev_onboard *)dmi_dev->device_data;
167 if (!dev_data) {
168 pr_err("%s failed to get data from dmi for %s.\n",
169 __func__, name);
170 return NULL;
171 }
172 info->irq = dev_data->instance;
173 }
174
175 adapter = i2c_get_adapter(bus);
176 if (!adapter) {
177 pr_err("%s failed to get i2c adapter %d.\n", __func__, bus);
178 return NULL;
179 }
180
Dmitry Torokhov96cba9b2015-04-14 13:50:09 -0700181 /*
182 * Add the i2c device. If we can't detect it at the primary
183 * address we scan secondary addresses. In any case the client
184 * structure gets assigned primary address.
185 */
186 client = i2c_new_probed_device(adapter, info, addr_list, NULL);
187 if (!client && alt_addr_list) {
188 struct i2c_board_info dummy_info = {
189 I2C_BOARD_INFO("dummy", info->addr),
190 };
191 struct i2c_client *dummy;
192
193 dummy = i2c_new_probed_device(adapter, &dummy_info,
194 alt_addr_list, NULL);
195 if (dummy) {
196 pr_debug("%s %d-%02x is probed at %02x\n",
197 __func__, bus, info->addr, dummy->addr);
198 i2c_unregister_device(dummy);
199 client = i2c_new_device(adapter, info);
200 }
201 }
202
Benson Leungd1381f42012-10-25 14:21:21 -0700203 if (!client)
Benson Leung55024862014-07-15 17:43:11 -0700204 pr_notice("%s failed to register device %d-%02x\n",
205 __func__, bus, info->addr);
Benson Leungd1381f42012-10-25 14:21:21 -0700206 else
207 pr_debug("%s added i2c device %d-%02x\n",
208 __func__, bus, info->addr);
209
210 i2c_put_adapter(adapter);
211 return client;
212}
213
Mika Westerbergda3b0ab2014-06-17 14:02:00 -0700214struct i2c_lookup {
215 const char *name;
216 int instance;
217 int n;
218};
219
Benson Leung9ad36922013-10-20 20:58:25 -0700220static int __find_i2c_adap(struct device *dev, void *data)
Benson Leungd1381f42012-10-25 14:21:21 -0700221{
Mika Westerbergda3b0ab2014-06-17 14:02:00 -0700222 struct i2c_lookup *lookup = data;
Benson Leungd1381f42012-10-25 14:21:21 -0700223 static const char *prefix = "i2c-";
224 struct i2c_adapter *adapter;
Robin Schroer49c68a22014-05-29 20:45:07 +0200225
Benson Leungd1381f42012-10-25 14:21:21 -0700226 if (strncmp(dev_name(dev), prefix, strlen(prefix)) != 0)
227 return 0;
228 adapter = to_i2c_adapter(dev);
Mika Westerbergda3b0ab2014-06-17 14:02:00 -0700229 if (strncmp(adapter->name, lookup->name, strlen(lookup->name)) == 0 &&
230 lookup->n++ == lookup->instance)
231 return 1;
232 return 0;
Benson Leungd1381f42012-10-25 14:21:21 -0700233}
234
Benson Leung9ad36922013-10-20 20:58:25 -0700235static int find_i2c_adapter_num(enum i2c_adapter_type type)
Benson Leungd1381f42012-10-25 14:21:21 -0700236{
237 struct device *dev = NULL;
238 struct i2c_adapter *adapter;
Mika Westerbergda3b0ab2014-06-17 14:02:00 -0700239 struct i2c_lookup lookup;
240
241 memset(&lookup, 0, sizeof(lookup));
242 lookup.name = i2c_adapter_names[type];
243 lookup.instance = (type == I2C_ADAPTER_DESIGNWARE_1) ? 1 : 0;
244
Benson Leungd1381f42012-10-25 14:21:21 -0700245 /* find the adapter by name */
Mika Westerbergda3b0ab2014-06-17 14:02:00 -0700246 dev = bus_find_device(&i2c_bus_type, NULL, &lookup, __find_i2c_adap);
Benson Leungd1381f42012-10-25 14:21:21 -0700247 if (!dev) {
Benson Leung9ad36922013-10-20 20:58:25 -0700248 /* Adapters may appear later. Deferred probing will retry */
249 pr_notice("%s: i2c adapter %s not found on system.\n", __func__,
Mika Westerbergda3b0ab2014-06-17 14:02:00 -0700250 lookup.name);
Benson Leungd1381f42012-10-25 14:21:21 -0700251 return -ENODEV;
252 }
253 adapter = to_i2c_adapter(dev);
254 return adapter->nr;
255}
256
257/*
Benson Leungbcaf0892013-02-21 12:14:58 -0800258 * Takes a list of addresses in addrs as such :
259 * { addr1, ... , addrn, I2C_CLIENT_END };
260 * add_probed_i2c_device will use i2c_new_probed_device
261 * and probe for devices at all of the addresses listed.
262 * Returns NULL if no devices found.
263 * See Documentation/i2c/instantiating-devices for more information.
264 */
Benson Leung9ad36922013-10-20 20:58:25 -0700265static struct i2c_client *add_probed_i2c_device(
Benson Leungbcaf0892013-02-21 12:14:58 -0800266 const char *name,
267 enum i2c_adapter_type type,
268 struct i2c_board_info *info,
269 const unsigned short *addrs)
270{
271 return __add_probed_i2c_device(name,
272 find_i2c_adapter_num(type),
273 info,
274 addrs);
275}
276
277/*
Benson Leungd1381f42012-10-25 14:21:21 -0700278 * Probes for a device at a single address, the one provided by
279 * info->addr.
280 * Returns NULL if no device found.
281 */
Benson Leung9ad36922013-10-20 20:58:25 -0700282static struct i2c_client *add_i2c_device(const char *name,
Benson Leunge7b28842013-02-21 12:14:56 -0800283 enum i2c_adapter_type type,
284 struct i2c_board_info *info)
Benson Leungd1381f42012-10-25 14:21:21 -0700285{
Benson Leungd1381f42012-10-25 14:21:21 -0700286 return __add_probed_i2c_device(name,
Benson Leunge7b28842013-02-21 12:14:56 -0800287 find_i2c_adapter_num(type),
Benson Leungd1381f42012-10-25 14:21:21 -0700288 info,
Dmitry Torokhov96cba9b2015-04-14 13:50:09 -0700289 NULL);
Benson Leungd1381f42012-10-25 14:21:21 -0700290}
291
Benson Leung9ad36922013-10-20 20:58:25 -0700292static int setup_cyapa_tp(enum i2c_adapter_type type)
Benson Leunge7b28842013-02-21 12:14:56 -0800293{
Benson Leung9ad36922013-10-20 20:58:25 -0700294 if (tp)
295 return 0;
296
Aaron Durbinec199dd2013-10-20 20:58:24 -0700297 /* add cyapa touchpad */
298 tp = add_i2c_device("trackpad", type, &cyapa_device);
Benson Leung9ad36922013-10-20 20:58:25 -0700299 return (!tp) ? -EAGAIN : 0;
Benson Leungd1381f42012-10-25 14:21:21 -0700300}
301
Benson Leung9ad36922013-10-20 20:58:25 -0700302static int setup_atmel_224s_tp(enum i2c_adapter_type type)
Benson Leung8e1ad4c2013-02-21 12:14:59 -0800303{
304 const unsigned short addr_list[] = { ATMEL_TP_I2C_BL_ADDR,
Benson Leung8e1ad4c2013-02-21 12:14:59 -0800305 I2C_CLIENT_END };
Benson Leung9ad36922013-10-20 20:58:25 -0700306 if (tp)
307 return 0;
Benson Leung8e1ad4c2013-02-21 12:14:59 -0800308
Aaron Durbinec199dd2013-10-20 20:58:24 -0700309 /* add atmel mxt touchpad */
310 tp = add_probed_i2c_device("trackpad", type,
Benson Leung8e1ad4c2013-02-21 12:14:59 -0800311 &atmel_224s_tp_device, addr_list);
Benson Leung9ad36922013-10-20 20:58:25 -0700312 return (!tp) ? -EAGAIN : 0;
Benson Leung8e1ad4c2013-02-21 12:14:59 -0800313}
314
Benson Leung9bd9a902016-05-02 08:57:16 +0800315static int setup_elantech_tp(enum i2c_adapter_type type)
316{
317 if (tp)
318 return 0;
319
320 /* add elantech touchpad */
321 tp = add_i2c_device("trackpad", type, &elantech_device);
322 return (!tp) ? -EAGAIN : 0;
323}
324
Benson Leung9ad36922013-10-20 20:58:25 -0700325static int setup_atmel_1664s_ts(enum i2c_adapter_type type)
Yufeng Shen33a84f82013-02-21 12:15:00 -0800326{
327 const unsigned short addr_list[] = { ATMEL_TS_I2C_BL_ADDR,
Yufeng Shen33a84f82013-02-21 12:15:00 -0800328 I2C_CLIENT_END };
Benson Leung9ad36922013-10-20 20:58:25 -0700329 if (ts)
330 return 0;
Yufeng Shen33a84f82013-02-21 12:15:00 -0800331
Aaron Durbinec199dd2013-10-20 20:58:24 -0700332 /* add atmel mxt touch device */
333 ts = add_probed_i2c_device("touchscreen", type,
Yufeng Shen33a84f82013-02-21 12:15:00 -0800334 &atmel_1664s_device, addr_list);
Benson Leung9ad36922013-10-20 20:58:25 -0700335 return (!ts) ? -EAGAIN : 0;
Yufeng Shen33a84f82013-02-21 12:15:00 -0800336}
337
Benson Leung9ad36922013-10-20 20:58:25 -0700338static int setup_isl29018_als(enum i2c_adapter_type type)
Benson Leungd1381f42012-10-25 14:21:21 -0700339{
Benson Leung9ad36922013-10-20 20:58:25 -0700340 if (als)
341 return 0;
342
Benson Leungd1381f42012-10-25 14:21:21 -0700343 /* add isl29018 light sensor */
Aaron Durbinec199dd2013-10-20 20:58:24 -0700344 als = add_i2c_device("lightsensor", type, &isl_als_device);
Benson Leung9ad36922013-10-20 20:58:25 -0700345 return (!als) ? -EAGAIN : 0;
Benson Leungd1381f42012-10-25 14:21:21 -0700346}
347
Benson Leung9ad36922013-10-20 20:58:25 -0700348static int setup_tsl2583_als(enum i2c_adapter_type type)
Benson Leungcc5c3982013-02-21 12:14:57 -0800349{
Benson Leung9ad36922013-10-20 20:58:25 -0700350 if (als)
351 return 0;
352
Aaron Durbinec199dd2013-10-20 20:58:24 -0700353 /* add tsl2583 light sensor */
354 als = add_i2c_device(NULL, type, &tsl2583_als_device);
Benson Leung9ad36922013-10-20 20:58:25 -0700355 return (!als) ? -EAGAIN : 0;
Benson Leungcc5c3982013-02-21 12:14:57 -0800356}
357
Benson Leung9ad36922013-10-20 20:58:25 -0700358static int setup_tsl2563_als(enum i2c_adapter_type type)
Benson Leung8016bcb2013-02-01 14:34:46 -0800359{
Benson Leung9ad36922013-10-20 20:58:25 -0700360 if (als)
361 return 0;
362
Aaron Durbinec199dd2013-10-20 20:58:24 -0700363 /* add tsl2563 light sensor */
364 als = add_i2c_device(NULL, type, &tsl2563_als_device);
Benson Leung9ad36922013-10-20 20:58:25 -0700365 return (!als) ? -EAGAIN : 0;
Benson Leung8016bcb2013-02-01 14:34:46 -0800366}
367
Benson Leung9ad36922013-10-20 20:58:25 -0700368static int __init chromeos_laptop_dmi_matched(const struct dmi_system_id *id)
369{
370 cros_laptop = (void *)id->driver_data;
371 pr_debug("DMI Matched %s.\n", id->ident);
372
373 /* Indicate to dmi_scan that processing is done. */
374 return 1;
375}
376
377static int chromeos_laptop_probe(struct platform_device *pdev)
Benson Leungaabf3f42013-02-01 14:34:45 -0800378{
Aaron Durbinec199dd2013-10-20 20:58:24 -0700379 int i;
Benson Leung9ad36922013-10-20 20:58:25 -0700380 int ret = 0;
Aaron Durbinec199dd2013-10-20 20:58:24 -0700381
382 for (i = 0; i < MAX_I2C_PERIPHERALS; i++) {
383 struct i2c_peripheral *i2c_dev;
384
385 i2c_dev = &cros_laptop->i2c_peripherals[i];
386
387 /* No more peripherals. */
388 if (i2c_dev->add == NULL)
389 break;
390
Benson Leung55024862014-07-15 17:43:11 -0700391 if (i2c_dev->state == TIMEDOUT || i2c_dev->state == PROBED)
392 continue;
393
394 /*
395 * Check that the i2c adapter is present.
396 * -EPROBE_DEFER if missing as the adapter may appear much
397 * later.
398 */
399 if (find_i2c_adapter_num(i2c_dev->type) == -ENODEV) {
Benson Leung9ad36922013-10-20 20:58:25 -0700400 ret = -EPROBE_DEFER;
Benson Leung55024862014-07-15 17:43:11 -0700401 continue;
402 }
403
404 /* Add the device. */
405 if (i2c_dev->add(i2c_dev->type) == -EAGAIN) {
406 /*
407 * Set -EPROBE_DEFER a limited num of times
408 * if device is not successfully added.
409 */
410 if (++i2c_dev->tries < MAX_I2C_DEVICE_DEFERRALS) {
411 ret = -EPROBE_DEFER;
412 } else {
413 /* Ran out of tries. */
414 pr_notice("%s: Ran out of tries for device.\n",
415 __func__);
416 i2c_dev->state = TIMEDOUT;
417 }
418 } else {
419 i2c_dev->state = PROBED;
420 }
Aaron Durbinec199dd2013-10-20 20:58:24 -0700421 }
422
Benson Leung9ad36922013-10-20 20:58:25 -0700423 return ret;
Benson Leungaabf3f42013-02-01 14:34:45 -0800424}
425
Benson Leung9ad36922013-10-20 20:58:25 -0700426static struct chromeos_laptop samsung_series_5_550 = {
Aaron Durbinec199dd2013-10-20 20:58:24 -0700427 .i2c_peripherals = {
428 /* Touchpad. */
429 { .add = setup_cyapa_tp, I2C_ADAPTER_SMBUS },
430 /* Light Sensor. */
431 { .add = setup_isl29018_als, I2C_ADAPTER_SMBUS },
432 },
433};
434
Benson Leung9ad36922013-10-20 20:58:25 -0700435static struct chromeos_laptop samsung_series_5 = {
Aaron Durbinec199dd2013-10-20 20:58:24 -0700436 .i2c_peripherals = {
437 /* Light Sensor. */
438 { .add = setup_tsl2583_als, I2C_ADAPTER_SMBUS },
439 },
440};
441
Benson Leung9ad36922013-10-20 20:58:25 -0700442static struct chromeos_laptop chromebook_pixel = {
Aaron Durbinec199dd2013-10-20 20:58:24 -0700443 .i2c_peripherals = {
444 /* Touch Screen. */
445 { .add = setup_atmel_1664s_ts, I2C_ADAPTER_PANEL },
446 /* Touchpad. */
447 { .add = setup_atmel_224s_tp, I2C_ADAPTER_VGADDC },
448 /* Light Sensor. */
449 { .add = setup_isl29018_als, I2C_ADAPTER_PANEL },
450 },
451};
452
Benson Leung5ea95672014-06-17 14:02:01 -0700453static struct chromeos_laptop hp_chromebook_14 = {
454 .i2c_peripherals = {
455 /* Touchpad. */
456 { .add = setup_cyapa_tp, I2C_ADAPTER_DESIGNWARE_0 },
457 },
458};
459
Mohammed Habibulla0e1e5e52014-06-17 14:02:02 -0700460static struct chromeos_laptop dell_chromebook_11 = {
461 .i2c_peripherals = {
462 /* Touchpad. */
463 { .add = setup_cyapa_tp, I2C_ADAPTER_DESIGNWARE_0 },
Charlie Mooney9e96aa72016-05-02 08:57:17 +0800464 /* Elan Touchpad option. */
465 { .add = setup_elantech_tp, I2C_ADAPTER_DESIGNWARE_0 },
Mohammed Habibulla0e1e5e52014-06-17 14:02:02 -0700466 },
467};
468
Gene Chen963cb6f2014-06-17 14:02:03 -0700469static struct chromeos_laptop toshiba_cb35 = {
470 .i2c_peripherals = {
471 /* Touchpad. */
472 { .add = setup_cyapa_tp, I2C_ADAPTER_DESIGNWARE_0 },
473 },
474};
475
Benson Leung9ad36922013-10-20 20:58:25 -0700476static struct chromeos_laptop acer_c7_chromebook = {
Aaron Durbinec199dd2013-10-20 20:58:24 -0700477 .i2c_peripherals = {
478 /* Touchpad. */
479 { .add = setup_cyapa_tp, I2C_ADAPTER_SMBUS },
480 },
481};
482
Benson Leung9ad36922013-10-20 20:58:25 -0700483static struct chromeos_laptop acer_ac700 = {
Aaron Durbinec199dd2013-10-20 20:58:24 -0700484 .i2c_peripherals = {
485 /* Light Sensor. */
486 { .add = setup_tsl2563_als, I2C_ADAPTER_SMBUS },
487 },
488};
489
Mika Westerbergda3b0ab2014-06-17 14:02:00 -0700490static struct chromeos_laptop acer_c720 = {
491 .i2c_peripherals = {
Michael Mullinb90b3c42014-07-15 20:00:54 -0400492 /* Touchscreen. */
493 { .add = setup_atmel_1664s_ts, I2C_ADAPTER_DESIGNWARE_1 },
Mika Westerbergda3b0ab2014-06-17 14:02:00 -0700494 /* Touchpad. */
495 { .add = setup_cyapa_tp, I2C_ADAPTER_DESIGNWARE_0 },
Benson Leung9bd9a902016-05-02 08:57:16 +0800496 /* Elan Touchpad option. */
497 { .add = setup_elantech_tp, I2C_ADAPTER_DESIGNWARE_0 },
Mika Westerbergda3b0ab2014-06-17 14:02:00 -0700498 /* Light Sensor. */
499 { .add = setup_isl29018_als, I2C_ADAPTER_DESIGNWARE_1 },
500 },
501};
502
Benson Leung9ad36922013-10-20 20:58:25 -0700503static struct chromeos_laptop hp_pavilion_14_chromebook = {
Aaron Durbinec199dd2013-10-20 20:58:24 -0700504 .i2c_peripherals = {
505 /* Touchpad. */
506 { .add = setup_cyapa_tp, I2C_ADAPTER_SMBUS },
507 },
508};
509
Benson Leung9ad36922013-10-20 20:58:25 -0700510static struct chromeos_laptop cr48 = {
Aaron Durbinec199dd2013-10-20 20:58:24 -0700511 .i2c_peripherals = {
512 /* Light Sensor. */
513 { .add = setup_tsl2563_als, I2C_ADAPTER_SMBUS },
514 },
515};
516
517#define _CBDD(board_) \
Benson Leung9ad36922013-10-20 20:58:25 -0700518 .callback = chromeos_laptop_dmi_matched, \
Aaron Durbinec199dd2013-10-20 20:58:24 -0700519 .driver_data = (void *)&board_
520
Benson Leungcdddd232013-10-20 20:58:26 -0700521static struct dmi_system_id chromeos_laptop_dmi_table[] __initdata = {
Benson Leungd1381f42012-10-25 14:21:21 -0700522 {
Aaron Durbinec199dd2013-10-20 20:58:24 -0700523 .ident = "Samsung Series 5 550",
Benson Leungd1381f42012-10-25 14:21:21 -0700524 .matches = {
525 DMI_MATCH(DMI_SYS_VENDOR, "SAMSUNG"),
526 DMI_MATCH(DMI_PRODUCT_NAME, "Lumpy"),
527 },
Aaron Durbinec199dd2013-10-20 20:58:24 -0700528 _CBDD(samsung_series_5_550),
Benson Leungd1381f42012-10-25 14:21:21 -0700529 },
530 {
Aaron Durbinec199dd2013-10-20 20:58:24 -0700531 .ident = "Samsung Series 5",
Benson Leung8016bcb2013-02-01 14:34:46 -0800532 .matches = {
533 DMI_MATCH(DMI_PRODUCT_NAME, "Alex"),
534 },
Aaron Durbinec199dd2013-10-20 20:58:24 -0700535 _CBDD(samsung_series_5),
Benson Leung8016bcb2013-02-01 14:34:46 -0800536 },
537 {
Aaron Durbinec199dd2013-10-20 20:58:24 -0700538 .ident = "Chromebook Pixel",
Benson Leungaabf3f42013-02-01 14:34:45 -0800539 .matches = {
Aaron Durbinec199dd2013-10-20 20:58:24 -0700540 DMI_MATCH(DMI_SYS_VENDOR, "GOOGLE"),
541 DMI_MATCH(DMI_PRODUCT_NAME, "Link"),
Benson Leungaabf3f42013-02-01 14:34:45 -0800542 },
Aaron Durbinec199dd2013-10-20 20:58:24 -0700543 _CBDD(chromebook_pixel),
Benson Leungaabf3f42013-02-01 14:34:45 -0800544 },
545 {
Mohammed Habibulla0e1e5e52014-06-17 14:02:02 -0700546 .ident = "Wolf",
547 .matches = {
548 DMI_MATCH(DMI_BIOS_VENDOR, "coreboot"),
549 DMI_MATCH(DMI_PRODUCT_NAME, "Wolf"),
550 },
551 _CBDD(dell_chromebook_11),
552 },
553 {
Benson Leung5ea95672014-06-17 14:02:01 -0700554 .ident = "HP Chromebook 14",
555 .matches = {
556 DMI_MATCH(DMI_BIOS_VENDOR, "coreboot"),
557 DMI_MATCH(DMI_PRODUCT_NAME, "Falco"),
558 },
559 _CBDD(hp_chromebook_14),
560 },
561 {
Gene Chen963cb6f2014-06-17 14:02:03 -0700562 .ident = "Toshiba CB35",
563 .matches = {
564 DMI_MATCH(DMI_BIOS_VENDOR, "coreboot"),
565 DMI_MATCH(DMI_PRODUCT_NAME, "Leon"),
566 },
567 _CBDD(toshiba_cb35),
568 },
569 {
Aaron Durbinec199dd2013-10-20 20:58:24 -0700570 .ident = "Acer C7 Chromebook",
571 .matches = {
572 DMI_MATCH(DMI_PRODUCT_NAME, "Parrot"),
573 },
574 _CBDD(acer_c7_chromebook),
575 },
576 {
577 .ident = "Acer AC700",
Benson Leungaabf3f42013-02-01 14:34:45 -0800578 .matches = {
579 DMI_MATCH(DMI_PRODUCT_NAME, "ZGB"),
580 },
Aaron Durbinec199dd2013-10-20 20:58:24 -0700581 _CBDD(acer_ac700),
582 },
583 {
Mika Westerbergda3b0ab2014-06-17 14:02:00 -0700584 .ident = "Acer C720",
585 .matches = {
586 DMI_MATCH(DMI_PRODUCT_NAME, "Peppy"),
587 },
588 _CBDD(acer_c720),
589 },
590 {
Aaron Durbinec199dd2013-10-20 20:58:24 -0700591 .ident = "HP Pavilion 14 Chromebook",
592 .matches = {
593 DMI_MATCH(DMI_PRODUCT_NAME, "Butterfly"),
594 },
595 _CBDD(hp_pavilion_14_chromebook),
596 },
597 {
598 .ident = "Cr-48",
599 .matches = {
600 DMI_MATCH(DMI_PRODUCT_NAME, "Mario"),
601 },
602 _CBDD(cr48),
Benson Leungaabf3f42013-02-01 14:34:45 -0800603 },
Benson Leungd1381f42012-10-25 14:21:21 -0700604 { }
605};
606MODULE_DEVICE_TABLE(dmi, chromeos_laptop_dmi_table);
607
Benson Leung9ad36922013-10-20 20:58:25 -0700608static struct platform_device *cros_platform_device;
609
610static struct platform_driver cros_platform_driver = {
611 .driver = {
612 .name = "chromeos_laptop",
Benson Leung9ad36922013-10-20 20:58:25 -0700613 },
614 .probe = chromeos_laptop_probe,
615};
616
Benson Leungd1381f42012-10-25 14:21:21 -0700617static int __init chromeos_laptop_init(void)
618{
Benson Leung9ad36922013-10-20 20:58:25 -0700619 int ret;
Robin Schroer49c68a22014-05-29 20:45:07 +0200620
Benson Leungd1381f42012-10-25 14:21:21 -0700621 if (!dmi_check_system(chromeos_laptop_dmi_table)) {
622 pr_debug("%s unsupported system.\n", __func__);
623 return -ENODEV;
624 }
Benson Leung9ad36922013-10-20 20:58:25 -0700625
626 ret = platform_driver_register(&cros_platform_driver);
627 if (ret)
628 return ret;
629
630 cros_platform_device = platform_device_alloc("chromeos_laptop", -1);
631 if (!cros_platform_device) {
632 ret = -ENOMEM;
633 goto fail_platform_device1;
634 }
635
636 ret = platform_device_add(cros_platform_device);
637 if (ret)
638 goto fail_platform_device2;
639
Benson Leungd1381f42012-10-25 14:21:21 -0700640 return 0;
Benson Leung9ad36922013-10-20 20:58:25 -0700641
642fail_platform_device2:
643 platform_device_put(cros_platform_device);
644fail_platform_device1:
645 platform_driver_unregister(&cros_platform_driver);
646 return ret;
Benson Leungd1381f42012-10-25 14:21:21 -0700647}
648
649static void __exit chromeos_laptop_exit(void)
650{
651 if (als)
652 i2c_unregister_device(als);
653 if (tp)
654 i2c_unregister_device(tp);
Yufeng Shen33a84f82013-02-21 12:15:00 -0800655 if (ts)
656 i2c_unregister_device(ts);
Wei Yongjun2b8454a2013-11-27 11:34:58 +0800657
658 platform_device_unregister(cros_platform_device);
659 platform_driver_unregister(&cros_platform_driver);
Benson Leungd1381f42012-10-25 14:21:21 -0700660}
661
662module_init(chromeos_laptop_init);
663module_exit(chromeos_laptop_exit);
664
665MODULE_DESCRIPTION("Chrome OS Laptop driver");
666MODULE_AUTHOR("Benson Leung <bleung@chromium.org>");
667MODULE_LICENSE("GPL");