ACPI: Fix CONFIG_ACPI_DOCK=n compiler warning
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / arm / mach-kirkwood / lacie_v2-common.c
blob285edab776e9f5f389be444c343d7246694058ea
1 /*
2 * arch/arm/mach-kirkwood/lacie_v2-common.c
4 * This file is licensed under the terms of the GNU General Public
5 * License version 2. This program is licensed "as is" without any
6 * warranty of any kind, whether express or implied.
7 */
9 #include <linux/kernel.h>
10 #include <linux/init.h>
11 #include <linux/mtd/physmap.h>
12 #include <linux/spi/flash.h>
13 #include <linux/spi/spi.h>
14 #include <linux/i2c.h>
15 #include <linux/i2c/at24.h>
16 #include <linux/gpio.h>
17 #include <asm/mach/time.h>
18 #include <mach/kirkwood.h>
19 #include <mach/irqs.h>
20 #include <plat/time.h>
21 #include "common.h"
23 /*****************************************************************************
24 * 512KB SPI Flash on Boot Device (MACRONIX MX25L4005)
25 ****************************************************************************/
27 static struct mtd_partition lacie_v2_flash_parts[] = {
29 .name = "u-boot",
30 .size = MTDPART_SIZ_FULL,
31 .offset = 0,
32 .mask_flags = MTD_WRITEABLE, /* force read-only */
36 static const struct flash_platform_data lacie_v2_flash = {
37 .type = "mx25l4005a",
38 .name = "spi_flash",
39 .parts = lacie_v2_flash_parts,
40 .nr_parts = ARRAY_SIZE(lacie_v2_flash_parts),
43 static struct spi_board_info __initdata lacie_v2_spi_slave_info[] = {
45 .modalias = "m25p80",
46 .platform_data = &lacie_v2_flash,
47 .irq = -1,
48 .max_speed_hz = 20000000,
49 .bus_num = 0,
50 .chip_select = 0,
54 void __init lacie_v2_register_flash(void)
56 spi_register_board_info(lacie_v2_spi_slave_info,
57 ARRAY_SIZE(lacie_v2_spi_slave_info));
58 kirkwood_spi_init();
61 /*****************************************************************************
62 * I2C devices
63 ****************************************************************************/
65 static struct at24_platform_data at24c04 = {
66 .byte_len = SZ_4K / 8,
67 .page_size = 16,
71 * i2c addr | chip | description
72 * 0x50 | HT24LC04 | eeprom (512B)
75 static struct i2c_board_info __initdata lacie_v2_i2c_info[] = {
77 I2C_BOARD_INFO("24c04", 0x50),
78 .platform_data = &at24c04,
82 void __init lacie_v2_register_i2c_devices(void)
84 kirkwood_i2c_init();
85 i2c_register_board_info(0, lacie_v2_i2c_info,
86 ARRAY_SIZE(lacie_v2_i2c_info));
89 /*****************************************************************************
90 * Hard Disk power
91 ****************************************************************************/
93 static int __initdata lacie_v2_gpio_hdd_power[] = { 16, 17, 41, 42, 43 };
95 void __init lacie_v2_hdd_power_init(int hdd_num)
97 int i;
98 int err;
100 /* Power up all hard disks. */
101 for (i = 0; i < hdd_num; i++) {
102 err = gpio_request(lacie_v2_gpio_hdd_power[i], NULL);
103 if (err == 0) {
104 err = gpio_direction_output(
105 lacie_v2_gpio_hdd_power[i], 1);
106 /* Free the HDD power GPIOs. This allow user-space to
107 * configure them via the gpiolib sysfs interface. */
108 gpio_free(lacie_v2_gpio_hdd_power[i]);
110 if (err)
111 pr_err("Failed to power up HDD%d\n", i + 1);