200 lines
3.7 KiB
C
200 lines
3.7 KiB
C
/*
|
|
* Copyright (c) 2018-2019 Nordic Semiconductor ASA
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <zephyr/types.h>
|
|
|
|
#include "hal/ccm.h"
|
|
#include "hal/radio.h"
|
|
|
|
#define LOG_MODULE_NAME bt_ctlr_llsw_nordic_lll_chan
|
|
#include "common/log.h"
|
|
#include <soc.h>
|
|
#include "hal/debug.h"
|
|
|
|
#if defined(CONFIG_BT_CONN)
|
|
static u8_t chan_sel_remap(u8_t *chan_map, u8_t chan_index);
|
|
#if defined(CONFIG_BT_CTLR_CHAN_SEL_2)
|
|
static u16_t chan_prn(u16_t counter, u16_t chan_id);
|
|
#endif /* CONFIG_BT_CTLR_CHAN_SEL_2 */
|
|
#endif /* CONFIG_BT_CONN */
|
|
|
|
void lll_chan_set(u32_t chan)
|
|
{
|
|
switch (chan) {
|
|
case 37:
|
|
radio_freq_chan_set(2);
|
|
break;
|
|
|
|
case 38:
|
|
radio_freq_chan_set(26);
|
|
break;
|
|
|
|
case 39:
|
|
radio_freq_chan_set(80);
|
|
break;
|
|
|
|
default:
|
|
if (chan < 11) {
|
|
radio_freq_chan_set(4 + (2 * chan));
|
|
} else if (chan < 40) {
|
|
radio_freq_chan_set(28 + (2 * (chan - 11)));
|
|
} else {
|
|
LL_ASSERT(0);
|
|
}
|
|
break;
|
|
}
|
|
|
|
radio_whiten_iv_set(chan);
|
|
}
|
|
|
|
#if defined(CONFIG_BT_CONN)
|
|
u8_t lll_chan_sel_1(u8_t *chan_use, u8_t hop, u16_t latency, u8_t *chan_map,
|
|
u8_t chan_count)
|
|
{
|
|
u8_t chan_next;
|
|
|
|
chan_next = ((*chan_use) + (hop * (1 + latency))) % 37;
|
|
*chan_use = chan_next;
|
|
|
|
if ((chan_map[chan_next >> 3] & (1 << (chan_next % 8))) == 0) {
|
|
u8_t chan_index;
|
|
|
|
chan_index = chan_next % chan_count;
|
|
chan_next = chan_sel_remap(chan_map, chan_index);
|
|
|
|
} else {
|
|
/* channel can be used, return it */
|
|
}
|
|
|
|
return chan_next;
|
|
}
|
|
|
|
#if defined(CONFIG_BT_CTLR_CHAN_SEL_2)
|
|
u8_t lll_chan_sel_2(u16_t counter, u16_t chan_id, u8_t *chan_map,
|
|
u8_t chan_count)
|
|
{
|
|
u8_t chan_next;
|
|
u16_t prn_e;
|
|
|
|
prn_e = chan_prn(counter, chan_id);
|
|
chan_next = prn_e % 37;
|
|
|
|
if ((chan_map[chan_next >> 3] & (1 << (chan_next % 8))) == 0) {
|
|
u8_t chan_index;
|
|
|
|
chan_index = ((u32_t)chan_count * prn_e) >> 16;
|
|
chan_next = chan_sel_remap(chan_map, chan_index);
|
|
|
|
} else {
|
|
/* channel can be used, return it */
|
|
}
|
|
|
|
return chan_next;
|
|
}
|
|
#endif /* CONFIG_BT_CTLR_CHAN_SEL_2 */
|
|
|
|
static u8_t chan_sel_remap(u8_t *chan_map, u8_t chan_index)
|
|
{
|
|
u8_t chan_next;
|
|
u8_t byte_count;
|
|
|
|
chan_next = 0;
|
|
byte_count = 5;
|
|
while (byte_count--) {
|
|
u8_t bite;
|
|
u8_t bit_count;
|
|
|
|
bite = *chan_map;
|
|
bit_count = 8;
|
|
while (bit_count--) {
|
|
if (bite & 0x01) {
|
|
if (chan_index == 0) {
|
|
break;
|
|
}
|
|
chan_index--;
|
|
}
|
|
chan_next++;
|
|
bite >>= 1;
|
|
}
|
|
|
|
if (bit_count < 8) {
|
|
break;
|
|
}
|
|
|
|
chan_map++;
|
|
}
|
|
|
|
return chan_next;
|
|
}
|
|
|
|
#if defined(CONFIG_BT_CTLR_CHAN_SEL_2)
|
|
#if defined(RADIO_UNIT_TEST)
|
|
void lll_chan_sel_2_ut(void)
|
|
{
|
|
u8_t chan_map_1[] = {0xFF, 0xFF, 0xFF, 0xFF, 0x1F};
|
|
u8_t chan_map_2[] = {0x00, 0x06, 0xE0, 0x00, 0x1E};
|
|
u8_t m;
|
|
|
|
m = chan_sel_2(1, 0x305F, chan_map_1, 37);
|
|
LL_ASSERT(m == 20);
|
|
|
|
m = chan_sel_2(2, 0x305F, chan_map_1, 37);
|
|
LL_ASSERT(m == 6);
|
|
|
|
m = chan_sel_2(3, 0x305F, chan_map_1, 37);
|
|
LL_ASSERT(m == 21);
|
|
|
|
m = chan_sel_2(6, 0x305F, chan_map_2, 9);
|
|
LL_ASSERT(m == 23);
|
|
|
|
m = chan_sel_2(7, 0x305F, chan_map_2, 9);
|
|
LL_ASSERT(m == 9);
|
|
|
|
m = chan_sel_2(8, 0x305F, chan_map_2, 9);
|
|
LL_ASSERT(m == 34);
|
|
}
|
|
#endif /* RADIO_UNIT_TEST */
|
|
|
|
/* Attribution:
|
|
* http://graphics.stanford.edu/%7Eseander/bithacks.html#ReverseByteWith32Bits
|
|
*/
|
|
static u8_t chan_rev_8(u8_t b)
|
|
{
|
|
b = (((u32_t)b * 0x0802LU & 0x22110LU) |
|
|
((u32_t)b * 0x8020LU & 0x88440LU)) * 0x10101LU >> 16;
|
|
|
|
return b;
|
|
}
|
|
|
|
static u16_t chan_perm(u16_t i)
|
|
{
|
|
return (chan_rev_8((i >> 8) & 0xFF) << 8) | chan_rev_8(i & 0xFF);
|
|
}
|
|
|
|
static u16_t chan_mam(u16_t a, u16_t b)
|
|
{
|
|
return ((u32_t)a * 17 + b) & 0xFFFF;
|
|
}
|
|
|
|
static u16_t chan_prn(u16_t counter, u16_t chan_id)
|
|
{
|
|
u8_t iterate;
|
|
u16_t prn_e;
|
|
|
|
prn_e = counter ^ chan_id;
|
|
|
|
for (iterate = 0; iterate < 3; iterate++) {
|
|
prn_e = chan_perm(prn_e);
|
|
prn_e = chan_mam(prn_e, chan_id);
|
|
}
|
|
|
|
prn_e ^= chan_id;
|
|
|
|
return prn_e;
|
|
}
|
|
#endif /* CONFIG_BT_CTLR_CHAN_SEL_2 */
|
|
#endif /* CONFIG_BT_CONN */
|