123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814 |
- /**
- * Host side test driver to test endpoint functionality
- *
- * Copyright (C) 2017 Texas Instruments
- * Author: Kishon Vijay Abraham I <kishon@ti.com>
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2 of
- * the License as published by the Free Software Foundation.
- *
- * This program is distributed in the hope that 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.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- #include <linux/crc32.h>
- #include <linux/delay.h>
- #include <linux/fs.h>
- #include <linux/io.h>
- #include <linux/interrupt.h>
- #include <linux/irq.h>
- #include <linux/miscdevice.h>
- #include <linux/module.h>
- #include <linux/mutex.h>
- #include <linux/random.h>
- #include <linux/slab.h>
- #include <linux/pci.h>
- #include <linux/pci_ids.h>
- #include <linux/pci_regs.h>
- #include <uapi/linux/pcitest.h>
- #define DRV_MODULE_NAME "pci-endpoint-test"
- #define IRQ_TYPE_UNDEFINED -1
- #define IRQ_TYPE_LEGACY 0
- #define IRQ_TYPE_MSI 1
- #define IRQ_TYPE_MSIX 2
- #define PCI_ENDPOINT_TEST_MAGIC 0x0
- #define PCI_ENDPOINT_TEST_COMMAND 0x4
- #define COMMAND_RAISE_LEGACY_IRQ BIT(0)
- #define COMMAND_RAISE_MSI_IRQ BIT(1)
- #define COMMAND_RAISE_MSIX_IRQ BIT(2)
- #define COMMAND_READ BIT(3)
- #define COMMAND_WRITE BIT(4)
- #define COMMAND_COPY BIT(5)
- #define PCI_ENDPOINT_TEST_STATUS 0x8
- #define STATUS_READ_SUCCESS BIT(0)
- #define STATUS_READ_FAIL BIT(1)
- #define STATUS_WRITE_SUCCESS BIT(2)
- #define STATUS_WRITE_FAIL BIT(3)
- #define STATUS_COPY_SUCCESS BIT(4)
- #define STATUS_COPY_FAIL BIT(5)
- #define STATUS_IRQ_RAISED BIT(6)
- #define STATUS_SRC_ADDR_INVALID BIT(7)
- #define STATUS_DST_ADDR_INVALID BIT(8)
- #define PCI_ENDPOINT_TEST_LOWER_SRC_ADDR 0x0c
- #define PCI_ENDPOINT_TEST_UPPER_SRC_ADDR 0x10
- #define PCI_ENDPOINT_TEST_LOWER_DST_ADDR 0x14
- #define PCI_ENDPOINT_TEST_UPPER_DST_ADDR 0x18
- #define PCI_ENDPOINT_TEST_SIZE 0x1c
- #define PCI_ENDPOINT_TEST_CHECKSUM 0x20
- #define PCI_ENDPOINT_TEST_IRQ_TYPE 0x24
- #define PCI_ENDPOINT_TEST_IRQ_NUMBER 0x28
- static DEFINE_IDA(pci_endpoint_test_ida);
- #define to_endpoint_test(priv) container_of((priv), struct pci_endpoint_test, \
- miscdev)
- static bool no_msi;
- module_param(no_msi, bool, 0444);
- MODULE_PARM_DESC(no_msi, "Disable MSI interrupt in pci_endpoint_test");
- static int irq_type = IRQ_TYPE_MSI;
- module_param(irq_type, int, 0444);
- MODULE_PARM_DESC(irq_type, "IRQ mode selection in pci_endpoint_test (0 - Legacy, 1 - MSI, 2 - MSI-X)");
- enum pci_barno {
- BAR_0,
- BAR_1,
- BAR_2,
- BAR_3,
- BAR_4,
- BAR_5,
- };
- struct pci_endpoint_test {
- struct pci_dev *pdev;
- void __iomem *base;
- void __iomem *bar[6];
- struct completion irq_raised;
- int last_irq;
- int num_irqs;
- int irq_type;
- /* mutex to protect the ioctls */
- struct mutex mutex;
- struct miscdevice miscdev;
- enum pci_barno test_reg_bar;
- size_t alignment;
- };
- struct pci_endpoint_test_data {
- enum pci_barno test_reg_bar;
- size_t alignment;
- int irq_type;
- };
- static inline u32 pci_endpoint_test_readl(struct pci_endpoint_test *test,
- u32 offset)
- {
- return readl(test->base + offset);
- }
- static inline void pci_endpoint_test_writel(struct pci_endpoint_test *test,
- u32 offset, u32 value)
- {
- writel(value, test->base + offset);
- }
- static inline u32 pci_endpoint_test_bar_readl(struct pci_endpoint_test *test,
- int bar, int offset)
- {
- return readl(test->bar[bar] + offset);
- }
- static inline void pci_endpoint_test_bar_writel(struct pci_endpoint_test *test,
- int bar, u32 offset, u32 value)
- {
- writel(value, test->bar[bar] + offset);
- }
- static irqreturn_t pci_endpoint_test_irqhandler(int irq, void *dev_id)
- {
- struct pci_endpoint_test *test = dev_id;
- u32 reg;
- reg = pci_endpoint_test_readl(test, PCI_ENDPOINT_TEST_STATUS);
- if (reg & STATUS_IRQ_RAISED) {
- test->last_irq = irq;
- complete(&test->irq_raised);
- reg &= ~STATUS_IRQ_RAISED;
- }
- pci_endpoint_test_writel(test, PCI_ENDPOINT_TEST_STATUS,
- reg);
- return IRQ_HANDLED;
- }
- static void pci_endpoint_test_free_irq_vectors(struct pci_endpoint_test *test)
- {
- struct pci_dev *pdev = test->pdev;
- pci_free_irq_vectors(pdev);
- test->irq_type = IRQ_TYPE_UNDEFINED;
- }
- static bool pci_endpoint_test_alloc_irq_vectors(struct pci_endpoint_test *test,
- int type)
- {
- int irq = -1;
- struct pci_dev *pdev = test->pdev;
- struct device *dev = &pdev->dev;
- bool res = true;
- switch (type) {
- case IRQ_TYPE_LEGACY:
- irq = pci_alloc_irq_vectors(pdev, 1, 1, PCI_IRQ_LEGACY);
- if (irq < 0)
- dev_err(dev, "Failed to get Legacy interrupt\n");
- break;
- case IRQ_TYPE_MSI:
- irq = pci_alloc_irq_vectors(pdev, 1, 32, PCI_IRQ_MSI);
- if (irq < 0)
- dev_err(dev, "Failed to get MSI interrupts\n");
- break;
- case IRQ_TYPE_MSIX:
- irq = pci_alloc_irq_vectors(pdev, 1, 2048, PCI_IRQ_MSIX);
- if (irq < 0)
- dev_err(dev, "Failed to get MSI-X interrupts\n");
- break;
- default:
- dev_err(dev, "Invalid IRQ type selected\n");
- }
- if (irq < 0) {
- irq = 0;
- res = false;
- }
- test->irq_type = type;
- test->num_irqs = irq;
- return res;
- }
- static void pci_endpoint_test_release_irq(struct pci_endpoint_test *test)
- {
- int i;
- struct pci_dev *pdev = test->pdev;
- struct device *dev = &pdev->dev;
- for (i = 0; i < test->num_irqs; i++)
- devm_free_irq(dev, pci_irq_vector(pdev, i), test);
- test->num_irqs = 0;
- }
- static bool pci_endpoint_test_request_irq(struct pci_endpoint_test *test)
- {
- int i;
- int err;
- struct pci_dev *pdev = test->pdev;
- struct device *dev = &pdev->dev;
- for (i = 0; i < test->num_irqs; i++) {
- err = devm_request_irq(dev, pci_irq_vector(pdev, i),
- pci_endpoint_test_irqhandler,
- IRQF_SHARED, DRV_MODULE_NAME, test);
- if (err)
- goto fail;
- }
- return true;
- fail:
- switch (irq_type) {
- case IRQ_TYPE_LEGACY:
- dev_err(dev, "Failed to request IRQ %d for Legacy\n",
- pci_irq_vector(pdev, i));
- break;
- case IRQ_TYPE_MSI:
- dev_err(dev, "Failed to request IRQ %d for MSI %d\n",
- pci_irq_vector(pdev, i),
- i + 1);
- break;
- case IRQ_TYPE_MSIX:
- dev_err(dev, "Failed to request IRQ %d for MSI-X %d\n",
- pci_irq_vector(pdev, i),
- i + 1);
- break;
- }
- return false;
- }
- static bool pci_endpoint_test_bar(struct pci_endpoint_test *test,
- enum pci_barno barno)
- {
- int j;
- u32 val;
- int size;
- struct pci_dev *pdev = test->pdev;
- if (!test->bar[barno])
- return false;
- size = pci_resource_len(pdev, barno);
- if (barno == test->test_reg_bar)
- size = 0x4;
- for (j = 0; j < size; j += 4)
- pci_endpoint_test_bar_writel(test, barno, j, 0xA0A0A0A0);
- for (j = 0; j < size; j += 4) {
- val = pci_endpoint_test_bar_readl(test, barno, j);
- if (val != 0xA0A0A0A0)
- return false;
- }
- return true;
- }
- static bool pci_endpoint_test_legacy_irq(struct pci_endpoint_test *test)
- {
- u32 val;
- pci_endpoint_test_writel(test, PCI_ENDPOINT_TEST_IRQ_TYPE,
- IRQ_TYPE_LEGACY);
- pci_endpoint_test_writel(test, PCI_ENDPOINT_TEST_IRQ_NUMBER, 0);
- pci_endpoint_test_writel(test, PCI_ENDPOINT_TEST_COMMAND,
- COMMAND_RAISE_LEGACY_IRQ);
- val = wait_for_completion_timeout(&test->irq_raised,
- msecs_to_jiffies(1000));
- if (!val)
- return false;
- return true;
- }
- static bool pci_endpoint_test_msi_irq(struct pci_endpoint_test *test,
- u16 msi_num, bool msix)
- {
- u32 val;
- struct pci_dev *pdev = test->pdev;
- pci_endpoint_test_writel(test, PCI_ENDPOINT_TEST_IRQ_TYPE,
- msix == false ? IRQ_TYPE_MSI :
- IRQ_TYPE_MSIX);
- pci_endpoint_test_writel(test, PCI_ENDPOINT_TEST_IRQ_NUMBER, msi_num);
- pci_endpoint_test_writel(test, PCI_ENDPOINT_TEST_COMMAND,
- msix == false ? COMMAND_RAISE_MSI_IRQ :
- COMMAND_RAISE_MSIX_IRQ);
- val = wait_for_completion_timeout(&test->irq_raised,
- msecs_to_jiffies(1000));
- if (!val)
- return false;
- if (pci_irq_vector(pdev, msi_num - 1) == test->last_irq)
- return true;
- return false;
- }
- static bool pci_endpoint_test_copy(struct pci_endpoint_test *test, size_t size)
- {
- bool ret = false;
- void *src_addr;
- void *dst_addr;
- dma_addr_t src_phys_addr;
- dma_addr_t dst_phys_addr;
- struct pci_dev *pdev = test->pdev;
- struct device *dev = &pdev->dev;
- void *orig_src_addr;
- dma_addr_t orig_src_phys_addr;
- void *orig_dst_addr;
- dma_addr_t orig_dst_phys_addr;
- size_t offset;
- size_t alignment = test->alignment;
- int irq_type = test->irq_type;
- u32 src_crc32;
- u32 dst_crc32;
- if (size > SIZE_MAX - alignment)
- goto err;
- if (irq_type < IRQ_TYPE_LEGACY || irq_type > IRQ_TYPE_MSIX) {
- dev_err(dev, "Invalid IRQ type option\n");
- goto err;
- }
- orig_src_addr = dma_alloc_coherent(dev, size + alignment,
- &orig_src_phys_addr, GFP_KERNEL);
- if (!orig_src_addr) {
- dev_err(dev, "Failed to allocate source buffer\n");
- ret = false;
- goto err;
- }
- if (alignment && !IS_ALIGNED(orig_src_phys_addr, alignment)) {
- src_phys_addr = PTR_ALIGN(orig_src_phys_addr, alignment);
- offset = src_phys_addr - orig_src_phys_addr;
- src_addr = orig_src_addr + offset;
- } else {
- src_phys_addr = orig_src_phys_addr;
- src_addr = orig_src_addr;
- }
- pci_endpoint_test_writel(test, PCI_ENDPOINT_TEST_LOWER_SRC_ADDR,
- lower_32_bits(src_phys_addr));
- pci_endpoint_test_writel(test, PCI_ENDPOINT_TEST_UPPER_SRC_ADDR,
- upper_32_bits(src_phys_addr));
- get_random_bytes(src_addr, size);
- src_crc32 = crc32_le(~0, src_addr, size);
- orig_dst_addr = dma_alloc_coherent(dev, size + alignment,
- &orig_dst_phys_addr, GFP_KERNEL);
- if (!orig_dst_addr) {
- dev_err(dev, "Failed to allocate destination address\n");
- ret = false;
- goto err_orig_src_addr;
- }
- if (alignment && !IS_ALIGNED(orig_dst_phys_addr, alignment)) {
- dst_phys_addr = PTR_ALIGN(orig_dst_phys_addr, alignment);
- offset = dst_phys_addr - orig_dst_phys_addr;
- dst_addr = orig_dst_addr + offset;
- } else {
- dst_phys_addr = orig_dst_phys_addr;
- dst_addr = orig_dst_addr;
- }
- pci_endpoint_test_writel(test, PCI_ENDPOINT_TEST_LOWER_DST_ADDR,
- lower_32_bits(dst_phys_addr));
- pci_endpoint_test_writel(test, PCI_ENDPOINT_TEST_UPPER_DST_ADDR,
- upper_32_bits(dst_phys_addr));
- pci_endpoint_test_writel(test, PCI_ENDPOINT_TEST_SIZE,
- size);
- pci_endpoint_test_writel(test, PCI_ENDPOINT_TEST_IRQ_TYPE, irq_type);
- pci_endpoint_test_writel(test, PCI_ENDPOINT_TEST_IRQ_NUMBER, 1);
- pci_endpoint_test_writel(test, PCI_ENDPOINT_TEST_COMMAND,
- COMMAND_COPY);
- wait_for_completion(&test->irq_raised);
- dst_crc32 = crc32_le(~0, dst_addr, size);
- if (dst_crc32 == src_crc32)
- ret = true;
- dma_free_coherent(dev, size + alignment, orig_dst_addr,
- orig_dst_phys_addr);
- err_orig_src_addr:
- dma_free_coherent(dev, size + alignment, orig_src_addr,
- orig_src_phys_addr);
- err:
- return ret;
- }
- static bool pci_endpoint_test_write(struct pci_endpoint_test *test, size_t size)
- {
- bool ret = false;
- u32 reg;
- void *addr;
- dma_addr_t phys_addr;
- struct pci_dev *pdev = test->pdev;
- struct device *dev = &pdev->dev;
- void *orig_addr;
- dma_addr_t orig_phys_addr;
- size_t offset;
- size_t alignment = test->alignment;
- int irq_type = test->irq_type;
- u32 crc32;
- if (size > SIZE_MAX - alignment)
- goto err;
- if (irq_type < IRQ_TYPE_LEGACY || irq_type > IRQ_TYPE_MSIX) {
- dev_err(dev, "Invalid IRQ type option\n");
- goto err;
- }
- orig_addr = dma_alloc_coherent(dev, size + alignment, &orig_phys_addr,
- GFP_KERNEL);
- if (!orig_addr) {
- dev_err(dev, "Failed to allocate address\n");
- ret = false;
- goto err;
- }
- if (alignment && !IS_ALIGNED(orig_phys_addr, alignment)) {
- phys_addr = PTR_ALIGN(orig_phys_addr, alignment);
- offset = phys_addr - orig_phys_addr;
- addr = orig_addr + offset;
- } else {
- phys_addr = orig_phys_addr;
- addr = orig_addr;
- }
- get_random_bytes(addr, size);
- crc32 = crc32_le(~0, addr, size);
- pci_endpoint_test_writel(test, PCI_ENDPOINT_TEST_CHECKSUM,
- crc32);
- pci_endpoint_test_writel(test, PCI_ENDPOINT_TEST_LOWER_SRC_ADDR,
- lower_32_bits(phys_addr));
- pci_endpoint_test_writel(test, PCI_ENDPOINT_TEST_UPPER_SRC_ADDR,
- upper_32_bits(phys_addr));
- pci_endpoint_test_writel(test, PCI_ENDPOINT_TEST_SIZE, size);
- pci_endpoint_test_writel(test, PCI_ENDPOINT_TEST_IRQ_TYPE, irq_type);
- pci_endpoint_test_writel(test, PCI_ENDPOINT_TEST_IRQ_NUMBER, 1);
- pci_endpoint_test_writel(test, PCI_ENDPOINT_TEST_COMMAND,
- COMMAND_READ);
- wait_for_completion(&test->irq_raised);
- reg = pci_endpoint_test_readl(test, PCI_ENDPOINT_TEST_STATUS);
- if (reg & STATUS_READ_SUCCESS)
- ret = true;
- dma_free_coherent(dev, size + alignment, orig_addr, orig_phys_addr);
- err:
- return ret;
- }
- static bool pci_endpoint_test_read(struct pci_endpoint_test *test, size_t size)
- {
- bool ret = false;
- void *addr;
- dma_addr_t phys_addr;
- struct pci_dev *pdev = test->pdev;
- struct device *dev = &pdev->dev;
- void *orig_addr;
- dma_addr_t orig_phys_addr;
- size_t offset;
- size_t alignment = test->alignment;
- int irq_type = test->irq_type;
- u32 crc32;
- if (size > SIZE_MAX - alignment)
- goto err;
- if (irq_type < IRQ_TYPE_LEGACY || irq_type > IRQ_TYPE_MSIX) {
- dev_err(dev, "Invalid IRQ type option\n");
- goto err;
- }
- orig_addr = dma_alloc_coherent(dev, size + alignment, &orig_phys_addr,
- GFP_KERNEL);
- if (!orig_addr) {
- dev_err(dev, "Failed to allocate destination address\n");
- ret = false;
- goto err;
- }
- if (alignment && !IS_ALIGNED(orig_phys_addr, alignment)) {
- phys_addr = PTR_ALIGN(orig_phys_addr, alignment);
- offset = phys_addr - orig_phys_addr;
- addr = orig_addr + offset;
- } else {
- phys_addr = orig_phys_addr;
- addr = orig_addr;
- }
- pci_endpoint_test_writel(test, PCI_ENDPOINT_TEST_LOWER_DST_ADDR,
- lower_32_bits(phys_addr));
- pci_endpoint_test_writel(test, PCI_ENDPOINT_TEST_UPPER_DST_ADDR,
- upper_32_bits(phys_addr));
- pci_endpoint_test_writel(test, PCI_ENDPOINT_TEST_SIZE, size);
- pci_endpoint_test_writel(test, PCI_ENDPOINT_TEST_IRQ_TYPE, irq_type);
- pci_endpoint_test_writel(test, PCI_ENDPOINT_TEST_IRQ_NUMBER, 1);
- pci_endpoint_test_writel(test, PCI_ENDPOINT_TEST_COMMAND,
- COMMAND_WRITE);
- wait_for_completion(&test->irq_raised);
- crc32 = crc32_le(~0, addr, size);
- if (crc32 == pci_endpoint_test_readl(test, PCI_ENDPOINT_TEST_CHECKSUM))
- ret = true;
- dma_free_coherent(dev, size + alignment, orig_addr, orig_phys_addr);
- err:
- return ret;
- }
- static bool pci_endpoint_test_set_irq(struct pci_endpoint_test *test,
- int req_irq_type)
- {
- struct pci_dev *pdev = test->pdev;
- struct device *dev = &pdev->dev;
- if (req_irq_type < IRQ_TYPE_LEGACY || req_irq_type > IRQ_TYPE_MSIX) {
- dev_err(dev, "Invalid IRQ type option\n");
- return false;
- }
- if (test->irq_type == req_irq_type)
- return true;
- pci_endpoint_test_release_irq(test);
- pci_endpoint_test_free_irq_vectors(test);
- if (!pci_endpoint_test_alloc_irq_vectors(test, req_irq_type))
- goto err;
- if (!pci_endpoint_test_request_irq(test))
- goto err;
- return true;
- err:
- pci_endpoint_test_free_irq_vectors(test);
- return false;
- }
- static long pci_endpoint_test_ioctl(struct file *file, unsigned int cmd,
- unsigned long arg)
- {
- int ret = -EINVAL;
- enum pci_barno bar;
- struct pci_endpoint_test *test = to_endpoint_test(file->private_data);
- mutex_lock(&test->mutex);
- switch (cmd) {
- case PCITEST_BAR:
- bar = arg;
- if (bar < 0 || bar > 5)
- goto ret;
- ret = pci_endpoint_test_bar(test, bar);
- break;
- case PCITEST_LEGACY_IRQ:
- ret = pci_endpoint_test_legacy_irq(test);
- break;
- case PCITEST_MSI:
- case PCITEST_MSIX:
- ret = pci_endpoint_test_msi_irq(test, arg, cmd == PCITEST_MSIX);
- break;
- case PCITEST_WRITE:
- ret = pci_endpoint_test_write(test, arg);
- break;
- case PCITEST_READ:
- ret = pci_endpoint_test_read(test, arg);
- break;
- case PCITEST_COPY:
- ret = pci_endpoint_test_copy(test, arg);
- break;
- case PCITEST_SET_IRQTYPE:
- ret = pci_endpoint_test_set_irq(test, arg);
- break;
- case PCITEST_GET_IRQTYPE:
- ret = irq_type;
- break;
- }
- ret:
- mutex_unlock(&test->mutex);
- return ret;
- }
- static const struct file_operations pci_endpoint_test_fops = {
- .owner = THIS_MODULE,
- .unlocked_ioctl = pci_endpoint_test_ioctl,
- };
- static int pci_endpoint_test_probe(struct pci_dev *pdev,
- const struct pci_device_id *ent)
- {
- int err;
- int id;
- char name[24];
- enum pci_barno bar;
- void __iomem *base;
- struct device *dev = &pdev->dev;
- struct pci_endpoint_test *test;
- struct pci_endpoint_test_data *data;
- enum pci_barno test_reg_bar = BAR_0;
- struct miscdevice *misc_device;
- if (pci_is_bridge(pdev))
- return -ENODEV;
- test = devm_kzalloc(dev, sizeof(*test), GFP_KERNEL);
- if (!test)
- return -ENOMEM;
- test->test_reg_bar = 0;
- test->alignment = 0;
- test->pdev = pdev;
- test->irq_type = IRQ_TYPE_UNDEFINED;
- if (no_msi)
- irq_type = IRQ_TYPE_LEGACY;
- data = (struct pci_endpoint_test_data *)ent->driver_data;
- if (data) {
- test_reg_bar = data->test_reg_bar;
- test->test_reg_bar = test_reg_bar;
- test->alignment = data->alignment;
- irq_type = data->irq_type;
- }
- init_completion(&test->irq_raised);
- mutex_init(&test->mutex);
- err = pci_enable_device(pdev);
- if (err) {
- dev_err(dev, "Cannot enable PCI device\n");
- return err;
- }
- err = pci_request_regions(pdev, DRV_MODULE_NAME);
- if (err) {
- dev_err(dev, "Cannot obtain PCI resources\n");
- goto err_disable_pdev;
- }
- pci_set_master(pdev);
- if (!pci_endpoint_test_alloc_irq_vectors(test, irq_type))
- goto err_disable_irq;
- if (!pci_endpoint_test_request_irq(test))
- goto err_disable_irq;
- for (bar = BAR_0; bar <= BAR_5; bar++) {
- if (pci_resource_flags(pdev, bar) & IORESOURCE_MEM) {
- base = pci_ioremap_bar(pdev, bar);
- if (!base) {
- dev_err(dev, "Failed to read BAR%d\n", bar);
- WARN_ON(bar == test_reg_bar);
- }
- test->bar[bar] = base;
- }
- }
- test->base = test->bar[test_reg_bar];
- if (!test->base) {
- err = -ENOMEM;
- dev_err(dev, "Cannot perform PCI test without BAR%d\n",
- test_reg_bar);
- goto err_iounmap;
- }
- pci_set_drvdata(pdev, test);
- id = ida_simple_get(&pci_endpoint_test_ida, 0, 0, GFP_KERNEL);
- if (id < 0) {
- err = id;
- dev_err(dev, "Unable to get id\n");
- goto err_iounmap;
- }
- snprintf(name, sizeof(name), DRV_MODULE_NAME ".%d", id);
- misc_device = &test->miscdev;
- misc_device->minor = MISC_DYNAMIC_MINOR;
- misc_device->name = kstrdup(name, GFP_KERNEL);
- if (!misc_device->name) {
- err = -ENOMEM;
- goto err_ida_remove;
- }
- misc_device->fops = &pci_endpoint_test_fops,
- err = misc_register(misc_device);
- if (err) {
- dev_err(dev, "Failed to register device\n");
- goto err_kfree_name;
- }
- return 0;
- err_kfree_name:
- kfree(misc_device->name);
- err_ida_remove:
- ida_simple_remove(&pci_endpoint_test_ida, id);
- err_iounmap:
- for (bar = BAR_0; bar <= BAR_5; bar++) {
- if (test->bar[bar])
- pci_iounmap(pdev, test->bar[bar]);
- }
- pci_endpoint_test_release_irq(test);
- err_disable_irq:
- pci_endpoint_test_free_irq_vectors(test);
- pci_release_regions(pdev);
- err_disable_pdev:
- pci_disable_device(pdev);
- return err;
- }
- static void pci_endpoint_test_remove(struct pci_dev *pdev)
- {
- int id;
- enum pci_barno bar;
- struct pci_endpoint_test *test = pci_get_drvdata(pdev);
- struct miscdevice *misc_device = &test->miscdev;
- if (sscanf(misc_device->name, DRV_MODULE_NAME ".%d", &id) != 1)
- return;
- if (id < 0)
- return;
- misc_deregister(&test->miscdev);
- kfree(misc_device->name);
- ida_simple_remove(&pci_endpoint_test_ida, id);
- for (bar = BAR_0; bar <= BAR_5; bar++) {
- if (test->bar[bar])
- pci_iounmap(pdev, test->bar[bar]);
- }
- pci_endpoint_test_release_irq(test);
- pci_endpoint_test_free_irq_vectors(test);
- pci_release_regions(pdev);
- pci_disable_device(pdev);
- }
- static const struct pci_device_id pci_endpoint_test_tbl[] = {
- { PCI_DEVICE(PCI_VENDOR_ID_TI, PCI_DEVICE_ID_TI_DRA74x) },
- { PCI_DEVICE(PCI_VENDOR_ID_TI, PCI_DEVICE_ID_TI_DRA72x) },
- { PCI_DEVICE(PCI_VENDOR_ID_SYNOPSYS, 0xedda) },
- { }
- };
- MODULE_DEVICE_TABLE(pci, pci_endpoint_test_tbl);
- static struct pci_driver pci_endpoint_test_driver = {
- .name = DRV_MODULE_NAME,
- .id_table = pci_endpoint_test_tbl,
- .probe = pci_endpoint_test_probe,
- .remove = pci_endpoint_test_remove,
- };
- module_pci_driver(pci_endpoint_test_driver);
- MODULE_DESCRIPTION("PCI ENDPOINT TEST HOST DRIVER");
- MODULE_AUTHOR("Kishon Vijay Abraham I <kishon@ti.com>");
- MODULE_LICENSE("GPL v2");
|