2 * UWB radio (channel) management.
4 * Copyright (C) 2008 Cambridge Silicon Radio Ltd.
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License version
8 * 2 as published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 #include <linux/kernel.h>
19 #include <linux/uwb.h>
20 #include <linux/export.h>
22 #include "uwb-internal.h"
25 static int uwb_radio_select_channel(struct uwb_rc
*rc
)
28 * Default to channel 9 (BG1, TFC1) unless the user has
29 * selected a specific channel or there are no active PALs.
31 if (rc
->active_pals
== 0)
33 if (rc
->beaconing_forced
)
34 return rc
->beaconing_forced
;
40 * Notify all active PALs that the channel has changed.
42 static void uwb_radio_channel_changed(struct uwb_rc
*rc
, int channel
)
46 list_for_each_entry(pal
, &rc
->pals
, node
) {
47 if (pal
->channel
&& channel
!= pal
->channel
) {
48 pal
->channel
= channel
;
49 if (pal
->channel_changed
)
50 pal
->channel_changed(pal
, pal
->channel
);
56 * Change to a new channel and notify any active PALs of the new
59 * When stopping the radio, PALs need to be notified first so they can
60 * terminate any active reservations.
62 static int uwb_radio_change_channel(struct uwb_rc
*rc
, int channel
)
65 struct device
*dev
= &rc
->uwb_dev
.dev
;
67 dev_dbg(dev
, "%s: channel = %d, rc->beaconing = %d\n", __func__
,
68 channel
, rc
->beaconing
);
71 uwb_radio_channel_changed(rc
, channel
);
73 if (channel
!= rc
->beaconing
) {
74 if (rc
->beaconing
!= -1 && channel
!= -1) {
76 * FIXME: should signal the channel change
77 * with a Channel Change IE.
79 ret
= uwb_radio_change_channel(rc
, -1);
83 ret
= uwb_rc_beacon(rc
, channel
, 0);
87 uwb_radio_channel_changed(rc
, rc
->beaconing
);
93 * uwb_radio_start - request that the radio be started
94 * @pal: the PAL making the request.
96 * If the radio is not already active, a suitable channel is selected
97 * and beacons are started.
99 int uwb_radio_start(struct uwb_pal
*pal
)
101 struct uwb_rc
*rc
= pal
->rc
;
104 mutex_lock(&rc
->uwb_dev
.mutex
);
109 ret
= uwb_radio_change_channel(rc
, uwb_radio_select_channel(rc
));
112 mutex_unlock(&rc
->uwb_dev
.mutex
);
115 EXPORT_SYMBOL_GPL(uwb_radio_start
);
118 * uwb_radio_stop - request that the radio be stopped.
119 * @pal: the PAL making the request.
121 * Stops the radio if no other PAL is making use of it.
123 void uwb_radio_stop(struct uwb_pal
*pal
)
125 struct uwb_rc
*rc
= pal
->rc
;
127 mutex_lock(&rc
->uwb_dev
.mutex
);
131 uwb_radio_change_channel(rc
, uwb_radio_select_channel(rc
));
135 mutex_unlock(&rc
->uwb_dev
.mutex
);
137 EXPORT_SYMBOL_GPL(uwb_radio_stop
);
140 * uwb_radio_force_channel - force a specific channel to be used
141 * @rc: the radio controller.
142 * @channel: the channel to use; -1 to force the radio to stop; 0 to
143 * use the default channel selection algorithm.
145 int uwb_radio_force_channel(struct uwb_rc
*rc
, int channel
)
149 mutex_lock(&rc
->uwb_dev
.mutex
);
151 rc
->beaconing_forced
= channel
;
152 ret
= uwb_radio_change_channel(rc
, uwb_radio_select_channel(rc
));
154 mutex_unlock(&rc
->uwb_dev
.mutex
);
159 * uwb_radio_setup - setup the radio manager
160 * @rc: the radio controller.
162 * The radio controller is reset to ensure it's in a known state
165 int uwb_radio_setup(struct uwb_rc
*rc
)
167 return uwb_rc_reset(rc
);
171 * uwb_radio_reset_state - reset any radio manager state
172 * @rc: the radio controller.
174 * All internal radio manager state is reset to values corresponding
175 * to a reset radio controller.
177 void uwb_radio_reset_state(struct uwb_rc
*rc
)
181 mutex_lock(&rc
->uwb_dev
.mutex
);
183 list_for_each_entry(pal
, &rc
->pals
, node
) {
186 if (pal
->channel_changed
)
187 pal
->channel_changed(pal
, -1);
194 mutex_unlock(&rc
->uwb_dev
.mutex
);
198 * uwb_radio_shutdown - shutdown the radio manager
199 * @rc: the radio controller.
201 * The radio controller is reset.
203 void uwb_radio_shutdown(struct uwb_rc
*rc
)
205 uwb_radio_reset_state(rc
);