ralink: use fe_reset to control all reset
[openwrt/staging/chunkeey.git] / target / linux / ramips / files / drivers / net / ethernet / ralink / soc_rt2880.c
1 /*
2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation; version 2 of the License
5 *
6 * This program is distributed in the hope that it will be useful,
7 * but WITHOUT ANY WARRANTY; without even the implied warranty of
8 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9 * GNU General Public License for more details.
10 *
11 * You should have received a copy of the GNU General Public License
12 * along with this program; if not, write to the Free Software
13 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
14 *
15 * Copyright (C) 2009-2013 John Crispin <blogic@openwrt.org>
16 */
17
18 #include <linux/module.h>
19
20 #include <asm/mach-ralink/ralink_regs.h>
21
22 #include "ralink_soc_eth.h"
23 #include "mdio_rt2880.h"
24
25 #define RT2880_RESET_FE BIT(18)
26
27 static void rt2880_init_data(struct fe_soc_data *data,
28 struct net_device *netdev)
29 {
30 struct fe_priv *priv = netdev_priv(netdev);
31
32 priv->flags = FE_FLAG_PADDING_64B | FE_FLAG_PADDING_BUG |
33 FE_FLAG_JUMBO_FRAME;
34 netdev->hw_features = NETIF_F_SG | NETIF_F_HW_VLAN_CTAG_TX;
35 /* maybe have hardware bug. */
36 //netdev->hw_features |= NETIF_F_IP_CSUM | NETIF_F_RXCSUM;
37 }
38
39 void rt2880_fe_reset(void)
40 {
41 fe_reset(RT2880_RESET_FE);
42 }
43
44 static int rt2880_fwd_config(struct fe_priv *priv)
45 {
46 int ret;
47
48 ret = fe_set_clock_cycle(priv);
49 if (ret)
50 return ret;
51
52 fe_fwd_config(priv);
53 fe_w32(FE_PSE_FQFC_CFG_INIT, FE_PSE_FQ_CFG);
54 fe_csum_config(priv);
55
56 return ret;
57 }
58
59 struct fe_soc_data rt2880_data = {
60 .mac = { 0x00, 0x11, 0x22, 0x33, 0x44, 0x55 },
61 .init_data = rt2880_init_data,
62 .reset_fe = rt2880_fe_reset,
63 .fwd_config = rt2880_fwd_config,
64 .pdma_glo_cfg = FE_PDMA_SIZE_8DWORDS,
65 .checksum_bit = RX_DMA_L4VALID,
66 .tx_udf_bit = TX_DMA_UDF,
67 .rx_int = FE_RX_DONE_INT,
68 .tx_int = FE_TX_DONE_INT,
69 .mdio_read = rt2880_mdio_read,
70 .mdio_write = rt2880_mdio_write,
71 .mdio_adjust_link = rt2880_mdio_link_adjust,
72 .port_init = rt2880_port_init,
73 };
74
75 const struct of_device_id of_fe_match[] = {
76 { .compatible = "ralink,rt2880-eth", .data = &rt2880_data },
77 {},
78 };
79
80 MODULE_DEVICE_TABLE(of, of_fe_match);