]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - arch/arm/mach-omap2/board-omap2evm.c
OMAP2EVM: Adding ethernet support
[linux-2.6-omap-h63xx.git] / arch / arm / mach-omap2 / board-omap2evm.c
1 /*
2  * linux/arch/arm/mach-omap2/board-omap2evm.c
3  *
4  * Copyright (C) 2008 Mistral Solutions Pvt Ltd
5  *
6  * Modified from mach-omap2/board-generic.c
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 as
10  * published by the Free Software Foundation.
11  */
12
13 #include <linux/kernel.h>
14 #include <linux/init.h>
15 #include <linux/platform_device.h>
16 #include <linux/delay.h>
17 #include <linux/err.h>
18 #include <linux/clk.h>
19 #include <linux/io.h>
20
21 #include <asm/hardware.h>
22 #include <asm/mach-types.h>
23 #include <asm/mach/arch.h>
24 #include <asm/mach/map.h>
25
26 #include <asm/arch/gpio.h>
27 #include <asm/arch/board.h>
28 #include <asm/arch/common.h>
29
30 static struct resource omap2evm_smc911x_resources[] = {
31         [0] =   {
32                 .start  = OMAP2EVM_ETHR_START,
33                 .end    = (OMAP2EVM_ETHR_START + OMAP2EVM_ETHR_SIZE - 1),
34                 .flags  = IORESOURCE_MEM,
35         },
36         [1] =   {
37                 .start  = OMAP_GPIO_IRQ(OMAP2EVM_ETHR_GPIO_IRQ),
38                 .end    = OMAP_GPIO_IRQ(OMAP2EVM_ETHR_GPIO_IRQ),
39                 .flags  = IORESOURCE_IRQ,
40         },
41 };
42
43 static struct platform_device omap2evm_smc911x_device = {
44         .name       = "smc911x",
45         .id     = -1,
46         .num_resources  = ARRAY_SIZE(omap2evm_smc911x_resources),
47         .resource   = &omap2evm_smc911x_resources [0],
48 };
49
50 static inline void __init omap2evm_init_smc911x(void)
51 {
52         int gpio = OMAP2EVM_ETHR_GPIO_IRQ;
53         int ret;
54
55         ret = gpio_request(gpio, "smc911x IRQ");
56         if (ret < 0) {
57                 printk(KERN_ERR "Failed to request GPIO %d for smc911x IRQ\n",
58                                 gpio);
59                 return;
60         }
61         gpio_direction_input(gpio);
62
63 }
64
65 static void __init omap2_evm_init_irq(void)
66 {
67         omap2_init_common_hw();
68         omap_init_irq();
69         omap_gpio_init();
70         omap2evm_init_smc911x();
71 }
72
73 static struct omap_uart_config omap2_evm_uart_config __initdata = {
74         .enabled_uarts  = ((1 << 0) | (1 << 1) | (1 << 2)),
75 };
76
77 static struct omap_board_config_kernel omap2_evm_config[] __initdata = {
78         {OMAP_TAG_UART, &omap2_evm_uart_config},
79 };
80
81 static int __init omap2_evm_i2c_init(void)
82 {
83         /*
84          * Registering bus 2 first to avoid twl4030 misbehaving as OMAP2EVM
85          * has twl4030 on bus 2
86          */
87         omap_register_i2c_bus(2, 2600, NULL, 0);
88         omap_register_i2c_bus(1, 400, NULL, 0);
89         return 0;
90 }
91
92 static struct platform_device *omap2_evm_devices[] __initdata = {
93     &omap2evm_smc911x_device,
94 };
95
96 static void __init omap2_evm_init(void)
97 {
98         platform_add_devices(omap2_evm_devices, ARRAY_SIZE(omap2_evm_devices));
99         omap_board_config = omap2_evm_config;
100         omap_board_config_size = ARRAY_SIZE(omap2_evm_config);
101         omap_serial_init();
102 }
103
104 static void __init omap2_evm_map_io(void)
105 {
106         omap2_set_globals_243x();
107         omap2_map_common_io();
108 }
109
110 arch_initcall(omap2_evm_i2c_init);
111
112 MACHINE_START(OMAP2EVM, "OMAP2EVM Board")
113         /* Maintainer:  Arun KS <arunks@mistralsolutions.com> */
114         .phys_io        = 0x48000000,
115         .io_pg_offst    = ((0xd8000000) >> 18) & 0xfffc,
116         .boot_params    = 0x80000100,
117         .map_io         = omap2_evm_map_io,
118         .init_irq       = omap2_evm_init_irq,
119         .init_machine   = omap2_evm_init,
120         .timer          = &omap_timer,
121 MACHINE_END