3 * Marvell Semiconductor <www.marvell.com>
4 * Written-by: Prafulla Wadaskar <prafulla@marvell.com>
6 * See file CREDITS for list of people who contributed to this
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation; either version 2 of
12 * the License, or (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
27 #include <asm/arch/kirkwood.h>
28 #include <asm/arch/mpp.h>
31 DECLARE_GLOBAL_DATA_PTR
;
36 * default gpio configuration
37 * There are maximum 64 gpios controlled through 2 sets of registers
38 * the below configuration configures mainly initial LED status
40 kw_config_gpio(ICONNECT_OE_VAL_LOW
,
42 ICONNECT_OE_LOW
, ICONNECT_OE_HIGH
);
44 /* Multi-Purpose Pins Functionality configuration */
45 u32 kwmpp_config
[] = {
98 kirkwood_mpp_conf(kwmpp_config
);
101 * arch number of board
103 gd
->bd
->bi_arch_number
= MACH_TYPE_ICONNECT
;
105 /* adress of boot parameters */
106 gd
->bd
->bi_boot_params
= kw_sdram_bar(0) + 0x100;
115 for (i
= 0; i
< CONFIG_NR_DRAM_BANKS
; i
++) {
116 gd
->bd
->bi_dram
[i
].start
= kw_sdram_bar(i
);
117 gd
->bd
->bi_dram
[i
].size
= kw_sdram_bs(i
);
122 #ifdef CONFIG_RESET_PHY_R
123 /* Configure and enable MV88E1116 PHY */
128 char *name
= "egiga0";
130 if (miiphy_set_current_dev(name
))
133 /* command to read PHY dev address */
134 if (miiphy_read(name
, 0xEE, 0xEE, (u16
*) &devadr
)) {
135 printf("Err..%s could not read PHY dev address\n",
141 * Enable RGMII delay on Tx and Rx for CPU port
142 * Ref: sec 4.7.2 of chip datasheet
144 miiphy_write(name
, devadr
, MV88E1116_PGADR_REG
, 2);
145 miiphy_read(name
, devadr
, MV88E1116_MAC_CTRL_REG
, ®
);
146 reg
|= (MV88E1116_RGMII_RXTM_CTRL
| MV88E1116_RGMII_TXTM_CTRL
);
147 miiphy_write(name
, devadr
, MV88E1116_MAC_CTRL_REG
, reg
);
148 miiphy_write(name
, devadr
, MV88E1116_PGADR_REG
, 0);
151 miiphy_reset(name
, devadr
);
153 printf("88E1116 Initialized on %s\n", name
);
155 #endif /* CONFIG_RESET_PHY_R */