blob: 65e0f98520d64fe65c28ddda18e94a0b2960f455 [file] [log] [blame]
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +00001/*******************************************************************************
2 This contains the functions to handle the pci driver.
3
4 Copyright (C) 2011-2012 Vayavya Labs Pvt Ltd
5
6 This program is free software; you can redistribute it and/or modify it
7 under the terms and conditions of the GNU General Public License,
8 version 2, as published by the Free Software Foundation.
9
10 This program is distributed in the hope it will be useful, but WITHOUT
11 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 more details.
14
15 You should have received a copy of the GNU General Public License along with
16 this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
18
19 The full GNU General Public License is included in this distribution in
20 the file called "COPYING".
21
22 Author: Rayagond Kokatanur <rayagond@vayavyalabs.com>
23 Author: Giuseppe Cavallaro <peppe.cavallaro@st.com>
24*******************************************************************************/
25
26#include <linux/pci.h>
27#include "stmmac.h"
28
29struct plat_stmmacenet_data plat_dat;
30struct stmmac_mdio_bus_data mdio_data;
31
32static void stmmac_default_data(void)
33{
34 memset(&plat_dat, 0, sizeof(struct plat_stmmacenet_data));
35 plat_dat.bus_id = 1;
36 plat_dat.phy_addr = 0;
37 plat_dat.interface = PHY_INTERFACE_MODE_GMII;
Deepak SIKRI8327eb62012-04-04 04:33:23 +000038 plat_dat.dma_cfg->pbl = 32;
39 plat_dat.dma_cfg->burst_len = DMA_AXI_BLEN_256;
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +000040 plat_dat.clk_csr = 2; /* clk_csr_i = 20-35MHz & MDC = clk_csr_i/16 */
41 plat_dat.has_gmac = 1;
42 plat_dat.force_sf_dma_mode = 1;
43
44 mdio_data.bus_id = 1;
45 mdio_data.phy_reset = NULL;
46 mdio_data.phy_mask = 0;
47 plat_dat.mdio_bus_data = &mdio_data;
48}
49
50/**
51 * stmmac_pci_probe
52 *
53 * @pdev: pci device pointer
54 * @id: pointer to table of device id/id's.
55 *
56 * Description: This probing function gets called for all PCI devices which
57 * match the ID table and are not "owned" by other driver yet. This function
58 * gets passed a "struct pci_dev *" for each device whose entry in the ID table
59 * matches the device. The probe functions returns zero when the driver choose
60 * to take "ownership" of the device or an error code(-ve no) otherwise.
61 */
62static int __devinit stmmac_pci_probe(struct pci_dev *pdev,
63 const struct pci_device_id *id)
64{
65 int ret = 0;
66 void __iomem *addr = NULL;
67 struct stmmac_priv *priv = NULL;
68 int i;
69
70 /* Enable pci device */
71 ret = pci_enable_device(pdev);
72 if (ret) {
73 pr_err("%s : ERROR: failed to enable %s device\n", __func__,
74 pci_name(pdev));
75 return ret;
76 }
77 if (pci_request_regions(pdev, STMMAC_RESOURCE_NAME)) {
78 pr_err("%s: ERROR: failed to get PCI region\n", __func__);
79 ret = -ENODEV;
80 goto err_out_req_reg_failed;
81 }
82
83 /* Get the base address of device */
84 for (i = 0; i <= 5; i++) {
85 if (pci_resource_len(pdev, i) == 0)
86 continue;
87 addr = pci_iomap(pdev, i, 0);
88 if (addr == NULL) {
Masanari Iida8c1a7f52012-02-08 02:08:21 +000089 pr_err("%s: ERROR: cannot map register memory, aborting",
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +000090 __func__);
91 ret = -EIO;
92 goto err_out_map_failed;
93 }
94 break;
95 }
96 pci_set_master(pdev);
97
98 stmmac_default_data();
99
Giuseppe CAVALLAROcf3f0472012-02-15 00:10:39 +0000100 priv = stmmac_dvr_probe(&(pdev->dev), &plat_dat, addr);
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000101 if (!priv) {
Masanari Iida0f09a342012-02-12 03:45:41 +0000102 pr_err("%s: main driver probe failed", __func__);
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000103 goto err_out;
104 }
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000105 priv->dev->irq = pdev->irq;
106 priv->wol_irq = pdev->irq;
107
108 pci_set_drvdata(pdev, priv->dev);
109
110 pr_debug("STMMAC platform driver registration completed");
111
112 return 0;
113
114err_out:
115 pci_clear_master(pdev);
116err_out_map_failed:
117 pci_release_regions(pdev);
118err_out_req_reg_failed:
119 pci_disable_device(pdev);
120
121 return ret;
122}
123
124/**
125 * stmmac_dvr_remove
126 *
127 * @pdev: platform device pointer
128 * Description: this function calls the main to free the net resources
129 * and releases the PCI resources.
130 */
131static void __devexit stmmac_pci_remove(struct pci_dev *pdev)
132{
133 struct net_device *ndev = pci_get_drvdata(pdev);
134 struct stmmac_priv *priv = netdev_priv(ndev);
135
136 stmmac_dvr_remove(ndev);
137
138 pci_set_drvdata(pdev, NULL);
139 pci_iounmap(pdev, priv->ioaddr);
140 pci_release_regions(pdev);
141 pci_disable_device(pdev);
142}
143
144#ifdef CONFIG_PM
145static int stmmac_pci_suspend(struct pci_dev *pdev, pm_message_t state)
146{
147 struct net_device *ndev = pci_get_drvdata(pdev);
148 int ret;
149
150 ret = stmmac_suspend(ndev);
151 pci_save_state(pdev);
152 pci_set_power_state(pdev, pci_choose_state(pdev, state));
153
154 return ret;
155}
156
157static int stmmac_pci_resume(struct pci_dev *pdev)
158{
159 struct net_device *ndev = pci_get_drvdata(pdev);
160
161 pci_set_power_state(pdev, PCI_D0);
162 pci_restore_state(pdev);
163
164 return stmmac_resume(ndev);
165}
166#endif
167
168#define STMMAC_VENDOR_ID 0x700
169#define STMMAC_DEVICE_ID 0x1108
170
171static DEFINE_PCI_DEVICE_TABLE(stmmac_id_table) = {
Alessandro Rubini5437f4b2012-01-23 23:08:56 +0000172 {PCI_DEVICE(STMMAC_VENDOR_ID, STMMAC_DEVICE_ID)},
173 {PCI_DEVICE(PCI_VENDOR_ID_STMICRO, PCI_DEVICE_ID_STMICRO_MAC)},
174 {}
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000175};
176
177MODULE_DEVICE_TABLE(pci, stmmac_id_table);
178
179static struct pci_driver stmmac_driver = {
180 .name = STMMAC_RESOURCE_NAME,
181 .id_table = stmmac_id_table,
182 .probe = stmmac_pci_probe,
183 .remove = __devexit_p(stmmac_pci_remove),
184#ifdef CONFIG_PM
185 .suspend = stmmac_pci_suspend,
186 .resume = stmmac_pci_resume,
187#endif
188};
189
190/**
191 * stmmac_init_module - Entry point for the driver
192 * Description: This function is the entry point for the driver.
193 */
194static int __init stmmac_init_module(void)
195{
196 int ret;
197
198 ret = pci_register_driver(&stmmac_driver);
199 if (ret < 0)
200 pr_err("%s: ERROR: driver registration failed\n", __func__);
201
202 return ret;
203}
204
205/**
206 * stmmac_cleanup_module - Cleanup routine for the driver
207 * Description: This function is the cleanup routine for the driver.
208 */
209static void __exit stmmac_cleanup_module(void)
210{
211 pci_unregister_driver(&stmmac_driver);
212}
213
214module_init(stmmac_init_module);
215module_exit(stmmac_cleanup_module);
216
217MODULE_DESCRIPTION("STMMAC 10/100/1000 Ethernet PCI driver");
218MODULE_AUTHOR("Rayagond Kokatanur <rayagond.kokatanur@vayavyalabs.com>");
219MODULE_AUTHOR("Giuseppe Cavallaro <peppe.cavallaro@st.com>");
220MODULE_LICENSE("GPL");