3 * QNAP TS-410, TS-410U, TS-419P and TS-419U Turbo NAS Board Setup
5 * Copyright (C) 2009-2010 Martin Michlmayr <tbm@cyrius.com>
6 * Copyright (C) 2008 Byron Bradley <byron.bbradley@gmail.com>
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version
11 * 2 of the License, or (at your option) any later version.
14 #include <linux/kernel.h>
15 #include <linux/init.h>
16 #include <linux/platform_device.h>
17 #include <linux/i2c.h>
18 #include <linux/mv643xx_eth.h>
19 #include <linux/ata_platform.h>
20 #include <linux/gpio.h>
21 #include <linux/gpio_keys.h>
22 #include <linux/input.h>
24 #include <asm/mach-types.h>
25 #include <asm/mach/arch.h>
26 #include <mach/kirkwood.h>
29 #include "tsx1x-common.h"
31 /* for the PCIe reset workaround */
32 #include <plat/pcie.h>
35 #define QNAP_TS41X_JUMPER_JP1 45
37 static struct i2c_board_info __initdata qnap_ts41x_i2c_rtc
= {
38 I2C_BOARD_INFO("s35390a", 0x30),
41 static struct mv643xx_eth_platform_data qnap_ts41x_ge00_data
= {
42 .phy_addr
= MV643XX_ETH_PHY_ADDR(8),
45 static struct mv643xx_eth_platform_data qnap_ts41x_ge01_data
= {
46 .phy_addr
= MV643XX_ETH_PHY_ADDR(0),
49 static struct mv_sata_platform_data qnap_ts41x_sata_data
= {
53 static struct gpio_keys_button qnap_ts41x_buttons
[] = {
68 static struct gpio_keys_platform_data qnap_ts41x_button_data
= {
69 .buttons
= qnap_ts41x_buttons
,
70 .nbuttons
= ARRAY_SIZE(qnap_ts41x_buttons
),
73 static struct platform_device qnap_ts41x_button_device
= {
78 .platform_data
= &qnap_ts41x_button_data
,
82 static unsigned int qnap_ts41x_mpp_config
[] __initdata
= {
93 MPP13_UART1_TXD
, /* PIC controller */
94 MPP14_UART1_RXD
, /* PIC controller */
109 MPP36_GPIO
, /* RAM: 0: 256 MB, 1: 512 MB */
110 MPP37_GPIO
, /* Reset button */
111 MPP43_GPIO
, /* USB Copy button */
112 MPP44_GPIO
, /* Board ID: 0: TS-419U, 1: TS-419 */
113 MPP45_GPIO
, /* JP1: 0: LCD, 1: serial console */
114 MPP46_GPIO
, /* External SATA HDD1 error indicator */
115 MPP47_GPIO
, /* External SATA HDD2 error indicator */
116 MPP48_GPIO
, /* External SATA HDD3 error indicator */
117 MPP49_GPIO
, /* External SATA HDD4 error indicator */
121 static void __init
qnap_ts41x_init(void)
126 * Basic setup. Needs to be called early.
129 kirkwood_mpp_conf(qnap_ts41x_mpp_config
);
131 kirkwood_uart0_init();
132 kirkwood_uart1_init(); /* A PIC controller is connected here. */
133 qnap_tsx1x_register_flash();
135 i2c_register_board_info(0, &qnap_ts41x_i2c_rtc
, 1);
137 kirkwood_pcie_id(&dev
, &rev
);
138 if (dev
== MV88F6282_DEV_ID
) {
139 qnap_ts41x_ge00_data
.phy_addr
= MV643XX_ETH_PHY_ADDR(0);
140 qnap_ts41x_ge01_data
.phy_addr
= MV643XX_ETH_PHY_ADDR(1);
142 kirkwood_ge00_init(&qnap_ts41x_ge00_data
);
143 kirkwood_ge01_init(&qnap_ts41x_ge01_data
);
145 kirkwood_sata_init(&qnap_ts41x_sata_data
);
146 kirkwood_ehci_init();
147 platform_device_register(&qnap_ts41x_button_device
);
149 pm_power_off
= qnap_tsx1x_power_off
;
151 if (gpio_request(QNAP_TS41X_JUMPER_JP1
, "JP1") == 0)
152 gpio_export(QNAP_TS41X_JUMPER_JP1
, 0);
155 static int __init
ts41x_pci_init(void)
157 if (machine_is_ts41x()) {
161 * Without this explicit reset, the PCIe SATA controller
162 * (Marvell 88sx7042/sata_mv) is known to stop working
163 * after a few minutes.
165 orion_pcie_reset(PCIE_VIRT_BASE
);
167 kirkwood_pcie_id(&dev
, &rev
);
168 if (dev
== MV88F6282_DEV_ID
)
169 kirkwood_pcie_init(KW_PCIE1
| KW_PCIE0
);
171 kirkwood_pcie_init(KW_PCIE0
);
175 subsys_initcall(ts41x_pci_init
);
177 MACHINE_START(TS41X
, "QNAP TS-41x")
178 /* Maintainer: Martin Michlmayr <tbm@cyrius.com> */
179 .atag_offset
= 0x100,
180 .init_machine
= qnap_ts41x_init
,
181 .map_io
= kirkwood_map_io
,
182 .init_early
= kirkwood_init_early
,
183 .init_irq
= kirkwood_init_irq
,
184 .init_time
= kirkwood_timer_init
,
185 .restart
= kirkwood_restart
,