1# Copyright (c) 2018 Intel Corporation
2# SPDX-License-Identifier: Apache-2.0
3
4# This option signifies whether DesignWare I2C compatible HW is
5# available
6config HAS_I2C_DW
7	bool
8
9menuconfig I2C_DW
10	bool "Design Ware I2C support"
11	depends on HAS_I2C_DW
12	help
13	  Enable the Design Ware I2C driver
14
15config I2C_DW_CLOCK_SPEED
16	int "Set the clock speed for I2C"
17	depends on I2C_DW
18	default 32
19