hw-txe.c 30.5 KB
Newer Older
Tomas Winkler's avatar
Tomas Winkler committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 *
 * Intel Management Engine Interface (Intel MEI) Linux driver
 * Copyright (c) 2013-2014, 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/pci.h>
#include <linux/jiffies.h>
19
#include <linux/ktime.h>
Tomas Winkler's avatar
Tomas Winkler committed
20 21
#include <linux/delay.h>
#include <linux/kthread.h>
22
#include <linux/interrupt.h>
23
#include <linux/pm_runtime.h>
Tomas Winkler's avatar
Tomas Winkler committed
24 25 26 27 28 29 30 31

#include <linux/mei.h>

#include "mei_dev.h"
#include "hw-txe.h"
#include "client.h"
#include "hbm.h"

32 33 34
#include "mei-trace.h"


Tomas Winkler's avatar
Tomas Winkler committed
35
/**
36
 * mei_txe_reg_read - Reads 32bit data from the txe device
Tomas Winkler's avatar
Tomas Winkler committed
37 38 39 40
 *
 * @base_addr: registers base address
 * @offset: register offset
 *
41
 * Return: register value
Tomas Winkler's avatar
Tomas Winkler committed
42 43 44 45 46 47 48 49
 */
static inline u32 mei_txe_reg_read(void __iomem *base_addr,
					unsigned long offset)
{
	return ioread32(base_addr + offset);
}

/**
50
 * mei_txe_reg_write - Writes 32bit data to the txe device
Tomas Winkler's avatar
Tomas Winkler committed
51 52 53 54 55 56 57 58 59 60 61 62 63 64
 *
 * @base_addr: registers base address
 * @offset: register offset
 * @value: the value to write
 */
static inline void mei_txe_reg_write(void __iomem *base_addr,
				unsigned long offset, u32 value)
{
	iowrite32(value, base_addr + offset);
}

/**
 * mei_txe_sec_reg_read_silent - Reads 32bit data from the SeC BAR
 *
65
 * @hw: the txe hardware structure
Tomas Winkler's avatar
Tomas Winkler committed
66 67 68
 * @offset: register offset
 *
 * Doesn't check for aliveness while Reads 32bit data from the SeC BAR
69 70
 *
 * Return: register value
Tomas Winkler's avatar
Tomas Winkler committed
71 72 73 74 75 76 77 78 79 80
 */
static inline u32 mei_txe_sec_reg_read_silent(struct mei_txe_hw *hw,
				unsigned long offset)
{
	return mei_txe_reg_read(hw->mem_addr[SEC_BAR], offset);
}

/**
 * mei_txe_sec_reg_read - Reads 32bit data from the SeC BAR
 *
81
 * @hw: the txe hardware structure
Tomas Winkler's avatar
Tomas Winkler committed
82 83 84
 * @offset: register offset
 *
 * Reads 32bit data from the SeC BAR and shout loud if aliveness is not set
85 86
 *
 * Return: register value
Tomas Winkler's avatar
Tomas Winkler committed
87 88 89 90 91 92 93 94 95 96 97
 */
static inline u32 mei_txe_sec_reg_read(struct mei_txe_hw *hw,
				unsigned long offset)
{
	WARN(!hw->aliveness, "sec read: aliveness not asserted\n");
	return mei_txe_sec_reg_read_silent(hw, offset);
}
/**
 * mei_txe_sec_reg_write_silent - Writes 32bit data to the SeC BAR
 *   doesn't check for aliveness
 *
98
 * @hw: the txe hardware structure
Tomas Winkler's avatar
Tomas Winkler committed
99 100 101 102 103 104 105 106 107 108 109 110 111 112
 * @offset: register offset
 * @value: value to write
 *
 * Doesn't check for aliveness while writes 32bit data from to the SeC BAR
 */
static inline void mei_txe_sec_reg_write_silent(struct mei_txe_hw *hw,
				unsigned long offset, u32 value)
{
	mei_txe_reg_write(hw->mem_addr[SEC_BAR], offset, value);
}

/**
 * mei_txe_sec_reg_write - Writes 32bit data to the SeC BAR
 *
113
 * @hw: the txe hardware structure
Tomas Winkler's avatar
Tomas Winkler committed
114 115 116 117 118 119 120 121 122 123 124 125 126 127
 * @offset: register offset
 * @value: value to write
 *
 * Writes 32bit data from the SeC BAR and shout loud if aliveness is not set
 */
static inline void mei_txe_sec_reg_write(struct mei_txe_hw *hw,
				unsigned long offset, u32 value)
{
	WARN(!hw->aliveness, "sec write: aliveness not asserted\n");
	mei_txe_sec_reg_write_silent(hw, offset, value);
}
/**
 * mei_txe_br_reg_read - Reads 32bit data from the Bridge BAR
 *
128
 * @hw: the txe hardware structure
Tomas Winkler's avatar
Tomas Winkler committed
129 130
 * @offset: offset from which to read the data
 *
131
 * Return: the byte read.
Tomas Winkler's avatar
Tomas Winkler committed
132 133 134 135 136 137 138 139 140 141
 */
static inline u32 mei_txe_br_reg_read(struct mei_txe_hw *hw,
				unsigned long offset)
{
	return mei_txe_reg_read(hw->mem_addr[BRIDGE_BAR], offset);
}

/**
 * mei_txe_br_reg_write - Writes 32bit data to the Bridge BAR
 *
142
 * @hw: the txe hardware structure
Tomas Winkler's avatar
Tomas Winkler committed
143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
 * @offset: offset from which to write the data
 * @value: the byte to write
 */
static inline void mei_txe_br_reg_write(struct mei_txe_hw *hw,
				unsigned long offset, u32 value)
{
	mei_txe_reg_write(hw->mem_addr[BRIDGE_BAR], offset, value);
}

/**
 * mei_txe_aliveness_set - request for aliveness change
 *
 * @dev: the device structure
 * @req: requested aliveness value
 *
 * Request for aliveness change and returns true if the change is
 *   really needed and false if aliveness is already
 *   in the requested state
161 162 163 164
 *
 * Locking: called under "dev->device_lock" lock
 *
 * Return: true if request was send
Tomas Winkler's avatar
Tomas Winkler committed
165 166 167 168 169 170 171
 */
static bool mei_txe_aliveness_set(struct mei_device *dev, u32 req)
{

	struct mei_txe_hw *hw = to_txe_hw(dev);
	bool do_req = hw->aliveness != req;

172
	dev_dbg(dev->dev, "Aliveness current=%d request=%d\n",
Tomas Winkler's avatar
Tomas Winkler committed
173 174
				hw->aliveness, req);
	if (do_req) {
175
		dev->pg_event = MEI_PG_EVENT_WAIT;
Tomas Winkler's avatar
Tomas Winkler committed
176 177 178 179 180 181 182 183 184 185 186 187 188
		mei_txe_br_reg_write(hw, SICR_HOST_ALIVENESS_REQ_REG, req);
	}
	return do_req;
}


