blob: 36f22c1a31fe596a71c596aa21d4e589435f15ba [file] [log] [blame]
Ryan Mallona3662f62010-01-22 01:42:02 +01001/*
2 * arch/arm/mach-ep93xx/simone.c
3 * Simplemachines Sim.One support.
4 *
Ryan Mallon1c5454e2011-06-15 14:45:36 +10005 * Copyright (C) 2010 Ryan Mallon
Ryan Mallona3662f62010-01-22 01:42:02 +01006 *
7 * Based on the 2.6.24.7 support:
8 * Copyright (C) 2009 Simplemachines
9 * MMC support by Peter Ivanov <ivanovp@gmail.com>, 2007
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or (at
14 * your option) any later version.
15 *
16 */
17
18#include <linux/kernel.h>
19#include <linux/init.h>
20#include <linux/platform_device.h>
Ryan Mallona3662f62010-01-22 01:42:02 +010021#include <linux/i2c.h>
22#include <linux/i2c-gpio.h>
23
24#include <mach/hardware.h>
Arnd Bergmanna3b29242012-08-24 15:12:11 +020025#include <linux/platform_data/video-ep93xx.h>
Linus Walleijbd5f12a2011-09-22 08:07:00 +010026#include <mach/gpio-ep93xx.h>
Ryan Mallona3662f62010-01-22 01:42:02 +010027
28#include <asm/mach-types.h>
29#include <asm/mach/arch.h>
30
Ryan Mallon258249e2012-01-11 09:06:08 +110031#include "soc.h"
32
Hartley Sweetenb370e082010-03-18 18:04:06 +010033static struct ep93xx_eth_data __initdata simone_eth_data = {
Ryan Mallona3662f62010-01-22 01:42:02 +010034 .phy_id = 1,
35};
36
Hartley Sweetenb370e082010-03-18 18:04:06 +010037static struct ep93xxfb_mach_info __initdata simone_fb_info = {
Ryan Mallona3662f62010-01-22 01:42:02 +010038 .num_modes = EP93XXFB_USE_MODEDB,
39 .bpp = 16,
40 .flags = EP93XXFB_USE_SDCSN0 | EP93XXFB_PCLK_FALLING,
41};
42
Hartley Sweetenb370e082010-03-18 18:04:06 +010043static struct i2c_gpio_platform_data __initdata simone_i2c_gpio_data = {
Ryan Mallona3662f62010-01-22 01:42:02 +010044 .sda_pin = EP93XX_GPIO_LINE_EEDAT,
45 .sda_is_open_drain = 0,
46 .scl_pin = EP93XX_GPIO_LINE_EECLK,
47 .scl_is_open_drain = 0,
48 .udelay = 0,
49 .timeout = 0,
50};
51
52static struct i2c_board_info __initdata simone_i2c_board_info[] = {
53 {
54 I2C_BOARD_INFO("ds1337", 0x68),
55 },
56};
57
Mika Westerberge5063fe2011-09-11 12:28:53 +030058static struct platform_device simone_audio_device = {
59 .name = "simone-audio",
60 .id = -1,
61};
62
63static void __init simone_register_audio(void)
64{
65 ep93xx_register_ac97();
66 platform_device_register(&simone_audio_device);
67}
68
Ryan Mallona3662f62010-01-22 01:42:02 +010069static void __init simone_init_machine(void)
70{
71 ep93xx_init_devices();
Hartley Sweeten16bcf782010-06-10 16:19:08 +010072 ep93xx_register_flash(2, EP93XX_CS6_PHYS_BASE, SZ_8M);
Ryan Mallona3662f62010-01-22 01:42:02 +010073 ep93xx_register_eth(&simone_eth_data, 1);
74 ep93xx_register_fb(&simone_fb_info);
75 ep93xx_register_i2c(&simone_i2c_gpio_data, simone_i2c_board_info,
76 ARRAY_SIZE(simone_i2c_board_info));
Mika Westerberge5063fe2011-09-11 12:28:53 +030077 simone_register_audio();
Ryan Mallona3662f62010-01-22 01:42:02 +010078}
79
80MACHINE_START(SIM_ONE, "Simplemachines Sim.One Board")
Nicolas Pitree562cf12011-07-05 22:38:11 -040081 /* Maintainer: Ryan Mallon */
82 .atag_offset = 0x100,
Ryan Mallona3662f62010-01-22 01:42:02 +010083 .map_io = ep93xx_map_io,
84 .init_irq = ep93xx_init_irq,
Stephen Warren6bb27d72012-11-08 12:40:59 -070085 .init_time = ep93xx_timer_init,
Ryan Mallona3662f62010-01-22 01:42:02 +010086 .init_machine = simone_init_machine,
Shawn Guoc9142832012-04-26 10:05:15 +080087 .init_late = ep93xx_init_late,
Russell King32751662011-11-05 09:54:14 +000088 .restart = ep93xx_restart,
Ryan Mallona3662f62010-01-22 01:42:02 +010089MACHINE_END