1 // SPDX-License-Identifier: GPL-2.0+
2 // Driver to instantiate Chromebook i2c/smbus devices.
4 // Copyright (C) 2012 Google, Inc.
5 // Author: Benson Leung <bleung@chromium.org>
7 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
9 #include <linux/acpi.h>
10 #include <linux/dmi.h>
11 #include <linux/i2c.h>
12 #include <linux/input.h>
13 #include <linux/interrupt.h>
14 #include <linux/ioport.h>
15 #include <linux/module.h>
16 #include <linux/pci.h>
17 #include <linux/platform_device.h>
18 #include <linux/property.h>
20 #define ATMEL_TP_I2C_ADDR 0x4b
21 #define ATMEL_TP_I2C_BL_ADDR 0x25
22 #define ATMEL_TS_I2C_ADDR 0x4a
23 #define ATMEL_TS_I2C_BL_ADDR 0x26
24 #define CYAPA_TP_I2C_ADDR 0x67
25 #define ELAN_TP_I2C_ADDR 0x15
26 #define ISL_ALS_I2C_ADDR 0x44
27 #define TAOS_ALS_I2C_ADDR 0x29
29 static const char *i2c_adapter_names
[] = {
33 "Synopsys DesignWare I2C adapter",
36 /* Keep this enum consistent with i2c_adapter_names */
37 enum i2c_adapter_type
{
38 I2C_ADAPTER_SMBUS
= 0,
41 I2C_ADAPTER_DESIGNWARE
,
44 struct i2c_peripheral
{
45 struct i2c_board_info board_info
;
46 unsigned short alt_addr
;
49 unsigned long irqflags
;
50 struct resource irq_resource
;
52 enum i2c_adapter_type type
;
55 struct i2c_client
*client
;
58 struct acpi_peripheral
{
59 char hid
[ACPI_ID_LEN
];
60 const struct property_entry
*properties
;
63 struct chromeos_laptop
{
65 * Note that we can't mark this pointer as const because
66 * i2c_new_probed_device() changes passed in I2C board info, so.
68 struct i2c_peripheral
*i2c_peripherals
;
69 unsigned int num_i2c_peripherals
;
71 const struct acpi_peripheral
*acpi_peripherals
;
72 unsigned int num_acpi_peripherals
;
75 static const struct chromeos_laptop
*cros_laptop
;
77 static struct i2c_client
*
78 chromes_laptop_instantiate_i2c_device(struct i2c_adapter
*adapter
,
79 struct i2c_board_info
*info
,
80 unsigned short alt_addr
)
82 const unsigned short addr_list
[] = { info
->addr
, I2C_CLIENT_END
};
83 struct i2c_client
*client
;
86 * Add the i2c device. If we can't detect it at the primary
87 * address we scan secondary addresses. In any case the client
88 * structure gets assigned primary address.
90 client
= i2c_new_probed_device(adapter
, info
, addr_list
, NULL
);
91 if (!client
&& alt_addr
) {
92 struct i2c_board_info dummy_info
= {
93 I2C_BOARD_INFO("dummy", info
->addr
),
95 const unsigned short alt_addr_list
[] = {
96 alt_addr
, I2C_CLIENT_END
98 struct i2c_client
*dummy
;
100 dummy
= i2c_new_probed_device(adapter
, &dummy_info
,
101 alt_addr_list
, NULL
);
103 pr_debug("%d-%02x is probed at %02x\n",
104 adapter
->nr
, info
->addr
, dummy
->addr
);
105 i2c_unregister_device(dummy
);
106 client
= i2c_new_device(adapter
, info
);
111 pr_debug("failed to register device %d-%02x\n",
112 adapter
->nr
, info
->addr
);
114 pr_debug("added i2c device %d-%02x\n",
115 adapter
->nr
, info
->addr
);
120 static bool chromeos_laptop_match_adapter_devid(struct device
*dev
, u32 devid
)
122 struct pci_dev
*pdev
;
124 if (!dev_is_pci(dev
))
127 pdev
= to_pci_dev(dev
);
128 return devid
== PCI_DEVID(pdev
->bus
->number
, pdev
->devfn
);
131 static void chromeos_laptop_check_adapter(struct i2c_adapter
*adapter
)
133 struct i2c_peripheral
*i2c_dev
;
136 for (i
= 0; i
< cros_laptop
->num_i2c_peripherals
; i
++) {
137 i2c_dev
= &cros_laptop
->i2c_peripherals
[i
];
139 /* Skip devices already created */
143 if (strncmp(adapter
->name
, i2c_adapter_names
[i2c_dev
->type
],
144 strlen(i2c_adapter_names
[i2c_dev
->type
])))
147 if (i2c_dev
->pci_devid
&&
148 !chromeos_laptop_match_adapter_devid(adapter
->dev
.parent
,
149 i2c_dev
->pci_devid
)) {
154 chromes_laptop_instantiate_i2c_device(adapter
,
155 &i2c_dev
->board_info
,
160 static bool chromeos_laptop_adjust_client(struct i2c_client
*client
)
162 const struct acpi_peripheral
*acpi_dev
;
163 struct acpi_device_id acpi_ids
[2] = { };
167 if (!has_acpi_companion(&client
->dev
))
170 for (i
= 0; i
< cros_laptop
->num_acpi_peripherals
; i
++) {
171 acpi_dev
= &cros_laptop
->acpi_peripherals
[i
];
173 memcpy(acpi_ids
[0].id
, acpi_dev
->hid
, ACPI_ID_LEN
);
175 if (acpi_match_device(acpi_ids
, &client
->dev
)) {
176 error
= device_add_properties(&client
->dev
,
177 acpi_dev
->properties
);
179 dev_err(&client
->dev
,
180 "failed to add properties: %d\n",
192 static void chromeos_laptop_detach_i2c_client(struct i2c_client
*client
)
194 struct i2c_peripheral
*i2c_dev
;
197 for (i
= 0; i
< cros_laptop
->num_i2c_peripherals
; i
++) {
198 i2c_dev
= &cros_laptop
->i2c_peripherals
[i
];
200 if (i2c_dev
->client
== client
)
201 i2c_dev
->client
= NULL
;
205 static int chromeos_laptop_i2c_notifier_call(struct notifier_block
*nb
,
206 unsigned long action
, void *data
)
208 struct device
*dev
= data
;
211 case BUS_NOTIFY_ADD_DEVICE
:
212 if (dev
->type
== &i2c_adapter_type
)
213 chromeos_laptop_check_adapter(to_i2c_adapter(dev
));
214 else if (dev
->type
== &i2c_client_type
)
215 chromeos_laptop_adjust_client(to_i2c_client(dev
));
218 case BUS_NOTIFY_REMOVED_DEVICE
:
219 if (dev
->type
== &i2c_client_type
)
220 chromeos_laptop_detach_i2c_client(to_i2c_client(dev
));
227 static struct notifier_block chromeos_laptop_i2c_notifier
= {
228 .notifier_call
= chromeos_laptop_i2c_notifier_call
,
231 #define DECLARE_CROS_LAPTOP(_name) \
232 static const struct chromeos_laptop _name __initconst = { \
233 .i2c_peripherals = _name##_peripherals, \
234 .num_i2c_peripherals = ARRAY_SIZE(_name##_peripherals), \
237 #define DECLARE_ACPI_CROS_LAPTOP(_name) \
238 static const struct chromeos_laptop _name __initconst = { \
239 .acpi_peripherals = _name##_peripherals, \
240 .num_acpi_peripherals = ARRAY_SIZE(_name##_peripherals), \
243 static struct i2c_peripheral samsung_series_5_550_peripherals
[] __initdata
= {
247 I2C_BOARD_INFO("cyapa", CYAPA_TP_I2C_ADDR
),
248 .flags
= I2C_CLIENT_WAKE
,
250 .dmi_name
= "trackpad",
251 .type
= I2C_ADAPTER_SMBUS
,
256 I2C_BOARD_INFO("isl29018", ISL_ALS_I2C_ADDR
),
258 .dmi_name
= "lightsensor",
259 .type
= I2C_ADAPTER_SMBUS
,
262 DECLARE_CROS_LAPTOP(samsung_series_5_550
);
264 static struct i2c_peripheral samsung_series_5_peripherals
[] __initdata
= {
268 I2C_BOARD_INFO("tsl2583", TAOS_ALS_I2C_ADDR
),
270 .type
= I2C_ADAPTER_SMBUS
,
273 DECLARE_CROS_LAPTOP(samsung_series_5
);
275 static const int chromebook_pixel_tp_keys
[] __initconst
= {
284 static const struct property_entry
285 chromebook_pixel_trackpad_props
[] __initconst
= {
286 PROPERTY_ENTRY_STRING("compatible", "atmel,maxtouch"),
287 PROPERTY_ENTRY_U32_ARRAY("linux,gpio-keymap", chromebook_pixel_tp_keys
),
291 static const struct property_entry
292 chromebook_atmel_touchscreen_props
[] __initconst
= {
293 PROPERTY_ENTRY_STRING("compatible", "atmel,maxtouch"),
297 static struct i2c_peripheral chromebook_pixel_peripherals
[] __initdata
= {
301 I2C_BOARD_INFO("atmel_mxt_ts",
304 chromebook_atmel_touchscreen_props
,
305 .flags
= I2C_CLIENT_WAKE
,
307 .dmi_name
= "touchscreen",
308 .irqflags
= IRQF_TRIGGER_FALLING
,
309 .type
= I2C_ADAPTER_PANEL
,
310 .alt_addr
= ATMEL_TS_I2C_BL_ADDR
,
315 I2C_BOARD_INFO("atmel_mxt_tp",
318 chromebook_pixel_trackpad_props
,
319 .flags
= I2C_CLIENT_WAKE
,
321 .dmi_name
= "trackpad",
322 .irqflags
= IRQF_TRIGGER_FALLING
,
323 .type
= I2C_ADAPTER_VGADDC
,
324 .alt_addr
= ATMEL_TP_I2C_BL_ADDR
,
329 I2C_BOARD_INFO("isl29018", ISL_ALS_I2C_ADDR
),
331 .dmi_name
= "lightsensor",
332 .type
= I2C_ADAPTER_PANEL
,
335 DECLARE_CROS_LAPTOP(chromebook_pixel
);
337 static struct i2c_peripheral hp_chromebook_14_peripherals
[] __initdata
= {
341 I2C_BOARD_INFO("cyapa", CYAPA_TP_I2C_ADDR
),
342 .flags
= I2C_CLIENT_WAKE
,
344 .dmi_name
= "trackpad",
345 .type
= I2C_ADAPTER_DESIGNWARE
,
348 DECLARE_CROS_LAPTOP(hp_chromebook_14
);
350 static struct i2c_peripheral dell_chromebook_11_peripherals
[] __initdata
= {
354 I2C_BOARD_INFO("cyapa", CYAPA_TP_I2C_ADDR
),
355 .flags
= I2C_CLIENT_WAKE
,
357 .dmi_name
= "trackpad",
358 .type
= I2C_ADAPTER_DESIGNWARE
,
360 /* Elan Touchpad option. */
363 I2C_BOARD_INFO("elan_i2c", ELAN_TP_I2C_ADDR
),
364 .flags
= I2C_CLIENT_WAKE
,
366 .dmi_name
= "trackpad",
367 .type
= I2C_ADAPTER_DESIGNWARE
,
370 DECLARE_CROS_LAPTOP(dell_chromebook_11
);
372 static struct i2c_peripheral toshiba_cb35_peripherals
[] __initdata
= {
376 I2C_BOARD_INFO("cyapa", CYAPA_TP_I2C_ADDR
),
377 .flags
= I2C_CLIENT_WAKE
,
379 .dmi_name
= "trackpad",
380 .type
= I2C_ADAPTER_DESIGNWARE
,
383 DECLARE_CROS_LAPTOP(toshiba_cb35
);
385 static struct i2c_peripheral acer_c7_chromebook_peripherals
[] __initdata
= {
389 I2C_BOARD_INFO("cyapa", CYAPA_TP_I2C_ADDR
),
390 .flags
= I2C_CLIENT_WAKE
,
392 .dmi_name
= "trackpad",
393 .type
= I2C_ADAPTER_SMBUS
,
396 DECLARE_CROS_LAPTOP(acer_c7_chromebook
);
398 static struct i2c_peripheral acer_ac700_peripherals
[] __initdata
= {
402 I2C_BOARD_INFO("tsl2583", TAOS_ALS_I2C_ADDR
),
404 .type
= I2C_ADAPTER_SMBUS
,
407 DECLARE_CROS_LAPTOP(acer_ac700
);
409 static struct i2c_peripheral acer_c720_peripherals
[] __initdata
= {
413 I2C_BOARD_INFO("atmel_mxt_ts",
416 chromebook_atmel_touchscreen_props
,
417 .flags
= I2C_CLIENT_WAKE
,
419 .dmi_name
= "touchscreen",
420 .irqflags
= IRQF_TRIGGER_FALLING
,
421 .type
= I2C_ADAPTER_DESIGNWARE
,
422 .pci_devid
= PCI_DEVID(0, PCI_DEVFN(0x15, 0x2)),
423 .alt_addr
= ATMEL_TS_I2C_BL_ADDR
,
428 I2C_BOARD_INFO("cyapa", CYAPA_TP_I2C_ADDR
),
429 .flags
= I2C_CLIENT_WAKE
,
431 .dmi_name
= "trackpad",
432 .type
= I2C_ADAPTER_DESIGNWARE
,
433 .pci_devid
= PCI_DEVID(0, PCI_DEVFN(0x15, 0x1)),
435 /* Elan Touchpad option. */
438 I2C_BOARD_INFO("elan_i2c", ELAN_TP_I2C_ADDR
),
439 .flags
= I2C_CLIENT_WAKE
,
441 .dmi_name
= "trackpad",
442 .type
= I2C_ADAPTER_DESIGNWARE
,
443 .pci_devid
= PCI_DEVID(0, PCI_DEVFN(0x15, 0x1)),
448 I2C_BOARD_INFO("isl29018", ISL_ALS_I2C_ADDR
),
450 .dmi_name
= "lightsensor",
451 .type
= I2C_ADAPTER_DESIGNWARE
,
452 .pci_devid
= PCI_DEVID(0, PCI_DEVFN(0x15, 0x2)),
455 DECLARE_CROS_LAPTOP(acer_c720
);
457 static struct i2c_peripheral
458 hp_pavilion_14_chromebook_peripherals
[] __initdata
= {
462 I2C_BOARD_INFO("cyapa", CYAPA_TP_I2C_ADDR
),
463 .flags
= I2C_CLIENT_WAKE
,
465 .dmi_name
= "trackpad",
466 .type
= I2C_ADAPTER_SMBUS
,
469 DECLARE_CROS_LAPTOP(hp_pavilion_14_chromebook
);
471 static struct i2c_peripheral cr48_peripherals
[] __initdata
= {
475 I2C_BOARD_INFO("tsl2563", TAOS_ALS_I2C_ADDR
),
477 .type
= I2C_ADAPTER_SMBUS
,
480 DECLARE_CROS_LAPTOP(cr48
);
482 static const u32 samus_touchpad_buttons
[] __initconst
= {
489 static const struct property_entry samus_trackpad_props
[] __initconst
= {
490 PROPERTY_ENTRY_STRING("compatible", "atmel,maxtouch"),
491 PROPERTY_ENTRY_U32_ARRAY("linux,gpio-keymap", samus_touchpad_buttons
),
495 static struct acpi_peripheral samus_peripherals
[] __initdata
= {
499 .properties
= samus_trackpad_props
,
504 .properties
= chromebook_atmel_touchscreen_props
,
507 DECLARE_ACPI_CROS_LAPTOP(samus
);
509 static struct acpi_peripheral generic_atmel_peripherals
[] __initdata
= {
513 .properties
= chromebook_pixel_trackpad_props
,
518 .properties
= chromebook_atmel_touchscreen_props
,
521 DECLARE_ACPI_CROS_LAPTOP(generic_atmel
);
523 static const struct dmi_system_id chromeos_laptop_dmi_table
[] __initconst
= {
525 .ident
= "Samsung Series 5 550",
527 DMI_MATCH(DMI_SYS_VENDOR
, "SAMSUNG"),
528 DMI_MATCH(DMI_PRODUCT_NAME
, "Lumpy"),
530 .driver_data
= (void *)&samsung_series_5_550
,
533 .ident
= "Samsung Series 5",
535 DMI_MATCH(DMI_PRODUCT_NAME
, "Alex"),
537 .driver_data
= (void *)&samsung_series_5
,
540 .ident
= "Chromebook Pixel",
542 DMI_MATCH(DMI_SYS_VENDOR
, "GOOGLE"),
543 DMI_MATCH(DMI_PRODUCT_NAME
, "Link"),
545 .driver_data
= (void *)&chromebook_pixel
,
550 DMI_MATCH(DMI_BIOS_VENDOR
, "coreboot"),
551 DMI_MATCH(DMI_PRODUCT_NAME
, "Wolf"),
553 .driver_data
= (void *)&dell_chromebook_11
,
556 .ident
= "HP Chromebook 14",
558 DMI_MATCH(DMI_BIOS_VENDOR
, "coreboot"),
559 DMI_MATCH(DMI_PRODUCT_NAME
, "Falco"),
561 .driver_data
= (void *)&hp_chromebook_14
,
564 .ident
= "Toshiba CB35",
566 DMI_MATCH(DMI_BIOS_VENDOR
, "coreboot"),
567 DMI_MATCH(DMI_PRODUCT_NAME
, "Leon"),
569 .driver_data
= (void *)&toshiba_cb35
,
572 .ident
= "Acer C7 Chromebook",
574 DMI_MATCH(DMI_PRODUCT_NAME
, "Parrot"),
576 .driver_data
= (void *)&acer_c7_chromebook
,
579 .ident
= "Acer AC700",
581 DMI_MATCH(DMI_PRODUCT_NAME
, "ZGB"),
583 .driver_data
= (void *)&acer_ac700
,
586 .ident
= "Acer C720",
588 DMI_MATCH(DMI_PRODUCT_NAME
, "Peppy"),
590 .driver_data
= (void *)&acer_c720
,
593 .ident
= "HP Pavilion 14 Chromebook",
595 DMI_MATCH(DMI_PRODUCT_NAME
, "Butterfly"),
597 .driver_data
= (void *)&hp_pavilion_14_chromebook
,
602 DMI_MATCH(DMI_PRODUCT_NAME
, "Mario"),
604 .driver_data
= (void *)&cr48
,
606 /* Devices with peripherals incompletely described in ACPI */
608 .ident
= "Chromebook Pro",
610 DMI_MATCH(DMI_SYS_VENDOR
, "Google"),
611 DMI_MATCH(DMI_PRODUCT_NAME
, "Caroline"),
613 .driver_data
= (void *)&samus
,
616 .ident
= "Google Pixel 2 (2015)",
618 DMI_MATCH(DMI_SYS_VENDOR
, "GOOGLE"),
619 DMI_MATCH(DMI_PRODUCT_NAME
, "Samus"),
621 .driver_data
= (void *)&samus
,
624 .ident
= "Samsung Chromebook 3",
626 DMI_MATCH(DMI_SYS_VENDOR
, "GOOGLE"),
627 DMI_MATCH(DMI_PRODUCT_NAME
, "Celes"),
629 .driver_data
= (void *)&samus
,
633 * Other Chromebooks with Atmel touch controllers:
635 * - Clapper, Expresso, Rambi, Glimmer (touchscreen)
637 .ident
= "Other Chromebook",
640 * This will match all Google devices, not only devices
641 * with Atmel, but we will validate that the device
642 * actually has matching peripherals.
644 DMI_MATCH(DMI_SYS_VENDOR
, "GOOGLE"),
646 .driver_data
= (void *)&generic_atmel
,
650 MODULE_DEVICE_TABLE(dmi
, chromeos_laptop_dmi_table
);
652 static int __init
chromeos_laptop_scan_peripherals(struct device
*dev
, void *data
)
656 if (dev
->type
== &i2c_adapter_type
) {
657 chromeos_laptop_check_adapter(to_i2c_adapter(dev
));
658 } else if (dev
->type
== &i2c_client_type
) {
659 if (chromeos_laptop_adjust_client(to_i2c_client(dev
))) {
661 * Now that we have needed properties re-trigger
662 * driver probe in case driver was initialized
663 * earlier and probe failed.
665 error
= device_attach(dev
);
668 "%s: device_attach() failed: %d\n",
676 static int __init
chromeos_laptop_get_irq_from_dmi(const char *dmi_name
)
678 const struct dmi_device
*dmi_dev
;
679 const struct dmi_dev_onboard
*dev_data
;
681 dmi_dev
= dmi_find_device(DMI_DEV_TYPE_DEV_ONBOARD
, dmi_name
, NULL
);
683 pr_err("failed to find DMI device '%s'\n", dmi_name
);
687 dev_data
= dmi_dev
->device_data
;
689 pr_err("failed to get data from DMI for '%s'\n", dmi_name
);
693 return dev_data
->instance
;
696 static int __init
chromeos_laptop_setup_irq(struct i2c_peripheral
*i2c_dev
)
700 if (i2c_dev
->dmi_name
) {
701 irq
= chromeos_laptop_get_irq_from_dmi(i2c_dev
->dmi_name
);
705 i2c_dev
->irq_resource
= (struct resource
)
706 DEFINE_RES_NAMED(irq
, 1, NULL
,
707 IORESOURCE_IRQ
| i2c_dev
->irqflags
);
708 i2c_dev
->board_info
.resources
= &i2c_dev
->irq_resource
;
709 i2c_dev
->board_info
.num_resources
= 1;
716 chromeos_laptop_prepare_i2c_peripherals(struct chromeos_laptop
*cros_laptop
,
717 const struct chromeos_laptop
*src
)
719 struct i2c_peripheral
*i2c_dev
;
720 struct i2c_board_info
*info
;
724 if (!src
->num_i2c_peripherals
)
727 cros_laptop
->i2c_peripherals
= kmemdup(src
->i2c_peripherals
,
728 src
->num_i2c_peripherals
*
729 sizeof(*src
->i2c_peripherals
),
731 if (!cros_laptop
->i2c_peripherals
)
734 cros_laptop
->num_i2c_peripherals
= src
->num_i2c_peripherals
;
736 for (i
= 0; i
< cros_laptop
->num_i2c_peripherals
; i
++) {
737 i2c_dev
= &cros_laptop
->i2c_peripherals
[i
];
738 info
= &i2c_dev
->board_info
;
740 error
= chromeos_laptop_setup_irq(i2c_dev
);
744 /* We need to deep-copy properties */
745 if (info
->properties
) {
747 property_entries_dup(info
->properties
);
748 if (IS_ERR(info
->properties
)) {
749 error
= PTR_ERR(info
->properties
);
759 i2c_dev
= &cros_laptop
->i2c_peripherals
[i
];
760 info
= &i2c_dev
->board_info
;
761 if (info
->properties
)
762 property_entries_free(info
->properties
);
764 kfree(cros_laptop
->i2c_peripherals
);
769 chromeos_laptop_prepare_acpi_peripherals(struct chromeos_laptop
*cros_laptop
,
770 const struct chromeos_laptop
*src
)
772 struct acpi_peripheral
*acpi_peripherals
;
773 struct acpi_peripheral
*acpi_dev
;
774 const struct acpi_peripheral
*src_dev
;
775 int n_peripherals
= 0;
779 for (i
= 0; i
< src
->num_acpi_peripherals
; i
++) {
780 if (acpi_dev_present(src
->acpi_peripherals
[i
].hid
, NULL
, -1))
787 acpi_peripherals
= kcalloc(n_peripherals
,
788 sizeof(*src
->acpi_peripherals
),
790 if (!acpi_peripherals
)
793 acpi_dev
= acpi_peripherals
;
794 for (i
= 0; i
< src
->num_acpi_peripherals
; i
++) {
795 src_dev
= &src
->acpi_peripherals
[i
];
796 if (!acpi_dev_present(src_dev
->hid
, NULL
, -1))
799 *acpi_dev
= *src_dev
;
801 /* We need to deep-copy properties */
802 if (src_dev
->properties
) {
803 acpi_dev
->properties
=
804 property_entries_dup(src_dev
->properties
);
805 if (IS_ERR(acpi_dev
->properties
)) {
806 error
= PTR_ERR(acpi_dev
->properties
);
814 cros_laptop
->acpi_peripherals
= acpi_peripherals
;
815 cros_laptop
->num_acpi_peripherals
= n_peripherals
;
821 acpi_dev
= &acpi_peripherals
[i
];
822 if (acpi_dev
->properties
)
823 property_entries_free(acpi_dev
->properties
);
826 kfree(acpi_peripherals
);
830 static void chromeos_laptop_destroy(const struct chromeos_laptop
*cros_laptop
)
832 const struct acpi_peripheral
*acpi_dev
;
833 struct i2c_peripheral
*i2c_dev
;
834 struct i2c_board_info
*info
;
837 for (i
= 0; i
< cros_laptop
->num_i2c_peripherals
; i
++) {
838 i2c_dev
= &cros_laptop
->i2c_peripherals
[i
];
839 info
= &i2c_dev
->board_info
;
842 i2c_unregister_device(i2c_dev
->client
);
844 if (info
->properties
)
845 property_entries_free(info
->properties
);
848 for (i
= 0; i
< cros_laptop
->num_acpi_peripherals
; i
++) {
849 acpi_dev
= &cros_laptop
->acpi_peripherals
[i
];
851 if (acpi_dev
->properties
)
852 property_entries_free(acpi_dev
->properties
);
855 kfree(cros_laptop
->i2c_peripherals
);
856 kfree(cros_laptop
->acpi_peripherals
);
860 static struct chromeos_laptop
* __init
861 chromeos_laptop_prepare(const struct chromeos_laptop
*src
)
863 struct chromeos_laptop
*cros_laptop
;
866 cros_laptop
= kzalloc(sizeof(*cros_laptop
), GFP_KERNEL
);
868 return ERR_PTR(-ENOMEM
);
870 error
= chromeos_laptop_prepare_i2c_peripherals(cros_laptop
, src
);
872 error
= chromeos_laptop_prepare_acpi_peripherals(cros_laptop
,
876 chromeos_laptop_destroy(cros_laptop
);
877 return ERR_PTR(error
);
883 static int __init
chromeos_laptop_init(void)
885 const struct dmi_system_id
*dmi_id
;
888 dmi_id
= dmi_first_match(chromeos_laptop_dmi_table
);
890 pr_debug("unsupported system\n");
894 pr_debug("DMI Matched %s\n", dmi_id
->ident
);
896 cros_laptop
= chromeos_laptop_prepare((void *)dmi_id
->driver_data
);
897 if (IS_ERR(cros_laptop
))
898 return PTR_ERR(cros_laptop
);
900 if (!cros_laptop
->num_i2c_peripherals
&&
901 !cros_laptop
->num_acpi_peripherals
) {
902 pr_debug("no relevant devices detected\n");
904 goto err_destroy_cros_laptop
;
907 error
= bus_register_notifier(&i2c_bus_type
,
908 &chromeos_laptop_i2c_notifier
);
910 pr_err("failed to register i2c bus notifier: %d\n",
912 goto err_destroy_cros_laptop
;
916 * Scan adapters that have been registered and clients that have
917 * been created before we installed the notifier to make sure
918 * we do not miss any devices.
920 i2c_for_each_dev(NULL
, chromeos_laptop_scan_peripherals
);
924 err_destroy_cros_laptop
:
925 chromeos_laptop_destroy(cros_laptop
);
929 static void __exit
chromeos_laptop_exit(void)
931 bus_unregister_notifier(&i2c_bus_type
, &chromeos_laptop_i2c_notifier
);
932 chromeos_laptop_destroy(cros_laptop
);
935 module_init(chromeos_laptop_init
);
936 module_exit(chromeos_laptop_exit
);
938 MODULE_DESCRIPTION("Chrome OS Laptop driver");
939 MODULE_AUTHOR("Benson Leung <bleung@chromium.org>");
940 MODULE_LICENSE("GPL");