diff options
| author | Maxim Osipov <maxim.osipov@gmail.com> | 2010-09-15 06:54:49 -0400 |
|---|---|---|
| committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2010-10-04 15:41:37 -0400 |
| commit | 8ed9059533eb89b4372d7fc31b6565c053e5253b (patch) | |
| tree | 98f9ccba8864d2896285e04a42f31b23c23cf4d0 | |
| parent | 2bfc96a127bc1cc94d26bfaa40159966064f9c8c (diff) | |
ARM: 6393/1: AT91: Add flexibity board support
This patch adds support for Flexibity Connect platform from
http://www.flexibity.com/ (AT91SAM9260 based).
Signed-off-by: Maxim Osipov <maxim.osipov@gmail.com>
Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Acked-by: Andrew Victor <linux@maxim.org.za>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
| -rw-r--r-- | arch/arm/mach-at91/Kconfig | 6 | ||||
| -rw-r--r-- | arch/arm/mach-at91/Makefile | 1 | ||||
| -rw-r--r-- | arch/arm/mach-at91/board-flexibity.c | 164 |
3 files changed, 171 insertions, 0 deletions
diff --git a/arch/arm/mach-at91/Kconfig b/arch/arm/mach-at91/Kconfig index 939bccd70569..ca33862b4bf4 100644 --- a/arch/arm/mach-at91/Kconfig +++ b/arch/arm/mach-at91/Kconfig | |||
| @@ -248,6 +248,12 @@ config MACH_CPU9260 | |||
| 248 | Select this if you are using a Eukrea Electromatique's | 248 | Select this if you are using a Eukrea Electromatique's |
| 249 | CPU9260 Board <http://www.eukrea.com/> | 249 | CPU9260 Board <http://www.eukrea.com/> |
| 250 | 250 | ||
| 251 | config MACH_FLEXIBITY | ||
| 252 | bool "Flexibity Connect board" | ||
| 253 | help | ||
| 254 | Select this if you are using Flexibity Connect board | ||
| 255 | <http://www.flexibity.com> | ||
| 256 | |||
| 251 | endif | 257 | endif |
| 252 | 258 | ||
| 253 | # ---------------------------------------------------------- | 259 | # ---------------------------------------------------------- |
diff --git a/arch/arm/mach-at91/Makefile b/arch/arm/mach-at91/Makefile index ca2ac003f41f..7cbe06d7cee9 100644 --- a/arch/arm/mach-at91/Makefile +++ b/arch/arm/mach-at91/Makefile | |||
| @@ -46,6 +46,7 @@ obj-$(CONFIG_MACH_USB_A9260) += board-usb-a9260.o | |||
| 46 | obj-$(CONFIG_MACH_QIL_A9260) += board-qil-a9260.o | 46 | obj-$(CONFIG_MACH_QIL_A9260) += board-qil-a9260.o |
| 47 | obj-$(CONFIG_MACH_AFEB9260) += board-afeb-9260v1.o | 47 | obj-$(CONFIG_MACH_AFEB9260) += board-afeb-9260v1.o |
| 48 | obj-$(CONFIG_MACH_CPU9260) += board-cpu9krea.o | 48 | obj-$(CONFIG_MACH_CPU9260) += board-cpu9krea.o |
| 49 | obj-$(CONFIG_MACH_FLEXIBITY) += board-flexibity.o | ||
| 49 | 50 | ||
| 50 | # AT91SAM9261 board-specific support | 51 | # AT91SAM9261 board-specific support |
| 51 | obj-$(CONFIG_MACH_AT91SAM9261EK) += board-sam9261ek.o | 52 | obj-$(CONFIG_MACH_AT91SAM9261EK) += board-sam9261ek.o |
diff --git a/arch/arm/mach-at91/board-flexibity.c b/arch/arm/mach-at91/board-flexibity.c new file mode 100644 index 000000000000..216c8ca985f4 --- /dev/null +++ b/arch/arm/mach-at91/board-flexibity.c | |||
| @@ -0,0 +1,164 @@ | |||
| 1 | /* | ||
| 2 | * linux/arch/arm/mach-at91/board-flexibity.c | ||
| 3 | * | ||
| 4 | * Copyright (C) 2010 Flexibity | ||
| 5 | * Copyright (C) 2005 SAN People | ||
| 6 | * Copyright (C) 2006 Atmel | ||
| 7 | * | ||
| 8 | * This program is free software; you can redistribute it and/or modify | ||
| 9 | * it under the terms of the GNU General Public License as published by | ||
| 10 | * the Free Software Foundation; either version 2 of the License, or | ||
| 11 | * (at your option) any later version. | ||
| 12 | * | ||
| 13 | * This program is distributed in the hope that it will be useful, | ||
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 16 | * GNU General Public License for more details. | ||
| 17 | * | ||
| 18 | * You should have received a copy of the GNU General Public License | ||
| 19 | * along with this program; if not, write to the Free Software | ||
| 20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
| 21 | */ | ||
| 22 | |||
| 23 | #include <linux/init.h> | ||
| 24 | #include <linux/platform_device.h> | ||
| 25 | #include <linux/spi/spi.h> | ||
| 26 | #include <linux/input.h> | ||
| 27 | #include <linux/gpio.h> | ||
| 28 | |||
| 29 | #include <asm/mach-types.h> | ||
| 30 | |||
| 31 | #include <asm/mach/arch.h> | ||
| 32 | #include <asm/mach/map.h> | ||
| 33 | #include <asm/mach/irq.h> | ||
| 34 | |||
| 35 | #include <mach/hardware.h> | ||
| 36 | #include <mach/board.h> | ||
| 37 | |||
| 38 | #include "generic.h" | ||
| 39 | |||
| 40 | static void __init flexibity_map_io(void) | ||
| 41 | { | ||
| 42 | /* Initialize processor: 18.432 MHz crystal */ | ||
| 43 | at91sam9260_initialize(18432000); | ||
| 44 | |||
| 45 | /* DBGU on ttyS0. (Rx & Tx only) */ | ||
| 46 | at91_register_uart(0, 0, 0); | ||
| 47 | |||
| 48 | /* set serial console to ttyS0 (ie, DBGU) */ | ||
| 49 | at91_set_serial_console(0); | ||
| 50 | } | ||
| 51 | |||
| 52 | static void __init flexibity_init_irq(void) | ||
| 53 | { | ||
| 54 | at91sam9260_init_interrupts(NULL); | ||
| 55 | } | ||
| 56 | |||
| 57 | /* USB Host port */ | ||
| 58 | static struct at91_usbh_data __initdata flexibity_usbh_data = { | ||
| 59 | .ports = 2, | ||
| 60 | }; | ||
| 61 | |||
| 62 | /* USB Device port */ | ||
| 63 | static struct at91_udc_data __initdata flexibity_udc_data = { | ||
| 64 | .vbus_pin = AT91_PIN_PC5, | ||
| 65 | .pullup_pin = 0, /* pull-up driven by UDC */ | ||
| 66 | }; | ||
| 67 | |||
| 68 | /* SPI devices */ | ||
| 69 | static struct spi_board_info flexibity_spi_devices[] = { | ||
| 70 | { /* DataFlash chip */ | ||
| 71 | .modalias = "mtd_dataflash", | ||
| 72 | .chip_select = 1, | ||
| 73 | .max_speed_hz = 15 * 1000 * 1000, | ||
| 74 | .bus_num = 0, | ||
| 75 | }, | ||
| 76 | }; | ||
| 77 | |||
| 78 | /* MCI (SD/MMC) */ | ||
| 79 | static struct at91_mmc_data __initdata flexibity_mmc_data = { | ||
| 80 | .slot_b = 0, | ||
| 81 | .wire4 = 1, | ||
| 82 | .det_pin = AT91_PIN_PC9, | ||
| 83 | .wp_pin = AT91_PIN_PC4, | ||
| 84 | }; | ||
| 85 | |||
| 86 | /* LEDs */ | ||
| 87 | static struct gpio_led flexibity_leds[] = { | ||
| 88 | { | ||
| 89 | .name = "usb1:green", | ||
| 90 | .gpio = AT91_PIN_PA12, | ||
| 91 | .active_low = 1, | ||
| 92 | .default_trigger = "default-on", | ||
| 93 | }, | ||
| 94 | { | ||
| 95 | .name = "usb1:red", | ||
| 96 | .gpio = AT91_PIN_PA13, | ||
| 97 | .active_low = 1, | ||
| 98 | .default_trigger = "default-on", | ||
| 99 | }, | ||
| 100 | { | ||
| 101 | .name = "usb2:green", | ||
| 102 | .gpio = AT91_PIN_PB26, | ||
| 103 | .active_low = 1, | ||
| 104 | .default_trigger = "default-on", | ||
| 105 | }, | ||
| 106 | { | ||
| 107 | .name = "usb2:red", | ||
| 108 | .gpio = AT91_PIN_PB27, | ||
| 109 | .active_low = 1, | ||
| 110 | .default_trigger = "default-on", | ||
| 111 | }, | ||
| 112 | { | ||
| 113 | .name = "usb3:green", | ||
| 114 | .gpio = AT91_PIN_PC8, | ||
| 115 | .active_low = 1, | ||
| 116 | .default_trigger = "default-on", | ||
| 117 | }, | ||
| 118 | { | ||
| 119 | .name = "usb3:red", | ||
| 120 | .gpio = AT91_PIN_PC6, | ||
| 121 | .active_low = 1, | ||
| 122 | .default_trigger = "default-on", | ||
| 123 | }, | ||
| 124 | { | ||
| 125 | .name = "usb4:green", | ||
| 126 | .gpio = AT91_PIN_PB4, | ||
| 127 | .active_low = 1, | ||
| 128 | .default_trigger = "default-on", | ||
| 129 | }, | ||
| 130 | { | ||
| 131 | .name = "usb4:red", | ||
| 132 | .gpio = AT91_PIN_PB5, | ||
| 133 | .active_low = 1, | ||
| 134 | .default_trigger = "default-on", | ||
| 135 | } | ||
| 136 | }; | ||
| 137 | |||
| 138 | static void __init flexibity_board_init(void) | ||
| 139 | { | ||
| 140 | /* Serial */ | ||
| 141 | at91_add_device_serial(); | ||
| 142 | /* USB Host */ | ||
| 143 | at91_add_device_usbh(&flexibity_usbh_data); | ||
| 144 | /* USB Device */ | ||
| 145 | at91_add_device_udc(&flexibity_udc_data); | ||
| 146 | /* SPI */ | ||
| 147 | at91_add_device_spi(flexibity_spi_devices, | ||
| 148 | ARRAY_SIZE(flexibity_spi_devices)); | ||
| 149 | /* MMC */ | ||
| 150 | at91_add_device_mmc(0, &flexibity_mmc_data); | ||
| 151 | /* LEDs */ | ||
| 152 | at91_gpio_leds(flexibity_leds, ARRAY_SIZE(flexibity_leds)); | ||
| 153 | } | ||
| 154 | |||
| 155 | MACHINE_START(FLEXIBITY, "Flexibity Connect") | ||
| 156 | /* Maintainer: Maxim Osipov */ | ||
| 157 | .phys_io = AT91_BASE_SYS, | ||
| 158 | .io_pg_offst = (AT91_VA_BASE_SYS >> 18) & 0xfffc, | ||
| 159 | .boot_params = AT91_SDRAM_BASE + 0x100, | ||
| 160 | .timer = &at91sam926x_timer, | ||
| 161 | .map_io = flexibity_map_io, | ||
| 162 | .init_irq = flexibity_init_irq, | ||
| 163 | .init_machine = flexibity_board_init, | ||
| 164 | MACHINE_END | ||
