Version française | Frames | PDF | RSS | Home

Using the PlayStation 3 controller in Bluetooth mode with Linux


Table of Contents

1. Introduction
2. Disclaimer
3. Support as a Bluetooth HID joystick
3.1. Requirements
3.2. Operation
4. Using inertial sensors with the hidraw interface
4.1. Requirements
4.2. Operation
5. Known issues
6. About the demo videos
7. Acknowledgements

1.  Introduction

Ever since the PS3 platform was released (Japan: 2006-11-11; USA: 2006-11-17; Europe: 2007-03-23) there has been speculation as to whether its wireless controller, dubbed "SIXAXIS", could be used in non-gaming applications. It is already known that the SIXAXIS operates as a regular HID device in USB mode. Since it is being marketed as a Bluetooth device, it was fair and legitimate to expect it to also work with any Bluetooth-compliant computer, just like the Wiimote.

This document explains how to configure Linux to recognize the SIXAXIS as a Bluetooth HID device.

2.  Disclaimer

  • These instructions are not endorsed by Sony. There is no guarantee that you will not damage your SIXAXIS or your PS3 by following them.

  • The use of Bluetooth authentication and encryption has not been investigated yet. Running in non-secure mode, as described in this document, might be inappropriate for some applications, and may also make the host computer temporarily vulnerable to attacks.

3.  Support as a Bluetooth HID joystick

3.1.  Requirements

At the time of writing, mainstream Linux distributions do not explicitly support the SIXAXIS in wireless mode. Hence, the following customizations are required.

  • linux-2.6.21 or later .  Earlier kernels do not support Bluetooth HID devices in "Report Protocol" mode.

  • patch-hidd-3.9-pabr3 or patch-hidd-3.19-pabr3 This patch causes the Linux Bluetooth HIDP daemon (hidd) to send a special command to the SIXAXIS when it connects. Sony already published a similar patch for enabling reporting in USB mode.

  • sixpair.c (Only required if the SIXAXIS is to be used with a non-PS3 Bluetooth master.) The SIXAXIS apparently does not support the standard Bluetooth pairing procedure; instead, pairing is done over USB, which is arguably simpler and more secure. This command-line utility searches USB buses for SIXAXIS controllers and tells them to connect to a new Bluetooth master.

Alternatively, it might be possible to support the Bluetooth HID "Report Protocol" on older kernels by using bthid instead of hidd, with a similar patch.

Besides, the new "input service" (bluetoothd-service-input), which replaces hidd in recent versions of bluez-utils, should support the SIXAXIS without any patch. However, since it does not accept connections from unknown Bluetooth devices, authorizations must be set-up by another utility, such as a udev plugin, as suggested in this discussion.

Note.  Bluetooth experts use the word "controller" to refer to the Bluetooth network adapter inside the host or the PS3, whereas everybody else thinks "game controller" (a.k.a. joystick). This sometimes causes confusion.

3.2.  Operation

  • Ensure /etc/bluetooth/hcid.conf contains:

    iscan disable;
    pscan enable;
    #auth enable;                                        
    #encrypt enable;                                     
    

  • Enable Bluetooth:

    # service bluetooth restart
    

  • If the host is not the PS3, pairing is required:

    • Connect the SIXAXIS with a USB cable.

    • Run sixpair:

      # gcc -o sixpair sixpair.c -lusb
      # ./sixpair
      Current Bluetooth master: xx:xx:xx:xx:xx:xx
      Setting master bd_addr to xx:xx:xx:xx:xx:xx
      

    • Disconnect the USB cable.

  • Run the HIDP daemon:

    # hidd --server --nocheck -n
    

    (Note: --nocheck is only required for the first connection.)

  • Optionally run hcidump in another shell, for troubleshooting and comparison with this successful trace:

    # hcidump -t -V -x
    

  • Press the PS button on the SIXAXIS.

  • hidd should report:

    # hidd --server --nocheck -n
    hidd[8332]: Bluetooth HID daemon
    hidd[8332]: New HID device 00:19:C1:xx:xx:xx (Sony Computer Entertainment Wireless Controller)
    

  • /var/log/messages should report:

    input: Sony Computer Entertainment Wireless Controller as /class/input/inputX
    

  • Check that the SIXAXIS is recognized as a joystick:

    # modprobe joydev
    # jstest /dev/js0      # or jstest /dev/input/js0
    

    jstest should report buttons being pressed and sticks being moved.

  • After testing, restore the security settings in /etc/bluetooth/hcid.conf:

    auth enable;                                        
    encrypt enable;                                     
    

    and apply them with:

    # service bluetooth restart
    

