blob: a04019ab9feb3636dd74d3cf7e1a09764513a5fd [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,
Dmitry Torokhov96cba9b2015-04-14 13:50:09 -0700136 const unsigned short *alt_addr_list)
Benson Leungd1381f42012-10-25 14:21:21 -0700137{
138 const struct dmi_device *dmi_dev;
139 const struct dmi_dev_onboard *dev_data;
140 struct i2c_adapter *adapter;
Dmitry Torokhov96cba9b2015-04-14 13:50:09 -0700141 struct i2c_client *client = NULL;
142 const unsigned short addr_list[] = { info->addr, I2C_CLIENT_END };
Benson Leungd1381f42012-10-25 14:21:21 -0700143
144 if (bus < 0)
145 return NULL;
146 /*
147 * If a name is specified, look for irq platform information stashed
148 * in DMI_DEV_TYPE_DEV_ONBOARD by the Chrome OS custom system firmware.
149 */
150 if (name) {
151 dmi_dev = dmi_find_device(DMI_DEV_TYPE_DEV_ONBOARD, name, NULL);
152 if (!dmi_dev) {
153 pr_err("%s failed to dmi find device %s.\n",
154 __func__,
155 name);
156 return NULL;
157 }
158 dev_data = (struct dmi_dev_onboard *)dmi_dev->device_data;
159 if (!dev_data) {
160 pr_err("%s failed to get data from dmi for %s.\n",
161 __func__, name);
162 return NULL;
163 }
164 info->irq = dev_data->instance;
165 }
166
167 adapter = i2c_get_adapter(bus);
168 if (!adapter) {
169 pr_err("%s failed to get i2c adapter %d.\n", __func__, bus);
170 return NULL;
171 }
172
Dmitry Torokhov96cba9b2015-04-14 13:50:09 -0700173 /*
174 * Add the i2c device. If we can't detect it at the primary
175 * address we scan secondary addresses. In any case the client
176 * structure gets assigned primary address.
177 */
178 client = i2c_new_probed_device(adapter, info, addr_list, NULL);
179 if (!client && alt_addr_list) {
180 struct i2c_board_info dummy_info = {
181 I2C_BOARD_INFO("dummy", info->addr),
182 };
183 struct i2c_client *dummy;
184
185 dummy = i2c_new_probed_device(adapter, &dummy_info,
186 alt_addr_list, NULL);
187 if (dummy) {
188 pr_debug("%s %d-%02x is probed at %02x\n",
189 __func__, bus, info->addr, dummy->addr);
190 i2c_unregister_device(dummy);
191 client = i2c_new_device(adapter, info);
192 }
193 }
194
Benson Leungd1381f42012-10-25 14:21:21 -0700195 if (!client)
Benson Leung55024862014-07-15 17:43:11 -0700196 pr_notice("%s failed to register device %d-%02x\n",
197 __func__, bus, info->addr);
Benson Leungd1381f42012-10-25 14:21:21 -0700198 else
199 pr_debug("%s added i2c device %d-%02x\n",
200 __func__, bus, info->addr);
201
202 i2c_put_adapter(adapter);
203 return client;
204}
205
Mika Westerbergda3b0ab2014-06-17 14:02:00 -0700206struct i2c_lookup {
207 const char *name;
208 int instance;
209 int n;
210};
211
Benson Leung9ad36922013-10-20 20:58:25 -0700212static int __find_i2c_adap(struct device *dev, void *data)
Benson Leungd1381f42012-10-25 14:21:21 -0700213{
Mika Westerbergda3b0ab2014-06-17 14:02:00 -0700214 struct i2c_lookup *lookup = data;
Benson Leungd1381f42012-10-25 14:21:21 -0700215 static const char *prefix = "i2c-";
216 struct i2c_adapter *adapter;
Robin Schroer49c68a22014-05-29 20:45:07 +0200217
Benson Leungd1381f42012-10-25 14:21:21 -0700218 if (strncmp(dev_name(dev), prefix, strlen(prefix)) != 0)
219 return 0;
220 adapter = to_i2c_adapter(dev);
Mika Westerbergda3b0ab2014-06-17 14:02:00 -0700221 if (strncmp(adapter->name, lookup->name, strlen(lookup->name)) == 0 &&
222 lookup->n++ == lookup->instance)
223 return 1;
224 return 0;
Benson Leungd1381f42012-10-25 14:21:21 -0700225}
226
Benson Leung9ad36922013-10-20 20:58:25 -0700227static int find_i2c_adapter_num(enum i2c_adapter_type type)
Benson Leungd1381f42012-10-25 14:21:21 -0700228{
229 struct device *dev = NULL;
230 struct i2c_adapter *adapter;
Mika Westerbergda3b0ab2014-06-17 14:02:00 -0700231 struct i2c_lookup lookup;
232
233 memset(&lookup, 0, sizeof(lookup));
234 lookup.name = i2c_adapter_names[type];
235 lookup.instance = (type == I2C_ADAPTER_DESIGNWARE_1) ? 1 : 0;
236
Benson Leungd1381f42012-10-25 14:21:21 -0700237 /* find the adapter by name */
Mika Westerbergda3b0ab2014-06-17 14:02:00 -0700238 dev = bus_find_device(&i2c_bus_type, NULL, &lookup, __find_i2c_adap);
Benson Leungd1381f42012-10-25 14:21:21 -0700239 if (!dev) {
Benson Leung9ad36922013-10-20 20:58:25 -0700240 /* Adapters may appear later. Deferred probing will retry */
241 pr_notice("%s: i2c adapter %s not found on system.\n", __func__,
Mika Westerbergda3b0ab2014-06-17 14:02:00 -0700242 lookup.name);
Benson Leungd1381f42012-10-25 14:21:21 -0700243 return -ENODEV;
244 }
245 adapter = to_i2c_adapter(dev);
246 return adapter->nr;
247}
248
249/*
Benson Leungbcaf0892013-02-21 12:14:58 -0800250 * Takes a list of addresses in addrs as such :
251 * { addr1, ... , addrn, I2C_CLIENT_END };
252 * add_probed_i2c_device will use i2c_new_probed_device
253 * and probe for devices at all of the addresses listed.
254 * Returns NULL if no devices found.
255 * See Documentation/i2c/instantiating-devices for more information.
256 */
Benson Leung9ad36922013-10-20 20:58:25 -0700257static struct i2c_client *add_probed_i2c_device(
Benson Leungbcaf0892013-02-21 12:14:58 -0800258 const char *name,
259 enum i2c_adapter_type type,
260 struct i2c_board_info *info,
261 const unsigned short *addrs)
262{
263 return __add_probed_i2c_device(name,
264 find_i2c_adapter_num(type),
265 info,
266 addrs);
267}
268
269/*
Benson Leungd1381f42012-10-25 14:21:21 -0700270 * Probes for a device at a single address, the one provided by
271 * info->addr.
272 * Returns NULL if no device found.
273 */
Benson Leung9ad36922013-10-20 20:58:25 -0700274static struct i2c_client *add_i2c_device(const char *name,
Benson Leunge7b28842013-02-21 12:14:56 -0800275 enum i2c_adapter_type type,
276 struct i2c_board_info *info)
Benson Leungd1381f42012-10-25 14:21:21 -0700277{
Benson Leungd1381f42012-10-25 14:21:21 -0700278 return __add_probed_i2c_device(name,
Benson Leunge7b28842013-02-21 12:14:56 -0800279 find_i2c_adapter_num(type),
Benson Leungd1381f42012-10-25 14:21:21 -0700280 info,
Dmitry Torokhov96cba9b2015-04-14 13:50:09 -0700281 NULL);
Benson Leungd1381f42012-10-25 14:21:21 -0700282}
283
Benson Leung9ad36922013-10-20 20:58:25 -0700284static int setup_cyapa_tp(enum i2c_adapter_type type)
Benson Leunge7b28842013-02-21 12:14:56 -0800285{
Benson Leung9ad36922013-10-20 20:58:25 -0700286 if (tp)
287 return 0;
288
Aaron Durbinec199dd2013-10-20 20:58:24 -0700289 /* add cyapa touchpad */
290 tp = add_i2c_device("trackpad", type, &cyapa_device);
Benson Leung9ad36922013-10-20 20:58:25 -0700291 return (!tp) ? -EAGAIN : 0;
Benson Leungd1381f42012-10-25 14:21:21 -0700292}
293
Benson Leung9ad36922013-10-20 20:58:25 -0700294static int setup_atmel_224s_tp(enum i2c_adapter_type type)
Benson Leung8e1ad4c2013-02-21 12:14:59 -0800295{
296 const unsigned short addr_list[] = { ATMEL_TP_I2C_BL_ADDR,
Benson Leung8e1ad4c2013-02-21 12:14:59 -0800297 I2C_CLIENT_END };
Benson Leung9ad36922013-10-20 20:58:25 -0700298 if (tp)
299 return 0;
Benson Leung8e1ad4c2013-02-21 12:14:59 -0800300
Aaron Durbinec199dd2013-10-20 20:58:24 -0700301 /* add atmel mxt touchpad */
302 tp = add_probed_i2c_device("trackpad", type,
Benson Leung8e1ad4c2013-02-21 12:14:59 -0800303 &atmel_224s_tp_device, addr_list);
Benson Leung9ad36922013-10-20 20:58:25 -0700304 return (!tp) ? -EAGAIN : 0;
Benson Leung8e1ad4c2013-02-21 12:14:59 -0800305}
306
Benson Leung9ad36922013-10-20 20:58:25 -0700307static int setup_atmel_1664s_ts(enum i2c_adapter_type type)
Yufeng Shen33a84f82013-02-21 12:15:00 -0800308{
309 const unsigned short addr_list[] = { ATMEL_TS_I2C_BL_ADDR,
Yufeng Shen33a84f82013-02-21 12:15:00 -0800310 I2C_CLIENT_END };
Benson Leung9ad36922013-10-20 20:58:25 -0700311 if (ts)
312 return 0;
Yufeng Shen33a84f82013-02-21 12:15:00 -0800313
Aaron Durbinec199dd2013-10-20 20:58:24 -0700314 /* add atmel mxt touch device */
315 ts = add_probed_i2c_device("touchscreen", type,
Yufeng Shen33a84f82013-02-21 12:15:00 -0800316 &atmel_1664s_device, addr_list);
Benson Leung9ad36922013-10-20 20:58:25 -0700317 return (!ts) ? -EAGAIN : 0;
Yufeng Shen33a84f82013-02-21 12:15:00 -0800318}
319
Benson Leung9ad36922013-10-20 20:58:25 -0700320static int setup_isl29018_als(enum i2c_adapter_type type)
Benson Leungd1381f42012-10-25 14:21:21 -0700321{
Benson Leung9ad36922013-10-20 20:58:25 -0700322 if (als)
323 return 0;
324
Benson Leungd1381f42012-10-25 14:21:21 -0700325 /* add isl29018 light sensor */
Aaron Durbinec199dd2013-10-20 20:58:24 -0700326 als = add_i2c_device("lightsensor", type, &isl_als_device);
Benson Leung9ad36922013-10-20 20:58:25 -0700327 return (!als) ? -EAGAIN : 0;
Benson Leungd1381f42012-10-25 14:21:21 -0700328}
329
Benson Leung9ad36922013-10-20 20:58:25 -0700330static int setup_tsl2583_als(enum i2c_adapter_type type)
Benson Leungcc5c3982013-02-21 12:14:57 -0800331{
Benson Leung9ad36922013-10-20 20:58:25 -0700332 if (als)
333 return 0;
334
Aaron Durbinec199dd2013-10-20 20:58:24 -0700335 /* add tsl2583 light sensor */
336 als = add_i2c_device(NULL, type, &tsl2583_als_device);
Benson Leung9ad36922013-10-20 20:58:25 -0700337 return (!als) ? -EAGAIN : 0;
Benson Leungcc5c3982013-02-21 12:14:57 -0800338}
339
Benson Leung9ad36922013-10-20 20:58:25 -0700340static int setup_tsl2563_als(enum i2c_adapter_type type)
Benson Leung8016bcb2013-02-01 14:34:46 -0800341{
Benson Leung9ad36922013-10-20 20:58:25 -0700342 if (als)
343 return 0;
344
Aaron Durbinec199dd2013-10-20 20:58:24 -0700345 /* add tsl2563 light sensor */
346 als = add_i2c_device(NULL, type, &tsl2563_als_device);
Benson Leung9ad36922013-10-20 20:58:25 -0700347 return (!als) ? -EAGAIN : 0;
Benson Leung8016bcb2013-02-01 14:34:46 -0800348}
349
Benson Leung9ad36922013-10-20 20:58:25 -0700350static int __init chromeos_laptop_dmi_matched(const struct dmi_system_id *id)
351{
352 cros_laptop = (void *)id->driver_data;
353 pr_debug("DMI Matched %s.\n", id->ident);
354
355 /* Indicate to dmi_scan that processing is done. */
356 return 1;
357}
358
359static int chromeos_laptop_probe(struct platform_device *pdev)
Benson Leungaabf3f42013-02-01 14:34:45 -0800360{
Aaron Durbinec199dd2013-10-20 20:58:24 -0700361 int i;
Benson Leung9ad36922013-10-20 20:58:25 -0700362 int ret = 0;
Aaron Durbinec199dd2013-10-20 20:58:24 -0700363
364 for (i = 0; i < MAX_I2C_PERIPHERALS; i++) {
365 struct i2c_peripheral *i2c_dev;
366
367 i2c_dev = &cros_laptop->i2c_peripherals[i];
368
369 /* No more peripherals. */
370 if (i2c_dev->add == NULL)
371 break;
372
Benson Leung55024862014-07-15 17:43:11 -0700373 if (i2c_dev->state == TIMEDOUT || i2c_dev->state == PROBED)
374 continue;
375
376 /*
377 * Check that the i2c adapter is present.
378 * -EPROBE_DEFER if missing as the adapter may appear much
379 * later.
380 */
381 if (find_i2c_adapter_num(i2c_dev->type) == -ENODEV) {
Benson Leung9ad36922013-10-20 20:58:25 -0700382 ret = -EPROBE_DEFER;
Benson Leung55024862014-07-15 17:43:11 -0700383 continue;
384 }
385
386 /* Add the device. */
387 if (i2c_dev->add(i2c_dev->type) == -EAGAIN) {
388 /*
389 * Set -EPROBE_DEFER a limited num of times
390 * if device is not successfully added.
391 */
392 if (++i2c_dev->tries < MAX_I2C_DEVICE_DEFERRALS) {
393 ret = -EPROBE_DEFER;
394 } else {
395 /* Ran out of tries. */
396 pr_notice("%s: Ran out of tries for device.\n",
397 __func__);
398 i2c_dev->state = TIMEDOUT;
399 }
400 } else {
401 i2c_dev->state = PROBED;
402 }
Aaron Durbinec199dd2013-10-20 20:58:24 -0700403 }
404
Benson Leung9ad36922013-10-20 20:58:25 -0700405 return ret;
Benson Leungaabf3f42013-02-01 14:34:45 -0800406}
407
Benson Leung9ad36922013-10-20 20:58:25 -0700408static struct chromeos_laptop samsung_series_5_550 = {
Aaron Durbinec199dd2013-10-20 20:58:24 -0700409 .i2c_peripherals = {
410 /* Touchpad. */
411 { .add = setup_cyapa_tp, I2C_ADAPTER_SMBUS },
412 /* Light Sensor. */
413 { .add = setup_isl29018_als, I2C_ADAPTER_SMBUS },
414 },
415};
416
Benson Leung9ad36922013-10-20 20:58:25 -0700417static struct chromeos_laptop samsung_series_5 = {
Aaron Durbinec199dd2013-10-20 20:58:24 -0700418 .i2c_peripherals = {
419 /* Light Sensor. */
420 { .add = setup_tsl2583_als, I2C_ADAPTER_SMBUS },
421 },
422};
423
Benson Leung9ad36922013-10-20 20:58:25 -0700424static struct chromeos_laptop chromebook_pixel = {
Aaron Durbinec199dd2013-10-20 20:58:24 -0700425 .i2c_peripherals = {
426 /* Touch Screen. */
427 { .add = setup_atmel_1664s_ts, I2C_ADAPTER_PANEL },
428 /* Touchpad. */
429 { .add = setup_atmel_224s_tp, I2C_ADAPTER_VGADDC },
430 /* Light Sensor. */
431 { .add = setup_isl29018_als, I2C_ADAPTER_PANEL },
432 },
433};
434
Benson Leung5ea95672014-06-17 14:02:01 -0700435static struct chromeos_laptop hp_chromebook_14 = {
436 .i2c_peripherals = {
437 /* Touchpad. */
438 { .add = setup_cyapa_tp, I2C_ADAPTER_DESIGNWARE_0 },
439 },
440};
441
Mohammed Habibulla0e1e5e52014-06-17 14:02:02 -0700442static struct chromeos_laptop dell_chromebook_11 = {
443 .i2c_peripherals = {
444 /* Touchpad. */
445 { .add = setup_cyapa_tp, I2C_ADAPTER_DESIGNWARE_0 },
446 },
447};
448
Gene Chen963cb6f2014-06-17 14:02:03 -0700449static struct chromeos_laptop toshiba_cb35 = {
450 .i2c_peripherals = {
451 /* Touchpad. */
452 { .add = setup_cyapa_tp, I2C_ADAPTER_DESIGNWARE_0 },
453 },
454};
455
Benson Leung9ad36922013-10-20 20:58:25 -0700456static struct chromeos_laptop acer_c7_chromebook = {
Aaron Durbinec199dd2013-10-20 20:58:24 -0700457 .i2c_peripherals = {
458 /* Touchpad. */
459 { .add = setup_cyapa_tp, I2C_ADAPTER_SMBUS },
460 },
461};
462
Benson Leung9ad36922013-10-20 20:58:25 -0700463static struct chromeos_laptop acer_ac700 = {
Aaron Durbinec199dd2013-10-20 20:58:24 -0700464 .i2c_peripherals = {
465 /* Light Sensor. */
466 { .add = setup_tsl2563_als, I2C_ADAPTER_SMBUS },
467 },
468};
469
Mika Westerbergda3b0ab2014-06-17 14:02:00 -0700470static struct chromeos_laptop acer_c720 = {
471 .i2c_peripherals = {
Michael Mullinb90b3c42014-07-15 20:00:54 -0400472 /* Touchscreen. */
473 { .add = setup_atmel_1664s_ts, I2C_ADAPTER_DESIGNWARE_1 },
Mika Westerbergda3b0ab2014-06-17 14:02:00 -0700474 /* Touchpad. */
475 { .add = setup_cyapa_tp, I2C_ADAPTER_DESIGNWARE_0 },
476 /* Light Sensor. */
477 { .add = setup_isl29018_als, I2C_ADAPTER_DESIGNWARE_1 },
478 },
479};
480
Benson Leung9ad36922013-10-20 20:58:25 -0700481static struct chromeos_laptop hp_pavilion_14_chromebook = {
Aaron Durbinec199dd2013-10-20 20:58:24 -0700482 .i2c_peripherals = {
483 /* Touchpad. */
484 { .add = setup_cyapa_tp, I2C_ADAPTER_SMBUS },
485 },
486};
487
Benson Leung9ad36922013-10-20 20:58:25 -0700488static struct chromeos_laptop cr48 = {
Aaron Durbinec199dd2013-10-20 20:58:24 -0700489 .i2c_peripherals = {
490 /* Light Sensor. */
491 { .add = setup_tsl2563_als, I2C_ADAPTER_SMBUS },
492 },
493};
494
495#define _CBDD(board_) \
Benson Leung9ad36922013-10-20 20:58:25 -0700496 .callback = chromeos_laptop_dmi_matched, \
Aaron Durbinec199dd2013-10-20 20:58:24 -0700497 .driver_data = (void *)&board_
498
Benson Leungcdddd232013-10-20 20:58:26 -0700499static struct dmi_system_id chromeos_laptop_dmi_table[] __initdata = {
Benson Leungd1381f42012-10-25 14:21:21 -0700500 {
Aaron Durbinec199dd2013-10-20 20:58:24 -0700501 .ident = "Samsung Series 5 550",
Benson Leungd1381f42012-10-25 14:21:21 -0700502 .matches = {
503 DMI_MATCH(DMI_SYS_VENDOR, "SAMSUNG"),
504 DMI_MATCH(DMI_PRODUCT_NAME, "Lumpy"),
505 },
Aaron Durbinec199dd2013-10-20 20:58:24 -0700506 _CBDD(samsung_series_5_550),
Benson Leungd1381f42012-10-25 14:21:21 -0700507 },
508 {
Aaron Durbinec199dd2013-10-20 20:58:24 -0700509 .ident = "Samsung Series 5",
Benson Leung8016bcb2013-02-01 14:34:46 -0800510 .matches = {
511 DMI_MATCH(DMI_PRODUCT_NAME, "Alex"),
512 },
Aaron Durbinec199dd2013-10-20 20:58:24 -0700513 _CBDD(samsung_series_5),
Benson Leung8016bcb2013-02-01 14:34:46 -0800514 },
515 {
Aaron Durbinec199dd2013-10-20 20:58:24 -0700516 .ident = "Chromebook Pixel",
Benson Leungaabf3f42013-02-01 14:34:45 -0800517 .matches = {
Aaron Durbinec199dd2013-10-20 20:58:24 -0700518 DMI_MATCH(DMI_SYS_VENDOR, "GOOGLE"),
519 DMI_MATCH(DMI_PRODUCT_NAME, "Link"),
Benson Leungaabf3f42013-02-01 14:34:45 -0800520 },
Aaron Durbinec199dd2013-10-20 20:58:24 -0700521 _CBDD(chromebook_pixel),
Benson Leungaabf3f42013-02-01 14:34:45 -0800522 },
523 {
Mohammed Habibulla0e1e5e52014-06-17 14:02:02 -0700524 .ident = "Wolf",
525 .matches = {
526 DMI_MATCH(DMI_BIOS_VENDOR, "coreboot"),
527 DMI_MATCH(DMI_PRODUCT_NAME, "Wolf"),
528 },
529 _CBDD(dell_chromebook_11),
530 },
531 {
Benson Leung5ea95672014-06-17 14:02:01 -0700532 .ident = "HP Chromebook 14",
533 .matches = {
534 DMI_MATCH(DMI_BIOS_VENDOR, "coreboot"),
535 DMI_MATCH(DMI_PRODUCT_NAME, "Falco"),
536 },
537 _CBDD(hp_chromebook_14),
538 },
539 {
Gene Chen963cb6f2014-06-17 14:02:03 -0700540 .ident = "Toshiba CB35",
541 .matches = {
542 DMI_MATCH(DMI_BIOS_VENDOR, "coreboot"),
543 DMI_MATCH(DMI_PRODUCT_NAME, "Leon"),
544 },
545 _CBDD(toshiba_cb35),
546 },
547 {
Aaron Durbinec199dd2013-10-20 20:58:24 -0700548 .ident = "Acer C7 Chromebook",
549 .matches = {
550 DMI_MATCH(DMI_PRODUCT_NAME, "Parrot"),
551 },
552 _CBDD(acer_c7_chromebook),
553 },
554 {
555 .ident = "Acer AC700",
Benson Leungaabf3f42013-02-01 14:34:45 -0800556 .matches = {
557 DMI_MATCH(DMI_PRODUCT_NAME, "ZGB"),
558 },
Aaron Durbinec199dd2013-10-20 20:58:24 -0700559 _CBDD(acer_ac700),
560 },
561 {
Mika Westerbergda3b0ab2014-06-17 14:02:00 -0700562 .ident = "Acer C720",
563 .matches = {
564 DMI_MATCH(DMI_PRODUCT_NAME, "Peppy"),
565 },
566 _CBDD(acer_c720),
567 },
568 {
Aaron Durbinec199dd2013-10-20 20:58:24 -0700569 .ident = "HP Pavilion 14 Chromebook",
570 .matches = {
571 DMI_MATCH(DMI_PRODUCT_NAME, "Butterfly"),
572 },
573 _CBDD(hp_pavilion_14_chromebook),
574 },
575 {
576 .ident = "Cr-48",
577 .matches = {
578 DMI_MATCH(DMI_PRODUCT_NAME, "Mario"),
579 },
580 _CBDD(cr48),
Benson Leungaabf3f42013-02-01 14:34:45 -0800581 },
Benson Leungd1381f42012-10-25 14:21:21 -0700582 { }
583};
584MODULE_DEVICE_TABLE(dmi, chromeos_laptop_dmi_table);
585
Benson Leung9ad36922013-10-20 20:58:25 -0700586static struct platform_device *cros_platform_device;
587
588static struct platform_driver cros_platform_driver = {
589 .driver = {
590 .name = "chromeos_laptop",
Benson Leung9ad36922013-10-20 20:58:25 -0700591 },
592 .probe = chromeos_laptop_probe,
593};
594
Benson Leungd1381f42012-10-25 14:21:21 -0700595static int __init chromeos_laptop_init(void)
596{
Benson Leung9ad36922013-10-20 20:58:25 -0700597 int ret;
Robin Schroer49c68a22014-05-29 20:45:07 +0200598
Benson Leungd1381f42012-10-25 14:21:21 -0700599 if (!dmi_check_system(chromeos_laptop_dmi_table)) {
600 pr_debug("%s unsupported system.\n", __func__);
601 return -ENODEV;
602 }
Benson Leung9ad36922013-10-20 20:58:25 -0700603
604 ret = platform_driver_register(&cros_platform_driver);
605 if (ret)
606 return ret;
607
608 cros_platform_device = platform_device_alloc("chromeos_laptop", -1);
609 if (!cros_platform_device) {
610 ret = -ENOMEM;
611 goto fail_platform_device1;
612 }
613
614 ret = platform_device_add(cros_platform_device);
615 if (ret)
616 goto fail_platform_device2;
617
Benson Leungd1381f42012-10-25 14:21:21 -0700618 return 0;
Benson Leung9ad36922013-10-20 20:58:25 -0700619
620fail_platform_device2:
621 platform_device_put(cros_platform_device);
622fail_platform_device1:
623 platform_driver_unregister(&cros_platform_driver);
624 return ret;
Benson Leungd1381f42012-10-25 14:21:21 -0700625}
626
627static void __exit chromeos_laptop_exit(void)
628{
629 if (als)
630 i2c_unregister_device(als);
631 if (tp)
632 i2c_unregister_device(tp);
Yufeng Shen33a84f82013-02-21 12:15:00 -0800633 if (ts)
634 i2c_unregister_device(ts);
Wei Yongjun2b8454a2013-11-27 11:34:58 +0800635
636 platform_device_unregister(cros_platform_device);
637 platform_driver_unregister(&cros_platform_driver);
Benson Leungd1381f42012-10-25 14:21:21 -0700638}
639
640module_init(chromeos_laptop_init);
641module_exit(chromeos_laptop_exit);
642
643MODULE_DESCRIPTION("Chrome OS Laptop driver");
644MODULE_AUTHOR("Benson Leung <bleung@chromium.org>");
645MODULE_LICENSE("GPL");