blob: d866db80b4fdfdf36d48ec02827d2578870778fe [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>
Benson Leung2ef39202013-03-07 19:43:34 -080026#include <linux/i2c/atmel_mxt_ts.h>
27#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
37#define ISL_ALS_I2C_ADDR 0x44
Benson Leungaabf3f42013-02-01 14:34:45 -080038#define TAOS_ALS_I2C_ADDR 0x29
Benson Leungd1381f42012-10-25 14:21:21 -070039
Benson Leung55024862014-07-15 17:43:11 -070040#define MAX_I2C_DEVICE_DEFERRALS 5
41
Benson Leungd1381f42012-10-25 14:21:21 -070042static struct i2c_client *als;
43static struct i2c_client *tp;
Yufeng Shen33a84f82013-02-21 12:15:00 -080044static struct i2c_client *ts;
Benson Leungd1381f42012-10-25 14:21:21 -070045
Olof Johansson6d3c1af2013-11-25 13:10:25 -080046static const char *i2c_adapter_names[] = {
Benson Leungd1381f42012-10-25 14:21:21 -070047 "SMBus I801 adapter",
Benson Leung741bf0c2013-02-21 12:14:55 -080048 "i915 gmbus vga",
49 "i915 gmbus panel",
Mika Westerbergda3b0ab2014-06-17 14:02:00 -070050 "i2c-designware-pci",
51 "i2c-designware-pci",
Benson Leungd1381f42012-10-25 14:21:21 -070052};
53
54/* Keep this enum consistent with i2c_adapter_names */
55enum i2c_adapter_type {
56 I2C_ADAPTER_SMBUS = 0,
Benson Leung741bf0c2013-02-21 12:14:55 -080057 I2C_ADAPTER_VGADDC,
58 I2C_ADAPTER_PANEL,
Mika Westerbergda3b0ab2014-06-17 14:02:00 -070059 I2C_ADAPTER_DESIGNWARE_0,
60 I2C_ADAPTER_DESIGNWARE_1,
Benson Leungd1381f42012-10-25 14:21:21 -070061};
62
Benson Leung55024862014-07-15 17:43:11 -070063enum i2c_peripheral_state {
64 UNPROBED = 0,
65 PROBED,
66 TIMEDOUT,
Benson Leungd1381f42012-10-25 14:21:21 -070067};
68
Aaron Durbinec199dd2013-10-20 20:58:24 -070069struct i2c_peripheral {
Benson Leung9ad36922013-10-20 20:58:25 -070070 int (*add)(enum i2c_adapter_type type);
Aaron Durbinec199dd2013-10-20 20:58:24 -070071 enum i2c_adapter_type type;
Benson Leung55024862014-07-15 17:43:11 -070072 enum i2c_peripheral_state state;
73 int tries;
Aaron Durbinec199dd2013-10-20 20:58:24 -070074};
75
76#define MAX_I2C_PERIPHERALS 3
77
78struct chromeos_laptop {
79 struct i2c_peripheral i2c_peripherals[MAX_I2C_PERIPHERALS];
80};
81
Benson Leung9ad36922013-10-20 20:58:25 -070082static struct chromeos_laptop *cros_laptop;
83
84static struct i2c_board_info cyapa_device = {
Benson Leungd1381f42012-10-25 14:21:21 -070085 I2C_BOARD_INFO("cyapa", CYAPA_TP_I2C_ADDR),
86 .flags = I2C_CLIENT_WAKE,
87};
88
Benson Leung9ad36922013-10-20 20:58:25 -070089static struct i2c_board_info isl_als_device = {
Benson Leungd1381f42012-10-25 14:21:21 -070090 I2C_BOARD_INFO("isl29018", ISL_ALS_I2C_ADDR),
91};
92
Benson Leung9ad36922013-10-20 20:58:25 -070093static struct i2c_board_info tsl2583_als_device = {
Benson Leung8016bcb2013-02-01 14:34:46 -080094 I2C_BOARD_INFO("tsl2583", TAOS_ALS_I2C_ADDR),
95};
96
Benson Leung9ad36922013-10-20 20:58:25 -070097static struct i2c_board_info tsl2563_als_device = {
Benson Leungaabf3f42013-02-01 14:34:45 -080098 I2C_BOARD_INFO("tsl2563", TAOS_ALS_I2C_ADDR),
99};
100
Nick Dyerfb5e4c3e2014-05-18 23:00:15 -0700101static int mxt_t19_keys[] = {
102 KEY_RESERVED,
103 KEY_RESERVED,
104 KEY_RESERVED,
105 KEY_RESERVED,
106 KEY_RESERVED,
107 BTN_LEFT
108};
109
Benson Leung2ef39202013-03-07 19:43:34 -0800110static struct mxt_platform_data atmel_224s_tp_platform_data = {
Benson Leung2ef39202013-03-07 19:43:34 -0800111 .irqflags = IRQF_TRIGGER_FALLING,
Nick Dyerfb5e4c3e2014-05-18 23:00:15 -0700112 .t19_num_keys = ARRAY_SIZE(mxt_t19_keys),
113 .t19_keymap = mxt_t19_keys,
Benson Leung2ef39202013-03-07 19:43:34 -0800114};
115
Benson Leung9ad36922013-10-20 20:58:25 -0700116static struct i2c_board_info atmel_224s_tp_device = {
Benson Leung8e1ad4c2013-02-21 12:14:59 -0800117 I2C_BOARD_INFO("atmel_mxt_tp", ATMEL_TP_I2C_ADDR),
Benson Leung2ef39202013-03-07 19:43:34 -0800118 .platform_data = &atmel_224s_tp_platform_data,
Benson Leung8e1ad4c2013-02-21 12:14:59 -0800119 .flags = I2C_CLIENT_WAKE,
120};
121
Benson Leung2ef39202013-03-07 19:43:34 -0800122static struct mxt_platform_data atmel_1664s_platform_data = {
Benson Leung2ef39202013-03-07 19:43:34 -0800123 .irqflags = IRQF_TRIGGER_FALLING,
Benson Leung2ef39202013-03-07 19:43:34 -0800124};
125
Benson Leung9ad36922013-10-20 20:58:25 -0700126static struct i2c_board_info atmel_1664s_device = {
Yufeng Shen33a84f82013-02-21 12:15:00 -0800127 I2C_BOARD_INFO("atmel_mxt_ts", ATMEL_TS_I2C_ADDR),
Benson Leung2ef39202013-03-07 19:43:34 -0800128 .platform_data = &atmel_1664s_platform_data,
Yufeng Shen33a84f82013-02-21 12:15:00 -0800129 .flags = I2C_CLIENT_WAKE,
130};
131
Benson Leung9ad36922013-10-20 20:58:25 -0700132static struct i2c_client *__add_probed_i2c_device(
Benson Leungd1381f42012-10-25 14:21:21 -0700133 const char *name,
134 int bus,
135 struct i2c_board_info *info,
136 const unsigned short *addrs)
137{
138 const struct dmi_device *dmi_dev;
139 const struct dmi_dev_onboard *dev_data;
140 struct i2c_adapter *adapter;
141 struct i2c_client *client;
142
143 if (bus < 0)
144 return NULL;
145 /*
146 * If a name is specified, look for irq platform information stashed
147 * in DMI_DEV_TYPE_DEV_ONBOARD by the Chrome OS custom system firmware.
148 */
149 if (name) {
150 dmi_dev = dmi_find_device(DMI_DEV_TYPE_DEV_ONBOARD, name, NULL);
151 if (!dmi_dev) {
152 pr_err("%s failed to dmi find device %s.\n",
153 __func__,
154 name);
155 return NULL;
156 }
157 dev_data = (struct dmi_dev_onboard *)dmi_dev->device_data;
158 if (!dev_data) {
159 pr_err("%s failed to get data from dmi for %s.\n",
160 __func__, name);
161 return NULL;
162 }
163 info->irq = dev_data->instance;
164 }
165
166 adapter = i2c_get_adapter(bus);
167 if (!adapter) {
168 pr_err("%s failed to get i2c adapter %d.\n", __func__, bus);
169 return NULL;
170 }
171
172 /* add the i2c device */
173 client = i2c_new_probed_device(adapter, info, addrs, NULL);
174 if (!client)
Benson Leung55024862014-07-15 17:43:11 -0700175 pr_notice("%s failed to register device %d-%02x\n",
176 __func__, bus, info->addr);
Benson Leungd1381f42012-10-25 14:21:21 -0700177 else
178 pr_debug("%s added i2c device %d-%02x\n",
179 __func__, bus, info->addr);
180
181 i2c_put_adapter(adapter);
182 return client;
183}
184
Mika Westerbergda3b0ab2014-06-17 14:02:00 -0700185struct i2c_lookup {
186 const char *name;
187 int instance;
188 int n;
189};
190
Benson Leung9ad36922013-10-20 20:58:25 -0700191static int __find_i2c_adap(struct device *dev, void *data)
Benson Leungd1381f42012-10-25 14:21:21 -0700192{
Mika Westerbergda3b0ab2014-06-17 14:02:00 -0700193 struct i2c_lookup *lookup = data;
Benson Leungd1381f42012-10-25 14:21:21 -0700194 static const char *prefix = "i2c-";
195 struct i2c_adapter *adapter;
Robin Schroer49c68a22014-05-29 20:45:07 +0200196
Benson Leungd1381f42012-10-25 14:21:21 -0700197 if (strncmp(dev_name(dev), prefix, strlen(prefix)) != 0)
198 return 0;
199 adapter = to_i2c_adapter(dev);
Mika Westerbergda3b0ab2014-06-17 14:02:00 -0700200 if (strncmp(adapter->name, lookup->name, strlen(lookup->name)) == 0 &&
201 lookup->n++ == lookup->instance)
202 return 1;
203 return 0;
Benson Leungd1381f42012-10-25 14:21:21 -0700204}
205
Benson Leung9ad36922013-10-20 20:58:25 -0700206static int find_i2c_adapter_num(enum i2c_adapter_type type)
Benson Leungd1381f42012-10-25 14:21:21 -0700207{
208 struct device *dev = NULL;
209 struct i2c_adapter *adapter;
Mika Westerbergda3b0ab2014-06-17 14:02:00 -0700210 struct i2c_lookup lookup;
211
212 memset(&lookup, 0, sizeof(lookup));
213 lookup.name = i2c_adapter_names[type];
214 lookup.instance = (type == I2C_ADAPTER_DESIGNWARE_1) ? 1 : 0;
215
Benson Leungd1381f42012-10-25 14:21:21 -0700216 /* find the adapter by name */
Mika Westerbergda3b0ab2014-06-17 14:02:00 -0700217 dev = bus_find_device(&i2c_bus_type, NULL, &lookup, __find_i2c_adap);
Benson Leungd1381f42012-10-25 14:21:21 -0700218 if (!dev) {
Benson Leung9ad36922013-10-20 20:58:25 -0700219 /* Adapters may appear later. Deferred probing will retry */
220 pr_notice("%s: i2c adapter %s not found on system.\n", __func__,
Mika Westerbergda3b0ab2014-06-17 14:02:00 -0700221 lookup.name);
Benson Leungd1381f42012-10-25 14:21:21 -0700222 return -ENODEV;
223 }
224 adapter = to_i2c_adapter(dev);
225 return adapter->nr;
226}
227
228/*
Benson Leungbcaf0892013-02-21 12:14:58 -0800229 * Takes a list of addresses in addrs as such :
230 * { addr1, ... , addrn, I2C_CLIENT_END };
231 * add_probed_i2c_device will use i2c_new_probed_device
232 * and probe for devices at all of the addresses listed.
233 * Returns NULL if no devices found.
234 * See Documentation/i2c/instantiating-devices for more information.
235 */
Benson Leung9ad36922013-10-20 20:58:25 -0700236static struct i2c_client *add_probed_i2c_device(
Benson Leungbcaf0892013-02-21 12:14:58 -0800237 const char *name,
238 enum i2c_adapter_type type,
239 struct i2c_board_info *info,
240 const unsigned short *addrs)
241{
242 return __add_probed_i2c_device(name,
243 find_i2c_adapter_num(type),
244 info,
245 addrs);
246}
247
248/*
Benson Leungd1381f42012-10-25 14:21:21 -0700249 * Probes for a device at a single address, the one provided by
250 * info->addr.
251 * Returns NULL if no device found.
252 */
Benson Leung9ad36922013-10-20 20:58:25 -0700253static struct i2c_client *add_i2c_device(const char *name,
Benson Leunge7b28842013-02-21 12:14:56 -0800254 enum i2c_adapter_type type,
255 struct i2c_board_info *info)
Benson Leungd1381f42012-10-25 14:21:21 -0700256{
257 const unsigned short addr_list[] = { info->addr, I2C_CLIENT_END };
Robin Schroer49c68a22014-05-29 20:45:07 +0200258
Benson Leungd1381f42012-10-25 14:21:21 -0700259 return __add_probed_i2c_device(name,
Benson Leunge7b28842013-02-21 12:14:56 -0800260 find_i2c_adapter_num(type),
Benson Leungd1381f42012-10-25 14:21:21 -0700261 info,
262 addr_list);
263}
264
Benson Leung9ad36922013-10-20 20:58:25 -0700265static int setup_cyapa_tp(enum i2c_adapter_type type)
Benson Leunge7b28842013-02-21 12:14:56 -0800266{
Benson Leung9ad36922013-10-20 20:58:25 -0700267 if (tp)
268 return 0;
269
Aaron Durbinec199dd2013-10-20 20:58:24 -0700270 /* add cyapa touchpad */
271 tp = add_i2c_device("trackpad", type, &cyapa_device);
Benson Leung9ad36922013-10-20 20:58:25 -0700272 return (!tp) ? -EAGAIN : 0;
Benson Leungd1381f42012-10-25 14:21:21 -0700273}
274
Benson Leung9ad36922013-10-20 20:58:25 -0700275static int setup_atmel_224s_tp(enum i2c_adapter_type type)
Benson Leung8e1ad4c2013-02-21 12:14:59 -0800276{
277 const unsigned short addr_list[] = { ATMEL_TP_I2C_BL_ADDR,
278 ATMEL_TP_I2C_ADDR,
279 I2C_CLIENT_END };
Benson Leung9ad36922013-10-20 20:58:25 -0700280 if (tp)
281 return 0;
Benson Leung8e1ad4c2013-02-21 12:14:59 -0800282
Aaron Durbinec199dd2013-10-20 20:58:24 -0700283 /* add atmel mxt touchpad */
284 tp = add_probed_i2c_device("trackpad", type,
Benson Leung8e1ad4c2013-02-21 12:14:59 -0800285 &atmel_224s_tp_device, addr_list);
Benson Leung9ad36922013-10-20 20:58:25 -0700286 return (!tp) ? -EAGAIN : 0;
Benson Leung8e1ad4c2013-02-21 12:14:59 -0800287}
288
Benson Leung9ad36922013-10-20 20:58:25 -0700289static int setup_atmel_1664s_ts(enum i2c_adapter_type type)
Yufeng Shen33a84f82013-02-21 12:15:00 -0800290{
291 const unsigned short addr_list[] = { ATMEL_TS_I2C_BL_ADDR,
292 ATMEL_TS_I2C_ADDR,
293 I2C_CLIENT_END };
Benson Leung9ad36922013-10-20 20:58:25 -0700294 if (ts)
295 return 0;
Yufeng Shen33a84f82013-02-21 12:15:00 -0800296
Aaron Durbinec199dd2013-10-20 20:58:24 -0700297 /* add atmel mxt touch device */
298 ts = add_probed_i2c_device("touchscreen", type,
Yufeng Shen33a84f82013-02-21 12:15:00 -0800299 &atmel_1664s_device, addr_list);
Benson Leung9ad36922013-10-20 20:58:25 -0700300 return (!ts) ? -EAGAIN : 0;
Yufeng Shen33a84f82013-02-21 12:15:00 -0800301}
302
Benson Leung9ad36922013-10-20 20:58:25 -0700303static int setup_isl29018_als(enum i2c_adapter_type type)
Benson Leungd1381f42012-10-25 14:21:21 -0700304{
Benson Leung9ad36922013-10-20 20:58:25 -0700305 if (als)
306 return 0;
307
Benson Leungd1381f42012-10-25 14:21:21 -0700308 /* add isl29018 light sensor */
Aaron Durbinec199dd2013-10-20 20:58:24 -0700309 als = add_i2c_device("lightsensor", type, &isl_als_device);
Benson Leung9ad36922013-10-20 20:58:25 -0700310 return (!als) ? -EAGAIN : 0;
Benson Leungd1381f42012-10-25 14:21:21 -0700311}
312
Benson Leung9ad36922013-10-20 20:58:25 -0700313static int setup_tsl2583_als(enum i2c_adapter_type type)
Benson Leungcc5c3982013-02-21 12:14:57 -0800314{
Benson Leung9ad36922013-10-20 20:58:25 -0700315 if (als)
316 return 0;
317
Aaron Durbinec199dd2013-10-20 20:58:24 -0700318 /* add tsl2583 light sensor */
319 als = add_i2c_device(NULL, type, &tsl2583_als_device);
Benson Leung9ad36922013-10-20 20:58:25 -0700320 return (!als) ? -EAGAIN : 0;
Benson Leungcc5c3982013-02-21 12:14:57 -0800321}
322
Benson Leung9ad36922013-10-20 20:58:25 -0700323static int setup_tsl2563_als(enum i2c_adapter_type type)
Benson Leung8016bcb2013-02-01 14:34:46 -0800324{
Benson Leung9ad36922013-10-20 20:58:25 -0700325 if (als)
326 return 0;
327
Aaron Durbinec199dd2013-10-20 20:58:24 -0700328 /* add tsl2563 light sensor */
329 als = add_i2c_device(NULL, type, &tsl2563_als_device);
Benson Leung9ad36922013-10-20 20:58:25 -0700330 return (!als) ? -EAGAIN : 0;
Benson Leung8016bcb2013-02-01 14:34:46 -0800331}
332
Benson Leung9ad36922013-10-20 20:58:25 -0700333static int __init chromeos_laptop_dmi_matched(const struct dmi_system_id *id)
334{
335 cros_laptop = (void *)id->driver_data;
336 pr_debug("DMI Matched %s.\n", id->ident);
337
338 /* Indicate to dmi_scan that processing is done. */
339 return 1;
340}
341
342static int chromeos_laptop_probe(struct platform_device *pdev)
Benson Leungaabf3f42013-02-01 14:34:45 -0800343{
Aaron Durbinec199dd2013-10-20 20:58:24 -0700344 int i;
Benson Leung9ad36922013-10-20 20:58:25 -0700345 int ret = 0;
Aaron Durbinec199dd2013-10-20 20:58:24 -0700346
347 for (i = 0; i < MAX_I2C_PERIPHERALS; i++) {
348 struct i2c_peripheral *i2c_dev;
349
350 i2c_dev = &cros_laptop->i2c_peripherals[i];
351
352 /* No more peripherals. */
353 if (i2c_dev->add == NULL)
354 break;
355
Benson Leung55024862014-07-15 17:43:11 -0700356 if (i2c_dev->state == TIMEDOUT || i2c_dev->state == PROBED)
357 continue;
358
359 /*
360 * Check that the i2c adapter is present.
361 * -EPROBE_DEFER if missing as the adapter may appear much
362 * later.
363 */
364 if (find_i2c_adapter_num(i2c_dev->type) == -ENODEV) {
Benson Leung9ad36922013-10-20 20:58:25 -0700365 ret = -EPROBE_DEFER;
Benson Leung55024862014-07-15 17:43:11 -0700366 continue;
367 }
368
369 /* Add the device. */
370 if (i2c_dev->add(i2c_dev->type) == -EAGAIN) {
371 /*
372 * Set -EPROBE_DEFER a limited num of times
373 * if device is not successfully added.
374 */
375 if (++i2c_dev->tries < MAX_I2C_DEVICE_DEFERRALS) {
376 ret = -EPROBE_DEFER;
377 } else {
378 /* Ran out of tries. */
379 pr_notice("%s: Ran out of tries for device.\n",
380 __func__);
381 i2c_dev->state = TIMEDOUT;
382 }
383 } else {
384 i2c_dev->state = PROBED;
385 }
Aaron Durbinec199dd2013-10-20 20:58:24 -0700386 }
387
Benson Leung9ad36922013-10-20 20:58:25 -0700388 return ret;
Benson Leungaabf3f42013-02-01 14:34:45 -0800389}
390
Benson Leung9ad36922013-10-20 20:58:25 -0700391static struct chromeos_laptop samsung_series_5_550 = {
Aaron Durbinec199dd2013-10-20 20:58:24 -0700392 .i2c_peripherals = {
393 /* Touchpad. */
394 { .add = setup_cyapa_tp, I2C_ADAPTER_SMBUS },
395 /* Light Sensor. */
396 { .add = setup_isl29018_als, I2C_ADAPTER_SMBUS },
397 },
398};
399
Benson Leung9ad36922013-10-20 20:58:25 -0700400static struct chromeos_laptop samsung_series_5 = {
Aaron Durbinec199dd2013-10-20 20:58:24 -0700401 .i2c_peripherals = {
402 /* Light Sensor. */
403 { .add = setup_tsl2583_als, I2C_ADAPTER_SMBUS },
404 },
405};
406
Benson Leung9ad36922013-10-20 20:58:25 -0700407static struct chromeos_laptop chromebook_pixel = {
Aaron Durbinec199dd2013-10-20 20:58:24 -0700408 .i2c_peripherals = {
409 /* Touch Screen. */
410 { .add = setup_atmel_1664s_ts, I2C_ADAPTER_PANEL },
411 /* Touchpad. */
412 { .add = setup_atmel_224s_tp, I2C_ADAPTER_VGADDC },
413 /* Light Sensor. */
414 { .add = setup_isl29018_als, I2C_ADAPTER_PANEL },
415 },
416};
417
Benson Leung5ea95672014-06-17 14:02:01 -0700418static struct chromeos_laptop hp_chromebook_14 = {
419 .i2c_peripherals = {
420 /* Touchpad. */
421 { .add = setup_cyapa_tp, I2C_ADAPTER_DESIGNWARE_0 },
422 },
423};
424
Mohammed Habibulla0e1e5e52014-06-17 14:02:02 -0700425static struct chromeos_laptop dell_chromebook_11 = {
426 .i2c_peripherals = {
427 /* Touchpad. */
428 { .add = setup_cyapa_tp, I2C_ADAPTER_DESIGNWARE_0 },
429 },
430};
431
Gene Chen963cb6f2014-06-17 14:02:03 -0700432static struct chromeos_laptop toshiba_cb35 = {
433 .i2c_peripherals = {
434 /* Touchpad. */
435 { .add = setup_cyapa_tp, I2C_ADAPTER_DESIGNWARE_0 },
436 },
437};
438
Benson Leung9ad36922013-10-20 20:58:25 -0700439static struct chromeos_laptop acer_c7_chromebook = {
Aaron Durbinec199dd2013-10-20 20:58:24 -0700440 .i2c_peripherals = {
441 /* Touchpad. */
442 { .add = setup_cyapa_tp, I2C_ADAPTER_SMBUS },
443 },
444};
445
Benson Leung9ad36922013-10-20 20:58:25 -0700446static struct chromeos_laptop acer_ac700 = {
Aaron Durbinec199dd2013-10-20 20:58:24 -0700447 .i2c_peripherals = {
448 /* Light Sensor. */
449 { .add = setup_tsl2563_als, I2C_ADAPTER_SMBUS },
450 },
451};
452
Mika Westerbergda3b0ab2014-06-17 14:02:00 -0700453static struct chromeos_laptop acer_c720 = {
454 .i2c_peripherals = {
Michael Mullinb90b3c42014-07-15 20:00:54 -0400455 /* Touchscreen. */
456 { .add = setup_atmel_1664s_ts, I2C_ADAPTER_DESIGNWARE_1 },
Mika Westerbergda3b0ab2014-06-17 14:02:00 -0700457 /* Touchpad. */
458 { .add = setup_cyapa_tp, I2C_ADAPTER_DESIGNWARE_0 },
459 /* Light Sensor. */
460 { .add = setup_isl29018_als, I2C_ADAPTER_DESIGNWARE_1 },
461 },
462};
463
Benson Leung9ad36922013-10-20 20:58:25 -0700464static struct chromeos_laptop hp_pavilion_14_chromebook = {
Aaron Durbinec199dd2013-10-20 20:58:24 -0700465 .i2c_peripherals = {
466 /* Touchpad. */
467 { .add = setup_cyapa_tp, I2C_ADAPTER_SMBUS },
468 },
469};
470
Benson Leung9ad36922013-10-20 20:58:25 -0700471static struct chromeos_laptop cr48 = {
Aaron Durbinec199dd2013-10-20 20:58:24 -0700472 .i2c_peripherals = {
473 /* Light Sensor. */
474 { .add = setup_tsl2563_als, I2C_ADAPTER_SMBUS },
475 },
476};
477
478#define _CBDD(board_) \
Benson Leung9ad36922013-10-20 20:58:25 -0700479 .callback = chromeos_laptop_dmi_matched, \
Aaron Durbinec199dd2013-10-20 20:58:24 -0700480 .driver_data = (void *)&board_
481
Benson Leungcdddd232013-10-20 20:58:26 -0700482static struct dmi_system_id chromeos_laptop_dmi_table[] __initdata = {
Benson Leungd1381f42012-10-25 14:21:21 -0700483 {
Aaron Durbinec199dd2013-10-20 20:58:24 -0700484 .ident = "Samsung Series 5 550",
Benson Leungd1381f42012-10-25 14:21:21 -0700485 .matches = {
486 DMI_MATCH(DMI_SYS_VENDOR, "SAMSUNG"),
487 DMI_MATCH(DMI_PRODUCT_NAME, "Lumpy"),
488 },
Aaron Durbinec199dd2013-10-20 20:58:24 -0700489 _CBDD(samsung_series_5_550),
Benson Leungd1381f42012-10-25 14:21:21 -0700490 },
491 {
Aaron Durbinec199dd2013-10-20 20:58:24 -0700492 .ident = "Samsung Series 5",
Benson Leung8016bcb2013-02-01 14:34:46 -0800493 .matches = {
494 DMI_MATCH(DMI_PRODUCT_NAME, "Alex"),
495 },
Aaron Durbinec199dd2013-10-20 20:58:24 -0700496 _CBDD(samsung_series_5),
Benson Leung8016bcb2013-02-01 14:34:46 -0800497 },
498 {
Aaron Durbinec199dd2013-10-20 20:58:24 -0700499 .ident = "Chromebook Pixel",
Benson Leungaabf3f42013-02-01 14:34:45 -0800500 .matches = {
Aaron Durbinec199dd2013-10-20 20:58:24 -0700501 DMI_MATCH(DMI_SYS_VENDOR, "GOOGLE"),
502 DMI_MATCH(DMI_PRODUCT_NAME, "Link"),
Benson Leungaabf3f42013-02-01 14:34:45 -0800503 },
Aaron Durbinec199dd2013-10-20 20:58:24 -0700504 _CBDD(chromebook_pixel),
Benson Leungaabf3f42013-02-01 14:34:45 -0800505 },
506 {
Mohammed Habibulla0e1e5e52014-06-17 14:02:02 -0700507 .ident = "Wolf",
508 .matches = {
509 DMI_MATCH(DMI_BIOS_VENDOR, "coreboot"),
510 DMI_MATCH(DMI_PRODUCT_NAME, "Wolf"),
511 },
512 _CBDD(dell_chromebook_11),
513 },
514 {
Benson Leung5ea95672014-06-17 14:02:01 -0700515 .ident = "HP Chromebook 14",
516 .matches = {
517 DMI_MATCH(DMI_BIOS_VENDOR, "coreboot"),
518 DMI_MATCH(DMI_PRODUCT_NAME, "Falco"),
519 },
520 _CBDD(hp_chromebook_14),
521 },
522 {
Gene Chen963cb6f2014-06-17 14:02:03 -0700523 .ident = "Toshiba CB35",
524 .matches = {
525 DMI_MATCH(DMI_BIOS_VENDOR, "coreboot"),
526 DMI_MATCH(DMI_PRODUCT_NAME, "Leon"),
527 },
528 _CBDD(toshiba_cb35),
529 },
530 {
Aaron Durbinec199dd2013-10-20 20:58:24 -0700531 .ident = "Acer C7 Chromebook",
532 .matches = {
533 DMI_MATCH(DMI_PRODUCT_NAME, "Parrot"),
534 },
535 _CBDD(acer_c7_chromebook),
536 },
537 {
538 .ident = "Acer AC700",
Benson Leungaabf3f42013-02-01 14:34:45 -0800539 .matches = {
540 DMI_MATCH(DMI_PRODUCT_NAME, "ZGB"),
541 },
Aaron Durbinec199dd2013-10-20 20:58:24 -0700542 _CBDD(acer_ac700),
543 },
544 {
Mika Westerbergda3b0ab2014-06-17 14:02:00 -0700545 .ident = "Acer C720",
546 .matches = {
547 DMI_MATCH(DMI_PRODUCT_NAME, "Peppy"),
548 },
549 _CBDD(acer_c720),
550 },
551 {
Aaron Durbinec199dd2013-10-20 20:58:24 -0700552 .ident = "HP Pavilion 14 Chromebook",
553 .matches = {
554 DMI_MATCH(DMI_PRODUCT_NAME, "Butterfly"),
555 },
556 _CBDD(hp_pavilion_14_chromebook),
557 },
558 {
559 .ident = "Cr-48",
560 .matches = {
561 DMI_MATCH(DMI_PRODUCT_NAME, "Mario"),
562 },
563 _CBDD(cr48),
Benson Leungaabf3f42013-02-01 14:34:45 -0800564 },
Benson Leungd1381f42012-10-25 14:21:21 -0700565 { }
566};
567MODULE_DEVICE_TABLE(dmi, chromeos_laptop_dmi_table);
568
Benson Leung9ad36922013-10-20 20:58:25 -0700569static struct platform_device *cros_platform_device;
570
571static struct platform_driver cros_platform_driver = {
572 .driver = {
573 .name = "chromeos_laptop",
574 .owner = THIS_MODULE,
575 },
576 .probe = chromeos_laptop_probe,
577};
578
Benson Leungd1381f42012-10-25 14:21:21 -0700579static int __init chromeos_laptop_init(void)
580{
Benson Leung9ad36922013-10-20 20:58:25 -0700581 int ret;
Robin Schroer49c68a22014-05-29 20:45:07 +0200582
Benson Leungd1381f42012-10-25 14:21:21 -0700583 if (!dmi_check_system(chromeos_laptop_dmi_table)) {
584 pr_debug("%s unsupported system.\n", __func__);
585 return -ENODEV;
586 }
Benson Leung9ad36922013-10-20 20:58:25 -0700587
588 ret = platform_driver_register(&cros_platform_driver);
589 if (ret)
590 return ret;
591
592 cros_platform_device = platform_device_alloc("chromeos_laptop", -1);
593 if (!cros_platform_device) {
594 ret = -ENOMEM;
595 goto fail_platform_device1;
596 }
597
598 ret = platform_device_add(cros_platform_device);
599 if (ret)
600 goto fail_platform_device2;
601
Benson Leungd1381f42012-10-25 14:21:21 -0700602 return 0;
Benson Leung9ad36922013-10-20 20:58:25 -0700603
604fail_platform_device2:
605 platform_device_put(cros_platform_device);
606fail_platform_device1:
607 platform_driver_unregister(&cros_platform_driver);
608 return ret;
Benson Leungd1381f42012-10-25 14:21:21 -0700609}
610
611static void __exit chromeos_laptop_exit(void)
612{
613 if (als)
614 i2c_unregister_device(als);
615 if (tp)
616 i2c_unregister_device(tp);
Yufeng Shen33a84f82013-02-21 12:15:00 -0800617 if (ts)
618 i2c_unregister_device(ts);
Wei Yongjun2b8454a2013-11-27 11:34:58 +0800619
620 platform_device_unregister(cros_platform_device);
621 platform_driver_unregister(&cros_platform_driver);
Benson Leungd1381f42012-10-25 14:21:21 -0700622}
623
624module_init(chromeos_laptop_init);
625module_exit(chromeos_laptop_exit);
626
627MODULE_DESCRIPTION("Chrome OS Laptop driver");
628MODULE_AUTHOR("Benson Leung <bleung@chromium.org>");
629MODULE_LICENSE("GPL");