aboutsummaryrefslogtreecommitdiff
path: root/arch/arm/mach-kirkwood/board-iomega_ix2_200.c
blob: 158fb97d03979e1697b163e91b506cd716e0d259 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/*
 * arch/arm/mach-kirkwood/board-iomega_ix2_200.c
 *
 * Iomega StorCenter ix2-200
 *
 * This file is licensed under the terms of the GNU General Public
 * License version 2.  This program is licensed "as is" without any
 * warranty of any kind, whether express or implied.
 */

#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/platform_device.h>
#include <linux/mv643xx_eth.h>
#include <linux/ethtool.h>
#include <mach/kirkwood.h>
#include "common.h"
#include "mpp.h"

static struct mv643xx_eth_platform_data iomega_ix2_200_ge00_data = {
	.phy_addr       = MV643XX_ETH_PHY_NONE,
	.speed          = SPEED_1000,
	.duplex         = DUPLEX_FULL,
};

static unsigned int iomega_ix2_200_mpp_config[] __initdata = {
	MPP12_GPIO,			/* Reset Button */
	MPP14_GPIO,			/* Power Button */
	MPP15_GPIO,			/* Backup LED (blue) */
	MPP16_GPIO,			/* Power LED (white) */
	MPP35_GPIO,			/* OTB Button */
	MPP36_GPIO,			/* Rebuild LED (white) */
	MPP37_GPIO,			/* Health LED (red) */
	MPP38_GPIO,			/* SATA LED brightness control 1 */
	MPP39_GPIO,			/* SATA LED brightness control 2 */
	MPP40_GPIO,			/* Backup LED brightness control 1 */
	MPP41_GPIO,			/* Backup LED brightness control 2 */
	MPP42_GPIO,			/* Power LED brightness control 1 */
	MPP43_GPIO,			/* Power LED brightness control 2 */
	MPP44_GPIO,			/* Health LED brightness control 1 */
	MPP45_GPIO,			/* Health LED brightness control 2 */
	MPP46_GPIO,			/* Rebuild LED brightness control 1 */
	MPP47_GPIO,			/* Rebuild LED brightness control 2 */
	0
};

void __init iomega_ix2_200_init(void)
{
	/*
	 * Basic setup. Needs to be called early.
	 */
	kirkwood_mpp_conf(iomega_ix2_200_mpp_config);

	kirkwood_ehci_init();

	kirkwood_ge01_init(&iomega_ix2_200_ge00_data);
}