blob: 5c9e462276b9cbc25a8b5c2748988286fe17884f [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
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +000015 The full GNU General Public License is included in this distribution in
16 the file called "COPYING".
17
18 Author: Rayagond Kokatanur <rayagond@vayavyalabs.com>
19 Author: Giuseppe Cavallaro <peppe.cavallaro@st.com>
20*******************************************************************************/
21
22#include <linux/pci.h>
Andy Shevchenko0763d952015-01-27 21:44:48 +020023#include <linux/dmi.h>
24
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +000025#include "stmmac.h"
26
Andy Shevchenko0763d952015-01-27 21:44:48 +020027/*
28 * This struct is used to associate PCI Function of MAC controller on a board,
29 * discovered via DMI, with the address of PHY connected to the MAC. The
30 * negative value of the address means that MAC controller is not connected
31 * with PHY.
32 */
33struct stmmac_pci_dmi_data {
34 const char *name;
35 unsigned int func;
36 int phy_addr;
37};
38
Kweh, Hock Leong5b99a6b2015-01-27 21:44:47 +020039struct stmmac_pci_info {
40 struct pci_dev *pdev;
41 int (*setup)(struct plat_stmmacenet_data *plat,
42 struct stmmac_pci_info *info);
Andy Shevchenko0763d952015-01-27 21:44:48 +020043 struct stmmac_pci_dmi_data *dmi;
Kweh, Hock Leong5b99a6b2015-01-27 21:44:47 +020044};
45
Andy Shevchenko0763d952015-01-27 21:44:48 +020046static int stmmac_pci_find_phy_addr(struct stmmac_pci_info *info)
47{
48 const char *name = dmi_get_system_info(DMI_BOARD_NAME);
49 unsigned int func = PCI_FUNC(info->pdev->devfn);
50 struct stmmac_pci_dmi_data *dmi;
51
52 /*
53 * Galileo boards with old firmware don't support DMI. We always return
54 * 1 here, so at least first found MAC controller would be probed.
55 */
56 if (!name)
57 return 1;
58
59 for (dmi = info->dmi; dmi->name && *dmi->name; dmi++) {
60 if (!strcmp(dmi->name, name) && dmi->func == func)
61 return dmi->phy_addr;
62 }
63
64 return -ENODEV;
65}
66
Andy Shevchenkoc4b2b9a2014-11-28 15:40:56 +020067static void stmmac_default_data(struct plat_stmmacenet_data *plat)
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +000068{
Andy Shevchenkoc4b2b9a2014-11-28 15:40:56 +020069 plat->bus_id = 1;
70 plat->phy_addr = 0;
71 plat->interface = PHY_INTERFACE_MODE_GMII;
72 plat->clk_csr = 2; /* clk_csr_i = 20-35MHz & MDC = clk_csr_i/16 */
73 plat->has_gmac = 1;
74 plat->force_sf_dma_mode = 1;
Andy Shevchenko1e19e082014-10-31 18:28:03 +020075
Andy Shevchenkoc4b2b9a2014-11-28 15:40:56 +020076 plat->mdio_bus_data->phy_reset = NULL;
77 plat->mdio_bus_data->phy_mask = 0;
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +000078
Andy Shevchenkoc4b2b9a2014-11-28 15:40:56 +020079 plat->dma_cfg->pbl = 32;
Niklas Cassel4022d032016-12-07 15:20:08 +010080 plat->dma_cfg->pblx8 = true;
Giuseppe Cavallaroafea0362016-02-29 14:27:28 +010081 /* TODO: AXI */
Andy Shevchenko1e19e082014-10-31 18:28:03 +020082
83 /* Set default value for multicast hash bins */
Andy Shevchenkoc4b2b9a2014-11-28 15:40:56 +020084 plat->multicast_filter_bins = HASH_TABLE_SIZE;
Andy Shevchenko1e19e082014-10-31 18:28:03 +020085
86 /* Set default value for unicast filter entries */
Andy Shevchenkoc4b2b9a2014-11-28 15:40:56 +020087 plat->unicast_filter_entries = 1;
Kweh, Hock Leonga2cd64f2017-01-07 17:32:03 +080088
89 /* Set the maxmtu to a default of JUMBO_LEN */
90 plat->maxmtu = JUMBO_LEN;
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +000091}
92
Kweh, Hock Leong5b99a6b2015-01-27 21:44:47 +020093static int quark_default_data(struct plat_stmmacenet_data *plat,
94 struct stmmac_pci_info *info)
95{
96 struct pci_dev *pdev = info->pdev;
Andy Shevchenko0763d952015-01-27 21:44:48 +020097 int ret;
98
99 /*
100 * Refuse to load the driver and register net device if MAC controller
101 * does not connect to any PHY interface.
102 */
103 ret = stmmac_pci_find_phy_addr(info);
104 if (ret < 0)
105 return ret;
Kweh, Hock Leong5b99a6b2015-01-27 21:44:47 +0200106
107 plat->bus_id = PCI_DEVID(pdev->bus->number, pdev->devfn);
Andy Shevchenko0763d952015-01-27 21:44:48 +0200108 plat->phy_addr = ret;
Kweh, Hock Leong5b99a6b2015-01-27 21:44:47 +0200109 plat->interface = PHY_INTERFACE_MODE_RMII;
110 plat->clk_csr = 2;
111 plat->has_gmac = 1;
112 plat->force_sf_dma_mode = 1;
113
114 plat->mdio_bus_data->phy_reset = NULL;
115 plat->mdio_bus_data->phy_mask = 0;
116
117 plat->dma_cfg->pbl = 16;
Niklas Cassel4022d032016-12-07 15:20:08 +0100118 plat->dma_cfg->pblx8 = true;
Kweh, Hock Leong5b99a6b2015-01-27 21:44:47 +0200119 plat->dma_cfg->fixed_burst = 1;
Giuseppe Cavallaroafea0362016-02-29 14:27:28 +0100120 /* AXI (TODO) */
Kweh, Hock Leong5b99a6b2015-01-27 21:44:47 +0200121
122 /* Set default value for multicast hash bins */
123 plat->multicast_filter_bins = HASH_TABLE_SIZE;
124
125 /* Set default value for unicast filter entries */
126 plat->unicast_filter_entries = 1;
127
Kweh, Hock Leonga2cd64f2017-01-07 17:32:03 +0800128 /* Set the maxmtu to a default of JUMBO_LEN */
129 plat->maxmtu = JUMBO_LEN;
130
Kweh, Hock Leong5b99a6b2015-01-27 21:44:47 +0200131 return 0;
132}
133
Andy Shevchenko0763d952015-01-27 21:44:48 +0200134static struct stmmac_pci_dmi_data quark_pci_dmi_data[] = {
135 {
136 .name = "Galileo",
137 .func = 6,
138 .phy_addr = 1,
139 },
140 {
141 .name = "GalileoGen2",
142 .func = 6,
143 .phy_addr = 1,
144 },
145 {}
146};
147
Kweh, Hock Leong5b99a6b2015-01-27 21:44:47 +0200148static struct stmmac_pci_info quark_pci_info = {
149 .setup = quark_default_data,
Andy Shevchenko0763d952015-01-27 21:44:48 +0200150 .dmi = quark_pci_dmi_data,
Kweh, Hock Leong5b99a6b2015-01-27 21:44:47 +0200151};
152
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000153/**
154 * stmmac_pci_probe
155 *
156 * @pdev: pci device pointer
157 * @id: pointer to table of device id/id's.
158 *
159 * Description: This probing function gets called for all PCI devices which
160 * match the ID table and are not "owned" by other driver yet. This function
161 * gets passed a "struct pci_dev *" for each device whose entry in the ID table
162 * matches the device. The probe functions returns zero when the driver choose
163 * to take "ownership" of the device or an error code(-ve no) otherwise.
164 */
Bill Pemberton979857b2012-12-03 09:23:34 -0500165static int stmmac_pci_probe(struct pci_dev *pdev,
Greg Kroah-Hartman1dd06ae2012-12-06 14:30:56 +0000166 const struct pci_device_id *id)
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000167{
Kweh, Hock Leong5b99a6b2015-01-27 21:44:47 +0200168 struct stmmac_pci_info *info = (struct stmmac_pci_info *)id->driver_data;
Andy Shevchenkoc4b2b9a2014-11-28 15:40:56 +0200169 struct plat_stmmacenet_data *plat;
Joachim Eastwoode56788c2015-05-20 20:03:07 +0200170 struct stmmac_resources res;
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000171 int i;
Andy Shevchenko2a3e8e92014-11-05 12:27:28 +0200172 int ret;
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000173
Andy Shevchenkoc4b2b9a2014-11-28 15:40:56 +0200174 plat = devm_kzalloc(&pdev->dev, sizeof(*plat), GFP_KERNEL);
175 if (!plat)
176 return -ENOMEM;
177
178 plat->mdio_bus_data = devm_kzalloc(&pdev->dev,
179 sizeof(*plat->mdio_bus_data),
180 GFP_KERNEL);
181 if (!plat->mdio_bus_data)
182 return -ENOMEM;
183
184 plat->dma_cfg = devm_kzalloc(&pdev->dev, sizeof(*plat->dma_cfg),
185 GFP_KERNEL);
186 if (!plat->dma_cfg)
187 return -ENOMEM;
188
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000189 /* Enable pci device */
Andy Shevchenko2a3e8e92014-11-05 12:27:28 +0200190 ret = pcim_enable_device(pdev);
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000191 if (ret) {
Andy Shevchenko7627fc02014-11-05 12:27:29 +0200192 dev_err(&pdev->dev, "%s: ERROR: failed to enable device\n",
193 __func__);
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000194 return ret;
195 }
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000196
197 /* Get the base address of device */
Andy Shevchenko295f9d02014-11-05 12:27:26 +0200198 for (i = 0; i <= PCI_STD_RESOURCE_END; i++) {
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000199 if (pci_resource_len(pdev, i) == 0)
200 continue;
Andy Shevchenko2a3e8e92014-11-05 12:27:28 +0200201 ret = pcim_iomap_regions(pdev, BIT(i), pci_name(pdev));
202 if (ret)
203 return ret;
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000204 break;
205 }
Andy Shevchenko2a3e8e92014-11-05 12:27:28 +0200206
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000207 pci_set_master(pdev);
208
Kweh, Hock Leong5b99a6b2015-01-27 21:44:47 +0200209 if (info) {
210 info->pdev = pdev;
211 if (info->setup) {
212 ret = info->setup(plat, info);
213 if (ret)
214 return ret;
215 }
216 } else
217 stmmac_default_data(plat);
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000218
Kweh, Hock Leongd2a029b2015-01-27 21:44:49 +0200219 pci_enable_msi(pdev);
220
Joachim Eastwoode56788c2015-05-20 20:03:07 +0200221 memset(&res, 0, sizeof(res));
222 res.addr = pcim_iomap_table(pdev)[i];
223 res.wol_irq = pdev->irq;
224 res.irq = pdev->irq;
225
Joachim Eastwood15ffac72015-05-20 20:03:08 +0200226 return stmmac_dvr_probe(&pdev->dev, plat, &res);
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000227}
228
229/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000230 * stmmac_pci_remove
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000231 *
232 * @pdev: platform device pointer
233 * Description: this function calls the main to free the net resources
234 * and releases the PCI resources.
235 */
Bill Pemberton979857b2012-12-03 09:23:34 -0500236static void stmmac_pci_remove(struct pci_dev *pdev)
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000237{
Joachim Eastwoodf4e7bd82016-05-01 22:58:19 +0200238 stmmac_dvr_remove(&pdev->dev);
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000239}
240
Joachim Eastwoodf4e7bd82016-05-01 22:58:19 +0200241static SIMPLE_DEV_PM_OPS(stmmac_pm_ops, stmmac_suspend, stmmac_resume);
Andy Shevchenko3be3d812014-11-05 12:27:27 +0200242
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000243#define STMMAC_VENDOR_ID 0x700
Kweh, Hock Leong5b99a6b2015-01-27 21:44:47 +0200244#define STMMAC_QUARK_ID 0x0937
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000245#define STMMAC_DEVICE_ID 0x1108
246
Benoit Taine9baa3c32014-08-08 15:56:03 +0200247static const struct pci_device_id stmmac_id_table[] = {
Alessandro Rubini5437f4b2012-01-23 23:08:56 +0000248 {PCI_DEVICE(STMMAC_VENDOR_ID, STMMAC_DEVICE_ID)},
249 {PCI_DEVICE(PCI_VENDOR_ID_STMICRO, PCI_DEVICE_ID_STMICRO_MAC)},
Kweh, Hock Leong5b99a6b2015-01-27 21:44:47 +0200250 {PCI_VDEVICE(INTEL, STMMAC_QUARK_ID), (kernel_ulong_t)&quark_pci_info},
Alessandro Rubini5437f4b2012-01-23 23:08:56 +0000251 {}
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000252};
253
254MODULE_DEVICE_TABLE(pci, stmmac_id_table);
255
Andy Shevchenkob2e2f0c2014-11-10 12:38:59 +0200256static struct pci_driver stmmac_pci_driver = {
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000257 .name = STMMAC_RESOURCE_NAME,
258 .id_table = stmmac_id_table,
259 .probe = stmmac_pci_probe,
Bill Pemberton979857b2012-12-03 09:23:34 -0500260 .remove = stmmac_pci_remove,
Andy Shevchenko3be3d812014-11-05 12:27:27 +0200261 .driver = {
262 .pm = &stmmac_pm_ops,
263 },
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000264};
265
Andy Shevchenkob2e2f0c2014-11-10 12:38:59 +0200266module_pci_driver(stmmac_pci_driver);
267
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000268MODULE_DESCRIPTION("STMMAC 10/100/1000 Ethernet PCI driver");
269MODULE_AUTHOR("Rayagond Kokatanur <rayagond.kokatanur@vayavyalabs.com>");
270MODULE_AUTHOR("Giuseppe Cavallaro <peppe.cavallaro@st.com>");
271MODULE_LICENSE("GPL");