/**
 * mei_txe_aliveness_req_get - get aliveness requested register value
 *
 * @dev: the device structure
 *
 * Extract HICR_HOST_ALIVENESS_RESP_ACK bit from
 * from HICR_HOST_ALIVENESS_REQ register value
189 190
 *
 * Return: SICR_HOST_ALIVENESS_REQ_REQUESTED bit value
Tomas Winkler's avatar
Tomas Winkler committed
191 192 193 194 195
 */
static u32 mei_txe_aliveness_req_get(struct mei_device *dev)
{
	struct mei_txe_hw *hw = to_txe_hw(dev);
	u32 reg;
196

Tomas Winkler's avatar
Tomas Winkler committed
197 198 199 200 201 202
	reg = mei_txe_br_reg_read(hw, SICR_HOST_ALIVENESS_REQ_REG);
	return reg & SICR_HOST_ALIVENESS_REQ_REQUESTED;
}

/**
 * mei_txe_aliveness_get - get aliveness response register value
203
 *
Tomas Winkler's avatar
Tomas Winkler committed
204 205
 * @dev: the device structure
 *
206 207
 * Return: HICR_HOST_ALIVENESS_RESP_ACK bit from HICR_HOST_ALIVENESS_RESP
 *         register
Tomas Winkler's avatar
Tomas Winkler committed
208 209 210 211 212
 */
static u32 mei_txe_aliveness_get(struct mei_device *dev)
{
	struct mei_txe_hw *hw = to_txe_hw(dev);
	u32 reg;
213

Tomas Winkler's avatar
Tomas Winkler committed
214 215 216 217 218 219 220 221 222 223 224
	reg = mei_txe_br_reg_read(hw, HICR_HOST_ALIVENESS_RESP_REG);
	return reg & HICR_HOST_ALIVENESS_RESP_ACK;
}

/**
 * mei_txe_aliveness_poll - waits for aliveness to settle
 *
 * @dev: the device structure
 * @expected: expected aliveness value
 *
 * Polls for HICR_HOST_ALIVENESS_RESP.ALIVENESS_RESP to be set
225
 *
226
 * Return: 0 if the expected value was received, -ETIME otherwise
Tomas Winkler's avatar
Tomas Winkler committed
227 228 229 230
 */
static int mei_txe_aliveness_poll(struct mei_device *dev, u32 expected)
{
	struct mei_txe_hw *hw = to_txe_hw(dev);
231
	ktime_t stop, start;
Tomas Winkler's avatar
Tomas Winkler committed
232

233 234
	start = ktime_get();
	stop = ktime_add(start, ms_to_ktime(SEC_ALIVENESS_WAIT_TIMEOUT));
Tomas Winkler's avatar
Tomas Winkler committed
235 236 237
	do {
		hw->aliveness = mei_txe_aliveness_get(dev);
		if (hw->aliveness == expected) {
238
			dev->pg_event = MEI_PG_EVENT_IDLE;
239 240 241
			dev_dbg(dev->dev, "aliveness settled after %lld usecs\n",
				ktime_to_us(ktime_sub(ktime_get(), start)));
			return 0;
Tomas Winkler's avatar
Tomas Winkler committed
242
		}
243 244
		usleep_range(20, 50);
	} while (ktime_before(ktime_get(), stop));
Tomas Winkler's avatar
Tomas Winkler committed
245

246
	dev->pg_event = MEI_PG_EVENT_IDLE;
247
	dev_err(dev->dev, "aliveness timed out\n");
Tomas Winkler's avatar
Tomas Winkler committed
248 249 250 251 252 253 254 255 256 257
	return -ETIME;
}

/**
 * mei_txe_aliveness_wait - waits for aliveness to settle
 *
 * @dev: the device structure
 * @expected: expected aliveness value
 *
 * Waits for HICR_HOST_ALIVENESS_RESP.ALIVENESS_RESP to be set
258 259
 *
 * Return: 0 on success and < 0 otherwise
Tomas Winkler's avatar
Tomas Winkler committed
260 261 262 263 264 265 266 267 268 269 270 271 272 273
 */
static int mei_txe_aliveness_wait(struct mei_device *dev, u32 expected)
{
	struct mei_txe_hw *hw = to_txe_hw(dev);
	const unsigned long timeout =
			msecs_to_jiffies(SEC_ALIVENESS_WAIT_TIMEOUT);
	long err;
	int ret;

	hw->aliveness = mei_txe_aliveness_get(dev);
	if (hw->aliveness == expected)
		return 0;

	mutex_unlock(&dev->device_lock);
274 275
	err = wait_event_timeout(hw->wait_aliveness_resp,
			dev->pg_event == MEI_PG_EVENT_RECEIVED, timeout);
Tomas Winkler's avatar
Tomas Winkler committed
276 277 278 279 280 281
	mutex_lock(&dev->device_lock);

	hw->aliveness = mei_txe_aliveness_get(dev);
	ret = hw->aliveness == expected ? 0 : -ETIME;

	if (ret)
282
		dev_warn(dev->dev, "aliveness timed out = %ld aliveness = %d event = %d\n",
283
			err, hw->aliveness, dev->pg_event);
Tomas Winkler's avatar
Tomas Winkler committed
284
	else
285
		dev_dbg(dev->dev, "aliveness settled after = %d msec aliveness = %d event = %d\n",
286 287 288 289
			jiffies_to_msecs(timeout - err),
			hw->aliveness, dev->pg_event);

	dev->pg_event = MEI_PG_EVENT_IDLE;
Tomas Winkler's avatar
Tomas Winkler committed
290 291 292 293 294 295 296
	return ret;
}

/**
 * mei_txe_aliveness_set_sync - sets an wait for aliveness to complete
 *
 * @dev: the device structure
297
 * @req: requested aliveness value
Tomas Winkler's avatar
Tomas Winkler committed
298
 *
299
 * Return: 0 on success and < 0 otherwise
Tomas Winkler's avatar
Tomas Winkler committed
300 301 302 303 304 305 306 307
 */
int mei_txe_aliveness_set_sync(struct mei_device *dev, u32 req)
{
	if (mei_txe_aliveness_set(dev, req))
		return mei_txe_aliveness_wait(dev, req);
	return 0;
}

308 309 310 311 312 313 314 315 316 317 318 319
/**
 * mei_txe_pg_in_transition - is device now in pg transition
 *
 * @dev: the device structure
 *
 * Return: true if in pg transition, false otherwise
 */
static bool mei_txe_pg_in_transition(struct mei_device *dev)
{
	return dev->pg_event == MEI_PG_EVENT_WAIT;
}