4.  Using inertial sensors with the hidraw interface

The Linux joystick interface (joydev.ko, /dev/input/js*) does not report inertial measurements from the accelerometers and gyro. The hidraw interface can be used instead. It transfers raw HID input reports to user-space and works identically in USB mode and in Bluetooth mode.

4.1.  Requirements

  • A kernel with CONFIG_HIDRAW enabled.

  • patch-bluetooth-hidraw-pabr1. Adds hidraw support to hidp.ko for use in Bluetooth mode. Not required in USB mode.

4.2.  Operation

  • Connect the device with a USB cable and press PS. dmesg should report:

    input,hidraw1: USB HID v1.11 Joystick [Sony PLAYSTATION(R)3 Controller] on usb-xxxx:xx:xx.x-x
    

    and /dev/hidraw1 (or another minor number) should be created automatically.

  • In Bluetooth mode, a /dev/hidrawX device is created as well, but dmesg does not report its minor number.

  • Raw input reports can be read from /dev/hidraw1:

    # hexdump -v -e '48/1 "%02x " "\n"' < /dev/hidraw1
    00 00 00 00 00 74 7b 7c 7c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 ee 10 00 00 00 00 02 b2 77 01 81 02 05 01 ed 01 a4 00 02
    

  • sixhidtest.c decodes inertial measurements:

    # gcc -o sixhidtest sixhidtest.c
    # ./sixhidtest < /dev/hidraw1
    ax= 517 ay= 493 az= 420
    

  • xsixhidtest.c graphically displays speed, position and orientation derived from accelerometer measurements. High-pass filtering is used to control integration drift; this works well for fast periodic signals, e.g. circular motion. In this simple example, no attempt is made to track simultaneous translations and rotations, nor rotations around the vertical axis.

    # gcc -o xsixhidtest xsixhidtest.c -lX11 -lm
    # ./xsixhidtest < /dev/hidraw1
    

5.  Known issues

  • A 2.0 Bluetooth adapter is recommended. Otherwise, incoming input reports may be truncated to 12 bytes.

  • On some PS3 hosts, hcidump shows "Role Change" "Role: Master" and dmesg reports "hci_acldata_packet: hci0 ACL packet for unknown connection handle". Upgrading to linux-2.6.23 or later should solve this problem.

  • The Bluetooth adapter in the PS3 supports remote wake-up. This has not been tested with Linux.

  • Bluetooth authentication and encryption have not been investigated. This probably requires a key exchange procedure over USB.

  • The LEDs are not supported. /dev/js0 should have the first LED turned on, and so on.

  • Hand-over between USB mode and Bluetooth mode is not transparent for applications.

  • Monitoring of battery status is not implemented.

6.  About the demo videos

The six-degrees-of-freedom mechanical arrangement in the first video is known as a "parallel manipulator" or "parallel kinematic chains". The six R/C servos are connected to a Gumstix board with built-in Bluetooth module. Inertial measurements from the SIXAXIS are received directly through a PF_BLUETOOTH socket (not through the joystick API, due to HID descriptor issues). Heuristics explicitly discriminate between two types of motion (rotation or translation).

In the second video, the on-board Linux computer translates HID reports from the SIXAXIS into a PPM signal which is injected into the helicopter's control board. "Stick mode" emulates a mode 2 RC helicopter transmitter, with throttle mapped to L2. In "tilt sensor mode", cyclic pitch is controlled by two accelerometers rather than by the right stick.

7.  Acknowledgements

Jim Paris and Samson Yeung contributed help and protocol traces which were invaluable in understanding how the SIXAXIS operates.

Thanks to Sony for allowing Linux to run on the PS3 (albeit in a hypervisor sandbox). Most other gaming systems are not as open.

Revision History
1.52008-04-29 Note about 12-byte input reports. ps3-bt-event-filter obsolete with linux-2.6.23+. Link to udev discussion. Added patch-bluetooth-hidraw-pabr1, sixhidtest, xsixhidtest.
1.42007-10-15 -pabr3: wait for HIDP ack. Patch for bluez-utils-3.19. Note about bluetoothd-service-input.
1.32007-07-31 Recommend ps3-bt-event-filter.diff. "Known good" hcidump trace. Heli video
1.22007-04-29 Added patch-hidd-3.9-pabr2 including workaround for ppoll() problem.
1.12007-04-27 More known issues. Thoughts about merging into Linux. Note about bthid.
1.02007-04-23 Initial release.

http://www.pabr.org/sixlinux/sixlinux.en.html

All rights reserved.