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.
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>
23 /*****************************************************************************
24 * 512KB SPI Flash on Boot Device (MACRONIX MX25L4005)
25 ****************************************************************************/
27 static struct mtd_partition lacie_v2_flash_parts
[] = {
30 .size
= MTDPART_SIZ_FULL
,
32 .mask_flags
= MTD_WRITEABLE
, /* force read-only */
36 static const struct flash_platform_data lacie_v2_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
[] = {
46 .platform_data
= &lacie_v2_flash
,
48 .max_speed_hz
= 20000000,
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
));
61 /*****************************************************************************
63 ****************************************************************************/
65 static struct at24_platform_data at24c04
= {
66 .byte_len
= SZ_4K
/ 8,
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)
85 i2c_register_board_info(0, lacie_v2_i2c_info
,
86 ARRAY_SIZE(lacie_v2_i2c_info
));
89 /*****************************************************************************
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
)
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
);
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
]);
111 pr_err("Failed to power up HDD%d\n", i
+ 1);