forked from torvalds/linux
-
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.
drivers: add support for the TI VLYNQ bus
Add support for the TI VLYNQ high-speed, serial and packetized bus. This bus allows external devices to be connected to the System-on-Chip and appear in the main system memory just like any memory mapped peripheral. It is widely used in TI's networking and multimedia SoC, including the AR7 SoC. Signed-off-by: Eugene Konev <[email protected]> Signed-off-by: Florian Fainelli <[email protected]> Cc: Ralf Baechle <[email protected]> Cc: Alan Cox <[email protected]> Cc: Greg KH <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
- Loading branch information
Showing
7 changed files
with
1,011 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6281,6 +6281,14 @@ F: drivers/net/macvlan.c | |
F: include/linux/if_*vlan.h | ||
F: net/8021q/ | ||
|
||
VLYNQ BUS | ||
P: Florian Fainelli | ||
M: [email protected] | ||
L: [email protected] | ||
S: Maintained | ||
F: drivers/vlynq/vlynq.c | ||
F: include/linux/vlynq.h | ||
|
||
VOLTAGE AND CURRENT REGULATOR FRAMEWORK | ||
P: Liam Girdwood | ||
M: [email protected] | ||
|
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
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
menu "TI VLYNQ" | ||
|
||
config VLYNQ | ||
bool "TI VLYNQ bus support" | ||
depends on AR7 && EXPERIMENTAL | ||
help | ||
Support for Texas Instruments(R) VLYNQ bus. | ||
The VLYNQ bus is a high-speed, serial and packetized | ||
data bus which allows external peripherals of a SoC | ||
to appear into the system's main memory. | ||
|
||
If unsure, say N | ||
|
||
config VLYNQ_DEBUG | ||
bool "VLYNQ bus debug" | ||
depends on VLYNQ && KERNEL_DEBUG | ||
help | ||
Turn on VLYNQ bus debugging. | ||
|
||
endmenu |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# | ||
# Makefile for kernel vlynq drivers | ||
# | ||
|
||
obj-$(CONFIG_VLYNQ) += vlynq.o |
Oops, something went wrong.