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>
26 #include <linux/delay.h>
28 #define EC_COMMAND_RETRIES 50
30 int cros_ec_prepare_tx(struct cros_ec_device
*ec_dev
,
31 struct cros_ec_command
*msg
)
36 BUG_ON(msg
->outsize
> EC_PROTO2_MAX_PARAM_SIZE
);
38 out
[0] = EC_CMD_VERSION0
+ msg
->version
;
39 out
[1] = msg
->command
;
40 out
[2] = msg
->outsize
;
41 csum
= out
[0] + out
[1] + out
[2];
42 for (i
= 0; i
< msg
->outsize
; i
++)
43 csum
+= out
[EC_MSG_TX_HEADER_BYTES
+ i
] = msg
->outdata
[i
];
44 out
[EC_MSG_TX_HEADER_BYTES
+ msg
->outsize
] = (uint8_t)(csum
& 0xff);
46 return EC_MSG_TX_PROTO_BYTES
+ msg
->outsize
;
48 EXPORT_SYMBOL(cros_ec_prepare_tx
);
50 int cros_ec_check_result(struct cros_ec_device
*ec_dev
,
51 struct cros_ec_command
*msg
)
53 switch (msg
->result
) {
56 case EC_RES_IN_PROGRESS
:
57 dev_dbg(ec_dev
->dev
, "command 0x%02x in progress\n",
61 dev_dbg(ec_dev
->dev
, "command 0x%02x returned %d\n",
62 msg
->command
, msg
->result
);
66 EXPORT_SYMBOL(cros_ec_check_result
);
68 int cros_ec_cmd_xfer(struct cros_ec_device
*ec_dev
,
69 struct cros_ec_command
*msg
)
73 mutex_lock(&ec_dev
->lock
);
74 ret
= ec_dev
->cmd_xfer(ec_dev
, msg
);
75 if (msg
->result
== EC_RES_IN_PROGRESS
) {
77 struct cros_ec_command status_msg
= { };
78 struct ec_response_get_comms_status
*status
;
80 status_msg
.command
= EC_CMD_GET_COMMS_STATUS
;
81 status_msg
.insize
= sizeof(*status
);
84 * Query the EC's status until it's no longer busy or
85 * we encounter an error.
87 for (i
= 0; i
< EC_COMMAND_RETRIES
; i
++) {
88 usleep_range(10000, 11000);
90 ret
= ec_dev
->cmd_xfer(ec_dev
, &status_msg
);
94 msg
->result
= status_msg
.result
;
95 if (status_msg
.result
!= EC_RES_SUCCESS
)
98 status
= (struct ec_response_get_comms_status
*)
100 if (!(status
->flags
& EC_COMMS_STATUS_PROCESSING
))
104 mutex_unlock(&ec_dev
->lock
);
108 EXPORT_SYMBOL(cros_ec_cmd_xfer
);
110 static const struct mfd_cell cros_devs
[] = {
112 .name
= "cros-ec-keyb",
114 .of_compatible
= "google,cros-ec-keyb",
117 .name
= "cros-ec-i2c-tunnel",
119 .of_compatible
= "google,cros-ec-i2c-tunnel",
122 .name
= "cros-ec-ctl",
127 int cros_ec_register(struct cros_ec_device
*ec_dev
)
129 struct device
*dev
= ec_dev
->dev
;
132 if (ec_dev
->din_size
) {
133 ec_dev
->din
= devm_kzalloc(dev
, ec_dev
->din_size
, GFP_KERNEL
);
137 if (ec_dev
->dout_size
) {
138 ec_dev
->dout
= devm_kzalloc(dev
, ec_dev
->dout_size
, GFP_KERNEL
);
143 mutex_init(&ec_dev
->lock
);
145 err
= mfd_add_devices(dev
, 0, cros_devs
,
146 ARRAY_SIZE(cros_devs
),
147 NULL
, ec_dev
->irq
, NULL
);
149 dev_err(dev
, "failed to add mfd devices\n");
153 dev_info(dev
, "Chrome EC device registered\n");
157 EXPORT_SYMBOL(cros_ec_register
);
159 int cros_ec_remove(struct cros_ec_device
*ec_dev
)
161 mfd_remove_devices(ec_dev
->dev
);
165 EXPORT_SYMBOL(cros_ec_remove
);
167 #ifdef CONFIG_PM_SLEEP
168 int cros_ec_suspend(struct cros_ec_device
*ec_dev
)
170 struct device
*dev
= ec_dev
->dev
;
172 if (device_may_wakeup(dev
))
173 ec_dev
->wake_enabled
= !enable_irq_wake(ec_dev
->irq
);
175 disable_irq(ec_dev
->irq
);
176 ec_dev
->was_wake_device
= ec_dev
->wake_enabled
;
180 EXPORT_SYMBOL(cros_ec_suspend
);
182 int cros_ec_resume(struct cros_ec_device
*ec_dev
)
184 enable_irq(ec_dev
->irq
);
186 if (ec_dev
->wake_enabled
) {
187 disable_irq_wake(ec_dev
->irq
);
188 ec_dev
->wake_enabled
= 0;
193 EXPORT_SYMBOL(cros_ec_resume
);
197 MODULE_LICENSE("GPL");
198 MODULE_DESCRIPTION("ChromeOS EC core driver");