yealink.rst 5.8 KB
Newer Older
1
===============================================
2
Driver documentation for yealink usb-p1k phones
3 4 5 6
===============================================

Status
======
7 8

The p1k is a relatively cheap usb 1.1 phone with:
9

10 11 12 13 14 15 16 17 18
  - keyboard		full support, yealink.ko / input event API
  - LCD			full support, yealink.ko / sysfs API
  - LED			full support, yealink.ko / sysfs API
  - dialtone		full support, yealink.ko / sysfs API
  - ringtone		full support, yealink.ko / sysfs API
  - audio playback   	full support, snd_usb_audio.ko / alsa API
  - audio record     	full support, snd_usb_audio.ko / alsa API

For vendor documentation see http://www.yealink.com
19 20


21 22 23
keyboard features
=================

24
The current mapping in the kernel is provided by the map_p1k_to_key
25
function::
26 27 28 29 30 31 32 33 34 35 36 37 38 39

   Physical USB-P1K button layout	input events


              up			     up
        IN           OUT		left,	right
             down			    down

      pickup   C    hangup		enter, backspace, escape
        1      2      3			1, 2, 3
        4      5      6			4, 5, 6,
        7      8      9			7, 8, 9,
        *      0      #			*, 0, #,

40 41 42
The "up" and "down" keys, are symbolised by arrows on the button.
The "pickup" and "hangup" keys are symbolised by a green and red phone
on the button.
43 44


45 46 47 48
LCD features
============

The LCD is divided and organised as a 3 line display::
49 50 51 52 53 54 55 56 57 58 59

    |[]   [][]   [][]   [][]   in   |[][]
    |[] M [][] D [][] : [][]   out  |[][]
                              store

    NEW REP         SU MO TU WE TH FR SA

    [] [] [] [] [] [] [] [] [] [] [] []
    [] [] [] [] [] [] [] [] [] [] [] []


60 61 62 63 64
  Line 1  Format (see below)	: 18.e8.M8.88...188
	  Icon names		:   M  D  :  IN OUT STORE
  Line 2  Format		: .........
	  Icon name		: NEW REP SU MO TU WE TH FR SA
  Line 3  Format		: 888888888888
65 66 67


Format description:
M
Matt LaPlante 已提交
68
  From a userspace perspective the world is separated into "digits" and "icons".
69 70
  A digit can have a character set, an icon can only be ON or OFF.

71 72
  Format specifier::

73 74
    '8' :  Generic 7 segment digit with individual addressable segments

75
    Reduced capability 7 segment digit, when segments are hard wired together.
76 77 78 79 80 81 82 83 84 85 86
    '1' : 2 segments digit only able to produce a 1.
    'e' : Most significant day of the month digit,
          able to produce at least 1 2 3.
    'M' : Most significant minute digit,
          able to produce at least 0 1 2 3 4 5.

    Icons or pictograms:
    '.' : For example like AM, PM, SU, a 'dot' .. or other single segment
	  elements.


87 88 89 90 91
Driver usage
============

For userland the following interfaces are available using the sysfs interface::

92 93 94 95 96 97 98 99 100 101
  /sys/.../
           line1	Read/Write, lcd line1
           line2	Read/Write, lcd line2
           line3	Read/Write, lcd line3

	   get_icons    Read, returns a set of available icons.
	   hide_icon    Write, hide the element by writing the icon name.
	   show_icon    Write, display the element by writing the icon name.

	   map_seg7	Read/Write, the 7 segments char set, common for all
102
			yealink phones. (see map_to_7segment.h)
103 104

	   ringtone	Write, upload binary representation of a ringtone,
105
			see yealink.c. status EXPERIMENTAL due to potential
106 107 108
			races between async. and sync usb calls.


109 110 111 112
lineX
~~~~~

Reading /sys/../lineX will return the format string with its current value.
113

114 115 116 117 118
  Example::

    cat ./line3
    888888888888
    Linux Rocks!
119

M
Matt LaPlante 已提交
120
Writing to /sys/../lineX will set the corresponding LCD line.
121

122 123 124 125 126 127
 - Excess characters are ignored.
 - If less characters are written than allowed, the remaining digits are
   unchanged.
 - The tab '\t'and '\n' char does not overwrite the original content.
 - Writing a space to an icon will always hide its content.

128 129 130
  Example::

    date +"%m.%e.%k:%M"  | sed 's/^0/ /' > ./line1
131 132 133 134

  Will update the LCD with the current date & time.


135 136 137 138
get_icons
~~~~~~~~~

Reading will return all available icon names and its current settings::
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160

  cat ./get_icons
  on M
  on D
  on :
     IN
     OUT
     STORE
     NEW
     REP
     SU
     MO
     TU
     WE
     TH
     FR
     SA
     LED
     DIALTONE
     RINGTONE


161 162 163
show/hide icons
~~~~~~~~~~~~~~~

164 165 166 167 168 169
Writing to these files will update the state of the icon.
Only one icon at a time can be updated.

If an icon is also on a ./lineX the corresponding value is
updated with the first letter of the icon.

170
  Example - light up the store icon::
171

172
    echo -n "STORE" > ./show_icon
173

174 175 176
    cat ./line1
    18.e8.M8.88...188
		  S
177

178 179 180 181 182 183 184 185 186
  Example - sound the ringtone for 10 seconds::

    echo -n RINGTONE > /sys/..../show_icon
    sleep 10
    echo -n RINGTONE > /sys/..../hide_icon


Sound features
==============
187

188 189 190 191 192
Sound is supported by the ALSA driver: snd_usb_audio

One 16-bit channel with sample and playback rates of 8000 Hz is the practical
limit of the device.

193 194 195
  Example - recording test::

    arecord -v -d 10 -r 8000 -f S16_LE -t wav  foobar.wav
196

197
  Example - playback test::
198

199 200 201
    aplay foobar.wav


202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218
Troubleshooting
===============

:Q: Module yealink compiled and installed without any problem but phone
    is not initialized and does not react to any actions.
:A: If you see something like:
    hiddev0: USB HID v1.00 Device [Yealink Network Technology Ltd. VOIP USB Phone
    in dmesg, it means that the hid driver has grabbed the device first. Try to
    load module yealink before any other usb hid driver. Please see the
    instructions provided by your distribution on module configuration.

:Q: Phone is working now (displays version and accepts keypad input) but I can't
    find the sysfs files.
:A: The sysfs files are located on the particular usb endpoint. On most
    distributions you can do: "find /sys/ -name get_icons" for a hint.


219 220
Credits & Acknowledgments
=========================
221

222
  - Olivier Vandorpe, for starting the usbb2k-api project doing much of
223
    the reverse engineering.
224 225
  - Martin Diehl, for pointing out how to handle USB memory allocation.
  - Dmitry Torokhov, for the numerous code reviews and suggestions.