2005-04-16 15:20:36 -07:00
/*
* arch / arm / mach - imx / mx1ads . c
*
* Initially based on :
* linux - 2.6 .7 - imx / arch / arm / mach - imx / scb9328 . c
* Copyright ( c ) 2004 Sascha Hauer < sascha @ saschahauer . de >
*
* 2004 ( c ) MontaVista Software , Inc .
*
* This file is licensed under the terms of the GNU General Public
* License version 2. This program is licensed " as is " without any
* warranty of any kind , whether express or implied .
*/
# include <linux/device.h>
# include <linux/init.h>
2005-10-29 19:07:23 +01:00
# include <linux/platform_device.h>
2005-04-16 15:20:36 -07:00
# include <asm/system.h>
# include <asm/hardware.h>
# include <asm/irq.h>
# include <asm/pgtable.h>
# include <asm/page.h>
# include <asm/mach/map.h>
# include <asm/mach-types.h>
# include <asm/mach/arch.h>
# include <linux/interrupt.h>
# include "generic.h"
# include <asm/serial.h>
2006-01-05 20:44:58 +00:00
static struct resource cs89x0_resources [ ] = {
2005-04-16 15:20:36 -07:00
[ 0 ] = {
2006-01-05 20:44:58 +00:00
. start = IMX_CS4_PHYS + 0x300 ,
. end = IMX_CS4_PHYS + 0x300 + 16 ,
2005-04-16 15:20:36 -07:00
. flags = IORESOURCE_MEM ,
} ,
[ 1 ] = {
2006-01-05 20:44:58 +00:00
. start = IRQ_GPIOC ( 17 ) ,
. end = IRQ_GPIOC ( 17 ) ,
2005-04-16 15:20:36 -07:00
. flags = IORESOURCE_IRQ ,
} ,
} ;
2006-01-05 20:44:58 +00:00
static struct platform_device cs89x0_device = {
. name = " cirrus-cs89x0 " ,
. num_resources = ARRAY_SIZE ( cs89x0_resources ) ,
. resource = cs89x0_resources ,
2005-04-16 15:20:36 -07:00
} ;
static struct platform_device * devices [ ] __initdata = {
2006-01-05 20:44:58 +00:00
& cs89x0_device ,
2005-04-16 15:20:36 -07:00
} ;
static void __init
mx1ads_init ( void )
{
# ifdef CONFIG_LEDS
2005-10-04 23:17:52 +01:00
imx_gpio_mode ( GPIO_PORTA | GPIO_OUT | 2 ) ;
2005-04-16 15:20:36 -07:00
# endif
platform_add_devices ( devices , ARRAY_SIZE ( devices ) ) ;
}
static void __init
mx1ads_map_io ( void )
{
imx_map_io ( ) ;
}
MACHINE_START ( MX1ADS , " Motorola MX1ADS " )
2005-07-03 17:38:58 +01:00
/* Maintainer: Sascha Hauer, Pengutronix */
. phys_ram = 0x08000000 ,
. phys_io = 0x00200000 ,
. io_pg_offst = ( ( 0xe0200000 ) > > 18 ) & 0xfffc ,
. boot_params = 0x08000100 ,
. map_io = mx1ads_map_io ,
. init_irq = imx_init_irq ,
2005-04-16 15:20:36 -07:00
. timer = & imx_timer ,
2005-07-03 17:38:58 +01:00
. init_machine = mx1ads_init ,
2005-04-16 15:20:36 -07:00
MACHINE_END