From 91fa9d7696ef88e580caa1f762e72bd9e3e18a18 Mon Sep 17 00:00:00 2001 From: Aaron Durbin Date: Fri, 23 Sep 2016 16:38:27 -0500 Subject: mainboards,ec: provide common declaration for mainboard_ec_init() Add a header file to provide common declarations that the mainboards can use regarding EC init. BUG=chrome-os-partner:56677 Change-Id: Iaa0b37eff4de644e969a18364713b90b7f27fa1c Signed-off-by: Aaron Durbin Reviewed-on: https://review.coreboot.org/16734 Reviewed-by: Duncan Laurie Reviewed-by: Matt DeVillier Tested-by: build bot (Jenkins) --- src/ec/ec.h | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/ec/ec.h (limited to 'src/ec') diff --git a/src/ec/ec.h b/src/ec/ec.h new file mode 100644 index 0000000000..ea48f5b382 --- /dev/null +++ b/src/ec/ec.h @@ -0,0 +1,24 @@ +/* + * This file is part of the coreboot project. + * + * Copyright 2016 Google Inc. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; version 2 of the License. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + */ + +#ifndef EC_EC_H +#define EC_EC_H + +#ifndef __ACPI__ +/* Entry point doing any mainboard specific EC initialization. */ +void mainboard_ec_init(void); +#endif + +#endif -- cgit v1.2.3