Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions subsys/greybus/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -310,5 +310,6 @@ endif # GREYBUS_NODE
module = GREYBUS
module-str = Greybus
source "subsys/logging/Kconfig.template.log_config"
source "subsys/greybus/Kconfig.sdio"

endif # GREYBUS
18 changes: 18 additions & 0 deletions subsys/greybus/Kconfig.sdio
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Copyright (c) 2024 BeagleBoard.org
# SPDX-License-Identifier: BSD-3-Clause

menuconfig GREYBUS_SDIO
bool "Greybus SDIO Protocol"
depends on GREYBUS
help
Enable Greybus SDIO protocol support.

if GREYBUS_SDIO

config GREYBUS_SDIO_CONTROLLER_NAME
string "SDHC Controller Device Name"
default "SDHC_0"
help
The device name of the SDHC controller to use for Greybus SDIO.

endif # GREYBUS_SDIO
Loading