blob: f7358586b5233a54e268e3e259ad642bc61a51aa [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>
Mike Rapoportcca414b2011-02-07 10:10:53 +020029
Marc Zyngierafed2a22011-09-06 10:23:45 +010030#include <asm/hardware/gic.h>
Mike Rapoportcca414b2011-02-07 10:10:53 +020031#include <asm/mach-types.h>
32#include <asm/mach/arch.h>
33#include <asm/setup.h>
34
35#include <mach/iomap.h>
Mike Rapoportf02726a2011-03-07 16:29:24 +020036#include <mach/sdhci.h>
Mike Rapoportcca414b2011-02-07 10:10:53 +020037
38#include "board.h"
39#include "clock.h"
Mike Rapoportf02726a2011-03-07 16:29:24 +020040#include "devices.h"
41#include "gpio-names.h"
Mike Rapoportcca414b2011-02-07 10:10:53 +020042
43#include "board-trimslice.h"
44
45static struct plat_serial8250_port debug_uart_platform_data[] = {
46 {
47 .membase = IO_ADDRESS(TEGRA_UARTA_BASE),
48 .mapbase = TEGRA_UARTA_BASE,
49 .irq = INT_UARTA,
Stephen Warren11b3adb2011-08-08 15:01:05 -060050 .flags = UPF_BOOT_AUTOCONF | UPF_FIXED_TYPE,
51 .type = PORT_TEGRA,
Dan Williamsbf03f652012-04-10 14:10:53 -070052 .handle_break = tegra_serial_handle_break,
Mike Rapoportcca414b2011-02-07 10:10:53 +020053 .iotype = UPIO_MEM,
54 .regshift = 2,
55 .uartclk = 216000000,
56 }, {
57 .flags = 0
58 }
59};
60
61static struct platform_device debug_uart = {
62 .name = "serial8250",
63 .id = PLAT8250_DEV_PLATFORM,
64 .dev = {
65 .platform_data = debug_uart_platform_data,
66 },
67};
Mike Rapoportf02726a2011-03-07 16:29:24 +020068static struct tegra_sdhci_platform_data sdhci_pdata1 = {
69 .cd_gpio = -1,
70 .wp_gpio = -1,
71 .power_gpio = -1,
72};
73
74static struct tegra_sdhci_platform_data sdhci_pdata4 = {
75 .cd_gpio = TRIMSLICE_GPIO_SD4_CD,
76 .wp_gpio = TRIMSLICE_GPIO_SD4_WP,
77 .power_gpio = -1,
78};
Mike Rapoportcca414b2011-02-07 10:10:53 +020079
Mike Rapoport95049402011-04-17 11:10:35 +030080static struct platform_device trimslice_audio_device = {
81 .name = "tegra-snd-trimslice",
82 .id = 0,
83};
84
Mike Rapoportcca414b2011-02-07 10:10:53 +020085static struct platform_device *trimslice_devices[] __initdata = {
86 &debug_uart,
Mike Rapoportf02726a2011-03-07 16:29:24 +020087 &tegra_sdhci_device1,
88 &tegra_sdhci_device4,
Mike Rapoport95049402011-04-17 11:10:35 +030089 &tegra_i2s_device1,
90 &tegra_das_device,
91 &tegra_pcm_device,
92 &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{
116 int err;
117
Mike Rapoport4c755992011-04-17 11:59:32 +0300118 platform_device_register(&tegra_ehci3_device);
119
Mike Rapoport4c755992011-04-17 11:59:32 +0300120 platform_device_register(&tegra_ehci2_device);
121
122 err = gpio_request_one(TRIMSLICE_GPIO_USB1_MODE, GPIOF_OUT_INIT_HIGH,
123 "usb1mode");
124 if (err) {
125 pr_err("TrimSlice: failed to obtain USB1 mode gpio: %d\n", err);
126 return;
127 }
128
Mike Rapoport4c755992011-04-17 11:59:32 +0300129 platform_device_register(&tegra_ehci1_device);
130}
131
Russell King0744a3e2010-12-20 10:37:50 +0000132static void __init tegra_trimslice_fixup(struct tag *tags, char **cmdline,
133 struct meminfo *mi)
Mike Rapoportcca414b2011-02-07 10:10:53 +0200134{
135 mi->nr_banks = 2;
136 mi->bank[0].start = PHYS_OFFSET;
137 mi->bank[0].size = 448 * SZ_1M;
138 mi->bank[1].start = SZ_512M;
139 mi->bank[1].size = SZ_512M;
140}
141
142static __initdata struct tegra_clk_init_table trimslice_clk_init_table[] = {
143 /* name parent rate enabled */
144 { "uarta", "pll_p", 216000000, true },
Mike Rapoport95049402011-04-17 11:10:35 +0300145 { "pll_a", "pll_p_out1", 56448000, true },
146 { "pll_a_out0", "pll_a", 11289600, true },
147 { "cdev1", NULL, 0, true },
148 { "i2s1", "pll_a_out0", 11289600, false},
Mike Rapoportcca414b2011-02-07 10:10:53 +0200149 { NULL, NULL, 0, 0},
150};
151
152static int __init tegra_trimslice_pci_init(void)
153{
Mike Rapoportd5fdafd2011-03-02 14:34:06 +0200154 if (!machine_is_trimslice())
155 return 0;
156
Mike Rapoportcca414b2011-02-07 10:10:53 +0200157 return tegra_pcie_init(true, true);
158}
159subsys_initcall(tegra_trimslice_pci_init);
160
161static void __init tegra_trimslice_init(void)
162{
Mike Rapoportcca414b2011-02-07 10:10:53 +0200163 tegra_clk_init_from_table(trimslice_clk_init_table);
164
165 trimslice_pinmux_init();
166
Mike Rapoportf02726a2011-03-07 16:29:24 +0200167 tegra_sdhci_device1.dev.platform_data = &sdhci_pdata1;
168 tegra_sdhci_device4.dev.platform_data = &sdhci_pdata4;
169
Mike Rapoportcca414b2011-02-07 10:10:53 +0200170 platform_add_devices(trimslice_devices, ARRAY_SIZE(trimslice_devices));
Mike Rapoportbea2d6b2011-04-13 13:52:25 +0300171
172 trimslice_i2c_init();
Mike Rapoport4c755992011-04-17 11:59:32 +0300173 trimslice_usb_init();
Mike Rapoportcca414b2011-02-07 10:10:53 +0200174}
175
176MACHINE_START(TRIMSLICE, "trimslice")
Nicolas Pitreb61cafe2011-07-05 22:38:18 -0400177 .atag_offset = 0x100,
Mike Rapoportcca414b2011-02-07 10:10:53 +0200178 .fixup = tegra_trimslice_fixup,
Mike Rapoportcca414b2011-02-07 10:10:53 +0200179 .map_io = tegra_map_common_io,
Peter De Schrijverc37c07d2011-12-14 17:03:17 +0200180 .init_early = tegra20_init_early,
Colin Cross0cf62302011-02-21 17:10:14 -0800181 .init_irq = tegra_init_irq,
Marc Zyngierafed2a22011-09-06 10:23:45 +0100182 .handle_irq = gic_handle_irq,
Mike Rapoportcca414b2011-02-07 10:10:53 +0200183 .timer = &tegra_timer,
Colin Cross0cf62302011-02-21 17:10:14 -0800184 .init_machine = tegra_trimslice_init,
Russell Kingabea3f22011-11-05 08:48:33 +0000185 .restart = tegra_assert_system_reset,
Mike Rapoportcca414b2011-02-07 10:10:53 +0200186MACHINE_END