320 321 322 323 324
/**
 * mei_txe_pg_is_enabled - detect if PG is supported by HW
 *
 * @dev: the device structure
 *
325
 * Return: true is pg supported, false otherwise
326 327 328 329 330 331
 */
static bool mei_txe_pg_is_enabled(struct mei_device *dev)
{
	return true;
}

332 333 334 335 336 337
/**
 * mei_txe_pg_state  - translate aliveness register value
 *   to the mei power gating state
 *
 * @dev: the device structure
 *
338
 * Return: MEI_PG_OFF if aliveness is on and MEI_PG_ON otherwise
339 340 341 342
 */
static inline enum mei_pg_state mei_txe_pg_state(struct mei_device *dev)
{
	struct mei_txe_hw *hw = to_txe_hw(dev);
343

344 345 346
	return hw->aliveness ? MEI_PG_OFF : MEI_PG_ON;
}

Tomas Winkler's avatar
Tomas Winkler committed
347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362
/**
 * mei_txe_input_ready_interrupt_enable - sets the Input Ready Interrupt
 *
 * @dev: the device structure
 */
static void mei_txe_input_ready_interrupt_enable(struct mei_device *dev)
{
	struct mei_txe_hw *hw = to_txe_hw(dev);
	u32 hintmsk;
	/* Enable the SEC_IPC_HOST_INT_MASK_IN_RDY interrupt */
	hintmsk = mei_txe_sec_reg_read(hw, SEC_IPC_HOST_INT_MASK_REG);
	hintmsk |= SEC_IPC_HOST_INT_MASK_IN_RDY;
	mei_txe_sec_reg_write(hw, SEC_IPC_HOST_INT_MASK_REG, hintmsk);
}

/**
363 364 365 366
 * mei_txe_input_doorbell_set - sets bit 0 in
 *    SEC_IPC_INPUT_DOORBELL.IPC_INPUT_DOORBELL.
 *
 * @hw: the txe hardware structure
Tomas Winkler's avatar
Tomas Winkler committed
367 368 369 370 371 372 373 374 375 376 377
 */
static void mei_txe_input_doorbell_set(struct mei_txe_hw *hw)
{
	/* Clear the interrupt cause */
	clear_bit(TXE_INTR_IN_READY_BIT, &hw->intr_cause);
	mei_txe_sec_reg_write(hw, SEC_IPC_INPUT_DOORBELL_REG, 1);
}

/**
 * mei_txe_output_ready_set - Sets the SICR_SEC_IPC_OUTPUT_STATUS bit to 1
 *
378
 * @hw: the txe hardware structure
Tomas Winkler's avatar
Tomas Winkler committed
379 380 381 382 383 384 385 386 387 388 389 390
 */
static void mei_txe_output_ready_set(struct mei_txe_hw *hw)
{
	mei_txe_br_reg_write(hw,
			SICR_SEC_IPC_OUTPUT_STATUS_REG,
			SEC_IPC_OUTPUT_STATUS_RDY);
}

/**
 * mei_txe_is_input_ready - check if TXE is ready for receiving data
 *
 * @dev: the device structure
391 392
 *
 * Return: true if INPUT STATUS READY bit is set
Tomas Winkler's avatar
Tomas Winkler committed
393 394 395 396 397
 */
static bool mei_txe_is_input_ready(struct mei_device *dev)
{
	struct mei_txe_hw *hw = to_txe_hw(dev);
	u32 status;
398

Tomas Winkler's avatar
Tomas Winkler committed
399 400 401 402 403 404 405 406 407 408 409 410
	status = mei_txe_sec_reg_read(hw, SEC_IPC_INPUT_STATUS_REG);
	return !!(SEC_IPC_INPUT_STATUS_RDY & status);
}

/**
 * mei_txe_intr_clear - clear all interrupts
 *
 * @dev: the device structure
 */
static inline void mei_txe_intr_clear(struct mei_device *dev)
{
	struct mei_txe_hw *hw = to_txe_hw(dev);
411

Tomas Winkler's avatar
Tomas Winkler committed
412 413 414 415 416 417 418 419 420 421 422 423 424 425
	mei_txe_sec_reg_write_silent(hw, SEC_IPC_HOST_INT_STATUS_REG,
		SEC_IPC_HOST_INT_STATUS_PENDING);
	mei_txe_br_reg_write(hw, HISR_REG, HISR_INT_STS_MSK);
	mei_txe_br_reg_write(hw, HHISR_REG, IPC_HHIER_MSK);
}

/**
 * mei_txe_intr_disable - disable all interrupts
 *
 * @dev: the device structure
 */
static void mei_txe_intr_disable(struct mei_device *dev)
{
	struct mei_txe_hw *hw = to_txe_hw(dev);
426

Tomas Winkler's avatar
Tomas Winkler committed
427 428 429 430
	mei_txe_br_reg_write(hw, HHIER_REG, 0);
	mei_txe_br_reg_write(hw, HIER_REG, 0);
}
/**
431
 * mei_txe_intr_enable - enable all interrupts
Tomas Winkler's avatar
Tomas Winkler committed
432 433 434 435 436 437
 *
 * @dev: the device structure
 */
static void mei_txe_intr_enable(struct mei_device *dev)
{
	struct mei_txe_hw *hw = to_txe_hw(dev);
438

Tomas Winkler's avatar
Tomas Winkler committed
439 440 441 442
	mei_txe_br_reg_write(hw, HHIER_REG, IPC_HHIER_MSK);
	mei_txe_br_reg_write(hw, HIER_REG, HIER_INT_EN_MSK);
}

443 444 445 446 447 448 449 450 451 452 453 454
/**
 * mei_txe_synchronize_irq - wait for pending IRQ handlers
 *
 * @dev: the device structure
 */
static void mei_txe_synchronize_irq(struct mei_device *dev)
{
	struct pci_dev *pdev = to_pci_dev(dev->dev);

	synchronize_irq(pdev->irq);
}

Tomas Winkler's avatar
Tomas Winkler committed
455 456 457 458 459 460 461 462
/**
 * mei_txe_pending_interrupts - check if there are pending interrupts
 *	only Aliveness, Input ready, and output doorbell are of relevance
 *
 * @dev: the device structure
 *
 * Checks if there are pending interrupts
 * only Aliveness, Readiness, Input ready, and Output doorbell are relevant
463 464
 *
 * Return: true if there are pending interrupts
Tomas Winkler's avatar
Tomas Winkler committed
465 466 467 468 469 470 471 472 473 474 475
 */
