blob: 7a4f785bc836f9b8fbeaea1c193cbe474ea89d52 [file] [log] [blame]
Vadim Bendebury41364f02014-02-27 13:26:02 -07001/*
2 * Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file.
5 *
6 * Alternatively, this software may be distributed under the terms of the
7 * GNU General Public License ("GPL") version 2 as published by the Free
8 * Software Foundation.
9 */
10
11#include <common.h>
12#include <cros_ec.h>
Simon Glass84d6cbd2014-10-13 23:42:14 -060013#include <dm.h>
14#include <errno.h>
15
Vadim Bendebury41364f02014-02-27 13:26:02 -070016DECLARE_GLOBAL_DATA_PTR;
17
Vadim Bendebury41364f02014-02-27 13:26:02 -070018struct cros_ec_dev *board_get_cros_ec_dev(void)
19{
Simon Glass84d6cbd2014-10-13 23:42:14 -060020 struct udevice *dev;
21 int ret;
22
23 ret = uclass_get_device(UCLASS_CROS_EC, 0, &dev);
24 if (ret) {
25 debug("%s: Error %d\n", __func__, ret);
26 return NULL;
27 }
Simon Glasse564f052015-03-05 12:25:20 -070028 return dev_get_uclass_priv(dev);
Vadim Bendebury41364f02014-02-27 13:26:02 -070029}
30
Vadim Bendebury41364f02014-02-27 13:26:02 -070031int cros_ec_get_error(void)
32{
Simon Glass84d6cbd2014-10-13 23:42:14 -060033 struct udevice *dev;
34 int ret;
35
36 ret = uclass_get_device(UCLASS_CROS_EC, 0, &dev);
37 if (ret && ret != -ENODEV)
38 return ret;
39
40 return 0;
Vadim Bendebury41364f02014-02-27 13:26:02 -070041}