bus-fixup.c 8.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/*
 *
 * Intel Management Engine Interface (Intel MEI) Linux driver
 * Copyright (c) 2003-2013, Intel Corporation.
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms and conditions of the GNU General Public License,
 * version 2, as published by the Free Software Foundation.
 *
 * This program is distributed in the hope it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 *
 */

#include <linux/kernel.h>
S
Samuel Ortiz 已提交
18
#include <linux/sched.h>
19 20 21
#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/device.h>
22 23
#include <linux/slab.h>

24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
#include <linux/mei_cl_bus.h>

#include "mei_dev.h"
#include "client.h"

struct mei_nfc_cmd {
	u8 command;
	u8 status;
	u16 req_id;
	u32 reserved;
	u16 data_size;
	u8 sub_command;
	u8 data[];
} __packed;

struct mei_nfc_reply {
	u8 command;
	u8 status;
	u16 req_id;
	u32 reserved;
	u16 data_size;
	u8 sub_command;
	u8 reply_status;
	u8 data[];
} __packed;

struct mei_nfc_if_version {
	u8 radio_version_sw[3];
	u8 reserved[3];
	u8 radio_version_hw[3];
	u8 i2c_addr;
	u8 fw_ivn;
	u8 vendor_id;
	u8 radio_type;
} __packed;

struct mei_nfc_connect {
	u8 fw_ivn;
	u8 vendor_id;
} __packed;

struct mei_nfc_connect_resp {
	u8 fw_ivn;
	u8 vendor_id;
	u16 me_major;
	u16 me_minor;
	u16 me_hotfix;
	u16 me_build;
} __packed;

struct mei_nfc_hci_hdr {
	u8 cmd;
	u8 status;
	u16 req_id;
	u32 reserved;
	u16 data_size;
} __packed;

#define MEI_NFC_CMD_MAINTENANCE 0x00
#define MEI_NFC_CMD_HCI_SEND 0x01
#define MEI_NFC_CMD_HCI_RECV 0x02

#define MEI_NFC_SUBCMD_CONNECT    0x00
#define MEI_NFC_SUBCMD_IF_VERSION 0x01

#define MEI_NFC_HEADER_SIZE 10

91 92
/**
 * struct mei_nfc_dev - NFC mei device
93
 *
94
 * @me_cl: NFC me client
95 96 97
 * @cl: NFC host client
 * @cl_info: NFC info host client
 * @init_work: perform connection to the info client
98
 * @fw_ivn: NFC Interface Version Number
99 100
 * @vendor_id: NFC manufacturer ID
 * @radio_type: NFC radio type
A
Alexander Usyskin 已提交
101 102
 * @bus_name: bus name
 *
103 104
 */
struct mei_nfc_dev {
105
	struct mei_me_client *me_cl;
106 107 108 109 110 111
	struct mei_cl *cl;
	struct mei_cl *cl_info;
	struct work_struct init_work;
	u8 fw_ivn;
	u8 vendor_id;
	u8 radio_type;
112
	char *bus_name;
113 114 115 116 117 118 119 120 121 122 123
};

/* UUIDs for NFC F/W clients */
const uuid_le mei_nfc_guid = UUID_LE(0x0bb17a78, 0x2a8e, 0x4c50,
				     0x94, 0xd4, 0x50, 0x26,
				     0x67, 0x23, 0x77, 0x5c);

static const uuid_le mei_nfc_info_guid = UUID_LE(0xd2de1625, 0x382d, 0x417d,
					0x48, 0xa4, 0xef, 0xab,
					0xba, 0x8a, 0x12, 0x06);

124 125 126 127 128 129 130 131
/* Vendors */
#define MEI_NFC_VENDOR_INSIDE 0x00
#define MEI_NFC_VENDOR_NXP    0x01

/* Radio types */
#define MEI_NFC_VENDOR_INSIDE_UREAD 0x00
#define MEI_NFC_VENDOR_NXP_PN544    0x01

132 133
static void mei_nfc_free(struct mei_nfc_dev *ndev)
{
134 135 136
	if (!ndev)
		return;

137 138 139 140 141 142 143 144 145 146 147
	if (ndev->cl) {
		list_del(&ndev->cl->device_link);
		mei_cl_unlink(ndev->cl);
		kfree(ndev->cl);
	}

	if (ndev->cl_info) {
		list_del(&ndev->cl_info->device_link);
		mei_cl_unlink(ndev->cl_info);
		kfree(ndev->cl_info);
	}
T
Tomas Winkler 已提交
148

149
	mei_me_cl_put(ndev->me_cl);
150
	kfree(ndev);
151 152
}

