colibri-pxa270.c 4.2 KB
Newer Older
1
/*
2
 *  linux/arch/arm/mach-pxa/colibri-pxa270.c
3
 *
4
 *  Support for Toradex PXA270 based Colibri module
5
 *  Daniel Mack <daniel@caiaq.de>
6
 *  Marek Vasut <marek.vasut@gmail.com>
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License version 2 as
 *  published by the Free Software Foundation.
 */

#include <linux/init.h>
#include <linux/kernel.h>
#include <linux/platform_device.h>
#include <linux/sysdev.h>
#include <linux/interrupt.h>
#include <linux/bitops.h>
#include <linux/ioport.h>
#include <linux/delay.h>
#include <linux/mtd/mtd.h>
#include <linux/mtd/partitions.h>
#include <linux/mtd/physmap.h>
24
#include <linux/gpio.h>
25
#include <asm/mach-types.h>
26
#include <mach/hardware.h>
27 28 29 30 31 32
#include <asm/irq.h>
#include <asm/sizes.h>
#include <asm/mach/arch.h>
#include <asm/mach/map.h>
#include <asm/mach/irq.h>
#include <asm/mach/flash.h>
33 34

#include <mach/pxa27x.h>
35
#include <mach/colibri.h>
36 37 38 39

#include "generic.h"
#include "devices.h"

40 41 42
/******************************************************************************
 * Pin configuration
 ******************************************************************************/
43
static mfp_cfg_t colibri_pxa270_pin_config[] __initdata = {
44
	/* Ethernet */
45 46 47 48
	GPIO78_nCS_2,	/* Ethernet CS */
	GPIO114_GPIO,	/* Ethernet IRQ */
};

49 50 51 52
/******************************************************************************
 * NOR Flash
 ******************************************************************************/
#if defined(CONFIG_MTD_PHYSMAP) || defined(CONFIG_MTD_PHYSMAP_MODULE)
53 54 55 56 57
static struct mtd_partition colibri_partitions[] = {
	{
		.name =		"Bootloader",
		.offset =	0x00000000,
		.size =		0x00040000,
58
		.mask_flags =	MTD_WRITEABLE	/* force read-only */
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
	}, {
		.name =		"Kernel",
		.offset =	0x00040000,
		.size =		0x00400000,
		.mask_flags =	0
	}, {
		.name =		"Rootfs",
		.offset =	0x00440000,
		.size =		MTDPART_SIZ_FULL,
		.mask_flags =	0
	}
};

static struct physmap_flash_data colibri_flash_data[] = {
	{
		.width		= 4,			/* bankwidth in bytes */
		.parts		= colibri_partitions,
		.nr_parts	= ARRAY_SIZE(colibri_partitions)
	}
};

80
static struct resource colibri_pxa270_flash_resource = {
81 82 83 84 85
	.start	= PXA_CS0_PHYS,
	.end	= PXA_CS0_PHYS + SZ_32M - 1,
	.flags	= IORESOURCE_MEM,
};

86
static struct platform_device colibri_pxa270_flash_device = {
87 88 89 90 91
	.name	= "physmap-flash",
	.id	= 0,
	.dev 	= {
		.platform_data = colibri_flash_data,
	},
92
	.resource = &colibri_pxa270_flash_resource,
93 94 95
	.num_resources = 1,
};

96 97 98 99 100 101 102 103 104 105 106 107 108
static void __init colibri_pxa270_nor_init(void)
{
	platform_device_register(&colibri_pxa270_flash_device);
}
#else
static inline void colibri_pxa270_nor_init(void) {}
#endif

/******************************************************************************
 * Ethernet
 ******************************************************************************/
#if defined(CONFIG_DM9000) || defined(CONFIG_DM9000_MODULE)
static struct resource colibri_pxa270_dm9000_resources[] = {
109
	[0] = {
110 111
		.start	= PXA_CS2_PHYS,
		.end	= PXA_CS2_PHYS + 3,
112 113 114
		.flags	= IORESOURCE_MEM,
	},
	[1] = {
115 116
		.start	= PXA_CS2_PHYS + 4,
		.end	= PXA_CS2_PHYS + 4 + 500,
117 118 119
		.flags	= IORESOURCE_MEM,
	},
	[2] = {
120 121
		.start	= gpio_to_irq(GPIO114_COLIBRI_PXA270_ETH_IRQ),
		.end	= gpio_to_irq(GPIO114_COLIBRI_PXA270_ETH_IRQ),
122
		.flags	= IORESOURCE_IRQ | IRQF_TRIGGER_RISING,
123 124 125
	},
};

126
static struct platform_device colibri_pxa270_dm9000_device = {
127 128
	.name		= "dm9000",
	.id		= -1,
129 130
	.num_resources	= ARRAY_SIZE(colibri_pxa270_dm9000_resources),
	.resource	= colibri_pxa270_dm9000_resources,
131 132
};

133 134 135 136 137 138
static void __init colibri_pxa270_eth_init(void)
{
	platform_device_register(&colibri_pxa270_dm9000_device);
}
#else
static inline void colibri_pxa270_eth_init(void) {}
139
#endif
140

141
static void __init colibri_pxa270_init(void)
142
{
143
	pxa2xx_mfp_config(ARRAY_AND_SIZE(colibri_pxa270_pin_config));
144 145 146
	pxa_set_ffuart_info(NULL);
	pxa_set_btuart_info(NULL);
	pxa_set_stuart_info(NULL);
147 148 149

	colibri_pxa270_nor_init();
	colibri_pxa270_eth_init();
150 151
}

152
MACHINE_START(COLIBRI, "Toradex Colibri PXA270")
153 154 155
	.phys_io	= 0x40000000,
	.io_pg_offst	= (io_p2v(0x40000000) >> 18) & 0xfffc,
	.boot_params	= COLIBRI_SDRAM_BASE + 0x100,
156
	.init_machine	= colibri_pxa270_init,
157 158 159 160
	.map_io		= pxa_map_io,
	.init_irq	= pxa27x_init_irq,
	.timer		= &pxa_timer,
MACHINE_END
161