2006-01-10 19:59:29 +03:00
/*
2007-02-05 13:42:07 +03:00
* linux / arch / arm / mach - at91 / board - csb637 . c
2006-01-10 19:59:29 +03:00
*
* Copyright ( C ) 2005 SAN People
*
* This program is free software ; you can redistribute it and / or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation ; either version 2 of the License , or
* ( at your option ) any later version .
*
* This program is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
* GNU General Public License for more details .
*
* You should have received a copy of the GNU General Public License
* along with this program ; if not , write to the Free Software
* Foundation , Inc . , 59 Temple Place , Suite 330 , Boston , MA 02111 - 1307 USA
*/
# include <linux/types.h>
# include <linux/init.h>
2011-07-26 13:53:52 +04:00
# include <linux/gpio.h>
2006-01-10 19:59:29 +03:00
# include <linux/mm.h>
# include <linux/module.h>
# include <linux/platform_device.h>
2007-02-08 12:44:46 +03:00
# include <linux/mtd/physmap.h>
2006-01-10 19:59:29 +03:00
# include <asm/setup.h>
# include <asm/mach-types.h>
# include <asm/irq.h>
# include <asm/mach/arch.h>
# include <asm/mach/map.h>
# include <asm/mach/irq.h>
2008-09-22 00:30:02 +04:00
# include <mach/hardware.h>
2006-01-10 19:59:29 +03:00
2012-10-30 02:41:28 +04:00
# include "at91_aic.h"
2012-10-30 01:14:17 +04:00
# include "board.h"
2006-01-10 19:59:29 +03:00
# include "generic.h"
2011-04-28 16:19:32 +04:00
static void __init csb637_init_early ( void )
2006-01-10 19:59:29 +03:00
{
2006-09-27 13:50:59 +04:00
/* Initialize processor: 3.6864 MHz crystal */
2011-04-23 11:28:34 +04:00
at91_initialize ( 3686400 ) ;
2006-01-10 19:59:29 +03:00
}
2011-03-08 23:17:06 +03:00
static struct macb_platform_data __initdata csb637_eth_data = {
2006-01-10 19:59:29 +03:00
. phy_irq_pin = AT91_PIN_PC0 ,
. is_rmii = 0 ,
} ;
static struct at91_usbh_data __initdata csb637_usbh_data = {
. ports = 2 ,
2011-11-24 21:51:06 +04:00
. vbus_pin = { - EINVAL , - EINVAL } ,
. overcurrent_pin = { - EINVAL , - EINVAL } ,
2006-01-10 19:59:29 +03:00
} ;
static struct at91_udc_data __initdata csb637_udc_data = {
. vbus_pin = AT91_PIN_PB28 ,
. pullup_pin = AT91_PIN_PB1 ,
} ;
2007-02-08 12:44:46 +03:00
# define CSB_FLASH_BASE AT91_CHIPSELECT_0
2008-09-22 00:30:02 +04:00
# define CSB_FLASH_SIZE SZ_16M
2007-02-08 12:44:46 +03:00
static struct mtd_partition csb_flash_partitions [ ] = {
{
. name = " uMON flash " ,
. offset = 0 ,
. size = MTDPART_SIZ_FULL ,
. mask_flags = MTD_WRITEABLE , /* read only */
}
} ;
static struct physmap_flash_data csb_flash_data = {
. width = 2 ,
. parts = csb_flash_partitions ,
. nr_parts = ARRAY_SIZE ( csb_flash_partitions ) ,
} ;
static struct resource csb_flash_resources [ ] = {
{
. start = CSB_FLASH_BASE ,
. end = CSB_FLASH_BASE + CSB_FLASH_SIZE - 1 ,
. flags = IORESOURCE_MEM ,
}
} ;
static struct platform_device csb_flash = {
. name = " physmap-flash " ,
. id = 0 ,
. dev = {
. platform_data = & csb_flash_data ,
} ,
. resource = csb_flash_resources ,
. num_resources = ARRAY_SIZE ( csb_flash_resources ) ,
} ;
2008-04-08 05:57:03 +04:00
static struct gpio_led csb_leds [ ] = {
{ /* "d1", red */
. name = " d1 " ,
. gpio = AT91_PIN_PB2 ,
. active_low = 1 ,
. default_trigger = " heartbeat " ,
} ,
} ;
2006-01-10 19:59:29 +03:00
static void __init csb637_board_init ( void )
{
2008-04-08 05:57:03 +04:00
/* LED(s) */
at91_gpio_leds ( csb_leds , ARRAY_SIZE ( csb_leds ) ) ;
2006-06-19 20:26:23 +04:00
/* Serial */
2012-04-05 10:14:28 +04:00
/* DBGU on ttyS0. (Rx & Tx only) */
at91_register_uart ( 0 , 0 , 0 ) ;
2006-06-19 20:26:23 +04:00
at91_add_device_serial ( ) ;
2006-01-10 19:59:29 +03:00
/* Ethernet */
at91_add_device_eth ( & csb637_eth_data ) ;
/* USB Host */
at91_add_device_usbh ( & csb637_usbh_data ) ;
/* USB Device */
at91_add_device_udc ( & csb637_udc_data ) ;
2006-06-19 20:26:23 +04:00
/* I2C */
2007-11-19 15:47:20 +03:00
at91_add_device_i2c ( NULL , 0 ) ;
2006-06-19 20:26:23 +04:00
/* SPI */
at91_add_device_spi ( NULL , 0 ) ;
2007-02-08 12:44:46 +03:00
/* NOR flash */
platform_device_register ( & csb_flash ) ;
2006-01-10 19:59:29 +03:00
}
MACHINE_START ( CSB637 , " Cogent CSB637 " )
/* Maintainer: Bill Gatliff */
2012-11-08 23:40:59 +04:00
. init_time = at91rm9200_timer_init ,
2011-04-23 11:28:34 +04:00
. map_io = at91_map_io ,
2012-06-11 17:38:03 +04:00
. handle_irq = at91_aic_handle_irq ,
2011-04-28 16:19:32 +04:00
. init_early = csb637_init_early ,
2011-04-23 11:28:34 +04:00
. init_irq = at91_init_irq_default ,
2006-01-10 19:59:29 +03:00
. init_machine = csb637_board_init ,
MACHINE_END