static bool mei_txe_pending_interrupts(struct mei_device *dev)
{

	struct mei_txe_hw *hw = to_txe_hw(dev);
	bool ret = (hw->intr_cause & (TXE_INTR_READINESS |
				      TXE_INTR_ALIVENESS |
				      TXE_INTR_IN_READY  |
				      TXE_INTR_OUT_DB));

	if (ret) {
476
		dev_dbg(dev->dev,
Tomas Winkler's avatar
Tomas Winkler committed
477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497
			"Pending Interrupts InReady=%01d Readiness=%01d, Aliveness=%01d, OutDoor=%01d\n",
			!!(hw->intr_cause & TXE_INTR_IN_READY),
			!!(hw->intr_cause & TXE_INTR_READINESS),
			!!(hw->intr_cause & TXE_INTR_ALIVENESS),
			!!(hw->intr_cause & TXE_INTR_OUT_DB));
	}
	return ret;
}

/**
 * mei_txe_input_payload_write - write a dword to the host buffer
 *	at offset idx
 *
 * @dev: the device structure
 * @idx: index in the host buffer
 * @value: value
 */
static void mei_txe_input_payload_write(struct mei_device *dev,
			unsigned long idx, u32 value)
{
	struct mei_txe_hw *hw = to_txe_hw(dev);
498

Tomas Winkler's avatar
Tomas Winkler committed
499 500 501 502 503 504 505 506 507 508 509
	mei_txe_sec_reg_write(hw, SEC_IPC_INPUT_PAYLOAD_REG +
			(idx * sizeof(u32)), value);
}

/**
 * mei_txe_out_data_read - read dword from the device buffer
 *	at offset idx
 *
 * @dev: the device structure
 * @idx: index in the device buffer
 *
510
 * Return: register value at index
Tomas Winkler's avatar
Tomas Winkler committed
511 512 513 514 515
 */
static u32 mei_txe_out_data_read(const struct mei_device *dev,
					unsigned long idx)
{
	struct mei_txe_hw *hw = to_txe_hw(dev);
516

Tomas Winkler's avatar
Tomas Winkler committed
517 518 519 520 521 522 523
	return mei_txe_br_reg_read(hw,
		BRIDGE_IPC_OUTPUT_PAYLOAD_REG + (idx * sizeof(u32)));
}

/* Readiness */

/**
524
 * mei_txe_readiness_set_host_rdy - set host readiness bit
Tomas Winkler's avatar
Tomas Winkler committed
525 526 527 528 529 530
 *
 * @dev: the device structure
 */
static void mei_txe_readiness_set_host_rdy(struct mei_device *dev)
{
	struct mei_txe_hw *hw = to_txe_hw(dev);
531

Tomas Winkler's avatar
Tomas Winkler committed
532 533 534 535 536 537
	mei_txe_br_reg_write(hw,
		SICR_HOST_IPC_READINESS_REQ_REG,
		SICR_HOST_IPC_READINESS_HOST_RDY);
}

/**
538
 * mei_txe_readiness_clear - clear host readiness bit
Tomas Winkler's avatar
Tomas Winkler committed
539 540 541 542 543 544
 *
 * @dev: the device structure
 */
static void mei_txe_readiness_clear(struct mei_device *dev)
{
	struct mei_txe_hw *hw = to_txe_hw(dev);
545

Tomas Winkler's avatar
Tomas Winkler committed
546 547 548 549 550 551 552 553
	mei_txe_br_reg_write(hw, SICR_HOST_IPC_READINESS_REQ_REG,
				SICR_HOST_IPC_READINESS_RDY_CLR);
}
/**
 * mei_txe_readiness_get - Reads and returns
 *	the HICR_SEC_IPC_READINESS register value
 *
 * @dev: the device structure
554 555
 *
 * Return: the HICR_SEC_IPC_READINESS register value
Tomas Winkler's avatar
Tomas Winkler committed
556 557 558 559
 */
static u32 mei_txe_readiness_get(struct mei_device *dev)
{
	struct mei_txe_hw *hw = to_txe_hw(dev);
560

Tomas Winkler's avatar
Tomas Winkler committed
561 562 563 564 565 566 567 568
	return mei_txe_br_reg_read(hw, HICR_SEC_IPC_READINESS_REG);
}


/**
 * mei_txe_readiness_is_sec_rdy - check readiness
 *  for HICR_SEC_IPC_READINESS_SEC_RDY
 *
569 570 571
 * @readiness: cached readiness state
 *
 * Return: true if readiness bit is set
Tomas Winkler's avatar
Tomas Winkler committed
572 573 574 575 576 577 578 579 580 581
 */
static inline bool mei_txe_readiness_is_sec_rdy(u32 readiness)
{
	return !!(readiness & HICR_SEC_IPC_READINESS_SEC_RDY);
}

/**
 * mei_txe_hw_is_ready - check if the hw is ready
 *
 * @dev: the device structure
582 583
 *
 * Return: true if sec is ready
Tomas Winkler's avatar
Tomas Winkler committed
584 585 586 587
 */
static bool mei_txe_hw_is_ready(struct mei_device *dev)
{
	u32 readiness =  mei_txe_readiness_get(dev);
588

Tomas Winkler's avatar
Tomas Winkler committed
589 590 591 592 593 594 595
	return mei_txe_readiness_is_sec_rdy(readiness);
}

/**
 * mei_txe_host_is_ready - check if the host is ready
 *
 * @dev: the device structure
596 597
 *
 * Return: true if host is ready
Tomas Winkler's avatar
Tomas Winkler committed
598 599 600 601 602
 */
static inline bool mei_txe_host_is_ready(struct mei_device *dev)
{
	struct mei_txe_hw *hw = to_txe_hw(dev);
	u32 reg = mei_txe_br_reg_read(hw, HICR_SEC_IPC_READINESS_REG);
603

Tomas Winkler's avatar
Tomas Winkler committed
604 605 606 607 608 609 610 611
	return !!(reg & HICR_SEC_IPC_READINESS_HOST_RDY);
}

/**
 * mei_txe_readiness_wait - wait till readiness settles
 *
 * @dev: the device structure
 *
612
 * Return: 0 on success and -ETIME on timeout
Tomas Winkler's avatar
Tomas Winkler committed
613 614 615 616 617 618 619 620 621 622 623
 */
static int mei_txe_readiness_wait(struct mei_device *dev)
{
	if (mei_txe_hw_is_ready(dev))
		return 0;

	mutex_unlock(&dev->device_lock);
	wait_event_timeout(dev->wait_hw_ready, dev->recvd_hw_ready,
			msecs_to_jiffies(SEC_RESET_WAIT_TIMEOUT));
	mutex_lock(&dev->device_lock);
	if (!dev->recvd_hw_ready) {
624
		dev_err(dev->dev, "wait for readiness failed\n");
Tomas Winkler's avatar
Tomas Winkler committed
625 626 627 628 629 630 631
		return -ETIME;
	}

	dev->recvd_hw_ready = false;
	return 0;
}

632
static const struct mei_fw_status mei_txe_fw_sts = {
633 634 635 636
	.count = 2,
	.status[0] = PCI_CFG_TXE_FW_STS0,
	.status[1] = PCI_CFG_TXE_FW_STS1
};
637 638 639 640 641 642

