AT91: Added a generic way to setup AT91 serial ports in Kconfig
[linux-2.6/pdupreez.git] / arch / arm / mach-at91 / board-kb9202.c
blob16fac05b42c6b7448f1a32f2d11148118b7f8779
1 /*
2 * linux/arch/arm/mach-at91/board-kb9202.c
4 * Copyright (c) 2005 kb_admin
5 * KwikByte, Inc.
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include <linux/types.h>
23 #include <linux/init.h>
24 #include <linux/mm.h>
25 #include <linux/module.h>
26 #include <linux/platform_device.h>
28 #include <mach/hardware.h>
29 #include <asm/setup.h>
30 #include <asm/mach-types.h>
31 #include <asm/irq.h>
33 #include <asm/mach/arch.h>
34 #include <asm/mach/map.h>
35 #include <asm/mach/irq.h>
37 #include <mach/board.h>
38 #include <mach/gpio.h>
40 #include <mach/at91rm9200_mc.h>
42 #include "generic.h"
45 static void __init kb9202_map_io(void)
47 /* Initialize processor: 10 MHz crystal */
48 at91rm9200_initialize(10000000, AT91RM9200_PQFP);
50 /* Set up the LEDs */
51 at91_init_leds(AT91_PIN_PC19, AT91_PIN_PC18);
53 /* Setup the serial ports and console */
54 at91_init_uarts();
57 static void __init kb9202_init_irq(void)
59 at91rm9200_init_interrupts(NULL);
62 static struct at91_eth_data __initdata kb9202_eth_data = {
63 .phy_irq_pin = AT91_PIN_PB29,
64 .is_rmii = 0,
67 static struct at91_usbh_data __initdata kb9202_usbh_data = {
68 .ports = 1,
71 static struct at91_udc_data __initdata kb9202_udc_data = {
72 .vbus_pin = AT91_PIN_PB24,
73 .pullup_pin = AT91_PIN_PB22,
76 static struct at91_mmc_data __initdata kb9202_mmc_data = {
77 .det_pin = AT91_PIN_PB2,
78 .slot_b = 0,
79 .wire4 = 1,
82 static struct mtd_partition __initdata kb9202_nand_partition[] = {
84 .name = "nand_fs",
85 .offset = 0,
86 .size = MTDPART_SIZ_FULL,
90 static struct mtd_partition * __init nand_partitions(int size, int *num_partitions)
92 *num_partitions = ARRAY_SIZE(kb9202_nand_partition);
93 return kb9202_nand_partition;
96 static struct atmel_nand_data __initdata kb9202_nand_data = {
97 .ale = 22,
98 .cle = 21,
99 // .det_pin = ... not there
100 .rdy_pin = AT91_PIN_PC29,
101 .enable_pin = AT91_PIN_PC28,
102 .partition_info = nand_partitions,
105 static void __init kb9202_board_init(void)
107 /* Serial */
108 at91_add_device_serial();
109 /* Ethernet */
110 at91_add_device_eth(&kb9202_eth_data);
111 /* USB Host */
112 at91_add_device_usbh(&kb9202_usbh_data);
113 /* USB Device */
114 at91_add_device_udc(&kb9202_udc_data);
115 /* MMC */
116 at91_add_device_mmc(0, &kb9202_mmc_data);
117 /* I2C */
118 at91_add_device_i2c(NULL, 0);
119 /* SPI */
120 at91_add_device_spi(NULL, 0);
121 /* NAND */
122 at91_add_device_nand(&kb9202_nand_data);
125 MACHINE_START(KB9200, "KB920x")
126 /* Maintainer: KwikByte, Inc. */
127 .phys_io = AT91_BASE_SYS,
128 .io_pg_offst = (AT91_VA_BASE_SYS >> 18) & 0xfffc,
129 .boot_params = AT91_SDRAM_BASE + 0x100,
130 .timer = &at91rm9200_timer,
131 .map_io = kb9202_map_io,
132 .init_irq = kb9202_init_irq,
133 .init_machine = kb9202_board_init,
134 MACHINE_END