2 * ChromeOS EC multi-function device
4 * Copyright (C) 2012 Google, Inc
6 * This software is licensed under the terms of the GNU General Public
7 * License version 2, as published by the Free Software Foundation, and
8 * may be copied, distributed, and modified under those terms.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * The ChromeOS EC multi function device is used to mux all the requests
16 * to the EC device for its multiple features: keyboard controller,
17 * battery charging and regulator control, firmware update.
20 #include <linux/interrupt.h>
21 #include <linux/slab.h>
22 #include <linux/module.h>
23 #include <linux/mfd/core.h>
24 #include <linux/mfd/cros_ec.h>
25 #include <linux/mfd/cros_ec_commands.h>
27 int cros_ec_prepare_tx(struct cros_ec_device
*ec_dev
,
28 struct cros_ec_msg
*msg
)
33 BUG_ON(msg
->out_len
> EC_HOST_PARAM_SIZE
);
35 out
[0] = EC_CMD_VERSION0
+ msg
->version
;
37 out
[2] = msg
->out_len
;
38 csum
= out
[0] + out
[1] + out
[2];
39 for (i
= 0; i
< msg
->out_len
; i
++)
40 csum
+= out
[EC_MSG_TX_HEADER_BYTES
+ i
] = msg
->out_buf
[i
];
41 out
[EC_MSG_TX_HEADER_BYTES
+ msg
->out_len
] = (uint8_t)(csum
& 0xff);
43 return EC_MSG_TX_PROTO_BYTES
+ msg
->out_len
;
45 EXPORT_SYMBOL(cros_ec_prepare_tx
);
47 static int cros_ec_command_sendrecv(struct cros_ec_device
*ec_dev
,
48 uint16_t cmd
, void *out_buf
, int out_len
,
49 void *in_buf
, int in_len
)
51 struct cros_ec_msg msg
;
53 msg
.version
= cmd
>> 8;
55 msg
.out_buf
= out_buf
;
56 msg
.out_len
= out_len
;
60 return ec_dev
->command_xfer(ec_dev
, &msg
);
63 static int cros_ec_command_recv(struct cros_ec_device
*ec_dev
,
64 uint16_t cmd
, void *buf
, int buf_len
)
66 return cros_ec_command_sendrecv(ec_dev
, cmd
, NULL
, 0, buf
, buf_len
);
69 static int cros_ec_command_send(struct cros_ec_device
*ec_dev
,
70 uint16_t cmd
, void *buf
, int buf_len
)
72 return cros_ec_command_sendrecv(ec_dev
, cmd
, buf
, buf_len
, NULL
, 0);
75 static irqreturn_t
ec_irq_thread(int irq
, void *data
)
77 struct cros_ec_device
*ec_dev
= data
;
79 if (device_may_wakeup(ec_dev
->dev
))
80 pm_wakeup_event(ec_dev
->dev
, 0);
82 blocking_notifier_call_chain(&ec_dev
->event_notifier
, 1, ec_dev
);
87 static const struct mfd_cell cros_devs
[] = {
89 .name
= "cros-ec-keyb",
91 .of_compatible
= "google,cros-ec-keyb",
95 int cros_ec_register(struct cros_ec_device
*ec_dev
)
97 struct device
*dev
= ec_dev
->dev
;
100 BLOCKING_INIT_NOTIFIER_HEAD(&ec_dev
->event_notifier
);
102 ec_dev
->command_send
= cros_ec_command_send
;
103 ec_dev
->command_recv
= cros_ec_command_recv
;
104 ec_dev
->command_sendrecv
= cros_ec_command_sendrecv
;
106 if (ec_dev
->din_size
) {
107 ec_dev
->din
= devm_kzalloc(dev
, ec_dev
->din_size
, GFP_KERNEL
);
111 if (ec_dev
->dout_size
) {
112 ec_dev
->dout
= devm_kzalloc(dev
, ec_dev
->dout_size
, GFP_KERNEL
);
118 dev_dbg(dev
, "no valid IRQ: %d\n", ec_dev
->irq
);
122 err
= request_threaded_irq(ec_dev
->irq
, NULL
, ec_irq_thread
,
123 IRQF_TRIGGER_LOW
| IRQF_ONESHOT
,
124 "chromeos-ec", ec_dev
);
126 dev_err(dev
, "request irq %d: error %d\n", ec_dev
->irq
, err
);
130 err
= mfd_add_devices(dev
, 0, cros_devs
,
131 ARRAY_SIZE(cros_devs
),
132 NULL
, ec_dev
->irq
, NULL
);
134 dev_err(dev
, "failed to add mfd devices\n");
138 dev_info(dev
, "Chrome EC (%s)\n", ec_dev
->name
);
143 free_irq(ec_dev
->irq
, ec_dev
);
147 EXPORT_SYMBOL(cros_ec_register
);
149 int cros_ec_remove(struct cros_ec_device
*ec_dev
)
151 mfd_remove_devices(ec_dev
->dev
);
152 free_irq(ec_dev
->irq
, ec_dev
);
156 EXPORT_SYMBOL(cros_ec_remove
);
158 #ifdef CONFIG_PM_SLEEP
159 int cros_ec_suspend(struct cros_ec_device
*ec_dev
)
161 struct device
*dev
= ec_dev
->dev
;
163 if (device_may_wakeup(dev
))
164 ec_dev
->wake_enabled
= !enable_irq_wake(ec_dev
->irq
);
166 disable_irq(ec_dev
->irq
);
167 ec_dev
->was_wake_device
= ec_dev
->wake_enabled
;
171 EXPORT_SYMBOL(cros_ec_suspend
);
173 int cros_ec_resume(struct cros_ec_device
*ec_dev
)
175 enable_irq(ec_dev
->irq
);
177 if (ec_dev
->wake_enabled
) {
178 disable_irq_wake(ec_dev
->irq
);
179 ec_dev
->wake_enabled
= 0;
184 EXPORT_SYMBOL(cros_ec_resume
);