153 154
static int mei_nfc_build_bus_name(struct mei_nfc_dev *ndev)
{
155
	struct mei_device *bus;
156 157 158 159

	if (!ndev->cl)
		return -ENODEV;

160
	bus = ndev->cl->dev;
161 162 163 164 165 166 167 168 169

	switch (ndev->vendor_id) {
	case MEI_NFC_VENDOR_INSIDE:
		switch (ndev->radio_type) {
		case MEI_NFC_VENDOR_INSIDE_UREAD:
			ndev->bus_name = "microread";
			return 0;

		default:
170
			dev_err(bus->dev, "Unknown radio type 0x%x\n",
171 172 173 174 175 176 177 178 179 180 181
				ndev->radio_type);

			return -EINVAL;
		}

	case MEI_NFC_VENDOR_NXP:
		switch (ndev->radio_type) {
		case MEI_NFC_VENDOR_NXP_PN544:
			ndev->bus_name = "pn544";
			return 0;
		default:
182
			dev_err(bus->dev, "Unknown radio type 0x%x\n",
183 184 185 186 187 188
				ndev->radio_type);

			return -EINVAL;
		}

	default:
189
		dev_err(bus->dev, "Unknown vendor ID 0x%x\n",
190 191 192 193 194 195 196 197
			ndev->vendor_id);

		return -EINVAL;
	}

	return 0;
}

198 199
static int mei_nfc_if_version(struct mei_nfc_dev *ndev)
{
200
	struct mei_device *bus;
201 202 203 204 205 206 207 208 209
	struct mei_cl *cl;

	struct mei_nfc_cmd cmd;
	struct mei_nfc_reply *reply = NULL;
	struct mei_nfc_if_version *version;
	size_t if_version_length;
	int bytes_recv, ret;

	cl = ndev->cl_info;
210
	bus = cl->dev;
211 212 213 214 215 216

	memset(&cmd, 0, sizeof(struct mei_nfc_cmd));
	cmd.command = MEI_NFC_CMD_MAINTENANCE;
	cmd.data_size = 1;
	cmd.sub_command = MEI_NFC_SUBCMD_IF_VERSION;

217
	ret = __mei_cl_send(cl, (u8 *)&cmd, sizeof(struct mei_nfc_cmd), 1);
218
	if (ret < 0) {
219
		dev_err(bus->dev, "Could not send IF version cmd\n");
220 221 222 223 224 225 226 227 228 229 230 231 232
		return ret;
	}

	/* to be sure on the stack we alloc memory */
	if_version_length = sizeof(struct mei_nfc_reply) +
		sizeof(struct mei_nfc_if_version);

	reply = kzalloc(if_version_length, GFP_KERNEL);
	if (!reply)
		return -ENOMEM;

	bytes_recv = __mei_cl_recv(cl, (u8 *)reply, if_version_length);
	if (bytes_recv < 0 || bytes_recv < sizeof(struct mei_nfc_reply)) {
233
		dev_err(bus->dev, "Could not read IF version\n");
234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250
		ret = -EIO;
		goto err;
	}

	version = (struct mei_nfc_if_version *)reply->data;

	ndev->fw_ivn = version->fw_ivn;
	ndev->vendor_id = version->vendor_id;
	ndev->radio_type = version->radio_type;

err:
	kfree(reply);
	return ret;
}