/**
 * mei_txe_fw_status - read fw status register from pci config space
 *
 * @dev: mei device
 * @fw_status: fw status register values
643 644
 *
 * Return: 0 on success, error otherwise
645 646 647 648
 */
static int mei_txe_fw_status(struct mei_device *dev,
			     struct mei_fw_status *fw_status)
{
649
	const struct mei_fw_status *fw_src = &mei_txe_fw_sts;
650 651 652 653 654 655 656 657 658
	struct pci_dev *pdev = to_pci_dev(dev->dev);
	int ret;
	int i;

	if (!fw_status)
		return -EINVAL;

	fw_status->count = fw_src->count;
	for (i = 0; i < fw_src->count && i < MEI_FW_STATUS_MAX; i++) {
659 660 661 662 663
		ret = pci_read_config_dword(pdev, fw_src->status[i],
					    &fw_status->status[i]);
		trace_mei_pci_cfg_read(dev->dev, "PCI_CFG_HSF_X",
				       fw_src->status[i],
				       fw_status->status[i]);
664 665 666 667 668 669 670
		if (ret)
			return ret;
	}

	return 0;
}

Tomas Winkler's avatar
Tomas Winkler committed
671 672 673 674 675 676 677 678 679 680 681 682
/**
 *  mei_txe_hw_config - configure hardware at the start of the devices
 *
 * @dev: the device structure
 *
 * Configure hardware at the start of the device should be done only
 *   once at the device probe time
 */
static void mei_txe_hw_config(struct mei_device *dev)
{

	struct mei_txe_hw *hw = to_txe_hw(dev);
683

Tomas Winkler's avatar
Tomas Winkler committed
684 685 686 687 688 689
	/* Doesn't change in runtime */
	dev->hbuf_depth = PAYLOAD_SIZE / 4;

	hw->aliveness = mei_txe_aliveness_get(dev);
	hw->readiness = mei_txe_readiness_get(dev);

690
	dev_dbg(dev->dev, "aliveness_resp = 0x%08x, readiness = 0x%08x.\n",
Tomas Winkler's avatar
Tomas Winkler committed
691 692 693 694 695 696 697 698 699 700
		hw->aliveness, hw->readiness);
}


/**
 * mei_txe_write - writes a message to device.
 *
 * @dev: the device structure
 * @header: header of message
 * @buf: message buffer will be written
701
 *
702
 * Return: 0 if success, <0 - otherwise.
Tomas Winkler's avatar
Tomas Winkler committed
703 704 705
 */

static int mei_txe_write(struct mei_device *dev,
706 707
			 struct mei_msg_hdr *header,
			 const unsigned char *buf)
Tomas Winkler's avatar
Tomas Winkler committed
708 709 710 711
{
	struct mei_txe_hw *hw = to_txe_hw(dev);
	unsigned long rem;
	unsigned long length;
712
	int slots = dev->hbuf_depth;
Tomas Winkler's avatar
Tomas Winkler committed
713
	u32 *reg_buf = (u32 *)buf;
714
	u32 dw_cnt;
Tomas Winkler's avatar
Tomas Winkler committed
715 716 717 718 719 720 721
	int i;

	if (WARN_ON(!header || !buf))
		return -EINVAL;

	length = header->length;

722
	dev_dbg(dev->dev, MEI_HDR_FMT, MEI_HDR_PRM(header));
Tomas Winkler's avatar
Tomas Winkler committed
723

724 725 726
	dw_cnt = mei_data2slots(length);
	if (dw_cnt > slots)
		return -EMSGSIZE;
Tomas Winkler's avatar
Tomas Winkler committed
727 728 729 730 731 732 733 734

	if (WARN(!hw->aliveness, "txe write: aliveness not asserted\n"))
		return -EAGAIN;

	/* Enable Input Ready Interrupt. */
	mei_txe_input_ready_interrupt_enable(dev);

	if (!mei_txe_is_input_ready(dev)) {
735
		char fw_sts_str[MEI_FW_STATUS_STR_SZ];
736

737 738
		mei_fw_status_str(dev, fw_sts_str, MEI_FW_STATUS_STR_SZ);
		dev_err(dev->dev, "Input is not ready %s\n", fw_sts_str);
Tomas Winkler's avatar
Tomas Winkler committed
739 740 741 742 743 744 745 746 747 748 749
		return -EAGAIN;
	}

	mei_txe_input_payload_write(dev, 0, *((u32 *)header));

	for (i = 0; i < length / 4; i++)
		mei_txe_input_payload_write(dev, i + 1, reg_buf[i]);

	rem = length & 0x3;
	if (rem > 0) {
		u32 reg = 0;
750

Tomas Winkler's avatar
Tomas Winkler committed
751 752 753 754
		memcpy(&reg, &buf[length - rem], rem);
		mei_txe_input_payload_write(dev, i + 1, reg);
	}

755 756 757
	/* after each write the whole buffer is consumed */
	hw->slots = 0;

Tomas Winkler's avatar
Tomas Winkler committed
758 759 760 761 762 763 764 765 766 767 768
	/* Set Input-Doorbell */
	mei_txe_input_doorbell_set(hw);

	return 0;
}

/**
 * mei_txe_hbuf_max_len - mimics the me hbuf circular buffer
 *
 * @dev: the device structure
 *
769
 * Return: the PAYLOAD_SIZE - 4
Tomas Winkler's avatar
Tomas Winkler committed
770 771 772 773 774 775 776 777 778 779 780
 */
static size_t mei_txe_hbuf_max_len(const struct mei_device *dev)
{
	return PAYLOAD_SIZE - sizeof(struct mei_msg_hdr);
}

/**
 * mei_txe_hbuf_empty_slots - mimics the me hbuf circular buffer
 *
 * @dev: the device structure
 *
781
 * Return: always hbuf_depth
Tomas Winkler's avatar
Tomas Winkler committed
782 783 784
 */
static int mei_txe_hbuf_empty_slots(struct mei_device *dev)
{
785
	struct mei_txe_hw *hw = to_txe_hw(dev);
786

787
	return hw->slots;
Tomas Winkler's avatar
Tomas Winkler committed
788 789 790 791 792 793 794
}

/**
 * mei_txe_count_full_read_slots - mimics the me device circular buffer
 *
 * @dev: the device structure
 *
795
 * Return: always buffer size in dwords count
Tomas Winkler's avatar
Tomas Winkler committed
796 797 798 799 800 801 802 803 804 805 806 807
 */
static int mei_txe_count_full_read_slots(struct mei_device *dev)
{
	/* read buffers has static size */
	return  PAYLOAD_SIZE / 4;
}

