]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - drivers/net/fm/memac.c
Merge remote-tracking branch 'u-boot-ti/master'
[karo-tx-uboot.git] / drivers / net / fm / memac.c
1 /*
2  * Copyright 2012 Freescale Semiconductor, Inc.
3  *      Roy Zang <tie-fei.zang@freescale.com>
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License as
7  * published by the Free Software Foundation; either version 2 of
8  * the License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
18  * MA 02111-1307 USA
19  */
20
21 /* MAXFRM - maximum frame length */
22 #define MAXFRM_MASK     0x0000ffff
23
24 #include <common.h>
25 #include <phy.h>
26 #include <asm/types.h>
27 #include <asm/io.h>
28 #include <asm/fsl_enet.h>
29 #include <asm/fsl_memac.h>
30
31 #include "fm.h"
32
33 static void memac_init_mac(struct fsl_enet_mac *mac)
34 {
35         struct memac *regs = mac->base;
36
37         /* mask all interrupt */
38         out_be32(&regs->imask, IMASK_MASK_ALL);
39
40         /* clear all events */
41         out_be32(&regs->ievent, IEVENT_CLEAR_ALL);
42
43         /* set the max receive length */
44         out_be32(&regs->maxfrm, mac->max_rx_len & MAXFRM_MASK);
45
46         /* multicast frame reception for the hash entry disable */
47         out_be32(&regs->hashtable_ctrl, 0);
48 }
49
50 static void memac_enable_mac(struct fsl_enet_mac *mac)
51 {
52         struct memac *regs = mac->base;
53
54         setbits_be32(&regs->command_config, MEMAC_CMD_CFG_RXTX_EN);
55 }
56
57 static void memac_disable_mac(struct fsl_enet_mac *mac)
58 {
59         struct memac *regs = mac->base;
60
61         clrbits_be32(&regs->command_config, MEMAC_CMD_CFG_RXTX_EN);
62 }
63
64 static void memac_set_mac_addr(struct fsl_enet_mac *mac, u8 *mac_addr)
65 {
66         struct memac *regs = mac->base;
67         u32 mac_addr0, mac_addr1;
68
69         /*
70          * if a station address of 0x12345678ABCD, perform a write to
71          * MAC_ADDR0 of 0x78563412, MAC_ADDR1 of 0x0000CDAB
72          */
73         mac_addr0 = (mac_addr[3] << 24) | (mac_addr[2] << 16) | \
74                         (mac_addr[1] << 8)  | (mac_addr[0]);
75         out_be32(&regs->mac_addr_0, mac_addr0);
76
77         mac_addr1 = ((mac_addr[5] << 8) | mac_addr[4]) & 0x0000ffff;
78         out_be32(&regs->mac_addr_1, mac_addr1);
79 }
80
81 static void memac_set_interface_mode(struct fsl_enet_mac *mac,
82                                         phy_interface_t type, int speed)
83 {
84         /* Roy need more work here */
85
86         struct memac *regs = mac->base;
87         u32 if_mode, if_status;
88
89         /* clear all bits relative with interface mode */
90         if_mode = in_be32(&regs->if_mode);
91         if_status = in_be32(&regs->if_status);
92
93         /* set interface mode */
94         switch (type) {
95         case PHY_INTERFACE_MODE_GMII:
96                 if_mode &= ~IF_MODE_MASK;
97                 if_mode |= IF_MODE_GMII;
98                 break;
99         case PHY_INTERFACE_MODE_RGMII:
100                 if_mode |= (IF_MODE_GMII | IF_MODE_RG);
101                 break;
102         case PHY_INTERFACE_MODE_RMII:
103                 if_mode |= (IF_MODE_GMII | IF_MODE_RM);
104                 break;
105         case PHY_INTERFACE_MODE_SGMII:
106                 if_mode &= ~IF_MODE_MASK;
107                 if_mode |= (IF_MODE_GMII);
108                 break;
109         default:
110                 break;
111         }
112         /* Enable automatic speed selection */
113         if_mode |= IF_MODE_EN_AUTO;
114
115         debug(" %s, if_mode = %x\n", __func__,  if_mode);
116         debug(" %s, if_status = %x\n", __func__,  if_status);
117         out_be32(&regs->if_mode, if_mode);
118         return;
119 }
120
121 void init_memac(struct fsl_enet_mac *mac, void *base,
122                 void *phyregs, int max_rx_len)
123 {
124         mac->base = base;
125         mac->phyregs = phyregs;
126         mac->max_rx_len = max_rx_len;
127         mac->init_mac = memac_init_mac;
128         mac->enable_mac = memac_enable_mac;
129         mac->disable_mac = memac_disable_mac;
130         mac->set_mac_addr = memac_set_mac_addr;
131         mac->set_if_mode = memac_set_interface_mode;
132 }