blob: 7d6dc669e17fb4dfc6338a5c7e1a129868ae5a0a [file] [log] [blame]
Stefan Peter5492a112012-11-18 16:46:16 +01001/*
2 * Copyright (C) 2012 MPL AG, Switzerland
3 * Stefan Peter <s.peter@mpl.ch>
4 *
5 * arch/arm/mach-kirkwood/board-mplcec4.c
6 *
7 * This file is licensed under the terms of the GNU General Public
8 * License version 2. This program is licensed "as is" without any
9 * warranty of any kind, whether express or implied.
10 */
11
12#include <linux/kernel.h>
13#include <linux/init.h>
14#include <linux/mv643xx_eth.h>
Stefan Peter5492a112012-11-18 16:46:16 +010015#include "common.h"
Stefan Peter5492a112012-11-18 16:46:16 +010016
17static struct mv643xx_eth_platform_data mplcec4_ge00_data = {
18 .phy_addr = MV643XX_ETH_PHY_ADDR(1),
19};
20
21static struct mv643xx_eth_platform_data mplcec4_ge01_data = {
22 .phy_addr = MV643XX_ETH_PHY_ADDR(2),
23};
24
Stefan Peter5492a112012-11-18 16:46:16 +010025void __init mplcec4_init(void)
26{
27 /*
28 * Basic setup. Needs to be called early.
29 */
Stefan Peter5492a112012-11-18 16:46:16 +010030 kirkwood_ge00_init(&mplcec4_ge00_data);
31 kirkwood_ge01_init(&mplcec4_ge01_data);
Stefan Peter5492a112012-11-18 16:46:16 +010032 kirkwood_pcie_init(KW_PCIE0);
33}
34
35
36