18e22978cSAlexander Shishkin /* 28e22978cSAlexander Shishkin * ci_hdrc_pci.c - MIPS USB IP core family device controller 38e22978cSAlexander Shishkin * 48e22978cSAlexander Shishkin * Copyright (C) 2008 Chipidea - MIPS Technologies, Inc. All rights reserved. 58e22978cSAlexander Shishkin * 68e22978cSAlexander Shishkin * Author: David Lopo 78e22978cSAlexander Shishkin * 88e22978cSAlexander Shishkin * This program is free software; you can redistribute it and/or modify 98e22978cSAlexander Shishkin * it under the terms of the GNU General Public License version 2 as 108e22978cSAlexander Shishkin * published by the Free Software Foundation. 118e22978cSAlexander Shishkin */ 128e22978cSAlexander Shishkin 138e22978cSAlexander Shishkin #include <linux/platform_device.h> 148e22978cSAlexander Shishkin #include <linux/module.h> 158e22978cSAlexander Shishkin #include <linux/pci.h> 168e22978cSAlexander Shishkin #include <linux/interrupt.h> 178e22978cSAlexander Shishkin #include <linux/usb/gadget.h> 188e22978cSAlexander Shishkin #include <linux/usb/chipidea.h> 198e22978cSAlexander Shishkin 208e22978cSAlexander Shishkin /* driver name */ 218e22978cSAlexander Shishkin #define UDC_DRIVER_NAME "ci_hdrc_pci" 228e22978cSAlexander Shishkin 238e22978cSAlexander Shishkin /****************************************************************************** 248e22978cSAlexander Shishkin * PCI block 258e22978cSAlexander Shishkin *****************************************************************************/ 268e22978cSAlexander Shishkin static struct ci_hdrc_platform_data pci_platdata = { 278e22978cSAlexander Shishkin .name = UDC_DRIVER_NAME, 288e22978cSAlexander Shishkin .capoffset = DEF_CAPOFFSET, 298e22978cSAlexander Shishkin }; 308e22978cSAlexander Shishkin 318e22978cSAlexander Shishkin static struct ci_hdrc_platform_data langwell_pci_platdata = { 328e22978cSAlexander Shishkin .name = UDC_DRIVER_NAME, 338e22978cSAlexander Shishkin .capoffset = 0, 348e22978cSAlexander Shishkin }; 358e22978cSAlexander Shishkin 368e22978cSAlexander Shishkin static struct ci_hdrc_platform_data penwell_pci_platdata = { 378e22978cSAlexander Shishkin .name = UDC_DRIVER_NAME, 388e22978cSAlexander Shishkin .capoffset = 0, 398e22978cSAlexander Shishkin .power_budget = 200, 408e22978cSAlexander Shishkin }; 418e22978cSAlexander Shishkin 428e22978cSAlexander Shishkin /** 438e22978cSAlexander Shishkin * ci_hdrc_pci_probe: PCI probe 448e22978cSAlexander Shishkin * @pdev: USB device controller being probed 458e22978cSAlexander Shishkin * @id: PCI hotplug ID connecting controller to UDC framework 468e22978cSAlexander Shishkin * 478e22978cSAlexander Shishkin * This function returns an error code 488e22978cSAlexander Shishkin * Allocates basic PCI resources for this USB device controller, and then 498e22978cSAlexander Shishkin * invokes the udc_probe() method to start the UDC associated with it 508e22978cSAlexander Shishkin */ 518e22978cSAlexander Shishkin static int ci_hdrc_pci_probe(struct pci_dev *pdev, 528e22978cSAlexander Shishkin const struct pci_device_id *id) 538e22978cSAlexander Shishkin { 548e22978cSAlexander Shishkin struct ci_hdrc_platform_data *platdata = (void *)id->driver_data; 558e22978cSAlexander Shishkin struct platform_device *plat_ci; 568e22978cSAlexander Shishkin struct resource res[3]; 578e22978cSAlexander Shishkin int retval = 0, nres = 2; 588e22978cSAlexander Shishkin 598e22978cSAlexander Shishkin if (!platdata) { 608e22978cSAlexander Shishkin dev_err(&pdev->dev, "device doesn't provide driver data\n"); 618e22978cSAlexander Shishkin return -ENODEV; 628e22978cSAlexander Shishkin } 638e22978cSAlexander Shishkin 648e22978cSAlexander Shishkin retval = pcim_enable_device(pdev); 658e22978cSAlexander Shishkin if (retval) 668e22978cSAlexander Shishkin return retval; 678e22978cSAlexander Shishkin 688e22978cSAlexander Shishkin if (!pdev->irq) { 698e22978cSAlexander Shishkin dev_err(&pdev->dev, "No IRQ, check BIOS/PCI setup!"); 708e22978cSAlexander Shishkin return -ENODEV; 718e22978cSAlexander Shishkin } 728e22978cSAlexander Shishkin 738e22978cSAlexander Shishkin pci_set_master(pdev); 748e22978cSAlexander Shishkin pci_try_set_mwi(pdev); 758e22978cSAlexander Shishkin 768e22978cSAlexander Shishkin memset(res, 0, sizeof(res)); 778e22978cSAlexander Shishkin res[0].start = pci_resource_start(pdev, 0); 788e22978cSAlexander Shishkin res[0].end = pci_resource_end(pdev, 0); 798e22978cSAlexander Shishkin res[0].flags = IORESOURCE_MEM; 808e22978cSAlexander Shishkin res[1].start = pdev->irq; 818e22978cSAlexander Shishkin res[1].flags = IORESOURCE_IRQ; 828e22978cSAlexander Shishkin 838e22978cSAlexander Shishkin plat_ci = ci_hdrc_add_device(&pdev->dev, res, nres, platdata); 848e22978cSAlexander Shishkin if (IS_ERR(plat_ci)) { 858e22978cSAlexander Shishkin dev_err(&pdev->dev, "ci_hdrc_add_device failed!\n"); 868e22978cSAlexander Shishkin return PTR_ERR(plat_ci); 878e22978cSAlexander Shishkin } 888e22978cSAlexander Shishkin 898e22978cSAlexander Shishkin pci_set_drvdata(pdev, plat_ci); 908e22978cSAlexander Shishkin 918e22978cSAlexander Shishkin return 0; 928e22978cSAlexander Shishkin } 938e22978cSAlexander Shishkin 948e22978cSAlexander Shishkin /** 958e22978cSAlexander Shishkin * ci_hdrc_pci_remove: PCI remove 968e22978cSAlexander Shishkin * @pdev: USB Device Controller being removed 978e22978cSAlexander Shishkin * 988e22978cSAlexander Shishkin * Reverses the effect of ci_hdrc_pci_probe(), 998e22978cSAlexander Shishkin * first invoking the udc_remove() and then releases 1008e22978cSAlexander Shishkin * all PCI resources allocated for this USB device controller 1018e22978cSAlexander Shishkin */ 1028e22978cSAlexander Shishkin static void ci_hdrc_pci_remove(struct pci_dev *pdev) 1038e22978cSAlexander Shishkin { 1048e22978cSAlexander Shishkin struct platform_device *plat_ci = pci_get_drvdata(pdev); 1058e22978cSAlexander Shishkin 1068e22978cSAlexander Shishkin ci_hdrc_remove_device(plat_ci); 1078e22978cSAlexander Shishkin } 1088e22978cSAlexander Shishkin 1098e22978cSAlexander Shishkin /** 1108e22978cSAlexander Shishkin * PCI device table 1118e22978cSAlexander Shishkin * PCI device structure 1128e22978cSAlexander Shishkin * 1138e22978cSAlexander Shishkin * Check "pci.h" for details 1148e22978cSAlexander Shishkin */ 1158e22978cSAlexander Shishkin static DEFINE_PCI_DEVICE_TABLE(ci_hdrc_pci_id_table) = { 1168e22978cSAlexander Shishkin { 1178e22978cSAlexander Shishkin PCI_DEVICE(0x153F, 0x1004), 1188e22978cSAlexander Shishkin .driver_data = (kernel_ulong_t)&pci_platdata, 1198e22978cSAlexander Shishkin }, 1208e22978cSAlexander Shishkin { 1218e22978cSAlexander Shishkin PCI_DEVICE(0x153F, 0x1006), 1228e22978cSAlexander Shishkin .driver_data = (kernel_ulong_t)&pci_platdata, 1238e22978cSAlexander Shishkin }, 1248e22978cSAlexander Shishkin { 1258e22978cSAlexander Shishkin PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x0811), 1268e22978cSAlexander Shishkin .driver_data = (kernel_ulong_t)&langwell_pci_platdata, 1278e22978cSAlexander Shishkin }, 1288e22978cSAlexander Shishkin { 1298e22978cSAlexander Shishkin PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x0829), 1308e22978cSAlexander Shishkin .driver_data = (kernel_ulong_t)&penwell_pci_platdata, 1318e22978cSAlexander Shishkin }, 132*a214339dSDavid Cohen { 133*a214339dSDavid Cohen /* Intel Clovertrail */ 134*a214339dSDavid Cohen PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0xe006), 135*a214339dSDavid Cohen .driver_data = (kernel_ulong_t)&penwell_pci_platdata, 136*a214339dSDavid Cohen }, 137*a214339dSDavid Cohen { 0 } /* end: all zeroes */ 1388e22978cSAlexander Shishkin }; 1398e22978cSAlexander Shishkin MODULE_DEVICE_TABLE(pci, ci_hdrc_pci_id_table); 1408e22978cSAlexander Shishkin 1418e22978cSAlexander Shishkin static struct pci_driver ci_hdrc_pci_driver = { 1428e22978cSAlexander Shishkin .name = UDC_DRIVER_NAME, 1438e22978cSAlexander Shishkin .id_table = ci_hdrc_pci_id_table, 1448e22978cSAlexander Shishkin .probe = ci_hdrc_pci_probe, 1458e22978cSAlexander Shishkin .remove = ci_hdrc_pci_remove, 1468e22978cSAlexander Shishkin }; 1478e22978cSAlexander Shishkin 1488e22978cSAlexander Shishkin module_pci_driver(ci_hdrc_pci_driver); 1498e22978cSAlexander Shishkin 1508e22978cSAlexander Shishkin MODULE_AUTHOR("MIPS - David Lopo <dlopo@chipidea.mips.com>"); 1518e22978cSAlexander Shishkin MODULE_DESCRIPTION("MIPS CI13XXX USB Peripheral Controller"); 1528e22978cSAlexander Shishkin MODULE_LICENSE("GPL"); 1538e22978cSAlexander Shishkin MODULE_VERSION("June 2008"); 1548e22978cSAlexander Shishkin MODULE_ALIAS("platform:ci13xxx_pci"); 155