-
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.
- Loading branch information
David Cross
authored and
Greg Kroah-Hartman
committed
Aug 31, 2010
1 parent
29f1c66
commit 75f0414
Showing
69 changed files
with
42,114 additions
and
1 deletion.
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 760ffce8ab13510bb1bf0af22f88df3f855bfa6b | ||
refs/heads/master: 81eb669b9516b85a2acf4c342db2322bed37d70c |
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,34 @@ | ||
# | ||
# West Bridge configuration | ||
# | ||
|
||
menuconfig WESTBRIDGE | ||
tristate "West Bridge support" | ||
depends on HAS_IOMEM | ||
help | ||
This selects West Bridge Peripheral controller support. | ||
|
||
If you want West Bridge support, you should say Y here. | ||
|
||
menuconfig WESTBRIDGE_ASTORIA | ||
bool "West Bridge Astoria support" | ||
depends on WESTBRIDGE != n | ||
help | ||
This option enables support for West Bridge Astoria | ||
|
||
if WESTBRIDGE_ASTORIA | ||
source "drivers/staging/westbridge/astoria/Kconfig" | ||
endif #WESTBRIDGE_ASTORIA | ||
|
||
menuconfig MACH_OMAP3_WESTBRIDGE_AST_PNAND_HAL | ||
bool "WESTBRIDGE OMAP3430 Astoria PNAND HAL" | ||
depends on ARCH_OMAP3 && WESTBRIDGE_ASTORIA | ||
help | ||
Include the OMAP3430 Linux Based HAL | ||
|
||
config WESTBRIDGE_DEBUG | ||
bool "West Bridge debugging" | ||
depends on WESTBRIDGE != n | ||
help | ||
This is an option for use by developers; most people should | ||
say N here. This enables WESTBRIDGE core and driver debugging. |
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,7 @@ | ||
TODO: | ||
- checkpatch.pl fixes | ||
- determine where to put the hal and common api code | ||
- modify the driver directory structure in an intuitive way | ||
|
||
Please send any patches to Greg Kroah-Hartman <gregkh@suse.de> | ||
and David Cross <david.cross@cypress.com>. |
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,9 @@ | ||
# | ||
# West Bridge configuration | ||
# | ||
source "drivers/staging/westbridge/astoria/device/Kconfig" | ||
|
||
source "drivers/staging/westbridge/astoria/block/Kconfig" | ||
|
||
source "drivers/staging/westbridge/astoria/gadget/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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# | ||
# Makefile for the kernel westbridge device drivers. | ||
# | ||
|
||
ifneq ($(CONFIG_WESTBRIDGE_DEBUG),y) | ||
EXTRA_CFLAGS += -WESTBRIDGE_NDEBUG | ||
endif | ||
|
||
obj-$(CONFIG_WESTBRIDGE) += device/ | ||
obj-$(CONFIG_WESTBRIDGE) += block/ | ||
obj-$(CONFIG_WESTBRIDGE) += gadget/ |
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,14 @@ | ||
# | ||
# Makefile for the kernel westbridge core. | ||
# | ||
|
||
ifeq ($(CONFIG_WESTBRIDGE_DEBUG),n) | ||
EXTRA_CFLAGS += -NDEBUG | ||
endif | ||
|
||
obj-$(CONFIG_WESTBRIDGE_DEVICE_DRIVER) += cyasapi.o | ||
cyasapi-y := src/cyasdma.o src/cyasintr.o src/cyaslep2pep.o \ | ||
src/cyaslowlevel.o src/cyasmisc.o src/cyasmtp.o \ | ||
src/cyasstorage.o src/cyasusb.o | ||
|
||
|
Oops, something went wrong.