| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | /* orinoco_tmd.c
 | 
					
						
							| 
									
										
										
										
											2006-04-07 04:10:57 -04:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  * Driver for Prism II devices which would usually be driven by orinoco_cs, | 
					
						
							| 
									
										
										
										
											2009-01-25 23:08:43 +03:00
										 |  |  |  * but are connected to the PCI bus by a TMD7160. | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Copyright (C) 2003 Joerg Dorchain <joerg AT dorchain.net> | 
					
						
							|  |  |  |  * based heavily upon orinoco_plx.c Copyright (C) 2001 Daniel Barlow | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The contents of this file are subject to the Mozilla Public License | 
					
						
							|  |  |  |  * Version 1.1 (the "License"); you may not use this file except in | 
					
						
							|  |  |  |  * compliance with the License. You may obtain a copy of the License | 
					
						
							|  |  |  |  * at http://www.mozilla.org/MPL/
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Software distributed under the License is distributed on an "AS IS" | 
					
						
							|  |  |  |  * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See | 
					
						
							|  |  |  |  * the License for the specific language governing rights and | 
					
						
							|  |  |  |  * limitations under the License. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Alternatively, the contents of this file may be used under the | 
					
						
							|  |  |  |  * terms of the GNU General Public License version 2 (the "GPL"), in | 
					
						
							|  |  |  |  * which case the provisions of the GPL are applicable instead of the | 
					
						
							|  |  |  |  * above.  If you wish to allow the use of your version of this file | 
					
						
							|  |  |  |  * only under the terms of the GPL and not to allow others to use your | 
					
						
							|  |  |  |  * version of this file under the MPL, indicate your decision by | 
					
						
							|  |  |  |  * deleting the provisions above and replace them with the notice and | 
					
						
							|  |  |  |  * other provisions required by the GPL.  If you do not delete the | 
					
						
							|  |  |  |  * provisions above, a recipient may use your version of this file | 
					
						
							|  |  |  |  * under either the MPL or the GPL. | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2009-02-04 23:05:48 +00:00
										 |  |  |  * The actual driving is done by main.c, this is just resource | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  * allocation stuff. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This driver is modeled after the orinoco_plx driver. The main | 
					
						
							| 
									
										
										
										
											2006-04-07 04:11:00 -04:00
										 |  |  |  * difference is that the TMD chip has only IO port ranges and doesn't | 
					
						
							|  |  |  |  * provide access to the PCMCIA attribute space. | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Pheecom sells cards with the TMD chip as "ASIC version" | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define DRIVER_NAME "orinoco_tmd"
 | 
					
						
							|  |  |  | #define PFX DRIVER_NAME ": "
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/module.h>
 | 
					
						
							|  |  |  | #include <linux/kernel.h>
 | 
					
						
							|  |  |  | #include <linux/init.h>
 | 
					
						
							| 
									
										
										
										
											2005-09-23 04:18:07 -04:00
										 |  |  | #include <linux/delay.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #include <linux/pci.h>
 | 
					
						
							|  |  |  | #include <pcmcia/cisreg.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "orinoco.h"
 | 
					
						
							| 
									
										
										
										
											2006-04-07 04:10:57 -04:00
										 |  |  | #include "orinoco_pci.h"
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define COR_VALUE	(COR_LEVEL_REQ | COR_FUNC_ENA) /* Enable PC card with interrupt in level trigger */
 | 
					
						
							|  |  |  | #define COR_RESET     (0x80)	/* reset bit in the COR register */
 | 
					
						
							|  |  |  | #define TMD_RESET_TIME	(500)	/* milliseconds */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Do a soft reset of the card using the Configuration Option Register | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int orinoco_tmd_cor_reset(struct orinoco_private *priv) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2011-07-13 11:19:57 -04:00
										 |  |  | 	struct hermes *hw = &priv->hw; | 
					
						
							| 
									
										
										
										
											2006-04-07 04:10:57 -04:00
										 |  |  | 	struct orinoco_pci_card *card = priv->card; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	unsigned long timeout; | 
					
						
							|  |  |  | 	u16 reg; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-04-07 04:10:57 -04:00
										 |  |  | 	iowrite8(COR_VALUE | COR_RESET, card->bridge_io); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	mdelay(1); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-04-07 04:10:57 -04:00
										 |  |  | 	iowrite8(COR_VALUE, card->bridge_io); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	mdelay(1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Just in case, wait more until the card is no longer busy */ | 
					
						
							|  |  |  | 	timeout = jiffies + (TMD_RESET_TIME * HZ / 1000); | 
					
						
							|  |  |  | 	reg = hermes_read_regn(hw, CMD); | 
					
						
							|  |  |  | 	while (time_before(jiffies, timeout) && (reg & HERMES_CMD_BUSY)) { | 
					
						
							|  |  |  | 		mdelay(1); | 
					
						
							|  |  |  | 		reg = hermes_read_regn(hw, CMD); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-04-07 04:10:57 -04:00
										 |  |  | 	/* Still busy? */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	if (reg & HERMES_CMD_BUSY) { | 
					
						
							|  |  |  | 		printk(KERN_ERR PFX "Busy timeout\n"); | 
					
						
							|  |  |  | 		return -ETIMEDOUT; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int orinoco_tmd_init_one(struct pci_dev *pdev, | 
					
						
							|  |  |  | 				const struct pci_device_id *ent) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2006-04-07 04:10:57 -04:00
										 |  |  | 	int err; | 
					
						
							|  |  |  | 	struct orinoco_private *priv; | 
					
						
							|  |  |  | 	struct orinoco_pci_card *card; | 
					
						
							|  |  |  | 	void __iomem *hermes_io, *bridge_io; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	err = pci_enable_device(pdev); | 
					
						
							|  |  |  | 	if (err) { | 
					
						
							|  |  |  | 		printk(KERN_ERR PFX "Cannot enable PCI device\n"); | 
					
						
							|  |  |  | 		return err; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	err = pci_request_regions(pdev, DRIVER_NAME); | 
					
						
							| 
									
										
										
										
											2006-04-07 04:10:57 -04:00
										 |  |  | 	if (err) { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		printk(KERN_ERR PFX "Cannot obtain PCI resources\n"); | 
					
						
							|  |  |  | 		goto fail_resources; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-04-07 04:10:57 -04:00
										 |  |  | 	bridge_io = pci_iomap(pdev, 1, 0); | 
					
						
							|  |  |  | 	if (!bridge_io) { | 
					
						
							|  |  |  | 		printk(KERN_ERR PFX "Cannot map bridge registers\n"); | 
					
						
							|  |  |  | 		err = -EIO; | 
					
						
							|  |  |  | 		goto fail_map_bridge; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hermes_io = pci_iomap(pdev, 2, 0); | 
					
						
							|  |  |  | 	if (!hermes_io) { | 
					
						
							|  |  |  | 		printk(KERN_ERR PFX "Cannot map chipset registers\n"); | 
					
						
							|  |  |  | 		err = -EIO; | 
					
						
							|  |  |  | 		goto fail_map_hermes; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Allocate network device */ | 
					
						
							| 
									
										
										
										
											2009-06-18 23:21:23 +01:00
										 |  |  | 	priv = alloc_orinocodev(sizeof(*card), &pdev->dev, | 
					
						
							|  |  |  | 				orinoco_tmd_cor_reset, NULL); | 
					
						
							|  |  |  | 	if (!priv) { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		printk(KERN_ERR PFX "Cannot allocate network device\n"); | 
					
						
							|  |  |  | 		err = -ENOMEM; | 
					
						
							|  |  |  | 		goto fail_alloc; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	card = priv->card; | 
					
						
							| 
									
										
										
										
											2006-04-07 04:10:57 -04:00
										 |  |  | 	card->bridge_io = bridge_io; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-04-07 04:10:57 -04:00
										 |  |  | 	hermes_struct_init(&priv->hw, hermes_io, HERMES_16BIT_REGSPACING); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-07-01 19:29:39 -07:00
										 |  |  | 	err = request_irq(pdev->irq, orinoco_interrupt, IRQF_SHARED, | 
					
						
							| 
									
										
										
										
											2009-06-18 23:21:28 +01:00
										 |  |  | 			  DRIVER_NAME, priv); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	if (err) { | 
					
						
							|  |  |  | 		printk(KERN_ERR PFX "Cannot allocate IRQ %d\n", pdev->irq); | 
					
						
							|  |  |  | 		err = -EBUSY; | 
					
						
							|  |  |  | 		goto fail_irq; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	err = orinoco_tmd_cor_reset(priv); | 
					
						
							|  |  |  | 	if (err) { | 
					
						
							|  |  |  | 		printk(KERN_ERR PFX "Initial reset failed\n"); | 
					
						
							|  |  |  | 		goto fail; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-18 23:21:24 +01:00
										 |  |  | 	err = orinoco_init(priv); | 
					
						
							|  |  |  | 	if (err) { | 
					
						
							|  |  |  | 		printk(KERN_ERR PFX "orinoco_init() failed\n"); | 
					
						
							|  |  |  | 		goto fail; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-01 14:05:39 +01:00
										 |  |  | 	err = orinoco_if_add(priv, 0, 0, NULL); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	if (err) { | 
					
						
							| 
									
										
										
										
											2009-06-18 23:21:28 +01:00
										 |  |  | 		printk(KERN_ERR PFX "orinoco_if_add() failed\n"); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		goto fail; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-18 23:21:23 +01:00
										 |  |  | 	pci_set_drvdata(pdev, priv); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  fail: | 
					
						
							| 
									
										
										
										
											2009-06-18 23:21:23 +01:00
										 |  |  | 	free_irq(pdev->irq, priv); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |  fail_irq: | 
					
						
							| 
									
										
										
										
											2009-06-18 23:21:23 +01:00
										 |  |  | 	free_orinocodev(priv); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |  fail_alloc: | 
					
						
							| 
									
										
										
										
											2006-04-07 04:10:57 -04:00
										 |  |  | 	pci_iounmap(pdev, hermes_io); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-04-07 04:10:57 -04:00
										 |  |  |  fail_map_hermes: | 
					
						
							|  |  |  | 	pci_iounmap(pdev, bridge_io); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  fail_map_bridge: | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	pci_release_regions(pdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  fail_resources: | 
					
						
							|  |  |  | 	pci_disable_device(pdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-03 09:56:37 -05:00
										 |  |  | static void orinoco_tmd_remove_one(struct pci_dev *pdev) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-06-18 23:21:23 +01:00
										 |  |  | 	struct orinoco_private *priv = pci_get_drvdata(pdev); | 
					
						
							| 
									
										
										
										
											2006-04-07 04:10:57 -04:00
										 |  |  | 	struct orinoco_pci_card *card = priv->card; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-18 23:21:28 +01:00
										 |  |  | 	orinoco_if_del(priv); | 
					
						
							| 
									
										
										
										
											2009-06-18 23:21:23 +01:00
										 |  |  | 	free_irq(pdev->irq, priv); | 
					
						
							|  |  |  | 	free_orinocodev(priv); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	pci_iounmap(pdev, priv->hw.iobase); | 
					
						
							| 
									
										
										
										
											2006-04-07 04:10:57 -04:00
										 |  |  | 	pci_iounmap(pdev, card->bridge_io); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	pci_release_regions(pdev); | 
					
						
							|  |  |  | 	pci_disable_device(pdev); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-08 15:56:03 +02:00
										 |  |  | static const struct pci_device_id orinoco_tmd_id_table[] = { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	{0x15e8, 0x0131, PCI_ANY_ID, PCI_ANY_ID,},      /* NDC and OEMs, e.g. pheecom */ | 
					
						
							|  |  |  | 	{0,}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-04-07 04:10:57 -04:00
										 |  |  | MODULE_DEVICE_TABLE(pci, orinoco_tmd_id_table); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | static struct pci_driver orinoco_tmd_driver = { | 
					
						
							|  |  |  | 	.name		= DRIVER_NAME, | 
					
						
							| 
									
										
										
										
											2006-04-07 04:10:57 -04:00
										 |  |  | 	.id_table	= orinoco_tmd_id_table, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	.probe		= orinoco_tmd_init_one, | 
					
						
							| 
									
										
										
										
											2012-12-03 09:56:37 -05:00
										 |  |  | 	.remove		= orinoco_tmd_remove_one, | 
					
						
							| 
									
										
										
										
											2006-04-07 04:10:57 -04:00
										 |  |  | 	.suspend	= orinoco_pci_suspend, | 
					
						
							|  |  |  | 	.resume		= orinoco_pci_resume, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static char version[] __initdata = DRIVER_NAME " " DRIVER_VERSION | 
					
						
							|  |  |  | 	" (Joerg Dorchain <joerg@dorchain.net>)"; | 
					
						
							|  |  |  | MODULE_AUTHOR("Joerg Dorchain <joerg@dorchain.net>"); | 
					
						
							|  |  |  | MODULE_DESCRIPTION("Driver for wireless LAN cards using the TMD7160 PCI bridge"); | 
					
						
							|  |  |  | MODULE_LICENSE("Dual MPL/GPL"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int __init orinoco_tmd_init(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	printk(KERN_DEBUG "%s\n", version); | 
					
						
							| 
									
										
										
										
											2006-08-19 17:48:59 -04:00
										 |  |  | 	return pci_register_driver(&orinoco_tmd_driver); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void __exit orinoco_tmd_exit(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	pci_unregister_driver(&orinoco_tmd_driver); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | module_init(orinoco_tmd_init); | 
					
						
							|  |  |  | module_exit(orinoco_tmd_exit); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Local variables: | 
					
						
							|  |  |  |  *  c-indent-level: 8 | 
					
						
							|  |  |  |  *  c-basic-offset: 8 | 
					
						
							|  |  |  |  *  tab-width: 8 | 
					
						
							|  |  |  |  * End: | 
					
						
							|  |  |  |  */ |