1 /*******************************************************************************
2 This contains the functions to handle the pci driver.
4 Copyright (C) 2011-2012 Vayavya Labs Pvt Ltd
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.
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
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.
19 The full GNU General Public License is included in this distribution in
20 the file called "COPYING".
22 Author: Rayagond Kokatanur <rayagond@vayavyalabs.com>
23 Author: Giuseppe Cavallaro <peppe.cavallaro@st.com>
24 *******************************************************************************/
26 #include <linux/pci.h>
27 #include <linux/dmi.h>
32 * This struct is used to associate PCI Function of MAC controller on a board,
33 * discovered via DMI, with the address of PHY connected to the MAC. The
34 * negative value of the address means that MAC controller is not connected
37 struct stmmac_pci_dmi_data
{
43 struct stmmac_pci_info
{
45 int (*setup
)(struct plat_stmmacenet_data
*plat
,
46 struct stmmac_pci_info
*info
);
47 struct stmmac_pci_dmi_data
*dmi
;
50 static int stmmac_pci_find_phy_addr(struct stmmac_pci_info
*info
)
52 const char *name
= dmi_get_system_info(DMI_BOARD_NAME
);
53 unsigned int func
= PCI_FUNC(info
->pdev
->devfn
);
54 struct stmmac_pci_dmi_data
*dmi
;
57 * Galileo boards with old firmware don't support DMI. We always return
58 * 1 here, so at least first found MAC controller would be probed.
63 for (dmi
= info
->dmi
; dmi
->name
&& *dmi
->name
; dmi
++) {
64 if (!strcmp(dmi
->name
, name
) && dmi
->func
== func
)
71 static void stmmac_default_data(struct plat_stmmacenet_data
*plat
)
75 plat
->interface
= PHY_INTERFACE_MODE_GMII
;
76 plat
->clk_csr
= 2; /* clk_csr_i = 20-35MHz & MDC = clk_csr_i/16 */
78 plat
->force_sf_dma_mode
= 1;
80 plat
->mdio_bus_data
->phy_reset
= NULL
;
81 plat
->mdio_bus_data
->phy_mask
= 0;
83 plat
->dma_cfg
->pbl
= 32;
86 /* Set default value for multicast hash bins */
87 plat
->multicast_filter_bins
= HASH_TABLE_SIZE
;
89 /* Set default value for unicast filter entries */
90 plat
->unicast_filter_entries
= 1;
93 static int quark_default_data(struct plat_stmmacenet_data
*plat
,
94 struct stmmac_pci_info
*info
)
96 struct pci_dev
*pdev
= info
->pdev
;
100 * Refuse to load the driver and register net device if MAC controller
101 * does not connect to any PHY interface.
103 ret
= stmmac_pci_find_phy_addr(info
);
107 plat
->bus_id
= PCI_DEVID(pdev
->bus
->number
, pdev
->devfn
);
108 plat
->phy_addr
= ret
;
109 plat
->interface
= PHY_INTERFACE_MODE_RMII
;
112 plat
->force_sf_dma_mode
= 1;
114 plat
->mdio_bus_data
->phy_reset
= NULL
;
115 plat
->mdio_bus_data
->phy_mask
= 0;
117 plat
->dma_cfg
->pbl
= 16;
118 plat
->dma_cfg
->fixed_burst
= 1;
121 /* Set default value for multicast hash bins */
122 plat
->multicast_filter_bins
= HASH_TABLE_SIZE
;
124 /* Set default value for unicast filter entries */
125 plat
->unicast_filter_entries
= 1;
130 static struct stmmac_pci_dmi_data quark_pci_dmi_data
[] = {
137 .name
= "GalileoGen2",
144 static struct stmmac_pci_info quark_pci_info
= {
145 .setup
= quark_default_data
,
146 .dmi
= quark_pci_dmi_data
,
152 * @pdev: pci device pointer
153 * @id: pointer to table of device id/id's.
155 * Description: This probing function gets called for all PCI devices which
156 * match the ID table and are not "owned" by other driver yet. This function
157 * gets passed a "struct pci_dev *" for each device whose entry in the ID table
158 * matches the device. The probe functions returns zero when the driver choose
159 * to take "ownership" of the device or an error code(-ve no) otherwise.
161 static int stmmac_pci_probe(struct pci_dev
*pdev
,
162 const struct pci_device_id
*id
)
164 struct stmmac_pci_info
*info
= (struct stmmac_pci_info
*)id
->driver_data
;
165 struct plat_stmmacenet_data
*plat
;
166 struct stmmac_resources res
;
170 plat
= devm_kzalloc(&pdev
->dev
, sizeof(*plat
), GFP_KERNEL
);
174 plat
->mdio_bus_data
= devm_kzalloc(&pdev
->dev
,
175 sizeof(*plat
->mdio_bus_data
),
177 if (!plat
->mdio_bus_data
)
180 plat
->dma_cfg
= devm_kzalloc(&pdev
->dev
, sizeof(*plat
->dma_cfg
),
185 /* Enable pci device */
186 ret
= pcim_enable_device(pdev
);
188 dev_err(&pdev
->dev
, "%s: ERROR: failed to enable device\n",
193 /* Get the base address of device */
194 for (i
= 0; i
<= PCI_STD_RESOURCE_END
; i
++) {
195 if (pci_resource_len(pdev
, i
) == 0)
197 ret
= pcim_iomap_regions(pdev
, BIT(i
), pci_name(pdev
));
203 pci_set_master(pdev
);
208 ret
= info
->setup(plat
, info
);
213 stmmac_default_data(plat
);
215 pci_enable_msi(pdev
);
217 memset(&res
, 0, sizeof(res
));
218 res
.addr
= pcim_iomap_table(pdev
)[i
];
219 res
.wol_irq
= pdev
->irq
;
222 return stmmac_dvr_probe(&pdev
->dev
, plat
, &res
);
228 * @pdev: platform device pointer
229 * Description: this function calls the main to free the net resources
230 * and releases the PCI resources.
232 static void stmmac_pci_remove(struct pci_dev
*pdev
)
234 stmmac_dvr_remove(&pdev
->dev
);
237 static SIMPLE_DEV_PM_OPS(stmmac_pm_ops
, stmmac_suspend
, stmmac_resume
);
239 #define STMMAC_VENDOR_ID 0x700
240 #define STMMAC_QUARK_ID 0x0937
241 #define STMMAC_DEVICE_ID 0x1108
243 static const struct pci_device_id stmmac_id_table
[] = {
244 {PCI_DEVICE(STMMAC_VENDOR_ID
, STMMAC_DEVICE_ID
)},
245 {PCI_DEVICE(PCI_VENDOR_ID_STMICRO
, PCI_DEVICE_ID_STMICRO_MAC
)},
246 {PCI_VDEVICE(INTEL
, STMMAC_QUARK_ID
), (kernel_ulong_t
)&quark_pci_info
},
250 MODULE_DEVICE_TABLE(pci
, stmmac_id_table
);
252 static struct pci_driver stmmac_pci_driver
= {
253 .name
= STMMAC_RESOURCE_NAME
,
254 .id_table
= stmmac_id_table
,
255 .probe
= stmmac_pci_probe
,
256 .remove
= stmmac_pci_remove
,
258 .pm
= &stmmac_pm_ops
,
262 module_pci_driver(stmmac_pci_driver
);
264 MODULE_DESCRIPTION("STMMAC 10/100/1000 Ethernet PCI driver");
265 MODULE_AUTHOR("Rayagond Kokatanur <rayagond.kokatanur@vayavyalabs.com>");
266 MODULE_AUTHOR("Giuseppe Cavallaro <peppe.cavallaro@st.com>");
267 MODULE_LICENSE("GPL");