2 * Wireless Host Controller (WHC) WUSB operations.
4 * Copyright (C) 2007 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/version.h>
19 #include <linux/kernel.h>
20 #include <linux/init.h>
21 #include <linux/uwb/umc.h>
23 #include <linux/uwb/debug.h>
25 #include "../../wusbcore/wusbhc.h"
30 static void dump_di(struct whc *whc, int idx)
32 struct di_buf_entry *di = &whc->di_buf[idx];
33 struct device *dev = &whc->umc->dev;
36 bitmap_scnprintf(buf, sizeof(buf), (unsigned long *)di->availability_info, UWB_NUM_MAS);
38 d_printf(1, dev, "DI[%d]\n", idx);
39 d_printf(1, dev, " availability: %s\n", buf);
40 d_printf(1, dev, " %c%c key idx: %d dev addr: %d\n",
41 (di->addr_sec_info & WHC_DI_SECURE) ? 'S' : ' ',
42 (di->addr_sec_info & WHC_DI_DISABLE) ? 'D' : ' ',
43 (di->addr_sec_info & WHC_DI_KEY_IDX_MASK) >> 8,
44 (di->addr_sec_info & WHC_DI_DEV_ADDR_MASK));
47 static inline void dump_di(struct whc *whc, int idx)
52 static int whc_update_di(struct whc *whc, int idx)
54 int offset = idx / 32;
55 u32 bit = 1 << (idx % 32);
59 le_writel(bit, whc->base + WUSBDIBUPDATED + offset);
61 return whci_wait_for(&whc->umc->dev,
62 whc->base + WUSBDIBUPDATED + offset, bit, 0,
67 * WHCI starts and stops MMCs based on there being a valid GTK so
68 * these need only start/stop the asynchronous and periodic schedules.
71 int whc_wusbhc_start(struct wusbhc *wusbhc)
73 struct whc *whc = wusbhc_to_whc(wusbhc);
81 void whc_wusbhc_stop(struct wusbhc *wusbhc)
83 struct whc *whc = wusbhc_to_whc(wusbhc);
89 int whc_mmcie_add(struct wusbhc *wusbhc, u8 interval, u8 repeat_cnt,
90 u8 handle, struct wuie_hdr *wuie)
92 struct whc *whc = wusbhc_to_whc(wusbhc);
95 params = (interval << 24)
97 | (wuie->bLength << 8)
100 return whc_do_gencmd(whc, WUSBGENCMDSTS_MMCIE_ADD, params, wuie, wuie->bLength);
103 int whc_mmcie_rm(struct wusbhc *wusbhc, u8 handle)
105 struct whc *whc = wusbhc_to_whc(wusbhc);
110 return whc_do_gencmd(whc, WUSBGENCMDSTS_MMCIE_RM, params, NULL, 0);
113 int whc_bwa_set(struct wusbhc *wusbhc, s8 stream_index, const struct uwb_mas_bm *mas_bm)
115 struct whc *whc = wusbhc_to_whc(wusbhc);
117 if (stream_index >= 0)
118 whc_write_wusbcmd(whc, WUSBCMD_WUSBSI_MASK, WUSBCMD_WUSBSI(stream_index));
120 return whc_do_gencmd(whc, WUSBGENCMDSTS_SET_MAS, 0, (void *)mas_bm, sizeof(*mas_bm));
123 int whc_dev_info_set(struct wusbhc *wusbhc, struct wusb_dev *wusb_dev)
125 struct whc *whc = wusbhc_to_whc(wusbhc);
126 int idx = wusb_dev->port_idx;
127 struct di_buf_entry *di = &whc->di_buf[idx];
130 mutex_lock(&whc->mutex);
132 uwb_mas_bm_copy_le(di->availability_info, &wusb_dev->availability);
133 di->addr_sec_info &= ~(WHC_DI_DISABLE | WHC_DI_DEV_ADDR_MASK);
134 di->addr_sec_info |= WHC_DI_DEV_ADDR(wusb_dev->addr);
136 ret = whc_update_di(whc, idx);
138 mutex_unlock(&whc->mutex);
144 * Set the number of Device Notification Time Slots (DNTS) and enable
145 * device notifications.
147 int whc_set_num_dnts(struct wusbhc *wusbhc, u8 interval, u8 slots)
149 struct whc *whc = wusbhc_to_whc(wusbhc);
152 dntsctrl = WUSBDNTSCTRL_ACTIVE
153 | WUSBDNTSCTRL_INTERVAL(interval)
154 | WUSBDNTSCTRL_SLOTS(slots);
156 le_writel(dntsctrl, whc->base + WUSBDNTSCTRL);
161 static int whc_set_key(struct whc *whc, u8 key_index, uint32_t tkid,
162 const void *key, size_t key_size, bool is_gtk)
169 memcpy(seckey, key, key_size);
170 setkeycmd = WUSBSETSECKEYCMD_SET | WUSBSETSECKEYCMD_IDX(key_index);
172 setkeycmd |= WUSBSETSECKEYCMD_GTK;
174 le_writel(tkid, whc->base + WUSBTKID);
175 for (i = 0; i < 4; i++)
176 le_writel(seckey[i], whc->base + WUSBSECKEY + 4*i);
177 le_writel(setkeycmd, whc->base + WUSBSETSECKEYCMD);
179 ret = whci_wait_for(&whc->umc->dev, whc->base + WUSBSETSECKEYCMD,
180 WUSBSETSECKEYCMD_SET, 0, 100, "set key");
186 * whc_set_ptk - set the PTK to use for a device.
188 * The index into the key table for this PTK is the same as the
189 * device's port index.
191 int whc_set_ptk(struct wusbhc *wusbhc, u8 port_idx, u32 tkid,
192 const void *ptk, size_t key_size)
194 struct whc *whc = wusbhc_to_whc(wusbhc);
195 struct di_buf_entry *di = &whc->di_buf[port_idx];
198 mutex_lock(&whc->mutex);
201 ret = whc_set_key(whc, port_idx, tkid, ptk, key_size, false);
205 di->addr_sec_info &= ~WHC_DI_KEY_IDX_MASK;
206 di->addr_sec_info |= WHC_DI_SECURE | WHC_DI_KEY_IDX(port_idx);
208 di->addr_sec_info &= ~WHC_DI_SECURE;
210 ret = whc_update_di(whc, port_idx);
212 mutex_unlock(&whc->mutex);
217 * whc_set_gtk - set the GTK for subsequent broadcast packets
219 * The GTK is stored in the last entry in the key table (the previous
220 * N_DEVICES entries are for the per-device PTKs).
222 int whc_set_gtk(struct wusbhc *wusbhc, u32 tkid,
223 const void *gtk, size_t key_size)
225 struct whc *whc = wusbhc_to_whc(wusbhc);
228 mutex_lock(&whc->mutex);
230 ret = whc_set_key(whc, whc->n_devices, tkid, gtk, key_size, true);
232 mutex_unlock(&whc->mutex);
237 int whc_set_cluster_id(struct whc *whc, u8 bcid)
239 whc_write_wusbcmd(whc, WUSBCMD_BCID_MASK, WUSBCMD_BCID(bcid));