1# Atmel ATAES132A configuration options
2
3# Copyright (c) 2017 Intel Corporation
4# SPDX-License-Identifier: Apache-2.0
5
6menuconfig CRYPTO_ATAES132A
7	bool "Atmel ATAES132A 32k AES Serial EEPROM support"
8	default y
9	depends on DT_HAS_ATMEL_ATAES132A_ENABLED
10	depends on I2C
11	help
12	  Enable Atmel ATAES132A 32k AES Serial EEPROM support.
13
14if CRYPTO_ATAES132A
15
16choice
17	prompt "ATAES132A I2C bus speed"
18	default CRYPTO_ATAES132A_I2C_SPEED_STANDARD
19
20config CRYPTO_ATAES132A_I2C_SPEED_STANDARD
21	bool "Standard"
22	help
23	  Standard bis speed of up to 100KHz.
24
25config CRYPTO_ATAES132A_I2C_SPEED_FAST
26	bool "Fast"
27	help
28	  Fast bus speed of up to 400KHz.
29endchoice
30
31endif # CRYPTO_ATAES132A
32