blob: 1b870e6def0cf54b5ea692e5e244a7d69a187b61 [file] [log] [blame]
Ryan Mallon064baac2010-07-06 21:48:53 +01001/*
2 * linux/arch/arm/mach-at91/board-snapper9260.c
3 *
4 * Copyright (C) 2010 Bluewater System Ltd
5 *
6 * Author: Andre Renaud <andre@bluewatersys.com>
Ryan Mallon1c5454e2011-06-15 14:45:36 +10007 * Author: Ryan Mallon
Ryan Mallon064baac2010-07-06 21:48:53 +01008 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 *
23 */
24
25#include <linux/init.h>
26#include <linux/gpio.h>
27#include <linux/platform_device.h>
28#include <linux/spi/spi.h>
Vivien Didelot58774572013-08-29 15:24:14 -040029#include <linux/platform_data/pca953x.h>
Ryan Mallon064baac2010-07-06 21:48:53 +010030
31#include <asm/mach-types.h>
32#include <asm/mach/arch.h>
33
34#include <mach/hardware.h>
Ryan Mallon064baac2010-07-06 21:48:53 +010035#include <mach/at91sam9_smc.h>
36
Jean-Christophe PLAGNIOL-VILLARDa510b9b2012-10-30 06:41:28 +080037#include "at91_aic.h"
Jean-Christophe PLAGNIOL-VILLARD43d2f532012-10-30 05:14:17 +080038#include "board.h"
Ryan Mallon064baac2010-07-06 21:48:53 +010039#include "sam9_smc.h"
40#include "generic.h"
Linus Walleijcf2e9332014-03-27 14:18:51 +010041#include "gpio.h"
Ryan Mallon064baac2010-07-06 21:48:53 +010042
43#define SNAPPER9260_IO_EXP_GPIO(x) (NR_BUILTIN_GPIO + (x))
44
Jean-Christophe PLAGNIOL-VILLARD1b021a32011-04-28 20:19:32 +080045static void __init snapper9260_init_early(void)
Ryan Mallon064baac2010-07-06 21:48:53 +010046{
Jean-Christophe PLAGNIOL-VILLARD21d08b92011-04-23 15:28:34 +080047 at91_initialize(18432000);
Ryan Mallon064baac2010-07-06 21:48:53 +010048}
49
Ryan Mallon064baac2010-07-06 21:48:53 +010050static struct at91_usbh_data __initdata snapper9260_usbh_data = {
51 .ports = 2,
Jean-Christophe PLAGNIOL-VILLARD63b4c292011-11-25 01:51:06 +080052 .vbus_pin = {-EINVAL, -EINVAL},
53 .overcurrent_pin= {-EINVAL, -EINVAL},
Ryan Mallon064baac2010-07-06 21:48:53 +010054};
55
56static struct at91_udc_data __initdata snapper9260_udc_data = {
57 .vbus_pin = SNAPPER9260_IO_EXP_GPIO(5),
58 .vbus_active_low = 1,
59 .vbus_polled = 1,
Jean-Christophe PLAGNIOL-VILLARD63b4c292011-11-25 01:51:06 +080060 .pullup_pin = -EINVAL,
Ryan Mallon064baac2010-07-06 21:48:53 +010061};
62
Jamie Iles84e0cdb2011-03-08 20:17:06 +000063static struct macb_platform_data snapper9260_macb_data = {
Jean-Christophe PLAGNIOL-VILLARD63b4c292011-11-25 01:51:06 +080064 .phy_irq_pin = -EINVAL,
Ryan Mallon064baac2010-07-06 21:48:53 +010065 .is_rmii = 1,
66};
67
68static struct mtd_partition __initdata snapper9260_nand_partitions[] = {
69 {
70 .name = "Preboot",
71 .offset = 0,
72 .size = SZ_128K,
73 },
74 {
75 .name = "Bootloader",
76 .offset = MTDPART_OFS_APPEND,
77 .size = SZ_256K,
78 },
79 {
80 .name = "Environment",
81 .offset = MTDPART_OFS_APPEND,
82 .size = SZ_128K,
83 },
84 {
85 .name = "Kernel",
86 .offset = MTDPART_OFS_APPEND,
87 .size = SZ_4M,
88 },
89 {
90 .name = "Filesystem",
91 .offset = MTDPART_OFS_APPEND,
92 .size = MTDPART_SIZ_FULL,
93 },
94};
95
Ryan Mallon064baac2010-07-06 21:48:53 +010096static struct atmel_nand_data __initdata snapper9260_nand_data = {
97 .ale = 21,
98 .cle = 22,
99 .rdy_pin = AT91_PIN_PC13,
Dmitry Eremin-Solenikov1754aab2011-05-29 17:49:22 +0400100 .parts = snapper9260_nand_partitions,
101 .num_parts = ARRAY_SIZE(snapper9260_nand_partitions),
Ryan Mallon064baac2010-07-06 21:48:53 +0100102 .bus_width_16 = 0,
Jean-Christophe PLAGNIOL-VILLARD63b4c292011-11-25 01:51:06 +0800103 .enable_pin = -EINVAL,
104 .det_pin = -EINVAL,
Jean-Christophe PLAGNIOL-VILLARDbf4289c2011-12-29 14:43:24 +0800105 .ecc_mode = NAND_ECC_SOFT,
Ryan Mallon064baac2010-07-06 21:48:53 +0100106};
107
108static struct sam9_smc_config __initdata snapper9260_nand_smc_config = {
109 .ncs_read_setup = 0,
110 .nrd_setup = 0,
111 .ncs_write_setup = 0,
112 .nwe_setup = 0,
113
114 .ncs_read_pulse = 5,
115 .nrd_pulse = 2,
116 .ncs_write_pulse = 5,
117 .nwe_pulse = 2,
118
119 .read_cycle = 7,
120 .write_cycle = 7,
121
122 .mode = (AT91_SMC_READMODE | AT91_SMC_WRITEMODE |
123 AT91_SMC_EXNWMODE_DISABLE),
124 .tdf_cycles = 1,
125};
126
127static struct pca953x_platform_data snapper9260_io_expander_data = {
128 .gpio_base = SNAPPER9260_IO_EXP_GPIO(0),
129};
130
131static struct i2c_board_info __initdata snapper9260_i2c_devices[] = {
132 {
133 /* IO expander */
134 I2C_BOARD_INFO("max7312", 0x28),
135 .platform_data = &snapper9260_io_expander_data,
136 },
137 {
138 /* Audio codec */
139 I2C_BOARD_INFO("tlv320aic23", 0x1a),
140 },
Nicolas Ferrefe5e0792012-02-11 20:48:52 +0100141};
142
143static struct i2c_board_info __initdata snapper9260_i2c_isl1208 = {
Ryan Mallon064baac2010-07-06 21:48:53 +0100144 /* RTC */
145 I2C_BOARD_INFO("isl1208", 0x6f),
Ryan Mallon064baac2010-07-06 21:48:53 +0100146};
147
148static void __init snapper9260_add_device_nand(void)
149{
150 at91_set_A_periph(AT91_PIN_PC14, 0);
Jean-Christophe PLAGNIOL-VILLARDfaee0cc2011-10-14 01:37:09 +0800151 sam9_smc_configure(0, 3, &snapper9260_nand_smc_config);
Ryan Mallon064baac2010-07-06 21:48:53 +0100152 at91_add_device_nand(&snapper9260_nand_data);
153}
154
155static void __init snapper9260_board_init(void)
156{
157 at91_add_device_i2c(snapper9260_i2c_devices,
158 ARRAY_SIZE(snapper9260_i2c_devices));
Nicolas Ferrefe5e0792012-02-11 20:48:52 +0100159
160 snapper9260_i2c_isl1208.irq = gpio_to_irq(AT91_PIN_PA31);
161 i2c_register_board_info(0, &snapper9260_i2c_isl1208, 1);
162
Jean-Christophe PLAGNIOL-VILLARD71b149b2012-04-05 14:14:28 +0800163 /* Debug on ttyS0 */
164 at91_register_uart(0, 0, 0);
165
166 at91_register_uart(AT91SAM9260_ID_US0, 1,
167 ATMEL_UART_CTS | ATMEL_UART_RTS);
168 at91_register_uart(AT91SAM9260_ID_US1, 2,
169 ATMEL_UART_CTS | ATMEL_UART_RTS);
170 at91_register_uart(AT91SAM9260_ID_US2, 3, 0);
Ryan Mallon064baac2010-07-06 21:48:53 +0100171 at91_add_device_serial();
172 at91_add_device_usbh(&snapper9260_usbh_data);
173 at91_add_device_udc(&snapper9260_udc_data);
174 at91_add_device_eth(&snapper9260_macb_data);
175 at91_add_device_ssc(AT91SAM9260_ID_SSC, (ATMEL_SSC_TF | ATMEL_SSC_TK |
176 ATMEL_SSC_TD | ATMEL_SSC_RD));
177 snapper9260_add_device_nand();
178}
179
180MACHINE_START(SNAPPER_9260, "Bluewater Systems Snapper 9260/9G20 module")
Stephen Warren6bb27d72012-11-08 12:40:59 -0700181 .init_time = at91sam926x_pit_init,
Jean-Christophe PLAGNIOL-VILLARD21d08b92011-04-23 15:28:34 +0800182 .map_io = at91_map_io,
Ludovic Desroches3e135462012-06-11 15:38:03 +0200183 .handle_irq = at91_aic_handle_irq,
Jean-Christophe PLAGNIOL-VILLARD1b021a32011-04-28 20:19:32 +0800184 .init_early = snapper9260_init_early,
Jean-Christophe PLAGNIOL-VILLARD92100c12011-04-23 15:28:34 +0800185 .init_irq = at91_init_irq_default,
Ryan Mallon064baac2010-07-06 21:48:53 +0100186 .init_machine = snapper9260_board_init,
187MACHINE_END
188
189