dm: exynos: Split out the cros_ec drivers

With the driver model conversion we are going to be using driver model for
SPI and not for I2C. This works OK so long as a board doesn't need both
dm and non-dm versions of the cros_ec driver. Since pit uses SPI and snow
uses I2C we need to split the configs so that only one driver is compiled
for each platform.

We can fix this later when driver model supports I2C.

Signed-off-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
This commit is contained in:
Simon Glass 2014-10-07 22:01:42 -06:00 committed by Minkyu Kang
parent 5b9c8cb6cb
commit 98149d72f3
3 changed files with 3 additions and 2 deletions

View file

@ -69,8 +69,6 @@
/* Enable keyboard */
#define CONFIG_CROS_EC /* CROS_EC protocol */
#define CONFIG_CROS_EC_SPI /* Support CROS_EC over SPI */
#define CONFIG_CROS_EC_I2C /* Support CROS_EC over I2C */
#define CONFIG_CROS_EC_KEYB /* CROS_EC keyboard input */
#define CONFIG_CMD_CROS_EC
#define CONFIG_KEYBOARD

View file

@ -22,6 +22,8 @@
#define CONFIG_SPL_MAX_FOOTPRINT (14 * 1024)
#define CONFIG_CROS_EC_I2C /* Support CROS_EC over I2C */
/* USB */
#define CONFIG_CMD_USB
#define CONFIG_USB_XHCI

View file

@ -31,5 +31,6 @@
#endif
#define CONFIG_POWER_TPS65090_EC
#define CONFIG_CROS_EC_SPI /* Support CROS_EC over SPI */
#endif /* __CONFIG_PEACH_PIT_H */