1# SPDX-License-Identifier: GPL-2.0 2 3config NVMEM_LAYOUTS 4 bool 5 depends on OF 6 7if NVMEM_LAYOUTS 8 9menu "Layout Types" 10 11config NVMEM_LAYOUT_SL28_VPD 12 tristate "Kontron sl28 VPD layout support" 13 select CRC8 14 help 15 Say Y here if you want to support the VPD layout of the Kontron 16 SMARC-sAL28 boards. 17 18 If unsure, say N. 19 20config NVMEM_LAYOUT_ONIE_TLV 21 tristate "ONIE tlv support" 22 select CRC32 23 help 24 Say Y here if you want to support the Open Compute Project ONIE 25 Type-Length-Value standard table. 26 27 If unsure, say N. 28 29endmenu 30 31endif 32