diff options
author | Nathan Rossi <nathan.rossi@xilinx.com> | 2015-04-17 15:56:18 +1000 |
---|---|---|
committer | Nathan Rossi <nathan.rossi@xilinx.com> | 2015-04-17 15:56:18 +1000 |
commit | 1d7073200fa84dfee1503dcce2aa9aa7afb7654f (patch) | |
tree | 6224f5893f6360bc8821ad942a445d42b13263e4 | |
parent | 9b333c6e3216afde31c6fbd16ed5a470ad29761c (diff) | |
download | meta-xilinx-1d7073200fa84dfee1503dcce2aa9aa7afb7654f.tar.gz |
linux-xlnx_3.14: Disable USB PHY driver
* The linux-xlnx 3.14 kernel has the older USB driver that handles
resetting as part of the driver code itself. Adding this config
fragment disables the USB PHY from probing seperately and allows for
the reset GPIO to be controlled by the USB driver itself.
Signed-off-by: Nathan Rossi <nathan.rossi@xilinx.com>
-rw-r--r-- | recipes-kernel/linux/linux-xlnx_3.14.bb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/recipes-kernel/linux/linux-xlnx_3.14.bb b/recipes-kernel/linux/linux-xlnx_3.14.bb index 4a31ccff..1f8ddd15 100644 --- a/recipes-kernel/linux/linux-xlnx_3.14.bb +++ b/recipes-kernel/linux/linux-xlnx_3.14.bb | |||
@@ -11,3 +11,6 @@ SRC_URI_append += " \ | |||
11 | file://tty-xuartps-Fix-RX-hang-and-TX-corruption-in-set_termios.patch \ | 11 | file://tty-xuartps-Fix-RX-hang-and-TX-corruption-in-set_termios.patch \ |
12 | " | 12 | " |
13 | 13 | ||
14 | # This kernel's Zynq USB driver cannot handle a seperate USB PHY device. | ||
15 | KERNEL_FEATURES_append_zynq += "bsp/xilinx/disable-usb-phy.scc" | ||
16 | |||