Blame view

Documentation/btmrvl.txt 2.74 KB
7f4e01213   Mauro Carvalho Chehab   btmrvl.txt: stand...
1
2
3
  =============
  btmrvl driver
  =============
196be0cd0   Bing Zhao   Bluetooth: Add do...
4
5
  
  All commands are used via debugfs interface.
7f4e01213   Mauro Carvalho Chehab   btmrvl.txt: stand...
6
7
  Set/get driver configurations
  =============================
196be0cd0   Bing Zhao   Bluetooth: Add do...
8
9
  
  Path:	/debug/btmrvl/config/
7f4e01213   Mauro Carvalho Chehab   btmrvl.txt: stand...
10
11
  gpiogap=[n], hscfgcmd
  	These commands are used to configure the host sleep parameters::
196be0cd0   Bing Zhao   Bluetooth: Add do...
12
13
14
15
16
17
18
19
20
  	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.
7f4e01213   Mauro Carvalho Chehab   btmrvl.txt: stand...
21
  	Usage::
196be0cd0   Bing Zhao   Bluetooth: Add do...
22
23
24
25
26
27
28
  		# 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
7f4e01213   Mauro Carvalho Chehab   btmrvl.txt: stand...
29
  psmode=[n], pscmd
196be0cd0   Bing Zhao   Bluetooth: Add do...
30
  	These commands are used to enable/disable auto sleep mode
7f4e01213   Mauro Carvalho Chehab   btmrvl.txt: stand...
31
  	where the option is::
196be0cd0   Bing Zhao   Bluetooth: Add do...
32
33
  			1 	-- Enable auto sleep mode
  			0 	-- Disable auto sleep mode
7f4e01213   Mauro Carvalho Chehab   btmrvl.txt: stand...
34
  	Usage::
196be0cd0   Bing Zhao   Bluetooth: Add do...
35
36
37
38
39
40
41
  		# 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
7f4e01213   Mauro Carvalho Chehab   btmrvl.txt: stand...
42
  hsmode=[n], hscmd
196be0cd0   Bing Zhao   Bluetooth: Add do...
43
  	These commands are used to enable host sleep or wake up firmware
7f4e01213   Mauro Carvalho Chehab   btmrvl.txt: stand...
44
  	where the option is::
196be0cd0   Bing Zhao   Bluetooth: Add do...
45
46
  			1	-- Enable host sleep
  			0	-- Wake up firmware
7f4e01213   Mauro Carvalho Chehab   btmrvl.txt: stand...
47
  	Usage::
196be0cd0   Bing Zhao   Bluetooth: Add do...
48
49
50
51
52
53
54
  		# 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
7f4e01213   Mauro Carvalho Chehab   btmrvl.txt: stand...
55
56
  Get driver status
  =================
196be0cd0   Bing Zhao   Bluetooth: Add do...
57
58
  
  Path:	/debug/btmrvl/status/
7f4e01213   Mauro Carvalho Chehab   btmrvl.txt: stand...
59
  Usage::
196be0cd0   Bing Zhao   Bluetooth: Add do...
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
  	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.
7f4e01213   Mauro Carvalho Chehab   btmrvl.txt: stand...
75
76
  Issuing a raw hci command
  =========================
196be0cd0   Bing Zhao   Bluetooth: Add do...
77
78
  
  Use hcitool to issue raw hci command, refer to hcitool manual
7f4e01213   Mauro Carvalho Chehab   btmrvl.txt: stand...
79
80
81
82
83
  Usage::
  
  	Hcitool cmd <ogf> <ocf> [Parameters]
  
  Interface Control Command::
196be0cd0   Bing Zhao   Bluetooth: Add do...
84

196be0cd0   Bing Zhao   Bluetooth: Add do...
85
86
87
88
89
90
  	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
7f4e01213   Mauro Carvalho Chehab   btmrvl.txt: stand...
91
92
  SD8688 firmware
  ===============
196be0cd0   Bing Zhao   Bluetooth: Add do...
93

7f4e01213   Mauro Carvalho Chehab   btmrvl.txt: stand...
94
  Images:
196be0cd0   Bing Zhao   Bluetooth: Add do...
95

7f4e01213   Mauro Carvalho Chehab   btmrvl.txt: stand...
96
97
  - /lib/firmware/sd8688_helper.bin
  - /lib/firmware/sd8688.bin
196be0cd0   Bing Zhao   Bluetooth: Add do...
98
99
100
101
102
  
  
  The images can be downloaded from:
  
  git.infradead.org/users/dwmw2/linux-firmware.git/libertas/