blob: 9834cd97053b768d2307d5e54e9a35276fea71c1 [file] [log] [blame]
Kumar Gala2683c532011-04-13 08:37:44 -05001/*
2 * Copyright 2011 Freescale Semiconductor, Inc.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License as
6 * published by the Free Software Foundation; either version 2 of
7 * the License, or (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
17 * MA 02111-1307 USA
18 */
19#include <common.h>
20#include <asm/io.h>
21#include <asm/fsl_serdes.h>
22
23#include "fm.h"
24
25struct fm_eth_info fm_info[] = {
26#if (CONFIG_SYS_NUM_FM1_DTSEC >= 1)
27 FM_DTSEC_INFO_INITIALIZER(1, 1),
28#endif
29#if (CONFIG_SYS_NUM_FM1_DTSEC >= 2)
30 FM_DTSEC_INFO_INITIALIZER(1, 2),
31#endif
32#if (CONFIG_SYS_NUM_FM1_DTSEC >= 3)
33 FM_DTSEC_INFO_INITIALIZER(1, 3),
34#endif
35#if (CONFIG_SYS_NUM_FM1_DTSEC >= 4)
36 FM_DTSEC_INFO_INITIALIZER(1, 4),
37#endif
38#if (CONFIG_SYS_NUM_FM1_DTSEC >= 5)
39 FM_DTSEC_INFO_INITIALIZER(1, 5),
40#endif
41#if (CONFIG_SYS_NUM_FM2_DTSEC >= 1)
42 FM_DTSEC_INFO_INITIALIZER(2, 1),
43#endif
44#if (CONFIG_SYS_NUM_FM2_DTSEC >= 2)
45 FM_DTSEC_INFO_INITIALIZER(2, 2),
46#endif
47#if (CONFIG_SYS_NUM_FM2_DTSEC >= 3)
48 FM_DTSEC_INFO_INITIALIZER(2, 3),
49#endif
50#if (CONFIG_SYS_NUM_FM2_DTSEC >= 4)
51 FM_DTSEC_INFO_INITIALIZER(2, 4),
52#endif
Timur Tabi7920fb12012-08-14 06:47:21 +000053#if (CONFIG_SYS_NUM_FM2_DTSEC >= 5)
54 FM_DTSEC_INFO_INITIALIZER(2, 5),
55#endif
Kumar Gala2683c532011-04-13 08:37:44 -050056#if (CONFIG_SYS_NUM_FM1_10GEC >= 1)
57 FM_TGEC_INFO_INITIALIZER(1, 1),
58#endif
59#if (CONFIG_SYS_NUM_FM2_10GEC >= 1)
60 FM_TGEC_INFO_INITIALIZER(2, 1),
61#endif
62};
63
64int fm_standard_init(bd_t *bis)
65{
66 int i;
67 struct ccsr_fman *reg;
68
69 reg = (void *)CONFIG_SYS_FSL_FM1_ADDR;
70 if (fm_init_common(0, reg))
71 return 0;
72
73 for (i = 0; i < ARRAY_SIZE(fm_info); i++) {
74 if ((fm_info[i].enabled) && (fm_info[i].index == 1))
75 fm_eth_initialize(reg, &fm_info[i]);
76 }
77
78#if (CONFIG_SYS_NUM_FMAN == 2)
79 reg = (void *)CONFIG_SYS_FSL_FM2_ADDR;
80 if (fm_init_common(1, reg))
81 return 0;
82
83 for (i = 0; i < ARRAY_SIZE(fm_info); i++) {
84 if ((fm_info[i].enabled) && (fm_info[i].index == 2))
85 fm_eth_initialize(reg, &fm_info[i]);
86 }
87#endif
88
89 return 1;
90}
91
92/* simple linear search to map from port to array index */
93static int fm_port_to_index(enum fm_port port)
94{
95 int i;
96
97 for (i = 0; i < ARRAY_SIZE(fm_info); i++) {
98 if (fm_info[i].port == port)
99 return i;
100 }
101
102 return -1;
103}
104
105/*
106 * Determine if an interface is actually active based on HW config
107 * we expect fman_port_enet_if() to report PHY_INTERFACE_MODE_NONE if
108 * the interface is not active based on HW cfg of the SoC
109 */
110void fman_enet_init(void)
111{
112 int i;
113
114 for (i = 0; i < ARRAY_SIZE(fm_info); i++) {
115 phy_interface_t enet_if;
116
117 enet_if = fman_port_enet_if(fm_info[i].port);
118 if (enet_if != PHY_INTERFACE_MODE_NONE) {
119 fm_info[i].enabled = 1;
120 fm_info[i].enet_if = enet_if;
121 } else {
122 fm_info[i].enabled = 0;
123 }
124 }
125
126 return ;
127}
128
Kumar Gala5536d922011-09-14 12:01:35 -0500129void fm_disable_port(enum fm_port port)
130{
131 int i = fm_port_to_index(port);
132
133 fm_info[i].enabled = 0;
134 fman_disable_port(port);
135}
136
Kumar Gala2683c532011-04-13 08:37:44 -0500137void fm_info_set_mdio(enum fm_port port, struct mii_dev *bus)
138{
139 int i = fm_port_to_index(port);
140
141 if (i == -1)
142 return;
143
144 fm_info[i].bus = bus;
145}
146
147void fm_info_set_phy_address(enum fm_port port, int address)
148{
149 int i = fm_port_to_index(port);
150
151 if (i == -1)
152 return;
153
154 fm_info[i].phy_addr = address;
155}
156
157/*
158 * Returns the type of the data interface between the given MAC and its PHY.
159 * This is typically determined by the RCW.
160 */
161phy_interface_t fm_info_get_enet_if(enum fm_port port)
162{
163 int i = fm_port_to_index(port);
164
165 if (i == -1)
166 return PHY_INTERFACE_MODE_NONE;
167
168 if (fm_info[i].enabled)
169 return fm_info[i].enet_if;
170
171 return PHY_INTERFACE_MODE_NONE;
172}
173
174static void
175__def_board_ft_fman_fixup_port(void *blob, char * prop, phys_addr_t pa,
176 enum fm_port port, int offset)
177{
178 return ;
179}
180
181void board_ft_fman_fixup_port(void *blob, char * prop, phys_addr_t pa,
182 enum fm_port port, int offset)
183 __attribute__((weak, alias("__def_board_ft_fman_fixup_port")));
184
185static void ft_fixup_port(void *blob, struct fm_eth_info *info, char *prop)
186{
187 int off, ph;
188 phys_addr_t paddr = CONFIG_SYS_CCSRBAR_PHYS + info->compat_offset;
Kumar Gala1ec665a2011-10-13 14:55:59 -0500189 u64 dtsec1_addr = (u64)CONFIG_SYS_CCSRBAR_PHYS +
190 CONFIG_SYS_FSL_FM1_DTSEC1_OFFSET;
Kumar Gala2683c532011-04-13 08:37:44 -0500191
192 off = fdt_node_offset_by_compat_reg(blob, prop, paddr);
193
194 if (info->enabled) {
195 fdt_fixup_phy_connection(blob, off, info->enet_if);
196 board_ft_fman_fixup_port(blob, prop, paddr, info->port, off);
197 return ;
198 }
199
200 /* board code might have caused offset to change */
201 off = fdt_node_offset_by_compat_reg(blob, prop, paddr);
202
Kumar Gala1ec665a2011-10-13 14:55:59 -0500203 /* Don't disable FM1-DTSEC1 MAC as its used for MDIO */
204 if (paddr != dtsec1_addr) {
205 /* disable the mac node */
206 fdt_setprop_string(blob, off, "status", "disabled");
207 }
Kumar Gala2683c532011-04-13 08:37:44 -0500208
Kumar Gala1ec665a2011-10-13 14:55:59 -0500209 /* disable the node point to the mac */
Kumar Gala2683c532011-04-13 08:37:44 -0500210 ph = fdt_get_phandle(blob, off);
211 do_fixup_by_prop(blob, "fsl,fman-mac", &ph, sizeof(ph),
212 "status", "disabled", strlen("disabled") + 1, 1);
213}
214
215void fdt_fixup_fman_ethernet(void *blob)
216{
217 int i;
218
219 for (i = 0; i < ARRAY_SIZE(fm_info); i++) {
220 if (fm_info[i].type == FM_ETH_1G_E)
221 ft_fixup_port(blob, &fm_info[i], "fsl,fman-1g-mac");
222 else
223 ft_fixup_port(blob, &fm_info[i], "fsl,fman-10g-mac");
224 }
225}