* [PATCH v1] Audio Profile version upgrade.
@ 2025-02-12 9:05 Raghavender Reddy Bujala
2025-02-12 16:40 ` [v1] " bluez.test.bot
2025-02-12 21:40 ` [PATCH v1] " patchwork-bot+bluetooth
0 siblings, 2 replies; 3+ messages in thread
From: Raghavender Reddy Bujala @ 2025-02-12 9:05 UTC (permalink / raw)
To: linux-bluetooth; +Cc: quic_mohamull, quic_hbandi, Raghavender Reddy Bujala
Most of the existing profile versions are withdrawn
to make PTS successfull, need to upgrade the version
for audio profiles and there are no mandatory feature
changes between these versions are seen.
Version changes
A2DP from 1.3 to 1.4
HFP from 1.7 to 1.8
AVRCP TG from 1.5 to 1.6
AVCTP from 1.3 to 1.4
Signed-off-by: Raghavender Reddy Bujala <quic_rbujala@quicinc.com>
---
profiles/audio/a2dp.c | 2 +-
profiles/audio/avrcp.c | 6 +++---
src/profile.c | 4 ++--
3 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/profiles/audio/a2dp.c b/profiles/audio/a2dp.c
index c97bd6e89..961a6e89d 100644
--- a/profiles/audio/a2dp.c
+++ b/profiles/audio/a2dp.c
@@ -1595,7 +1595,7 @@ static sdp_record_t *a2dp_record(uint8_t type)
sdp_record_t *record;
sdp_data_t *psm, *version, *features;
uint16_t lp = AVDTP_UUID;
- uint16_t a2dp_ver = 0x0103, avdtp_ver = 0x0103, feat = 0x000f;
+ uint16_t a2dp_ver = 0x0104, avdtp_ver = 0x0103, feat = 0x000f;
record = sdp_record_alloc();
if (!record)
diff --git a/profiles/audio/avrcp.c b/profiles/audio/avrcp.c
index 9fe8f55e5..86b59a379 100644
--- a/profiles/audio/avrcp.c
+++ b/profiles/audio/avrcp.c
@@ -138,7 +138,7 @@
#define AVRCP_BROWSING_TIMEOUT 1
#define AVRCP_CT_VERSION 0x0106
-#define AVRCP_TG_VERSION 0x0105
+#define AVRCP_TG_VERSION 0x0106
#define AVRCP_SCOPE_MEDIA_PLAYER_LIST 0x00
#define AVRCP_SCOPE_MEDIA_PLAYER_VFS 0x01
@@ -414,7 +414,7 @@ static sdp_record_t *avrcp_ct_record(bool browsing)
sdp_record_t *record;
sdp_data_t *psm[2], *version, *features;
uint16_t lp = AVCTP_CONTROL_PSM;
- uint16_t avctp_ver = 0x0103;
+ uint16_t avctp_ver = 0x0104;
uint16_t feat = ( AVRCP_FEATURE_CATEGORY_1 |
AVRCP_FEATURE_CATEGORY_2 |
AVRCP_FEATURE_CATEGORY_3 |
@@ -493,7 +493,7 @@ static sdp_record_t *avrcp_tg_record(bool browsing)
sdp_record_t *record;
sdp_data_t *psm_control, *version, *features;
uint16_t lp = AVCTP_CONTROL_PSM;
- uint16_t avctp_ver = 0x0103;
+ uint16_t avctp_ver = 0x0104;
uint16_t feat = ( AVRCP_FEATURE_CATEGORY_1 |
AVRCP_FEATURE_CATEGORY_2 |
AVRCP_FEATURE_CATEGORY_3 |
diff --git a/src/profile.c b/src/profile.c
index 70ac058f4..cb74bd819 100644
--- a/src/profile.c
+++ b/src/profile.c
@@ -2075,7 +2075,7 @@ static struct default_settings {
.authorize = true,
.auto_connect = true,
.get_record = get_hfp_hf_record,
- .version = 0x0107,
+ .version = 0x0108,
}, {
.uuid = HSP_HS_UUID,
.name = "Headset unit",
@@ -2095,7 +2095,7 @@ static struct default_settings {
.authorize = true,
.auto_connect = true,
.get_record = get_hfp_ag_record,
- .version = 0x0107,
+ .version = 0x0108,
/* HFP 1.7.2: By default features bitfield is 0b001001 */
.features = 0x09,
}, {
--
2.17.1
^ permalink raw reply related [flat|nested] 3+ messages in thread* RE: [v1] Audio Profile version upgrade.
2025-02-12 9:05 [PATCH v1] Audio Profile version upgrade Raghavender Reddy Bujala
@ 2025-02-12 16:40 ` bluez.test.bot
2025-02-12 21:40 ` [PATCH v1] " patchwork-bot+bluetooth
1 sibling, 0 replies; 3+ messages in thread
From: bluez.test.bot @ 2025-02-12 16:40 UTC (permalink / raw)
To: linux-bluetooth, quic_rbujala
[-- Attachment #1: Type: text/plain, Size: 1261 bytes --]
This is automated email and please do not reply to this email!
Dear submitter,
Thank you for submitting the patches to the linux bluetooth mailing list.
This is a CI test results with your patch series:
PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=933151
---Test result---
Test Summary:
CheckPatch PENDING 0.27 seconds
GitLint PENDING 0.20 seconds
BuildEll PASS 21.89 seconds
BluezMake PASS 1821.59 seconds
MakeCheck PASS 13.96 seconds
MakeDistcheck PASS 167.55 seconds
CheckValgrind PASS 223.88 seconds
CheckSmatch PASS 295.11 seconds
bluezmakeextell PASS 102.27 seconds
IncrementalBuild PENDING 0.31 seconds
ScanBuild PASS 916.20 seconds
Details
##############################
Test: CheckPatch - PENDING
Desc: Run checkpatch.pl script
Output:
##############################
Test: GitLint - PENDING
Desc: Run gitlint
Output:
##############################
Test: IncrementalBuild - PENDING
Desc: Incremental build with the patches in the series
Output:
---
Regards,
Linux Bluetooth
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v1] Audio Profile version upgrade.
2025-02-12 9:05 [PATCH v1] Audio Profile version upgrade Raghavender Reddy Bujala
2025-02-12 16:40 ` [v1] " bluez.test.bot
@ 2025-02-12 21:40 ` patchwork-bot+bluetooth
1 sibling, 0 replies; 3+ messages in thread
From: patchwork-bot+bluetooth @ 2025-02-12 21:40 UTC (permalink / raw)
To: Raghavender Reddy Bujala; +Cc: linux-bluetooth, quic_mohamull, quic_hbandi
Hello:
This patch was applied to bluetooth/bluez.git (master)
by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>:
On Wed, 12 Feb 2025 14:35:53 +0530 you wrote:
> Most of the existing profile versions are withdrawn
> to make PTS successfull, need to upgrade the version
> for audio profiles and there are no mandatory feature
> changes between these versions are seen.
>
> Version changes
> A2DP from 1.3 to 1.4
> HFP from 1.7 to 1.8
> AVRCP TG from 1.5 to 1.6
> AVCTP from 1.3 to 1.4
>
> [...]
Here is the summary with links:
- [v1] Audio Profile version upgrade.
https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=f0e9ecb9f4fe
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-02-12 21:40 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-12 9:05 [PATCH v1] Audio Profile version upgrade Raghavender Reddy Bujala
2025-02-12 16:40 ` [v1] " bluez.test.bot
2025-02-12 21:40 ` [PATCH v1] " patchwork-bot+bluetooth
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.