mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-25 02:05:22 +00:00
Use this short header style in all Kconfig files: # <description> # <copyright> # <license> ... Also change all <description>s from # Kconfig[.extension] - Foo-related options to just # Foo-related options It's clear enough that it's about Kconfig. The <description> cleanup was done with this command, along with some manual cleanup (big letter at the start, etc.) git ls-files '*Kconfig*' | \ xargs sed -i -E '1 s/#\s*Kconfig[\w.-]*\s*-\s*/# /' Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
26 lines
730 B
Plaintext
26 lines
730 B
Plaintext
# SiFive SPI Driver configuration options
|
|
|
|
# Copyright (c) 2018 SiFive Inc.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menuconfig SPI_SIFIVE
|
|
bool "SiFive SPI controller driver"
|
|
depends on SOC_SERIES_RISCV_SIFIVE_FREEDOM
|
|
help
|
|
Enable the SPI peripherals on SiFive Freedom processors
|
|
|
|
if SPI_SIFIVE
|
|
|
|
config SIFIVE_SPI_0_ROM
|
|
bool "SPI 0 is used to access SPI Flash ROM"
|
|
default y
|
|
help
|
|
If enabled, SPI 0 is reserved for accessing the SPI flash ROM and a
|
|
driver interface won't be instantiated for SPI 0.
|
|
|
|
Beware disabling this option on HiFive 1! The SPI flash ROM is where the
|
|
program is stored, and if this driver initializes the interface for
|
|
peripheral control the FE310 will crash on boot.
|
|
|
|
endif # SPI_SIFIVE
|