2 * Copyright 2012 (C), Simon Guinot <simon.guinot@sequanux.org>
4 * arch/arm/mach-kirkwood/board-ns2.c
6 * LaCie Network Space v2 board (and parents) initialization for drivers
7 * not converted to flattened device tree yet.
9 * This file is licensed under the terms of the GNU General Public
10 * License version 2. This program is licensed "as is" without any
11 * warranty of any kind, whether express or implied.
14 #include <linux/kernel.h>
15 #include <linux/init.h>
16 #include <linux/platform_device.h>
17 #include <linux/mv643xx_eth.h>
18 #include <linux/gpio.h>
23 static struct mv643xx_eth_platform_data ns2_ge00_data
= {
24 .phy_addr
= MV643XX_ETH_PHY_ADDR(8),
27 static unsigned int ns2_mpp_config
[] __initdata
= {
35 MPP7_GPO
, /* Fan speed (bit 1) */
40 MPP12_GPO
, /* Red led */
41 MPP14_GPIO
, /* USB fuse */
42 MPP16_GPIO
, /* SATA 0 power */
43 MPP17_GPIO
, /* SATA 1 power */
48 MPP22_GPIO
, /* Fan speed (bit 0) */
49 MPP23_GPIO
, /* Fan power */
50 MPP24_GPIO
, /* USB mode select */
51 MPP25_GPIO
, /* Fan rotation fail */
52 MPP26_GPIO
, /* USB device vbus */
53 MPP28_GPIO
, /* USB enable host vbus */
54 MPP29_GPIO
, /* Blue led (slow register) */
55 MPP30_GPIO
, /* Blue led (command register) */
56 MPP31_GPIO
, /* Board power off */
57 MPP32_GPIO
, /* Power button (0 = Released, 1 = Pushed) */
58 MPP33_GPO
, /* Fan speed (bit 2) */
62 #define NS2_GPIO_POWER_OFF 31
64 static void ns2_power_off(void)
66 gpio_set_value(NS2_GPIO_POWER_OFF
, 1);
69 void __init
ns2_init(void)
72 * Basic setup. Needs to be called early.
74 kirkwood_mpp_conf(ns2_mpp_config
);
76 if (of_machine_is_compatible("lacie,netspace_lite_v2") ||
77 of_machine_is_compatible("lacie,netspace_mini_v2"))
78 ns2_ge00_data
.phy_addr
= MV643XX_ETH_PHY_ADDR(0);
79 kirkwood_ge00_init(&ns2_ge00_data
);
81 if (gpio_request(NS2_GPIO_POWER_OFF
, "power-off") == 0 &&
82 gpio_direction_output(NS2_GPIO_POWER_OFF
, 0) == 0)
83 pm_power_off
= ns2_power_off
;
85 pr_err("ns2: failed to configure power-off GPIO\n");