All of lore.kernel.org
 help / color / mirror / Atom feed
From: Szymon Janc <szymon.janc@gmail.com>
To: linux-bluetooth@vger.kernel.org
Cc: Veseli Veseljko <veseljko75@gmail.com>, Alex Gal <a.gal@miip.ca>,
	Laurence Brown <linux-bluetooth@protazoa.com>,
	Szymon Janc <szymon.janc@gmail.com>
Subject: [PATCH 1/5] sixaxis: Fix PID for Navigation Controller
Date: Mon, 15 Jun 2015 20:28:26 +0200	[thread overview]
Message-ID: <1434392910-31648-2-git-send-email-szymon.janc@gmail.com> (raw)
In-Reply-To: <1434392910-31648-1-git-send-email-szymon.janc@gmail.com>

Navigation Controller is using PID 0x042f over USB but PID 0x0268
(same as Dualshock 3) over BT.
---
 plugins/sixaxis.c | 17 +++++++++++++++--
 1 file changed, 15 insertions(+), 2 deletions(-)

diff --git a/plugins/sixaxis.c b/plugins/sixaxis.c
index fcc93bc..50db6c1 100644
--- a/plugins/sixaxis.c
+++ b/plugins/sixaxis.c
@@ -54,6 +54,7 @@ static const struct {
 	uint16_t vid;
 	uint16_t pid;
 	uint16_t version;
+	uint16_t bt_pid;
 } devices[] = {
 	{
 		.name = "PLAYSTATION(R)3 Controller",
@@ -68,6 +69,7 @@ static const struct {
 		.vid = 0x054c,
 		.pid = 0x042f,
 		.version = 0x0000,
+		.bt_pid = 0x0268,
 	},
 };
 
@@ -300,8 +302,19 @@ static bool setup_device(int fd, int index, struct btd_adapter *adapter)
 	info("sixaxis: setting up new device");
 
 	btd_device_device_set_name(device, devices[index].name);
-	btd_device_set_pnpid(device, devices[index].source, devices[index].vid,
-				devices[index].pid, devices[index].version);
+
+	/* if device reports different pid/vid on BT prefer those over USB */
+	if (devices[index].bt_pid)
+		btd_device_set_pnpid(device, devices[index].source,
+					devices[index].vid,
+					devices[index].bt_pid,
+					devices[index].version);
+	else
+		btd_device_set_pnpid(device, devices[index].source,
+					devices[index].vid,
+					devices[index].pid,
+					devices[index].version);
+
 	btd_device_set_temporary(device, false);
 
 	return true;
-- 
2.1.4


  reply	other threads:[~2015-06-15 18:28 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-06-15 18:28 [PATCH 0/5] sixaxis: Improved support for DualShock 3 clones Szymon Janc
2015-06-15 18:28 ` Szymon Janc [this message]
2015-06-15 18:45   ` [PATCH 1/5] sixaxis: Fix PID for Navigation Controller simon
2015-06-15 19:47     ` Szymon Janc
2015-06-15 20:02       ` Szymon Janc
2015-06-15 20:36       ` simon
2015-06-17  3:30       ` simon
2015-06-15 18:28 ` [PATCH 2/5] core/device: Add support for setting SDP record Szymon Janc
2015-06-15 18:28 ` [PATCH 3/5] sixaxis: Provide DualShock 3 SDP record while adding new device Szymon Janc
2015-06-15 18:28 ` [PATCH 4/5] profiles/input: Remove not needed sixaxis checks Szymon Janc
2015-06-15 18:28 ` [PATCH 5/5] sixaxis: Fix multi-line comments style Szymon Janc
2015-06-21  6:25 ` [PATCH 0/5] sixaxis: Improved support for DualShock 3 clones Laurence Brown

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1434392910-31648-2-git-send-email-szymon.janc@gmail.com \
    --to=szymon.janc@gmail.com \
    --cc=a.gal@miip.ca \
    --cc=linux-bluetooth@protazoa.com \
    --cc=linux-bluetooth@vger.kernel.org \
    --cc=veseljko75@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.