/**
 * mei_txe_read_hdr - read message header which is always in 4 first bytes
 *
 * @dev: the device structure
 *
808
 * Return: mei message header
Tomas Winkler's avatar
Tomas Winkler committed
809 810 811 812 813 814 815 816 817 818 819 820 821
 */

static u32 mei_txe_read_hdr(const struct mei_device *dev)
{
	return mei_txe_out_data_read(dev, 0);
}
/**
 * mei_txe_read - reads a message from the txe device.
 *
 * @dev: the device structure
 * @buf: message buffer will be written
 * @len: message size will be read
 *
822
 * Return: -EINVAL on error wrong argument and 0 on success
Tomas Winkler's avatar
Tomas Winkler committed
823 824 825 826 827 828
 */
static int mei_txe_read(struct mei_device *dev,
		unsigned char *buf, unsigned long len)
{

	struct mei_txe_hw *hw = to_txe_hw(dev);
829 830
	u32 *reg_buf, reg;
	u32 rem;
Tomas Winkler's avatar
Tomas Winkler committed
831 832 833 834 835
	u32 i;

	if (WARN_ON(!buf || !len))
		return -EINVAL;

836 837 838
	reg_buf = (u32 *)buf;
	rem = len & 0x3;

839
	dev_dbg(dev->dev, "buffer-length = %lu buf[0]0x%08X\n",
Tomas Winkler's avatar
Tomas Winkler committed
840 841 842 843
		len, mei_txe_out_data_read(dev, 0));

	for (i = 0; i < len / 4; i++) {
		/* skip header: index starts from 1 */
844
		reg = mei_txe_out_data_read(dev, i + 1);
845
		dev_dbg(dev->dev, "buf[%d] = 0x%08X\n", i, reg);
Tomas Winkler's avatar
Tomas Winkler committed
846 847 848 849
		*reg_buf++ = reg;
	}

	if (rem) {
850
		reg = mei_txe_out_data_read(dev, i + 1);
Tomas Winkler's avatar
Tomas Winkler committed
851 852 853 854 855 856 857 858 859 860 861 862 863
		memcpy(reg_buf, &reg, rem);
	}

	mei_txe_output_ready_set(hw);
	return 0;
}

/**
 * mei_txe_hw_reset - resets host and fw.
 *
 * @dev: the device structure
 * @intr_enable: if interrupt should be enabled after reset.
 *
864
 * Return: 0 on success and < 0 in case of error
Tomas Winkler's avatar
Tomas Winkler committed
865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889
 */
static int mei_txe_hw_reset(struct mei_device *dev, bool intr_enable)
{
	struct mei_txe_hw *hw = to_txe_hw(dev);

	u32 aliveness_req;
	/*
	 * read input doorbell to ensure consistency between  Bridge and SeC
	 * return value might be garbage return
	 */
	(void)mei_txe_sec_reg_read_silent(hw, SEC_IPC_INPUT_DOORBELL_REG);

	aliveness_req = mei_txe_aliveness_req_get(dev);
	hw->aliveness = mei_txe_aliveness_get(dev);

	/* Disable interrupts in this stage we will poll */
	mei_txe_intr_disable(dev);

	/*
	 * If Aliveness Request and Aliveness Response are not equal then
	 * wait for them to be equal
	 * Since we might have interrupts disabled - poll for it
	 */
	if (aliveness_req != hw->aliveness)
		if (mei_txe_aliveness_poll(dev, aliveness_req) < 0) {
890
			dev_err(dev->dev, "wait for aliveness settle failed ... bailing out\n");
Tomas Winkler's avatar
Tomas Winkler committed
891 892 893 894 895 896 897 898 899
			return -EIO;
		}

	/*
	 * If Aliveness Request and Aliveness Response are set then clear them
	 */
	if (aliveness_req) {
		mei_txe_aliveness_set(dev, 0);
		if (mei_txe_aliveness_poll(dev, 0) < 0) {
900
			dev_err(dev->dev, "wait for aliveness failed ... bailing out\n");
Tomas Winkler's avatar
Tomas Winkler committed
901 902 903 904 905
			return -EIO;
		}
	}

	/*
906
	 * Set readiness RDY_CLR bit
Tomas Winkler's avatar
Tomas Winkler committed
907 908 909 910 911 912 913 914 915 916 917
	 */
	mei_txe_readiness_clear(dev);

	return 0;
}

/**
 * mei_txe_hw_start - start the hardware after reset
 *
 * @dev: the device structure
 *
918
 * Return: 0 on success an error code otherwise
Tomas Winkler's avatar
Tomas Winkler committed
919 920 921 922 923 924 925 926 927 928 929 930 931
 */
static int mei_txe_hw_start(struct mei_device *dev)
{
	struct mei_txe_hw *hw = to_txe_hw(dev);
	int ret;

	u32 hisr;

	/* bring back interrupts */
	mei_txe_intr_enable(dev);

	ret = mei_txe_readiness_wait(dev);
	if (ret < 0) {
932
		dev_err(dev->dev, "waiting for readiness failed\n");
Tomas Winkler's avatar
Tomas Winkler committed
933 934 935 936 937 938 939 940 941 942 943 944 945 946 947
		return ret;
	}

	/*
	 * If HISR.INT2_STS interrupt status bit is set then clear it.
	 */
	hisr = mei_txe_br_reg_read(hw, HISR_REG);
	if (hisr & HISR_INT_2_STS)
		mei_txe_br_reg_write(hw, HISR_REG, HISR_INT_2_STS);

	/* Clear the interrupt cause of OutputDoorbell */
	clear_bit(TXE_INTR_OUT_DB_BIT, &hw->intr_cause);

	ret = mei_txe_aliveness_set_sync(dev, 1);
	if (ret < 0) {
948
		dev_err(dev->dev, "wait for aliveness failed ... bailing out\n");
Tomas Winkler's avatar
Tomas Winkler committed
949 950 951
		return ret;
	}

952 953
	pm_runtime_set_active(dev->dev);

Tomas Winkler's avatar
Tomas Winkler committed
954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975
	/* enable input ready interrupts:
	 * SEC_IPC_HOST_INT_MASK.IPC_INPUT_READY_INT_MASK
	 */
	mei_txe_input_ready_interrupt_enable(dev);


	/*  Set the SICR_SEC_IPC_OUTPUT_STATUS.IPC_OUTPUT_READY bit */
	mei_txe_output_ready_set(hw);

	/* Set bit SICR_HOST_IPC_READINESS.HOST_RDY
	 */
	mei_txe_readiness_set_host_rdy(dev);

	return 0;
}

/**
 * mei_txe_check_and_ack_intrs - translate multi BAR interrupt into
 *  single bit mask and acknowledge the interrupts
 *
 * @dev: the device structure
 * @do_ack: acknowledge interrupts
976 977
 *
 * Return: true if found interrupts to process.
Tomas Winkler's avatar
Tomas Winkler committed
978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996
 */
