sio/it8718f: Hook up common environment-controller driver
Change-Id: I25019c6323b6e9de2e0ce19325266bf3e8f2e309 Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-on: https://review.coreboot.org/17581 Tested-by: build bot (Jenkins) Reviewed-by: Nico Huber <nico.h@gmx.de>
This commit is contained in:
committed by
Martin Roth
parent
4b940bea54
commit
a6cbbd6a0a
@@ -18,10 +18,15 @@
|
||||
#include <device/pnp.h>
|
||||
#include <pc80/keyboard.h>
|
||||
#include <stdlib.h>
|
||||
#include <superio/ite/common/env_ctrl.h>
|
||||
|
||||
#include "it8718f.h"
|
||||
#include "chip.h"
|
||||
|
||||
static void init(struct device *dev)
|
||||
{
|
||||
const struct superio_ite_it8718f_config *conf;
|
||||
const struct resource *res;
|
||||
|
||||
if (!dev->enabled)
|
||||
return;
|
||||
@@ -31,7 +36,12 @@ static void init(struct device *dev)
|
||||
break;
|
||||
case IT8718F_PP: /* TODO. */
|
||||
break;
|
||||
case IT8718F_EC: /* TODO. */
|
||||
case IT8718F_EC:
|
||||
conf = dev->chip_info;
|
||||
res = find_resource(dev, PNP_IDX_IO0);
|
||||
if (!conf || !res)
|
||||
break;
|
||||
ite_ec_init(res->base, &conf->ec);
|
||||
break;
|
||||
case IT8718F_KBCK:
|
||||
pc_keyboard_init(NO_AUX_DEVICE);
|
||||
|
Reference in New Issue
Block a user