diff options
Diffstat (limited to 'drivers/misc/cros_ec.c')
| -rw-r--r-- | drivers/misc/cros_ec.c | 16 | 
1 files changed, 16 insertions, 0 deletions
| diff --git a/drivers/misc/cros_ec.c b/drivers/misc/cros_ec.c index a4bdb2307..7e8c58f86 100644 --- a/drivers/misc/cros_ec.c +++ b/drivers/misc/cros_ec.c @@ -224,6 +224,11 @@ static int send_command_proto3(struct cros_ec_dev *dev,  		rv = cros_ec_spi_packet(dev, out_bytes, in_bytes);  		break;  #endif +#ifdef CONFIG_CROS_EC_SANDBOX +	case CROS_EC_IF_SANDBOX: +		rv = cros_ec_sandbox_packet(dev, out_bytes, in_bytes); +		break; +#endif  	case CROS_EC_IF_NONE:  	/* TODO: support protocol 3 for LPC, I2C; for now fall through */  	default: @@ -1033,6 +1038,11 @@ static int cros_ec_decode_fdt(const void *blob, int node,  		dev->interface = CROS_EC_IF_LPC;  		break;  #endif +#ifdef CONFIG_CROS_EC_SANDBOX +	case COMPAT_SANDBOX_HOST_EMULATION: +		dev->interface = CROS_EC_IF_SANDBOX; +		break; +#endif  	default:  		debug("%s: Unknown compat id %d\n", __func__, compat);  		return -1; @@ -1088,6 +1098,12 @@ int cros_ec_init(const void *blob, struct cros_ec_dev **cros_ecp)  			return -CROS_EC_ERR_DEV_INIT;  		break;  #endif +#ifdef CONFIG_CROS_EC_SANDBOX +	case CROS_EC_IF_SANDBOX: +		if (cros_ec_sandbox_init(dev, blob)) +			return -CROS_EC_ERR_DEV_INIT; +		break; +#endif  	case CROS_EC_IF_NONE:  	default:  		return 0; |