static bool mei_txe_check_and_ack_intrs(struct mei_device *dev, bool do_ack)
{
	struct mei_txe_hw *hw = to_txe_hw(dev);
	u32 hisr;
	u32 hhisr;
	u32 ipc_isr;
	u32 aliveness;
	bool generated;

	/* read interrupt registers */
	hhisr = mei_txe_br_reg_read(hw, HHISR_REG);
	generated = (hhisr & IPC_HHIER_MSK);
	if (!generated)
		goto out;

	hisr = mei_txe_br_reg_read(hw, HISR_REG);

	aliveness = mei_txe_aliveness_get(dev);
997
	if (hhisr & IPC_HHIER_SEC && aliveness) {
Tomas Winkler's avatar
Tomas Winkler committed
998 999
		ipc_isr = mei_txe_sec_reg_read_silent(hw,
				SEC_IPC_HOST_INT_STATUS_REG);
1000
	} else {
Tomas Winkler's avatar
Tomas Winkler committed
1001
		ipc_isr = 0;
1002 1003
		hhisr &= ~IPC_HHIER_SEC;
	}
Tomas Winkler's avatar
Tomas Winkler committed
1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034

	generated = generated ||
		(hisr & HISR_INT_STS_MSK) ||
		(ipc_isr & SEC_IPC_HOST_INT_STATUS_PENDING);

	if (generated && do_ack) {
		/* Save the interrupt causes */
		hw->intr_cause |= hisr & HISR_INT_STS_MSK;
		if (ipc_isr & SEC_IPC_HOST_INT_STATUS_IN_RDY)
			hw->intr_cause |= TXE_INTR_IN_READY;


		mei_txe_intr_disable(dev);
		/* Clear the interrupts in hierarchy:
		 * IPC and Bridge, than the High Level */
		mei_txe_sec_reg_write_silent(hw,
			SEC_IPC_HOST_INT_STATUS_REG, ipc_isr);
		mei_txe_br_reg_write(hw, HISR_REG, hisr);
		mei_txe_br_reg_write(hw, HHISR_REG, hhisr);
	}

out:
	return generated;
}

/**
 * mei_txe_irq_quick_handler - The ISR of the MEI device
 *
 * @irq: The irq number
 * @dev_id: pointer to the device structure
 *
1035 1036
 * Return: IRQ_WAKE_THREAD if interrupt is designed for the device
 *         IRQ_NONE otherwise
Tomas Winkler's avatar
Tomas Winkler committed
1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053
 */
irqreturn_t mei_txe_irq_quick_handler(int irq, void *dev_id)
{
	struct mei_device *dev = dev_id;

	if (mei_txe_check_and_ack_intrs(dev, true))
		return IRQ_WAKE_THREAD;
	return IRQ_NONE;
}


/**
 * mei_txe_irq_thread_handler - txe interrupt thread
 *
 * @irq: The irq number
 * @dev_id: pointer to the device structure
 *
1054
 * Return: IRQ_HANDLED
Tomas Winkler's avatar
Tomas Winkler committed
1055 1056 1057 1058 1059
 */
irqreturn_t mei_txe_irq_thread_handler(int irq, void *dev_id)
{
	struct mei_device *dev = (struct mei_device *) dev_id;
	struct mei_txe_hw *hw = to_txe_hw(dev);
1060
	struct list_head cmpl_list;
Tomas Winkler's avatar
Tomas Winkler committed
1061 1062 1063
	s32 slots;
	int rets = 0;

1064
	dev_dbg(dev->dev, "irq thread: Interrupt Registers HHISR|HISR|SEC=%02X|%04X|%02X\n",
Tomas Winkler's avatar
Tomas Winkler committed
1065 1066 1067 1068 1069 1070 1071
		mei_txe_br_reg_read(hw, HHISR_REG),
		mei_txe_br_reg_read(hw, HISR_REG),
		mei_txe_sec_reg_read_silent(hw, SEC_IPC_HOST_INT_STATUS_REG));


	/* initialize our complete list */
	mutex_lock(&dev->device_lock);
1072
	INIT_LIST_HEAD(&cmpl_list);
Tomas Winkler's avatar
Tomas Winkler committed
1073

1074
	if (pci_dev_msi_enabled(to_pci_dev(dev->dev)))
Tomas Winkler's avatar
Tomas Winkler committed
1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087
		mei_txe_check_and_ack_intrs(dev, true);

	/* show irq events */
	mei_txe_pending_interrupts(dev);

	hw->aliveness = mei_txe_aliveness_get(dev);
	hw->readiness = mei_txe_readiness_get(dev);

	/* Readiness:
	 * Detection of TXE driver going through reset
	 * or TXE driver resetting the HECI interface.
	 */
	if (test_and_clear_bit(TXE_INTR_READINESS_BIT, &hw->intr_cause)) {
1088
		dev_dbg(dev->dev, "Readiness Interrupt was received...\n");
Tomas Winkler's avatar
Tomas Winkler committed
1089 1090 1091

		/* Check if SeC is going through reset */
		if (mei_txe_readiness_is_sec_rdy(hw->readiness)) {
1092
			dev_dbg(dev->dev, "we need to start the dev.\n");
Tomas Winkler's avatar
Tomas Winkler committed
1093 1094 1095 1096 1097
			dev->recvd_hw_ready = true;
		} else {
			dev->recvd_hw_ready = false;
			if (dev->dev_state != MEI_DEV_RESETTING) {

1098
				dev_warn(dev->dev, "FW not ready: resetting.\n");
Tomas Winkler's avatar
Tomas Winkler committed
1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114
				schedule_work(&dev->reset_work);
				goto end;

			}
		}
		wake_up(&dev->wait_hw_ready);
	}

	/************************************************************/
	/* Check interrupt cause:
	 * Aliveness: Detection of SeC acknowledge of host request that
	 * it remain alive or host cancellation of that request.
	 */

	if (test_and_clear_bit(TXE_INTR_ALIVENESS_BIT, &hw->intr_cause)) {
		/* Clear the interrupt cause */
1115
		dev_dbg(dev->dev,
Tomas Winkler's avatar
Tomas Winkler committed
1116
			"Aliveness Interrupt: Status: %d\n", hw->aliveness);
1117 1118 1119
		dev->pg_event = MEI_PG_EVENT_RECEIVED;
		if (waitqueue_active(&hw->wait_aliveness_resp))
			wake_up(&hw->wait_aliveness_resp);
Tomas Winkler's avatar
Tomas Winkler committed
1120 1121 1122 1123 1124 1125 1126 1127 1128
	}


	/* Output Doorbell:
	 * Detection of SeC having sent output to host
	 */
	slots = mei_count_full_read_slots(dev);
	if (test_and_clear_bit(TXE_INTR_OUT_DB_BIT, &hw->intr_cause)) {
		/* Read from TXE */
1129
		rets = mei_irq_read_handler(dev, &cmpl_list, &slots);
1130
		if (rets &&
Dan Carpenter's avatar
Dan Carpenter committed
1131
		    (dev->dev_state != MEI_DEV_RESETTING &&
1132
		     dev->dev_state != MEI_DEV_POWER_DOWN)) {
1133
			dev_err(dev->dev,
Tomas Winkler's avatar
Tomas Winkler committed
1134 1135 1136 1137 1138 1139 1140
				"mei_irq_read_handler ret = %d.\n", rets);

			schedule_work(&dev->reset_work);
			goto end;
		}
	}
	/* Input Ready: Detection if host can write to SeC */
1141
	if (test_and_clear_bit(TXE_INTR_IN_READY_BIT, &hw->intr_cause)) {
Tomas Winkler's avatar
Tomas Winkler committed
1142
		dev->hbuf_is_ready = true;
1143 1144
		hw->slots = dev->hbuf_depth;
	}
Tomas Winkler's avatar
Tomas Winkler committed
1145 1146

	if (hw->aliveness && dev->hbuf_is_ready) {
1147 1148
		/* get the real register value */
		dev->hbuf_is_ready = mei_hbuf_is_ready(dev);
1149
		rets = mei_irq_write_handler(dev, &cmpl_list);
1150
		if (rets && rets != -EMSGSIZE)
1151
			dev_err(dev->dev, "mei_irq_write_handler ret = %d.\n",
1152 1153
				rets);
		dev->hbuf_is_ready = mei_hbuf_is_ready(dev);
Tomas Winkler's avatar
Tomas Winkler committed
1154 1155
	}

1156
	mei_irq_compl_handler(dev, &cmpl_list);
Tomas Winkler's avatar
Tomas Winkler committed
1157 1158

end:
1159
	dev_dbg(dev->dev, "interrupt thread end ret = %d\n", rets);
Tomas Winkler's avatar
Tomas Winkler committed
1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170

	mutex_unlock(&dev->device_lock);

	mei_enable_interrupts(dev);
	return IRQ_HANDLED;
}

