blob: 367a9400f53273347481a7713db7a01d1ff327fc [file] [log] [blame]
Martin Michlmayrf3a131b2009-11-05 17:45:32 +00001/*
2 *
3 * QNAP TS-410, TS-410U, TS-419P and TS-419U Turbo NAS Board Setup
4 *
Martin Michlmayrf9afdd32010-05-22 02:23:10 +01005 * Copyright (C) 2009-2010 Martin Michlmayr <tbm@cyrius.com>
Martin Michlmayrf3a131b2009-11-05 17:45:32 +00006 * Copyright (C) 2008 Byron Bradley <byron.bbradley@gmail.com>
7 *
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.
12 */
13
14#include <linux/kernel.h>
15#include <linux/init.h>
16#include <linux/platform_device.h>
Martin Michlmayrf3a131b2009-11-05 17:45:32 +000017#include <linux/i2c.h>
18#include <linux/mv643xx_eth.h>
19#include <linux/ata_platform.h>
Martin Michlmayrf9afdd32010-05-22 02:23:10 +010020#include <linux/gpio.h>
Martin Michlmayrf3a131b2009-11-05 17:45:32 +000021#include <linux/gpio_keys.h>
22#include <linux/input.h>
Thomas Petazzoni060f3d12012-09-11 14:27:19 +020023#include <linux/io.h>
Martin Michlmayrf3a131b2009-11-05 17:45:32 +000024#include <asm/mach-types.h>
25#include <asm/mach/arch.h>
26#include <mach/kirkwood.h>
27#include "common.h"
28#include "mpp.h"
Martin Michlmayr8d27b2f2009-11-05 20:27:46 +000029#include "tsx1x-common.h"
Martin Michlmayrf3a131b2009-11-05 17:45:32 +000030
Nicolas Pitre39249962010-10-21 15:48:33 -040031/* for the PCIe reset workaround */
32#include <plat/pcie.h>
33
34
Martin Michlmayrf9afdd32010-05-22 02:23:10 +010035#define QNAP_TS41X_JUMPER_JP1 45
36
Martin Michlmayrf3a131b2009-11-05 17:45:32 +000037static struct i2c_board_info __initdata qnap_ts41x_i2c_rtc = {
38 I2C_BOARD_INFO("s35390a", 0x30),
39};
40
41static struct mv643xx_eth_platform_data qnap_ts41x_ge00_data = {
42 .phy_addr = MV643XX_ETH_PHY_ADDR(8),
43};
44
45static struct mv643xx_eth_platform_data qnap_ts41x_ge01_data = {
46 .phy_addr = MV643XX_ETH_PHY_ADDR(0),
47};
48
49static struct mv_sata_platform_data qnap_ts41x_sata_data = {
50 .n_ports = 2,
51};
52
53static struct gpio_keys_button qnap_ts41x_buttons[] = {
54 {
55 .code = KEY_COPY,
56 .gpio = 43,
57 .desc = "USB Copy",
58 .active_low = 1,
59 },
60 {
61 .code = KEY_RESTART,
62 .gpio = 37,
63 .desc = "Reset",
64 .active_low = 1,
65 },
66};
67
68static struct gpio_keys_platform_data qnap_ts41x_button_data = {
69 .buttons = qnap_ts41x_buttons,
70 .nbuttons = ARRAY_SIZE(qnap_ts41x_buttons),
71};
72
73static struct platform_device qnap_ts41x_button_device = {
74 .name = "gpio-keys",
75 .id = -1,
76 .num_resources = 0,
77 .dev = {
78 .platform_data = &qnap_ts41x_button_data,
79 }
80};
81
82static unsigned int qnap_ts41x_mpp_config[] __initdata = {
83 MPP0_SPI_SCn,
84 MPP1_SPI_MOSI,
85 MPP2_SPI_SCK,
86 MPP3_SPI_MISO,
87 MPP6_SYSRST_OUTn,
88 MPP7_PEX_RST_OUTn,
Benjamin Zores266a2452010-06-08 10:00:22 +020089 MPP8_TW0_SDA,
90 MPP9_TW0_SCK,
Martin Michlmayrf3a131b2009-11-05 17:45:32 +000091 MPP10_UART0_TXD,
92 MPP11_UART0_RXD,
93 MPP13_UART1_TXD, /* PIC controller */
94 MPP14_UART1_RXD, /* PIC controller */
95 MPP15_SATA0_ACTn,
96 MPP16_SATA1_ACTn,
Benjamin Zores266a2452010-06-08 10:00:22 +020097 MPP20_GE1_TXD0,
98 MPP21_GE1_TXD1,
99 MPP22_GE1_TXD2,
100 MPP23_GE1_TXD3,
101 MPP24_GE1_RXD0,
102 MPP25_GE1_RXD1,
103 MPP26_GE1_RXD2,
104 MPP27_GE1_RXD3,
105 MPP30_GE1_RXCTL,
106 MPP31_GE1_RXCLK,
107 MPP32_GE1_TCLKOUT,
108 MPP33_GE1_TXCTL,
Martin Michlmayrf3a131b2009-11-05 17:45:32 +0000109 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 */
Martin Michlmayr9e1d9342010-05-25 18:20:14 +0100113 MPP45_GPIO, /* JP1: 0: LCD, 1: serial console */
Martin Michlmayrf3a131b2009-11-05 17:45:32 +0000114 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 */
118 0
119};
120
Martin Michlmayrf3a131b2009-11-05 17:45:32 +0000121static void __init qnap_ts41x_init(void)
122{
Martin Michlmayrce56d162010-12-06 21:53:16 +0000123 u32 dev, rev;
124
Martin Michlmayrf3a131b2009-11-05 17:45:32 +0000125 /*
126 * Basic setup. Needs to be called early.
127 */
128 kirkwood_init();
129 kirkwood_mpp_conf(qnap_ts41x_mpp_config);
130
131 kirkwood_uart0_init();
132 kirkwood_uart1_init(); /* A PIC controller is connected here. */
Martin Michlmayr8d27b2f2009-11-05 20:27:46 +0000133 qnap_tsx1x_register_flash();
Martin Michlmayrf3a131b2009-11-05 17:45:32 +0000134 kirkwood_i2c_init();
135 i2c_register_board_info(0, &qnap_ts41x_i2c_rtc, 1);
Martin Michlmayrce56d162010-12-06 21:53:16 +0000136
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);
141 }
Martin Michlmayrf3a131b2009-11-05 17:45:32 +0000142 kirkwood_ge00_init(&qnap_ts41x_ge00_data);
143 kirkwood_ge01_init(&qnap_ts41x_ge01_data);
Martin Michlmayrce56d162010-12-06 21:53:16 +0000144
Martin Michlmayrf3a131b2009-11-05 17:45:32 +0000145 kirkwood_sata_init(&qnap_ts41x_sata_data);
146 kirkwood_ehci_init();
147 platform_device_register(&qnap_ts41x_button_device);
148
Martin Michlmayr8d27b2f2009-11-05 20:27:46 +0000149 pm_power_off = qnap_tsx1x_power_off;
Martin Michlmayrf3a131b2009-11-05 17:45:32 +0000150
Martin Michlmayrf9afdd32010-05-22 02:23:10 +0100151 if (gpio_request(QNAP_TS41X_JUMPER_JP1, "JP1") == 0)
152 gpio_export(QNAP_TS41X_JUMPER_JP1, 0);
Martin Michlmayrf3a131b2009-11-05 17:45:32 +0000153}
154
155static int __init ts41x_pci_init(void)
156{
Nicolas Pitre39249962010-10-21 15:48:33 -0400157 if (machine_is_ts41x()) {
Zintis PÄ“tersons1ab69622011-02-14 18:38:13 +0200158 u32 dev, rev;
159
Nicolas Pitre39249962010-10-21 15:48:33 -0400160 /*
161 * Without this explicit reset, the PCIe SATA controller
162 * (Marvell 88sx7042/sata_mv) is known to stop working
163 * after a few minutes.
164 */
Thomas Petazzoni060f3d12012-09-11 14:27:19 +0200165 orion_pcie_reset(PCIE_VIRT_BASE);
Nicolas Pitre39249962010-10-21 15:48:33 -0400166
Zintis PÄ“tersons1ab69622011-02-14 18:38:13 +0200167 kirkwood_pcie_id(&dev, &rev);
168 if (dev == MV88F6282_DEV_ID)
169 kirkwood_pcie_init(KW_PCIE1 | KW_PCIE0);
170 else
171 kirkwood_pcie_init(KW_PCIE0);
Nicolas Pitre39249962010-10-21 15:48:33 -0400172 }
Martin Michlmayrf3a131b2009-11-05 17:45:32 +0000173
174 return 0;
175}
176subsys_initcall(ts41x_pci_init);
177
178MACHINE_START(TS41X, "QNAP TS-41x")
179 /* Maintainer: Martin Michlmayr <tbm@cyrius.com> */
Nicolas Pitre1b7bd282011-07-05 22:38:13 -0400180 .atag_offset = 0x100,
Martin Michlmayrf3a131b2009-11-05 17:45:32 +0000181 .init_machine = qnap_ts41x_init,
182 .map_io = kirkwood_map_io,
Lennert Buytenhek4ee1f6b2010-10-15 16:50:26 +0200183 .init_early = kirkwood_init_early,
Martin Michlmayrf3a131b2009-11-05 17:45:32 +0000184 .init_irq = kirkwood_init_irq,
185 .timer = &kirkwood_timer,
Russell Kingcb15dff2011-11-05 10:03:47 +0000186 .restart = kirkwood_restart,
Martin Michlmayrf3a131b2009-11-05 17:45:32 +0000187MACHINE_END