-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ARM: tegra: Move AHB Kconfig to drivers/amba
This will allow the Kconfig option to be shared among 32-bit and 64-bit ARM. Signed-off-by: Thierry Reding <treding@nvidia.com>
- Loading branch information
Thierry Reding
committed
Nov 26, 2014
1 parent
d075f4a
commit bd968d5
Showing
3 changed files
with
15 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
menu "Device Drivers" | ||
|
||
source "drivers/amba/Kconfig" | ||
|
||
source "drivers/base/Kconfig" | ||
|
||
source "drivers/bus/Kconfig" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,14 @@ | ||
config ARM_AMBA | ||
bool | ||
|
||
if ARM_AMBA | ||
|
||
config TEGRA_AHB | ||
bool "Enable AHB driver for NVIDIA Tegra SoCs" | ||
default y if ARCH_TEGRA | ||
help | ||
Adds AHB configuration functionality for NVIDIA Tegra SoCs, | ||
which controls AHB bus master arbitration and some performance | ||
parameters (priority, prefetch size). | ||
|
||
endif |