Path: blob/master/arch/arm/mach-at91/board-eb9200.c
10817 views
/*1* linux/arch/arm/mach-at91/board-eb9200.c2*3* Copyright (C) 2005 SAN People, adapted for ATEB9200 from Embest4* by Andrew Patrikalakis5*6* This program is free software; you can redistribute it and/or modify7* it under the terms of the GNU General Public License as published by8* the Free Software Foundation; either version 2 of the License, or9* (at your option) any later version.10*11* This program is distributed in the hope that it will be useful,12* but WITHOUT ANY WARRANTY; without even the implied warranty of13* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the14* GNU General Public License for more details.15*16* You should have received a copy of the GNU General Public License17* along with this program; if not, write to the Free Software18* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA19*/2021#include <linux/types.h>22#include <linux/init.h>23#include <linux/mm.h>24#include <linux/module.h>25#include <linux/device.h>2627#include <mach/hardware.h>28#include <asm/setup.h>29#include <asm/mach-types.h>30#include <asm/irq.h>3132#include <asm/mach/arch.h>33#include <asm/mach/map.h>34#include <asm/mach/irq.h>3536#include <mach/board.h>37#include <mach/gpio.h>3839#include "generic.h"404142static void __init eb9200_init_early(void)43{44/* Initialize processor: 18.432 MHz crystal */45at91rm9200_initialize(18432000);4647/* DBGU on ttyS0. (Rx & Tx only) */48at91_register_uart(0, 0, 0);4950/* USART1 on ttyS1. (Rx, Tx, CTS, RTS, DTR, DSR, DCD, RI) */51at91_register_uart(AT91RM9200_ID_US1, 1, ATMEL_UART_CTS | ATMEL_UART_RTS52| ATMEL_UART_DTR | ATMEL_UART_DSR | ATMEL_UART_DCD53| ATMEL_UART_RI);5455/* USART2 on ttyS2. (Rx, Tx) - IRDA */56at91_register_uart(AT91RM9200_ID_US2, 2, 0);5758/* set serial console to ttyS0 (ie, DBGU) */59at91_set_serial_console(0);60}6162static void __init eb9200_init_irq(void)63{64at91rm9200_init_interrupts(NULL);65}6667static struct at91_eth_data __initdata eb9200_eth_data = {68.phy_irq_pin = AT91_PIN_PC4,69.is_rmii = 1,70};7172static struct at91_usbh_data __initdata eb9200_usbh_data = {73.ports = 2,74};7576static struct at91_udc_data __initdata eb9200_udc_data = {77.vbus_pin = AT91_PIN_PD4,78.pullup_pin = AT91_PIN_PD5,79};8081static struct at91_cf_data __initdata eb9200_cf_data = {82.det_pin = AT91_PIN_PB0,83.rst_pin = AT91_PIN_PC5,84// .irq_pin = ... not connected85// .vcc_pin = ... always powered86};8788static struct at91_mmc_data __initdata eb9200_mmc_data = {89.slot_b = 0,90.wire4 = 1,91};9293static struct i2c_board_info __initdata eb9200_i2c_devices[] = {94{95I2C_BOARD_INFO("24c512", 0x50),96},97};9899100static void __init eb9200_board_init(void)101{102/* Serial */103at91_add_device_serial();104/* Ethernet */105at91_add_device_eth(&eb9200_eth_data);106/* USB Host */107at91_add_device_usbh(&eb9200_usbh_data);108/* USB Device */109at91_add_device_udc(&eb9200_udc_data);110/* I2C */111at91_add_device_i2c(eb9200_i2c_devices, ARRAY_SIZE(eb9200_i2c_devices));112/* Compact Flash */113at91_add_device_cf(&eb9200_cf_data);114/* SPI */115at91_add_device_spi(NULL, 0);116/* MMC */117/* only supports 1 or 4 bit interface, not wired through to SPI */118at91_add_device_mmc(0, &eb9200_mmc_data);119}120121MACHINE_START(ATEB9200, "Embest ATEB9200")122.timer = &at91rm9200_timer,123.map_io = at91rm9200_map_io,124.init_early = eb9200_init_early,125.init_irq = eb9200_init_irq,126.init_machine = eb9200_board_init,127MACHINE_END128129130