]> rtime.felk.cvut.cz Git - can-eth-gw-linux.git/blob - arch/arm/mach-kirkwood/board-mplcec4.c
Merge branch 'akpm' (Andrew's patch-bomb)
[can-eth-gw-linux.git] / arch / arm / mach-kirkwood / board-mplcec4.c
1 /*
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>
15 #include <linux/platform_data/mmc-mvsdio.h>
16 #include "common.h"
17 #include "mpp.h"
18
19 static struct mv643xx_eth_platform_data mplcec4_ge00_data = {
20         .phy_addr       = MV643XX_ETH_PHY_ADDR(1),
21 };
22
23 static struct mv643xx_eth_platform_data mplcec4_ge01_data = {
24         .phy_addr       = MV643XX_ETH_PHY_ADDR(2),
25 };
26
27 static struct mvsdio_platform_data mplcec4_mvsdio_data = {
28         .gpio_card_detect = 47, /* MPP47 used as SD card detect */
29 };
30
31
32 void __init mplcec4_init(void)
33 {
34         /*
35          * Basic setup. Needs to be called early.
36          */
37         kirkwood_ge00_init(&mplcec4_ge00_data);
38         kirkwood_ge01_init(&mplcec4_ge01_data);
39         kirkwood_sdio_init(&mplcec4_mvsdio_data);
40         kirkwood_pcie_init(KW_PCIE0);
41 }
42
43
44