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.
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next-2.6: (1623 commits) netxen: update copyright netxen: fix tx timeout recovery netxen: fix file firmware leak netxen: improve pci memory access netxen: change firmware write size tg3: Fix return ring size breakage netxen: build fix for INET=n cdc-phonet: autoconfigure Phonet address Phonet: back-end for autoconfigured addresses Phonet: fix netlink address dump error handling ipv6: Add IFA_F_DADFAILED flag net: Add DEVTYPE support for Ethernet based devices mv643xx_eth.c: remove unused txq_set_wrr() ucc_geth: Fix hangs after switching from full to half duplex ucc_geth: Rearrange some code to avoid forward declarations phy/marvell: Make non-aneg speed/duplex forcing work for 88E1111 PHYs drivers/net/phy: introduce missing kfree drivers/net/wan: introduce missing kfree net: force bridge module(s) to be GPL Subject: [PATCH] appletalk: Fix skb leak when ipddp interface is not loaded ... Fixed up trivial conflicts: - arch/x86/include/asm/socket.h converted to <asm-generic/socket.h> in the x86 tree. The generic header has the same new #define's, so that works out fine. - drivers/net/tun.c fix conflict between 89f56d1 ("tun: reuse struct sock fields") that switched over to using 'tun->socket.sk' instead of the redundantly available (and thus removed) 'tun->sk', and 2b980db ("lsm: Add hooks to the TUN driver") which added a new 'tun->sk' use. Noted in 'next' by Stephen Rothwell.
- Loading branch information
Showing
1,377 changed files
with
136,158 additions
and
83,550 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 |
---|---|---|
@@ -0,0 +1,119 @@ | ||
======================================================================= | ||
README for btmrvl driver | ||
======================================================================= | ||
|
||
|
||
All commands are used via debugfs interface. | ||
|
||
===================== | ||
Set/get driver configurations: | ||
|
||
Path: /debug/btmrvl/config/ | ||
|
||
gpiogap=[n] | ||
hscfgcmd | ||
These commands are used to configure the host sleep parameters. | ||
bit 8:0 -- Gap | ||
bit 16:8 -- GPIO | ||
|
||
where GPIO is the pin number of GPIO used to wake up the host. | ||
It could be any valid GPIO pin# (e.g. 0-7) or 0xff (SDIO interface | ||
wakeup will be used instead). | ||
|
||
where Gap is the gap in milli seconds between wakeup signal and | ||
wakeup event, or 0xff for special host sleep setting. | ||
|
||
Usage: | ||
# Use SDIO interface to wake up the host and set GAP to 0x80: | ||
echo 0xff80 > /debug/btmrvl/config/gpiogap | ||
echo 1 > /debug/btmrvl/config/hscfgcmd | ||
|
||
# Use GPIO pin #3 to wake up the host and set GAP to 0xff: | ||
echo 0x03ff > /debug/btmrvl/config/gpiogap | ||
echo 1 > /debug/btmrvl/config/hscfgcmd | ||
|
||
psmode=[n] | ||
pscmd | ||
These commands are used to enable/disable auto sleep mode | ||
|
||
where the option is: | ||
1 -- Enable auto sleep mode | ||
0 -- Disable auto sleep mode | ||
|
||
Usage: | ||
# Enable auto sleep mode | ||
echo 1 > /debug/btmrvl/config/psmode | ||
echo 1 > /debug/btmrvl/config/pscmd | ||
|
||
# Disable auto sleep mode | ||
echo 0 > /debug/btmrvl/config/psmode | ||
echo 1 > /debug/btmrvl/config/pscmd | ||
|
||
|
||
hsmode=[n] | ||
hscmd | ||
These commands are used to enable host sleep or wake up firmware | ||
|
||
where the option is: | ||
1 -- Enable host sleep | ||
0 -- Wake up firmware | ||
|
||
Usage: | ||
# Enable host sleep | ||
echo 1 > /debug/btmrvl/config/hsmode | ||
echo 1 > /debug/btmrvl/config/hscmd | ||
|
||
# Wake up firmware | ||
echo 0 > /debug/btmrvl/config/hsmode | ||
echo 1 > /debug/btmrvl/config/hscmd | ||
|
||
|
||
====================== | ||
Get driver status: | ||
|
||
Path: /debug/btmrvl/status/ | ||
|
||
Usage: | ||
cat /debug/btmrvl/status/<args> | ||
|
||
where the args are: | ||
|
||
curpsmode | ||
This command displays current auto sleep status. | ||
|
||
psstate | ||
This command display the power save state. | ||
|
||
hsstate | ||
This command display the host sleep state. | ||
|
||
txdnldrdy | ||
This command displays the value of Tx download ready flag. | ||
|
||
|
||
===================== | ||
|
||
Use hcitool to issue raw hci command, refer to hcitool manual | ||
|
||
Usage: Hcitool cmd <ogf> <ocf> [Parameters] | ||
|
||
Interface Control Command | ||
hcitool cmd 0x3f 0x5b 0xf5 0x01 0x00 --Enable All interface | ||
hcitool cmd 0x3f 0x5b 0xf5 0x01 0x01 --Enable Wlan interface | ||
hcitool cmd 0x3f 0x5b 0xf5 0x01 0x02 --Enable BT interface | ||
hcitool cmd 0x3f 0x5b 0xf5 0x00 0x00 --Disable All interface | ||
hcitool cmd 0x3f 0x5b 0xf5 0x00 0x01 --Disable Wlan interface | ||
hcitool cmd 0x3f 0x5b 0xf5 0x00 0x02 --Disable BT interface | ||
|
||
======================================================================= | ||
|
||
|
||
SD8688 firmware: | ||
|
||
/lib/firmware/sd8688_helper.bin | ||
/lib/firmware/sd8688.bin | ||
|
||
|
||
The images can be downloaded from: | ||
|
||
git.infradead.org/users/dwmw2/linux-firmware.git/libertas/ |
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
Oops, something went wrong.