2 * arch/arm/mach-orion5x/d2net-setup.c
4 * LaCie d2Network and Big Disk Network NAS setup
6 * Copyright (C) 2009 Simon Guinot <sguinot@lacie.com>
8 * This file is licensed under the terms of the GNU General Public
9 * License version 2. This program is licensed "as is" without any
10 * warranty of any kind, whether express or implied.
13 #include <linux/kernel.h>
14 #include <linux/init.h>
15 #include <linux/platform_device.h>
16 #include <linux/pci.h>
17 #include <linux/irq.h>
18 #include <linux/mtd/physmap.h>
19 #include <linux/mv643xx_eth.h>
20 #include <linux/leds.h>
21 #include <linux/gpio_keys.h>
22 #include <linux/input.h>
23 #include <linux/i2c.h>
24 #include <linux/ata_platform.h>
25 #include <linux/gpio.h>
26 #include <asm/mach-types.h>
27 #include <asm/mach/arch.h>
28 #include <asm/mach/pci.h>
29 #include <mach/orion5x.h>
33 /*****************************************************************************
34 * LaCie d2 Network Info
35 ****************************************************************************/
38 * 512KB NOR flash Device bus boot chip select
41 #define D2NET_NOR_BOOT_BASE 0xfff80000
42 #define D2NET_NOR_BOOT_SIZE SZ_512K
44 /*****************************************************************************
45 * 512KB NOR Flash on Boot Device
46 ****************************************************************************/
49 * TODO: Check write support on flash MX29LV400CBTC-70G
52 static struct mtd_partition d2net_partitions
[] = {
55 .size
= MTDPART_SIZ_FULL
,
57 .mask_flags
= MTD_WRITEABLE
,
61 static struct physmap_flash_data d2net_nor_flash_data
= {
63 .parts
= d2net_partitions
,
64 .nr_parts
= ARRAY_SIZE(d2net_partitions
),
67 static struct resource d2net_nor_flash_resource
= {
68 .flags
= IORESOURCE_MEM
,
69 .start
= D2NET_NOR_BOOT_BASE
,
70 .end
= D2NET_NOR_BOOT_BASE
71 + D2NET_NOR_BOOT_SIZE
- 1,
74 static struct platform_device d2net_nor_flash
= {
75 .name
= "physmap-flash",
78 .platform_data
= &d2net_nor_flash_data
,
81 .resource
= &d2net_nor_flash_resource
,
84 /*****************************************************************************
86 ****************************************************************************/
88 static struct mv643xx_eth_platform_data d2net_eth_data
= {
89 .phy_addr
= MV643XX_ETH_PHY_ADDR(8),
92 /*****************************************************************************
94 ****************************************************************************/
97 * i2c addr | chip | description
98 * 0x32 | Ricoh 5C372b | RTC
99 * 0x3e | GMT G762 | PWM fan controller
100 * 0x50 | HT24LC08 | eeprom (1kB)
102 * TODO: Add G762 support to the g760a driver.
104 static struct i2c_board_info __initdata d2net_i2c_devices
[] = {
106 I2C_BOARD_INFO("rs5c372b", 0x32),
108 I2C_BOARD_INFO("24c08", 0x50),
112 /*****************************************************************************
114 ****************************************************************************/
116 static struct mv_sata_platform_data d2net_sata_data
= {
120 #define D2NET_GPIO_SATA0_POWER 3
121 #define D2NET_GPIO_SATA1_POWER 12
123 static void __init
d2net_sata_power_init(void)
127 err
= gpio_request(D2NET_GPIO_SATA0_POWER
, "SATA0 power");
129 err
= gpio_direction_output(D2NET_GPIO_SATA0_POWER
, 1);
131 gpio_free(D2NET_GPIO_SATA0_POWER
);
134 pr_err("d2net: failed to configure SATA0 power GPIO\n");
136 err
= gpio_request(D2NET_GPIO_SATA1_POWER
, "SATA1 power");
138 err
= gpio_direction_output(D2NET_GPIO_SATA1_POWER
, 1);
140 gpio_free(D2NET_GPIO_SATA1_POWER
);
143 pr_err("d2net: failed to configure SATA1 power GPIO\n");
146 /*****************************************************************************
148 ****************************************************************************/
151 * The blue front LED is wired to the CPLD and can blink in relation with the
154 * The following array detail the different LED registers and the combination
155 * of their possible values:
157 * led_off | blink_ctrl | SATA active | LED state
161 * 0 | 1 | 0 | blink (rate 300ms)
164 * Notes: The blue and the red front LED's can't be on at the same time.
165 * Red LED have priority.
168 #define D2NET_GPIO_RED_LED 6
169 #define D2NET_GPIO_BLUE_LED_BLINK_CTRL 16
170 #define D2NET_GPIO_BLUE_LED_OFF 23
172 static struct gpio_led d2net_leds
[] = {
174 .name
= "d2net:blue:sata",
175 .default_trigger
= "default-on",
176 .gpio
= D2NET_GPIO_BLUE_LED_OFF
,
180 .name
= "d2net:red:fail",
181 .gpio
= D2NET_GPIO_RED_LED
,
185 static struct gpio_led_platform_data d2net_led_data
= {
186 .num_leds
= ARRAY_SIZE(d2net_leds
),
190 static struct platform_device d2net_gpio_leds
= {
194 .platform_data
= &d2net_led_data
,
198 static void __init
d2net_gpio_leds_init(void)
202 /* Configure GPIO over MPP max number. */
203 orion_gpio_set_valid(D2NET_GPIO_BLUE_LED_OFF
, 1);
205 /* Configure register blink_ctrl to allow SATA activity LED blinking. */
206 err
= gpio_request(D2NET_GPIO_BLUE_LED_BLINK_CTRL
, "blue LED blink");
208 err
= gpio_direction_output(D2NET_GPIO_BLUE_LED_BLINK_CTRL
, 1);
210 gpio_free(D2NET_GPIO_BLUE_LED_BLINK_CTRL
);
213 pr_err("d2net: failed to configure blue LED blink GPIO\n");
215 platform_device_register(&d2net_gpio_leds
);
218 /****************************************************************************
220 ****************************************************************************/
222 #define D2NET_GPIO_PUSH_BUTTON 18
223 #define D2NET_GPIO_POWER_SWITCH_ON 8
224 #define D2NET_GPIO_POWER_SWITCH_OFF 9
226 #define D2NET_SWITCH_POWER_ON 0x1
227 #define D2NET_SWITCH_POWER_OFF 0x2
229 static struct gpio_keys_button d2net_buttons
[] = {
232 .code
= D2NET_SWITCH_POWER_OFF
,
233 .gpio
= D2NET_GPIO_POWER_SWITCH_OFF
,
234 .desc
= "Power rocker switch (auto|off)",
239 .code
= D2NET_SWITCH_POWER_ON
,
240 .gpio
= D2NET_GPIO_POWER_SWITCH_ON
,
241 .desc
= "Power rocker switch (on|auto)",
247 .gpio
= D2NET_GPIO_PUSH_BUTTON
,
248 .desc
= "Front Push Button",
253 static struct gpio_keys_platform_data d2net_button_data
= {
254 .buttons
= d2net_buttons
,
255 .nbuttons
= ARRAY_SIZE(d2net_buttons
),
258 static struct platform_device d2net_gpio_buttons
= {
262 .platform_data
= &d2net_button_data
,
266 /*****************************************************************************
268 ****************************************************************************/
270 static unsigned int d2net_mpp_modes
[] __initdata
= {
271 MPP0_GPIO
, /* Board ID (bit 0) */
272 MPP1_GPIO
, /* Board ID (bit 1) */
273 MPP2_GPIO
, /* Board ID (bit 2) */
274 MPP3_GPIO
, /* SATA 0 power */
276 MPP5_GPIO
, /* Fan fail detection */
277 MPP6_GPIO
, /* Red front LED */
279 MPP8_GPIO
, /* Rear power switch (on|auto) */
280 MPP9_GPIO
, /* Rear power switch (auto|off) */
283 MPP12_GPIO
, /* SATA 1 power */
285 MPP14_SATA_LED
, /* SATA 0 active */
286 MPP15_SATA_LED
, /* SATA 1 active */
287 MPP16_GPIO
, /* Blue front LED blink control */
289 MPP18_GPIO
, /* Front button (0 = Released, 1 = Pushed ) */
292 /* 22: USB port 1 fuse (0 = Fail, 1 = Ok) */
293 /* 23: Blue front LED off */
294 /* 24: Inhibit board power off (0 = Disabled, 1 = Enabled) */
297 #define D2NET_GPIO_INHIBIT_POWER_OFF 24
299 static void __init
d2net_init(void)
302 * Setup basic Orion functions. Need to be called early.
306 orion5x_mpp_conf(d2net_mpp_modes
);
309 * Configure peripherals.
311 orion5x_ehci0_init();
312 orion5x_eth_init(&d2net_eth_data
);
314 orion5x_uart0_init();
316 d2net_sata_power_init();
317 orion5x_sata_init(&d2net_sata_data
);
319 orion5x_setup_dev_boot_win(D2NET_NOR_BOOT_BASE
,
320 D2NET_NOR_BOOT_SIZE
);
321 platform_device_register(&d2net_nor_flash
);
323 platform_device_register(&d2net_gpio_buttons
);
325 d2net_gpio_leds_init();
327 pr_notice("d2net: Flash write are not yet supported.\n");
329 i2c_register_board_info(0, d2net_i2c_devices
,
330 ARRAY_SIZE(d2net_i2c_devices
));
332 orion_gpio_set_valid(D2NET_GPIO_INHIBIT_POWER_OFF
, 1);
335 /* Warning: LaCie use a wrong mach-type (0x20e=526) in their bootloader. */
337 #ifdef CONFIG_MACH_D2NET
338 MACHINE_START(D2NET
, "LaCie d2 Network")
339 .atag_offset
= 0x100,
340 .init_machine
= d2net_init
,
341 .map_io
= orion5x_map_io
,
342 .init_early
= orion5x_init_early
,
343 .init_irq
= orion5x_init_irq
,
344 .timer
= &orion5x_timer
,
345 .fixup
= tag_fixup_mem32
,
349 #ifdef CONFIG_MACH_BIGDISK
350 MACHINE_START(BIGDISK
, "LaCie Big Disk Network")
351 .atag_offset
= 0x100,
352 .init_machine
= d2net_init
,
353 .map_io
= orion5x_map_io
,
354 .init_early
= orion5x_init_early
,
355 .init_irq
= orion5x_init_irq
,
356 .timer
= &orion5x_timer
,
357 .fixup
= tag_fixup_mem32
,