c8639a4933
The test logic now preallocates memory before running the test. The buffer size is now configurable. Post-copy verification is configurable. The number of copies to chain into one transaction (one interrupt) is configurable. A 'duration' mode is added, which repeats the test until the duration has elapsed, reporting the B/s and transactions completed. ioatcontrol.8 has been updated to document the new arguments. Initial limits (on this particular Broadwell-DE) (and when the interrupts are working) seem to be: 256 interrupts/sec or ~6 GB/s, whichever limit is more restrictive. Unfortunately, it seems the interrupt-reset handling on Broadwell isn't working as intended. That will be fixed in a later commit. Sponsored by: EMC / Isilon Storage Division
69 lines
2.1 KiB
C
69 lines
2.1 KiB
C
/*-
|
|
* Copyright (C) 2012 Intel Corporation
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
* SUCH DAMAGE.
|
|
*/
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
#ifndef __IOAT_TEST_H__
|
|
#define __IOAT_TEST_H__
|
|
|
|
enum ioat_res {
|
|
IOAT_TEST_OK = 0,
|
|
IOAT_TEST_NO_DMA_ENGINE,
|
|
IOAT_TEST_NO_MEMORY,
|
|
IOAT_TEST_MISCOMPARE,
|
|
IOAT_NUM_RES
|
|
};
|
|
|
|
struct test_transaction;
|
|
|
|
struct ioat_test {
|
|
volatile uint32_t status[IOAT_NUM_RES];
|
|
uint32_t channel_index;
|
|
|
|
/* HW max of 1MB */
|
|
uint32_t buffer_size;
|
|
uint32_t chain_depth;
|
|
uint32_t transactions;
|
|
|
|
/*
|
|
* If non-zero, duration is time in ms;
|
|
* If zero, bounded by 'transactions' above.
|
|
*/
|
|
uint32_t duration;
|
|
|
|
/* If true, check for miscompares after a copy. */
|
|
bool verify;
|
|
|
|
/* Internal usage -- not test inputs */
|
|
TAILQ_HEAD(, test_transaction) free_q;
|
|
TAILQ_HEAD(, test_transaction) pend_q;
|
|
volatile bool too_late;
|
|
};
|
|
|
|
#define IOAT_DMATEST _IOWR('i', 0, struct ioat_test)
|
|
|
|
#endif /* __IOAT_TEST_H__ */
|