2 * arch/arm/mach-kirkwood/netspace_v2-setup.c
4 * LaCie Network Space v2 board setup
6 * Copyright (C) 2009 Simon Guinot <sguinot@lacie.com>
7 * Copyright (C) 2009 Benoît Canet <benoit.canet@gmail.com>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 #include <linux/kernel.h>
25 #include <linux/init.h>
26 #include <linux/platform_device.h>
27 #include <linux/mtd/physmap.h>
28 #include <linux/spi/flash.h>
29 #include <linux/spi/spi.h>
30 #include <linux/ata_platform.h>
31 #include <linux/mv643xx_eth.h>
32 #include <linux/i2c.h>
33 #include <linux/i2c/at24.h>
34 #include <linux/input.h>
35 #include <linux/gpio.h>
36 #include <linux/gpio_keys.h>
37 #include <linux/leds.h>
38 #include <asm/mach-types.h>
39 #include <asm/mach/arch.h>
40 #include <asm/mach/time.h>
41 #include <mach/kirkwood.h>
42 #include <plat/time.h>
46 /*****************************************************************************
47 * 512KB SPI Flash on Boot Device (MACRONIX MX25L4005)
48 ****************************************************************************/
50 static struct mtd_partition netspace_v2_flash_parts
[] = {
53 .size
= MTDPART_SIZ_FULL
,
55 .mask_flags
= MTD_WRITEABLE
, /* force read-only */
59 static const struct flash_platform_data netspace_v2_flash
= {
62 .parts
= netspace_v2_flash_parts
,
63 .nr_parts
= ARRAY_SIZE(netspace_v2_flash_parts
),
66 static struct spi_board_info __initdata netspace_v2_spi_slave_info
[] = {
69 .platform_data
= &netspace_v2_flash
,
71 .max_speed_hz
= 20000000,
77 /*****************************************************************************
79 ****************************************************************************/
81 static struct mv643xx_eth_platform_data netspace_v2_ge00_data
= {
82 .phy_addr
= MV643XX_ETH_PHY_ADDR(8),
85 /*****************************************************************************
87 ****************************************************************************/
89 static struct at24_platform_data at24c04
= {
90 .byte_len
= SZ_4K
/ 8,
95 * i2c addr | chip | description
96 * 0x50 | HT24LC04 | eeprom (512B)
99 static struct i2c_board_info __initdata netspace_v2_i2c_info
[] = {
101 I2C_BOARD_INFO("24c04", 0x50),
102 .platform_data
= &at24c04
,
106 /*****************************************************************************
108 ****************************************************************************/
110 static struct mv_sata_platform_data netspace_v2_sata_data
= {
114 #define NETSPACE_V2_GPIO_SATA0_POWER 16
115 #define NETSPACE_V2_GPIO_SATA1_POWER 17
117 static void __init
netspace_v2_sata_power_init(void)
121 err
= gpio_request(NETSPACE_V2_GPIO_SATA0_POWER
, "SATA0 power");
123 err
= gpio_direction_output(NETSPACE_V2_GPIO_SATA0_POWER
, 1);
125 gpio_free(NETSPACE_V2_GPIO_SATA0_POWER
);
128 pr_err("netspace_v2: failed to setup SATA0 power\n");
131 /*****************************************************************************
133 ****************************************************************************/
135 #define NETSPACE_V2_PUSH_BUTTON 32
137 static struct gpio_keys_button netspace_v2_buttons
[] = {
140 .gpio
= NETSPACE_V2_PUSH_BUTTON
,
141 .desc
= "Power push button",
146 static struct gpio_keys_platform_data netspace_v2_button_data
= {
147 .buttons
= netspace_v2_buttons
,
148 .nbuttons
= ARRAY_SIZE(netspace_v2_buttons
),
151 static struct platform_device netspace_v2_gpio_buttons
= {
155 .platform_data
= &netspace_v2_button_data
,
159 /*****************************************************************************
161 ****************************************************************************/
164 * The blue front LED is wired to a CPLD and can blink in relation with the
167 * The following array detail the different LED registers and the combination
168 * of their possible values:
170 * cmd_led | slow_led | /SATA active | LED state
175 * 0 | 0 | 0 | blink (rate 300ms)
178 #define NETSPACE_V2_GPIO_RED_LED 12
179 #define NETSPACE_V2_GPIO_BLUE_LED_SLOW 29
180 #define NETSPACE_V2_GPIO_BLUE_LED_CMD 30
183 static struct gpio_led netspace_v2_gpio_led_pins
[] = {
185 .name
= "ns_v2:blue:sata",
186 .default_trigger
= "default-on",
187 .gpio
= NETSPACE_V2_GPIO_BLUE_LED_CMD
,
191 .name
= "ns_v2:red:fail",
192 .gpio
= NETSPACE_V2_GPIO_RED_LED
,
196 static struct gpio_led_platform_data netspace_v2_gpio_leds_data
= {
197 .num_leds
= ARRAY_SIZE(netspace_v2_gpio_led_pins
),
198 .leds
= netspace_v2_gpio_led_pins
,
201 static struct platform_device netspace_v2_gpio_leds
= {
205 .platform_data
= &netspace_v2_gpio_leds_data
,
209 static void __init
netspace_v2_gpio_leds_init(void)
213 /* Configure register slow_led to allow SATA activity LED blinking */
214 err
= gpio_request(NETSPACE_V2_GPIO_BLUE_LED_SLOW
, "blue LED slow");
216 err
= gpio_direction_output(NETSPACE_V2_GPIO_BLUE_LED_SLOW
, 0);
218 gpio_free(NETSPACE_V2_GPIO_BLUE_LED_SLOW
);
221 pr_err("netspace_v2: failed to configure blue LED slow GPIO\n");
223 platform_device_register(&netspace_v2_gpio_leds
);
226 /*****************************************************************************
228 ****************************************************************************/
230 static void netspace_v2_timer_init(void)
232 kirkwood_tclk
= 166666667;
233 orion_time_init(IRQ_KIRKWOOD_BRIDGE
, kirkwood_tclk
);
236 struct sys_timer netspace_v2_timer
= {
237 .init
= netspace_v2_timer_init
,
240 /*****************************************************************************
242 ****************************************************************************/
244 static unsigned int netspace_v2_mpp_config
[] __initdata
= {
256 MPP12_GPO
, /* Red led */
257 MPP14_GPIO
, /* USB fuse */
258 MPP16_GPIO
, /* SATA 0 power */
263 MPP24_GPIO
, /* USB mode select */
264 MPP25_GPIO
, /* Fan rotation fail */
265 MPP26_GPIO
, /* USB device vbus */
266 MPP28_GPIO
, /* USB enable host vbus */
267 MPP29_GPIO
, /* Blue led (slow register) */
268 MPP30_GPIO
, /* Blue led (command register) */
269 MPP31_GPIO
, /* Board power off */
270 MPP32_GPIO
, /* Power button (0 = Released, 1 = Pushed) */
274 #define NETSPACE_V2_GPIO_POWER_OFF 31
276 static void netspace_v2_power_off(void)
278 gpio_set_value(NETSPACE_V2_GPIO_POWER_OFF
, 1);
281 static void __init
netspace_v2_init(void)
284 * Basic setup. Needs to be called early.
287 kirkwood_mpp_conf(netspace_v2_mpp_config
);
289 netspace_v2_sata_power_init();
291 kirkwood_ehci_init();
292 kirkwood_ge00_init(&netspace_v2_ge00_data
);
293 kirkwood_sata_init(&netspace_v2_sata_data
);
294 kirkwood_uart0_init();
295 spi_register_board_info(netspace_v2_spi_slave_info
,
296 ARRAY_SIZE(netspace_v2_spi_slave_info
));
299 i2c_register_board_info(0, netspace_v2_i2c_info
,
300 ARRAY_SIZE(netspace_v2_i2c_info
));
302 netspace_v2_gpio_leds_init();
303 platform_device_register(&netspace_v2_gpio_buttons
);
305 if (gpio_request(NETSPACE_V2_GPIO_POWER_OFF
, "power-off") == 0 &&
306 gpio_direction_output(NETSPACE_V2_GPIO_POWER_OFF
, 0) == 0)
307 pm_power_off
= netspace_v2_power_off
;
309 pr_err("netspace_v2: failed to configure power-off GPIO\n");
312 #ifdef CONFIG_MACH_NETSPACE_V2
313 MACHINE_START(NETSPACE_V2
, "LaCie Network Space v2")
314 .phys_io
= KIRKWOOD_REGS_PHYS_BASE
,
315 .io_pg_offst
= ((KIRKWOOD_REGS_VIRT_BASE
) >> 18) & 0xfffc,
316 .boot_params
= 0x00000100,
317 .init_machine
= netspace_v2_init
,
318 .map_io
= kirkwood_map_io
,
319 .init_irq
= kirkwood_init_irq
,
320 .timer
= &netspace_v2_timer
,
324 #ifdef CONFIG_MACH_INETSPACE_V2
325 MACHINE_START(INETSPACE_V2
, "LaCie Internet Space v2")
326 .phys_io
= KIRKWOOD_REGS_PHYS_BASE
,
327 .io_pg_offst
= ((KIRKWOOD_REGS_VIRT_BASE
) >> 18) & 0xfffc,
328 .boot_params
= 0x00000100,
329 .init_machine
= netspace_v2_init
,
330 .map_io
= kirkwood_map_io
,
331 .init_irq
= kirkwood_init_irq
,
332 .timer
= &netspace_v2_timer
,