blob: 776aa9564d5d61e3c803f701c2ed0bf87cca8dbc [file] [log] [blame]
Mike Rapoportcca414b2011-02-07 10:10:53 +02001/*
2 * arch/arm/mach-tegra/board-trimslice.c
3 *
4 * Copyright (C) 2011 CompuLab, Ltd.
5 * Author: Mike Rapoport <mike@compulab.co.il>
6 *
7 * Based on board-harmony.c
8 * Copyright (C) 2010 Google, Inc.
9 *
10 * This software is licensed under the terms of the GNU General Public
11 * License version 2, as published by the Free Software Foundation, and
12 * may be copied, distributed, and modified under those terms.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 */
20
21#include <linux/kernel.h>
22#include <linux/init.h>
23#include <linux/platform_device.h>
24#include <linux/serial_8250.h>
Dan Williamsbf03f652012-04-10 14:10:53 -070025#include <linux/of_serial.h>
Mike Rapoportcca414b2011-02-07 10:10:53 +020026#include <linux/io.h>
Mike Rapoportbea2d6b2011-04-13 13:52:25 +030027#include <linux/i2c.h>
Mike Rapoport4c755992011-04-17 11:59:32 +030028#include <linux/gpio.h>
Stephen Warren4bee6412012-03-16 16:08:29 -060029#include <linux/platform_data/tegra_usb.h>
Mike Rapoportcca414b2011-02-07 10:10:53 +020030
Marc Zyngierafed2a22011-09-06 10:23:45 +010031#include <asm/hardware/gic.h>
Mike Rapoportcca414b2011-02-07 10:10:53 +020032#include <asm/mach-types.h>
33#include <asm/mach/arch.h>
34#include <asm/setup.h>
35
36#include <mach/iomap.h>
Mike Rapoportf02726a2011-03-07 16:29:24 +020037#include <mach/sdhci.h>
Mike Rapoportcca414b2011-02-07 10:10:53 +020038
39#include "board.h"
40#include "clock.h"
Mike Rapoportf02726a2011-03-07 16:29:24 +020041#include "devices.h"
42#include "gpio-names.h"
Mike Rapoportcca414b2011-02-07 10:10:53 +020043
44#include "board-trimslice.h"
45
46static struct plat_serial8250_port debug_uart_platform_data[] = {
47 {
48 .membase = IO_ADDRESS(TEGRA_UARTA_BASE),
49 .mapbase = TEGRA_UARTA_BASE,
50 .irq = INT_UARTA,
Stephen Warren11b3adb2011-08-08 15:01:05 -060051 .flags = UPF_BOOT_AUTOCONF | UPF_FIXED_TYPE,
52 .type = PORT_TEGRA,
Dan Williamsbf03f652012-04-10 14:10:53 -070053 .handle_break = tegra_serial_handle_break,
Mike Rapoportcca414b2011-02-07 10:10:53 +020054 .iotype = UPIO_MEM,
55 .regshift = 2,
56 .uartclk = 216000000,
57 }, {
58 .flags = 0
59 }
60};
61
62static struct platform_device debug_uart = {
63 .name = "serial8250",
64 .id = PLAT8250_DEV_PLATFORM,
65 .dev = {
66 .platform_data = debug_uart_platform_data,
67 },
68};
Mike Rapoportf02726a2011-03-07 16:29:24 +020069static struct tegra_sdhci_platform_data sdhci_pdata1 = {
70 .cd_gpio = -1,
71 .wp_gpio = -1,
72 .power_gpio = -1,
73};
74
75static struct tegra_sdhci_platform_data sdhci_pdata4 = {
76 .cd_gpio = TRIMSLICE_GPIO_SD4_CD,
77 .wp_gpio = TRIMSLICE_GPIO_SD4_WP,
78 .power_gpio = -1,
79};
Mike Rapoportcca414b2011-02-07 10:10:53 +020080
Mike Rapoport95049402011-04-17 11:10:35 +030081static struct platform_device trimslice_audio_device = {
82 .name = "tegra-snd-trimslice",
83 .id = 0,
84};
85
Mike Rapoportcca414b2011-02-07 10:10:53 +020086static struct platform_device *trimslice_devices[] __initdata = {
87 &debug_uart,
Mike Rapoportf02726a2011-03-07 16:29:24 +020088 &tegra_sdhci_device1,
89 &tegra_sdhci_device4,
Mike Rapoport95049402011-04-17 11:10:35 +030090 &tegra_i2s_device1,
91 &tegra_das_device,
Mike Rapoport95049402011-04-17 11:10:35 +030092 &trimslice_audio_device,
Mike Rapoportcca414b2011-02-07 10:10:53 +020093};
94
Mike Rapoportbea2d6b2011-04-13 13:52:25 +030095static struct i2c_board_info trimslice_i2c3_board_info[] = {
96 {
97 I2C_BOARD_INFO("tlv320aic23", 0x1a),
98 },
99 {
100 I2C_BOARD_INFO("em3027", 0x56),
101 },
102};
103
104static void trimslice_i2c_init(void)
105{
Mike Rapoportbea2d6b2011-04-13 13:52:25 +0300106 platform_device_register(&tegra_i2c_device1);
107 platform_device_register(&tegra_i2c_device2);
108 platform_device_register(&tegra_i2c_device3);
109
110 i2c_register_board_info(2, trimslice_i2c3_board_info,
111 ARRAY_SIZE(trimslice_i2c3_board_info));
112}
113
Mike Rapoport4c755992011-04-17 11:59:32 +0300114static void trimslice_usb_init(void)
115{
Stephen Warren4bee6412012-03-16 16:08:29 -0600116 struct tegra_ehci_platform_data *pdata;
117
118 pdata = tegra_ehci1_device.dev.platform_data;
119 pdata->vbus_gpio = TRIMSLICE_GPIO_USB1_MODE;
Mike Rapoport4c755992011-04-17 11:59:32 +0300120
Stephen Warren60d148b2012-04-12 15:03:52 -0600121 tegra_ehci2_ulpi_phy_config.reset_gpio = TEGRA_GPIO_PV0;
122
Mike Rapoport4c755992011-04-17 11:59:32 +0300123 platform_device_register(&tegra_ehci3_device);
Mike Rapoport4c755992011-04-17 11:59:32 +0300124 platform_device_register(&tegra_ehci2_device);
Mike Rapoport4c755992011-04-17 11:59:32 +0300125 platform_device_register(&tegra_ehci1_device);
126}
127
Russell King0744a3e2010-12-20 10:37:50 +0000128static void __init tegra_trimslice_fixup(struct tag *tags, char **cmdline,
129 struct meminfo *mi)
Mike Rapoportcca414b2011-02-07 10:10:53 +0200130{
131 mi->nr_banks = 2;
132 mi->bank[0].start = PHYS_OFFSET;
133 mi->bank[0].size = 448 * SZ_1M;
134 mi->bank[1].start = SZ_512M;
135 mi->bank[1].size = SZ_512M;
136}
137
138static __initdata struct tegra_clk_init_table trimslice_clk_init_table[] = {
139 /* name parent rate enabled */
140 { "uarta", "pll_p", 216000000, true },
Mike Rapoport95049402011-04-17 11:10:35 +0300141 { "pll_a", "pll_p_out1", 56448000, true },
142 { "pll_a_out0", "pll_a", 11289600, true },
143 { "cdev1", NULL, 0, true },
144 { "i2s1", "pll_a_out0", 11289600, false},
Mike Rapoportcca414b2011-02-07 10:10:53 +0200145 { NULL, NULL, 0, 0},
146};
147
148static int __init tegra_trimslice_pci_init(void)
149{
Mike Rapoportd5fdafd2011-03-02 14:34:06 +0200150 if (!machine_is_trimslice())
151 return 0;
152
Mike Rapoportcca414b2011-02-07 10:10:53 +0200153 return tegra_pcie_init(true, true);
154}
155subsys_initcall(tegra_trimslice_pci_init);
156
157static void __init tegra_trimslice_init(void)
158{
Mike Rapoportcca414b2011-02-07 10:10:53 +0200159 tegra_clk_init_from_table(trimslice_clk_init_table);
160
161 trimslice_pinmux_init();
162
Mike Rapoportf02726a2011-03-07 16:29:24 +0200163 tegra_sdhci_device1.dev.platform_data = &sdhci_pdata1;
164 tegra_sdhci_device4.dev.platform_data = &sdhci_pdata4;
165
Mike Rapoportcca414b2011-02-07 10:10:53 +0200166 platform_add_devices(trimslice_devices, ARRAY_SIZE(trimslice_devices));
Mike Rapoportbea2d6b2011-04-13 13:52:25 +0300167
168 trimslice_i2c_init();
Mike Rapoport4c755992011-04-17 11:59:32 +0300169 trimslice_usb_init();
Mike Rapoportcca414b2011-02-07 10:10:53 +0200170}
171
172MACHINE_START(TRIMSLICE, "trimslice")
Nicolas Pitreb61cafe2011-07-05 22:38:18 -0400173 .atag_offset = 0x100,
Mike Rapoportcca414b2011-02-07 10:10:53 +0200174 .fixup = tegra_trimslice_fixup,
Mike Rapoportcca414b2011-02-07 10:10:53 +0200175 .map_io = tegra_map_common_io,
Peter De Schrijverc37c07d2011-12-14 17:03:17 +0200176 .init_early = tegra20_init_early,
Colin Cross0cf62302011-02-21 17:10:14 -0800177 .init_irq = tegra_init_irq,
Marc Zyngierafed2a22011-09-06 10:23:45 +0100178 .handle_irq = gic_handle_irq,
Mike Rapoportcca414b2011-02-07 10:10:53 +0200179 .timer = &tegra_timer,
Colin Cross0cf62302011-02-21 17:10:14 -0800180 .init_machine = tegra_trimslice_init,
Shawn Guo390e0cf2012-05-02 17:08:06 +0800181 .init_late = tegra_init_late,
Russell Kingabea3f22011-11-05 08:48:33 +0000182 .restart = tegra_assert_system_reset,
Mike Rapoportcca414b2011-02-07 10:10:53 +0200183MACHINE_END