blob: c00aadb01e097f70e63909e0fd05d43f35f12f44 [file] [log] [blame]
Colin Cross42a7bf42010-02-10 17:13:07 -08001/*
2 * arch/arm/mach-tegra/board-harmony.c
3 *
4 * Copyright (C) 2010 Google, Inc.
Stephen Warrenef2b1a02011-03-04 22:44:29 -07005 * Copyright (C) 2011 NVIDIA, Inc.
Colin Cross42a7bf42010-02-10 17:13:07 -08006 *
7 * This software is licensed under the terms of the GNU General Public
8 * License version 2, as published by the Free Software Foundation, and
9 * may be copied, distributed, and modified under those terms.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 */
17
18#include <linux/kernel.h>
19#include <linux/init.h>
20#include <linux/platform_device.h>
21#include <linux/serial_8250.h>
22#include <linux/clk.h>
23#include <linux/dma-mapping.h>
24#include <linux/pda_power.h>
25#include <linux/io.h>
Stephen Warrenef2b1a02011-03-04 22:44:29 -070026#include <linux/gpio.h>
Olof Johanssonde4855d2011-03-04 15:26:46 -080027#include <linux/i2c.h>
Colin Cross42a7bf42010-02-10 17:13:07 -080028
Stephen Warrenfba3b2f2011-03-04 22:42:31 -070029#include <sound/wm8903.h>
30
Colin Cross42a7bf42010-02-10 17:13:07 -080031#include <asm/mach-types.h>
32#include <asm/mach/arch.h>
33#include <asm/mach/time.h>
Marc Zyngierafed2a22011-09-06 10:23:45 +010034#include <asm/hardware/gic.h>
Colin Cross42a7bf42010-02-10 17:13:07 -080035#include <asm/setup.h>
36
Stephen Warren4651d552011-04-12 11:28:59 -060037#include <mach/tegra_wm8903_pdata.h>
Colin Cross42a7bf42010-02-10 17:13:07 -080038#include <mach/iomap.h>
39#include <mach/irqs.h>
Olof Johansson875d4af2011-02-19 16:39:37 -080040#include <mach/sdhci.h>
Colin Cross42a7bf42010-02-10 17:13:07 -080041
42#include "board.h"
43#include "board-harmony.h"
44#include "clock.h"
Olof Johansson875d4af2011-02-19 16:39:37 -080045#include "devices.h"
46#include "gpio-names.h"
Colin Cross42a7bf42010-02-10 17:13:07 -080047
Colin Cross42a7bf42010-02-10 17:13:07 -080048static struct plat_serial8250_port debug_uart_platform_data[] = {
49 {
50 .membase = IO_ADDRESS(TEGRA_UARTD_BASE),
51 .mapbase = TEGRA_UARTD_BASE,
52 .irq = INT_UARTD,
Stephen Warren11b3adb2011-08-08 15:01:05 -060053 .flags = UPF_BOOT_AUTOCONF | UPF_FIXED_TYPE,
54 .type = PORT_TEGRA,
Colin Cross42a7bf42010-02-10 17:13:07 -080055 .iotype = UPIO_MEM,
56 .regshift = 2,
57 .uartclk = 216000000,
58 }, {
59 .flags = 0
60 }
61};
62
63static struct platform_device debug_uart = {
64 .name = "serial8250",
65 .id = PLAT8250_DEV_PLATFORM,
66 .dev = {
67 .platform_data = debug_uart_platform_data,
68 },
69};
70
Stephen Warren4651d552011-04-12 11:28:59 -060071static struct tegra_wm8903_platform_data harmony_audio_pdata = {
Stephen Warrenef2b1a02011-03-04 22:44:29 -070072 .gpio_spkr_en = TEGRA_GPIO_SPKR_EN,
73 .gpio_hp_det = TEGRA_GPIO_HP_DET,
Stephen Warren61a6d072011-04-12 11:29:01 -060074 .gpio_hp_mute = -1,
Stephen Warrenef2b1a02011-03-04 22:44:29 -070075 .gpio_int_mic_en = TEGRA_GPIO_INT_MIC_EN,
76 .gpio_ext_mic_en = TEGRA_GPIO_EXT_MIC_EN,
77};
78
79static struct platform_device harmony_audio_device = {
Stephen Warren7b33af22011-04-12 11:29:00 -060080 .name = "tegra-snd-wm8903",
Stephen Warrenef2b1a02011-03-04 22:44:29 -070081 .id = 0,
82 .dev = {
83 .platform_data = &harmony_audio_pdata,
84 },
85};
86
Stephen Warrenfba3b2f2011-03-04 22:42:31 -070087static struct wm8903_platform_data harmony_wm8903_pdata = {
88 .irq_active_low = 0,
89 .micdet_cfg = 0,
90 .micdet_delay = 100,
Stephen Warren06fc9a32011-03-04 22:42:32 -070091 .gpio_base = HARMONY_GPIO_WM8903(0),
Stephen Warrenfba3b2f2011-03-04 22:42:31 -070092 .gpio_cfg = {
Stephen Warrenfba3b2f2011-03-04 22:42:31 -070093 0,
Stephen Warrena0f203d2011-12-02 15:08:37 -070094 0,
95 WM8903_GPIO_CONFIG_ZERO,
96 0,
97 0,
Stephen Warrenfba3b2f2011-03-04 22:42:31 -070098 },
99};
100
101static struct i2c_board_info __initdata wm8903_board_info = {
102 I2C_BOARD_INFO("wm8903", 0x1a),
103 .platform_data = &harmony_wm8903_pdata,
Stephen Warrenfba3b2f2011-03-04 22:42:31 -0700104};
105
Olof Johanssonde4855d2011-03-04 15:26:46 -0800106static void __init harmony_i2c_init(void)
107{
Olof Johanssonde4855d2011-03-04 15:26:46 -0800108 platform_device_register(&tegra_i2c_device1);
109 platform_device_register(&tegra_i2c_device2);
110 platform_device_register(&tegra_i2c_device3);
111 platform_device_register(&tegra_i2c_device4);
Stephen Warrenfba3b2f2011-03-04 22:42:31 -0700112
Stephen Warren21235522012-01-04 08:39:33 +0000113 wm8903_board_info.irq = gpio_to_irq(TEGRA_GPIO_CDC_IRQ);
Stephen Warrenfba3b2f2011-03-04 22:42:31 -0700114 i2c_register_board_info(0, &wm8903_board_info, 1);
Olof Johanssonde4855d2011-03-04 15:26:46 -0800115}
116
Colin Cross42a7bf42010-02-10 17:13:07 -0800117static struct platform_device *harmony_devices[] __initdata = {
118 &debug_uart,
Olof Johansson875d4af2011-02-19 16:39:37 -0800119 &tegra_sdhci_device1,
120 &tegra_sdhci_device2,
121 &tegra_sdhci_device4,
Stephen Warrendd58bdb2011-08-08 14:35:13 -0600122 &tegra_ehci3_device,
Stephen Warrenef2b1a02011-03-04 22:44:29 -0700123 &tegra_i2s_device1,
124 &tegra_das_device,
125 &tegra_pcm_device,
126 &harmony_audio_device,
Colin Cross42a7bf42010-02-10 17:13:07 -0800127};
128
Russell King0744a3e2010-12-20 10:37:50 +0000129static void __init tegra_harmony_fixup(struct tag *tags, char **cmdline,
130 struct meminfo *mi)
Colin Cross42a7bf42010-02-10 17:13:07 -0800131{
132 mi->nr_banks = 2;
133 mi->bank[0].start = PHYS_OFFSET;
Colin Cross42a7bf42010-02-10 17:13:07 -0800134 mi->bank[0].size = 448 * SZ_1M;
135 mi->bank[1].start = SZ_512M;
Colin Cross42a7bf42010-02-10 17:13:07 -0800136 mi->bank[1].size = SZ_512M;
137}
138
139static __initdata struct tegra_clk_init_table harmony_clk_init_table[] = {
140 /* name parent rate enabled */
141 { "uartd", "pll_p", 216000000, true },
Stephen Warrenef2b1a02011-03-04 22:44:29 -0700142 { "pll_a", "pll_p_out1", 56448000, true },
143 { "pll_a_out0", "pll_a", 11289600, true },
144 { "cdev1", NULL, 0, true },
145 { "i2s1", "pll_a_out0", 11289600, false},
Stephen Warrendd58bdb2011-08-08 14:35:13 -0600146 { "usb3", "clk_m", 12000000, true },
Colin Cross42a7bf42010-02-10 17:13:07 -0800147 { NULL, NULL, 0, 0},
148};
149
Olof Johansson875d4af2011-02-19 16:39:37 -0800150
151static struct tegra_sdhci_platform_data sdhci_pdata1 = {
152 .cd_gpio = -1,
153 .wp_gpio = -1,
154 .power_gpio = -1,
155};
156
157static struct tegra_sdhci_platform_data sdhci_pdata2 = {
Stephen Warren986afbe2011-03-04 22:44:28 -0700158 .cd_gpio = TEGRA_GPIO_SD2_CD,
159 .wp_gpio = TEGRA_GPIO_SD2_WP,
160 .power_gpio = TEGRA_GPIO_SD2_POWER,
Olof Johansson875d4af2011-02-19 16:39:37 -0800161};
162
163static struct tegra_sdhci_platform_data sdhci_pdata4 = {
Stephen Warren986afbe2011-03-04 22:44:28 -0700164 .cd_gpio = TEGRA_GPIO_SD4_CD,
165 .wp_gpio = TEGRA_GPIO_SD4_WP,
166 .power_gpio = TEGRA_GPIO_SD4_POWER,
Olof Johansson875d4af2011-02-19 16:39:37 -0800167 .is_8bit = 1,
168};
169
Colin Cross42a7bf42010-02-10 17:13:07 -0800170static void __init tegra_harmony_init(void)
171{
Colin Cross42a7bf42010-02-10 17:13:07 -0800172 tegra_clk_init_from_table(harmony_clk_init_table);
173
174 harmony_pinmux_init();
175
Olof Johansson875d4af2011-02-19 16:39:37 -0800176 tegra_sdhci_device1.dev.platform_data = &sdhci_pdata1;
177 tegra_sdhci_device2.dev.platform_data = &sdhci_pdata2;
178 tegra_sdhci_device4.dev.platform_data = &sdhci_pdata4;
179
Colin Cross42a7bf42010-02-10 17:13:07 -0800180 platform_add_devices(harmony_devices, ARRAY_SIZE(harmony_devices));
Olof Johanssonde4855d2011-03-04 15:26:46 -0800181 harmony_i2c_init();
Mike Rapoport6f168f22011-03-09 16:31:18 +0200182 harmony_regulator_init();
Colin Cross42a7bf42010-02-10 17:13:07 -0800183}
184
185MACHINE_START(HARMONY, "harmony")
Nicolas Pitreb61cafe2011-07-05 22:38:18 -0400186 .atag_offset = 0x100,
Colin Cross42a7bf42010-02-10 17:13:07 -0800187 .fixup = tegra_harmony_fixup,
Colin Cross42a7bf42010-02-10 17:13:07 -0800188 .map_io = tegra_map_common_io,
Peter De Schrijverc37c07d2011-12-14 17:03:17 +0200189 .init_early = tegra20_init_early,
Colin Cross0cf62302011-02-21 17:10:14 -0800190 .init_irq = tegra_init_irq,
Marc Zyngierafed2a22011-09-06 10:23:45 +0100191 .handle_irq = gic_handle_irq,
Colin Cross42a7bf42010-02-10 17:13:07 -0800192 .timer = &tegra_timer,
Colin Cross0cf62302011-02-21 17:10:14 -0800193 .init_machine = tegra_harmony_init,
Russell Kingabea3f22011-11-05 08:48:33 +0000194 .restart = tegra_assert_system_reset,
Colin Cross42a7bf42010-02-10 17:13:07 -0800195MACHINE_END