1# Copyright (c) 2019 Synopsys, Inc. All rights reserved. 2# SPDX-License-Identifier: Apache-2.0 3 4if BOARD_HSDK 5 6config BOARD 7 default "hsdk" 8 9if GPIO 10 11config GPIO_INIT_PRIORITY 12 default 60 13 14config I2C 15 default y 16 17endif # GPIO 18 19if SPI_DW 20 21config SPI_DW_ACCESS_WORD_ONLY 22 default y 23 24endif # SPI_DW 25 26if I2C_DW 27 28config I2C_DW_CLOCK_SPEED 29 default 200 30 31endif #I2C_DW 32 33endif # BOARD_HSDK 34