diff options
| author | Bing Zhao <bzhao@marvell.com> | 2009-06-02 17:29:38 -0400 |
|---|---|---|
| committer | Marcel Holtmann <marcel@holtmann.org> | 2009-08-22 17:25:32 -0400 |
| commit | 196be0cd018068d545e1d764094c7b07aaf0bcfe (patch) | |
| tree | 01ef13e7fd0b19ffb179ae42dd71ab213d025bba | |
| parent | fb784f0508d5aa39a23e72879a8dfb517c6f6e7f (diff) | |
Bluetooth: Add documentation for Marvell Bluetooth driver
add btmrvl.txt to Documentation/
This patch incorporates a lot of comments given by
Nicolas Pitre <nico@marvell.com>. Many thanks to Nicolas Pitre.
Signed-off-by: Rahul Tank <rahult@marvell.com>
Signed-off-by: Bing Zhao <bzhao@marvell.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
| -rw-r--r-- | Documentation/00-INDEX | 2 | ||||
| -rw-r--r-- | Documentation/btmrvl.txt | 119 |
2 files changed, 121 insertions, 0 deletions
diff --git a/Documentation/00-INDEX b/Documentation/00-INDEX index d05737aaa84b..06b982affe76 100644 --- a/Documentation/00-INDEX +++ b/Documentation/00-INDEX | |||
| @@ -82,6 +82,8 @@ block/ | |||
| 82 | - info on the Block I/O (BIO) layer. | 82 | - info on the Block I/O (BIO) layer. |
| 83 | blockdev/ | 83 | blockdev/ |
| 84 | - info on block devices & drivers | 84 | - info on block devices & drivers |
| 85 | btmrvl.txt | ||
| 86 | - info on Marvell Bluetooth driver usage. | ||
| 85 | cachetlb.txt | 87 | cachetlb.txt |
| 86 | - describes the cache/TLB flushing interfaces Linux uses. | 88 | - describes the cache/TLB flushing interfaces Linux uses. |
| 87 | cdrom/ | 89 | cdrom/ |
diff --git a/Documentation/btmrvl.txt b/Documentation/btmrvl.txt new file mode 100644 index 000000000000..34916a46c099 --- /dev/null +++ b/Documentation/btmrvl.txt | |||
| @@ -0,0 +1,119 @@ | |||
| 1 | ======================================================================= | ||
| 2 | README for btmrvl driver | ||
| 3 | ======================================================================= | ||
| 4 | |||
| 5 | |||
| 6 | All commands are used via debugfs interface. | ||
| 7 | |||
| 8 | ===================== | ||
| 9 | Set/get driver configurations: | ||
| 10 | |||
| 11 | Path: /debug/btmrvl/config/ | ||
| 12 | |||
| 13 | gpiogap=[n] | ||
| 14 | hscfgcmd | ||
| 15 | These commands are used to configure the host sleep parameters. | ||
| 16 | bit 8:0 -- Gap | ||
| 17 | bit 16:8 -- GPIO | ||
| 18 | |||
| 19 | where GPIO is the pin number of GPIO used to wake up the host. | ||
| 20 | It could be any valid GPIO pin# (e.g. 0-7) or 0xff (SDIO interface | ||
| 21 | wakeup will be used instead). | ||
| 22 | |||
| 23 | where Gap is the gap in milli seconds between wakeup signal and | ||
| 24 | wakeup event, or 0xff for special host sleep setting. | ||
| 25 | |||
| 26 | Usage: | ||
| 27 | # Use SDIO interface to wake up the host and set GAP to 0x80: | ||
| 28 | echo 0xff80 > /debug/btmrvl/config/gpiogap | ||
| 29 | echo 1 > /debug/btmrvl/config/hscfgcmd | ||
| 30 | |||
| 31 | # Use GPIO pin #3 to wake up the host and set GAP to 0xff: | ||
| 32 | echo 0x03ff > /debug/btmrvl/config/gpiogap | ||
| 33 | echo 1 > /debug/btmrvl/config/hscfgcmd | ||
| 34 | |||
| 35 | psmode=[n] | ||
| 36 | pscmd | ||
| 37 | These commands are used to enable/disable auto sleep mode | ||
| 38 | |||
| 39 | where the option is: | ||
| 40 | 1 -- Enable auto sleep mode | ||
| 41 | 0 -- Disable auto sleep mode | ||
| 42 | |||
| 43 | Usage: | ||
| 44 | # Enable auto sleep mode | ||
| 45 | echo 1 > /debug/btmrvl/config/psmode | ||
| 46 | echo 1 > /debug/btmrvl/config/pscmd | ||
| 47 | |||
| 48 | # Disable auto sleep mode | ||
| 49 | echo 0 > /debug/btmrvl/config/psmode | ||
| 50 | echo 1 > /debug/btmrvl/config/pscmd | ||
| 51 | |||
| 52 | |||
| 53 | hsmode=[n] | ||
| 54 | hscmd | ||
| 55 | These commands are used to enable host sleep or wake up firmware | ||
| 56 | |||
| 57 | where the option is: | ||
| 58 | 1 -- Enable host sleep | ||
| 59 | 0 -- Wake up firmware | ||
| 60 | |||
| 61 | Usage: | ||
| 62 | # Enable host sleep | ||
| 63 | echo 1 > /debug/btmrvl/config/hsmode | ||
| 64 | echo 1 > /debug/btmrvl/config/hscmd | ||
| 65 | |||
| 66 | # Wake up firmware | ||
| 67 | echo 0 > /debug/btmrvl/config/hsmode | ||
| 68 | echo 1 > /debug/btmrvl/config/hscmd | ||
| 69 | |||
| 70 | |||
| 71 | ====================== | ||
| 72 | Get driver status: | ||
| 73 | |||
| 74 | Path: /debug/btmrvl/status/ | ||
| 75 | |||
| 76 | Usage: | ||
| 77 | cat /debug/btmrvl/status/<args> | ||
| 78 | |||
| 79 | where the args are: | ||
| 80 | |||
| 81 | curpsmode | ||
| 82 | This command displays current auto sleep status. | ||
| 83 | |||
| 84 | psstate | ||
| 85 | This command display the power save state. | ||
| 86 | |||
| 87 | hsstate | ||
| 88 | This command display the host sleep state. | ||
| 89 | |||
| 90 | txdnldrdy | ||
| 91 | This command displays the value of Tx download ready flag. | ||
| 92 | |||
| 93 | |||
| 94 | ===================== | ||
| 95 | |||
| 96 | Use hcitool to issue raw hci command, refer to hcitool manual | ||
| 97 | |||
| 98 | Usage: Hcitool cmd <ogf> <ocf> [Parameters] | ||
| 99 | |||
| 100 | Interface Control Command | ||
| 101 | hcitool cmd 0x3f 0x5b 0xf5 0x01 0x00 --Enable All interface | ||
| 102 | hcitool cmd 0x3f 0x5b 0xf5 0x01 0x01 --Enable Wlan interface | ||
| 103 | hcitool cmd 0x3f 0x5b 0xf5 0x01 0x02 --Enable BT interface | ||
| 104 | hcitool cmd 0x3f 0x5b 0xf5 0x00 0x00 --Disable All interface | ||
| 105 | hcitool cmd 0x3f 0x5b 0xf5 0x00 0x01 --Disable Wlan interface | ||
| 106 | hcitool cmd 0x3f 0x5b 0xf5 0x00 0x02 --Disable BT interface | ||
| 107 | |||
| 108 | ======================================================================= | ||
| 109 | |||
| 110 | |||
| 111 | SD8688 firmware: | ||
| 112 | |||
| 113 | /lib/firmware/sd8688_helper.bin | ||
| 114 | /lib/firmware/sd8688.bin | ||
| 115 | |||
| 116 | |||
| 117 | The images can be downloaded from: | ||
| 118 | |||
| 119 | git.infradead.org/users/dwmw2/linux-firmware.git/libertas/ | ||