static void mei_nfc_init(struct work_struct *work)
{
251
	struct mei_device *bus;
252
	struct mei_cl_device *cldev;
253 254
	struct mei_nfc_dev *ndev;
	struct mei_cl *cl_info;
255
	struct mei_me_client *me_cl_info;
256 257 258 259

	ndev = container_of(work, struct mei_nfc_dev, init_work);

	cl_info = ndev->cl_info;
260
	bus = cl_info->dev;
261

262
	mutex_lock(&bus->device_lock);
263

264
	/* check for valid client id */
265
	me_cl_info = mei_me_cl_by_uuid(bus, &mei_nfc_info_guid);
266
	if (!me_cl_info) {
267 268
		mutex_unlock(&bus->device_lock);
		dev_info(bus->dev, "nfc: failed to find the info client\n");
269 270 271 272 273
		goto err;
	}

	if (mei_cl_connect(cl_info, me_cl_info, NULL) < 0) {
		mei_me_cl_put(me_cl_info);
274 275
		mutex_unlock(&bus->device_lock);
		dev_err(bus->dev, "Could not connect to the NFC INFO ME client");
276 277 278

		goto err;
	}
279
	mei_me_cl_put(me_cl_info);
280
	mutex_unlock(&bus->device_lock);
281 282

	if (mei_nfc_if_version(ndev) < 0) {
283
		dev_err(bus->dev, "Could not get the NFC interface version");
284 285 286 287

		goto err;
	}

288
	dev_info(bus->dev, "NFC MEI VERSION: IVN 0x%x Vendor ID 0x%x Type 0x%x\n",
289 290
		ndev->fw_ivn, ndev->vendor_id, ndev->radio_type);

291
	mutex_lock(&bus->device_lock);
292 293

	if (mei_cl_disconnect(cl_info) < 0) {
294 295
		mutex_unlock(&bus->device_lock);
		dev_err(bus->dev, "Could not disconnect the NFC INFO ME client");
296 297 298 299

		goto err;
	}

300
	mutex_unlock(&bus->device_lock);
301

302
	if (mei_nfc_build_bus_name(ndev) < 0) {
303
		dev_err(bus->dev, "Could not build the bus ID name\n");
304 305 306
		return;
	}

307
	cldev = mei_cl_add_device(bus, ndev->me_cl, ndev->cl,
308
				  ndev->bus_name);
309
	if (!cldev) {
310
		dev_err(bus->dev, "Could not add the NFC device to the MEI bus\n");
311 312 313 314 315 316 317

		goto err;
	}

	cldev->priv_data = ndev;


318 319 320
	return;

err:
321
	mutex_lock(&bus->device_lock);
322
	mei_nfc_free(ndev);
323
	mutex_unlock(&bus->device_lock);
324 325 326 327

}


328
int mei_nfc_host_init(struct mei_device *bus, struct mei_me_client *me_cl)
329
{
330
	struct mei_nfc_dev *ndev;
331
	struct mei_cl *cl_info, *cl;
332
	int ret;
333

334 335 336 337

	/* in case of internal reset bail out
	 * as the device is already setup
	 */
338
	cl = mei_cl_bus_find_cl_by_uuid(bus, mei_nfc_guid);
339
	if (cl)
340 341
		return 0;

342 343 344 345 346 347
	ndev = kzalloc(sizeof(struct mei_nfc_dev), GFP_KERNEL);
	if (!ndev) {
		ret = -ENOMEM;
		goto err;
	}

348 349 350
	ndev->me_cl = mei_me_cl_get(me_cl);
	if (!ndev->me_cl) {
		ret = -ENODEV;
351 352 353
		goto err;
	}

354
	cl_info = mei_cl_alloc_linked(bus, MEI_HOST_CLIENT_ID_ANY);
355 356 357 358 359
	if (IS_ERR(cl_info)) {
		ret = PTR_ERR(cl_info);
		goto err;
	}

360
	list_add_tail(&cl_info->device_link, &bus->device_list);
361

362 363
	ndev->cl_info = cl_info;

364
	cl = mei_cl_alloc_linked(bus, MEI_HOST_CLIENT_ID_ANY);
365 366 367 368 369
	if (IS_ERR(cl)) {
		ret = PTR_ERR(cl);
		goto err;
	}

370
	list_add_tail(&cl->device_link, &bus->device_list);
371

372 373
	ndev->cl = cl;

374 375 376 377 378 379 380 381 382 383 384
	INIT_WORK(&ndev->init_work, mei_nfc_init);
	schedule_work(&ndev->init_work);

	return 0;

err:
	mei_nfc_free(ndev);

	return ret;
}

385
void mei_nfc_host_exit(struct mei_device *bus)
386
{
387 388 389 390
	struct mei_nfc_dev *ndev;
	struct mei_cl *cl;
	struct mei_cl_device *cldev;

391
	cl = mei_cl_bus_find_cl_by_uuid(bus, mei_nfc_guid);
392 393 394
	if (!cl)
		return;

395
	cldev = cl->cldev;
396 397
	if (!cldev)
		return;
398

399 400 401 402 403 404 405 406 407 408
	ndev = (struct mei_nfc_dev *)cldev->priv_data;
	if (ndev)
		cancel_work_sync(&ndev->init_work);

	cldev->priv_data = NULL;

	/* Need to remove the device here
	 * since mei_nfc_free will unlink the clients
	 */
	mei_cl_remove_device(cldev);
409

410
	mutex_lock(&bus->device_lock);
411
	mei_nfc_free(ndev);
412
	mutex_unlock(&bus->device_lock);
413
}
T
Tomas Winkler 已提交
414

415