2014-02-27 20:26:02 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*
|
|
|
|
* Alternatively, this software may be distributed under the terms of the
|
|
|
|
* GNU General Public License ("GPL") version 2 as published by the Free
|
|
|
|
* Software Foundation.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <cros_ec.h>
|
2014-10-14 05:42:14 +00:00
|
|
|
#include <dm.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
2014-02-27 20:26:02 +00:00
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
2014-10-14 05:42:14 +00:00
|
|
|
#ifndef CONFIG_DM_CROS_EC
|
2014-02-27 20:26:02 +00:00
|
|
|
struct local_info {
|
|
|
|
struct cros_ec_dev *cros_ec_dev; /* Pointer to cros_ec device */
|
|
|
|
int cros_ec_err; /* Error for cros_ec, 0 if ok */
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct local_info local;
|
2014-10-14 05:42:14 +00:00
|
|
|
#endif
|
2014-02-27 20:26:02 +00:00
|
|
|
|
|
|
|
struct cros_ec_dev *board_get_cros_ec_dev(void)
|
|
|
|
{
|
2014-10-14 05:42:14 +00:00
|
|
|
#ifdef CONFIG_DM_CROS_EC
|
|
|
|
struct udevice *dev;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = uclass_get_device(UCLASS_CROS_EC, 0, &dev);
|
|
|
|
if (ret) {
|
|
|
|
debug("%s: Error %d\n", __func__, ret);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return dev->uclass_priv;
|
|
|
|
#else
|
2014-02-27 20:26:02 +00:00
|
|
|
return local.cros_ec_dev;
|
2014-10-14 05:42:14 +00:00
|
|
|
#endif
|
2014-02-27 20:26:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int board_init_cros_ec_devices(const void *blob)
|
|
|
|
{
|
2014-10-14 05:42:14 +00:00
|
|
|
#ifndef CONFIG_DM_CROS_EC
|
2014-02-27 20:26:02 +00:00
|
|
|
local.cros_ec_err = cros_ec_init(blob, &local.cros_ec_dev);
|
|
|
|
if (local.cros_ec_err)
|
|
|
|
return -1; /* Will report in board_late_init() */
|
2014-10-14 05:42:14 +00:00
|
|
|
#endif
|
2014-02-27 20:26:02 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int cros_ec_board_init(void)
|
|
|
|
{
|
|
|
|
return board_init_cros_ec_devices(gd->fdt_blob);
|
|
|
|
}
|
|
|
|
|
|
|
|
int cros_ec_get_error(void)
|
|
|
|
{
|
2014-10-14 05:42:14 +00:00
|
|
|
#ifdef CONFIG_DM_CROS_EC
|
|
|
|
struct udevice *dev;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = uclass_get_device(UCLASS_CROS_EC, 0, &dev);
|
|
|
|
if (ret && ret != -ENODEV)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
#else
|
2014-02-27 20:26:02 +00:00
|
|
|
return local.cros_ec_err;
|
2014-10-14 05:42:14 +00:00
|
|
|
#endif
|
2014-02-27 20:26:02 +00:00
|
|
|
}
|