static const struct mei_hw_ops mei_txe_hw_ops = {

	.host_is_ready = mei_txe_host_is_ready,

1171
	.fw_status = mei_txe_fw_status,
1172 1173
	.pg_state = mei_txe_pg_state,

Tomas Winkler's avatar
Tomas Winkler committed
1174 1175 1176 1177 1178
	.hw_is_ready = mei_txe_hw_is_ready,
	.hw_reset = mei_txe_hw_reset,
	.hw_config = mei_txe_hw_config,
	.hw_start = mei_txe_hw_start,

1179
	.pg_in_transition = mei_txe_pg_in_transition,
1180 1181
	.pg_is_enabled = mei_txe_pg_is_enabled,

Tomas Winkler's avatar
Tomas Winkler committed
1182 1183 1184
	.intr_clear = mei_txe_intr_clear,
	.intr_enable = mei_txe_intr_enable,
	.intr_disable = mei_txe_intr_disable,
1185
	.synchronize_irq = mei_txe_synchronize_irq,
Tomas Winkler's avatar
Tomas Winkler committed
1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202

	.hbuf_free_slots = mei_txe_hbuf_empty_slots,
	.hbuf_is_ready = mei_txe_is_input_ready,
	.hbuf_max_len = mei_txe_hbuf_max_len,

	.write = mei_txe_write,

	.rdbuf_full_slots = mei_txe_count_full_read_slots,
	.read_hdr = mei_txe_read_hdr,

	.read = mei_txe_read,

};

/**
 * mei_txe_dev_init - allocates and initializes txe hardware specific structure
 *
1203
 * @pdev: pci device
Tomas Winkler's avatar
Tomas Winkler committed
1204
 *
1205
 * Return: struct mei_device * on success or NULL
Tomas Winkler's avatar
Tomas Winkler committed
1206
 */
1207
struct mei_device *mei_txe_dev_init(struct pci_dev *pdev)
Tomas Winkler's avatar
Tomas Winkler committed
1208 1209 1210 1211
{
	struct mei_device *dev;
	struct mei_txe_hw *hw;

1212 1213
	dev = devm_kzalloc(&pdev->dev, sizeof(struct mei_device) +
			   sizeof(struct mei_txe_hw), GFP_KERNEL);
Tomas Winkler's avatar
Tomas Winkler committed
1214 1215 1216
	if (!dev)
		return NULL;

1217
	mei_device_init(dev, &pdev->dev, &mei_txe_hw_ops);
Tomas Winkler's avatar
Tomas Winkler committed
1218 1219 1220

	hw = to_txe_hw(dev);

1221
	init_waitqueue_head(&hw->wait_aliveness_resp);
Tomas Winkler's avatar
Tomas Winkler committed
1222 1223 1224 1225 1226 1227 1228 1229 1230 1231

	return dev;
}

/**
 * mei_txe_setup_satt2 - SATT2 configuration for DMA support.
 *
 * @dev:   the device structure
 * @addr:  physical address start of the range
 * @range: physical range size
1232 1233
 *
 * Return: 0 on success an error code otherwise
Tomas Winkler's avatar
Tomas Winkler committed
1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264
 */
int mei_txe_setup_satt2(struct mei_device *dev, phys_addr_t addr, u32 range)
{
	struct mei_txe_hw *hw = to_txe_hw(dev);

	u32 lo32 = lower_32_bits(addr);
	u32 hi32 = upper_32_bits(addr);
	u32 ctrl;

	/* SATT is limited to 36 Bits */
	if (hi32 & ~0xF)
		return -EINVAL;

	/* SATT has to be 16Byte aligned */
	if (lo32 & 0xF)
		return -EINVAL;

	/* SATT range has to be 4Bytes aligned */
	if (range & 0x4)
		return -EINVAL;

	/* SATT is limited to 32 MB range*/
	if (range > SATT_RANGE_MAX)
		return -EINVAL;

	ctrl = SATT2_CTRL_VALID_MSK;
	ctrl |= hi32  << SATT2_CTRL_BR_BASE_ADDR_REG_SHIFT;

	mei_txe_br_reg_write(hw, SATT2_SAP_SIZE_REG, range);
	mei_txe_br_reg_write(hw, SATT2_BRG_BA_LSB_REG, lo32);
	mei_txe_br_reg_write(hw, SATT2_CTRL_REG, ctrl);
1265
	dev_dbg(dev->dev, "SATT2: SAP_SIZE_OFFSET=0x%08X, BRG_BA_LSB_OFFSET=0x%08X, CTRL_OFFSET=0x%08X\n",
Tomas Winkler's avatar
Tomas Winkler committed
1266 1267 1268 1269
		range, lo32, ctrl);

	return 0;
}