Mike Rapoport | cca414b | 2011-02-07 10:10:53 +0200 | [diff] [blame] | 1 | /* |
| 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> |
| 25 | #include <linux/io.h> |
Mike Rapoport | bea2d6b | 2011-04-13 13:52:25 +0300 | [diff] [blame] | 26 | #include <linux/i2c.h> |
Mike Rapoport | 4c75599 | 2011-04-17 11:59:32 +0300 | [diff] [blame] | 27 | #include <linux/gpio.h> |
Mike Rapoport | cca414b | 2011-02-07 10:10:53 +0200 | [diff] [blame] | 28 | |
Marc Zyngier | afed2a2 | 2011-09-06 10:23:45 +0100 | [diff] [blame] | 29 | #include <asm/hardware/gic.h> |
Mike Rapoport | cca414b | 2011-02-07 10:10:53 +0200 | [diff] [blame] | 30 | #include <asm/mach-types.h> |
| 31 | #include <asm/mach/arch.h> |
| 32 | #include <asm/setup.h> |
| 33 | |
| 34 | #include <mach/iomap.h> |
Mike Rapoport | f02726a | 2011-03-07 16:29:24 +0200 | [diff] [blame] | 35 | #include <mach/sdhci.h> |
Mike Rapoport | cca414b | 2011-02-07 10:10:53 +0200 | [diff] [blame] | 36 | |
| 37 | #include "board.h" |
| 38 | #include "clock.h" |
Mike Rapoport | f02726a | 2011-03-07 16:29:24 +0200 | [diff] [blame] | 39 | #include "devices.h" |
| 40 | #include "gpio-names.h" |
Mike Rapoport | cca414b | 2011-02-07 10:10:53 +0200 | [diff] [blame] | 41 | |
| 42 | #include "board-trimslice.h" |
| 43 | |
| 44 | static struct plat_serial8250_port debug_uart_platform_data[] = { |
| 45 | { |
| 46 | .membase = IO_ADDRESS(TEGRA_UARTA_BASE), |
| 47 | .mapbase = TEGRA_UARTA_BASE, |
| 48 | .irq = INT_UARTA, |
Stephen Warren | 11b3adb | 2011-08-08 15:01:05 -0600 | [diff] [blame] | 49 | .flags = UPF_BOOT_AUTOCONF | UPF_FIXED_TYPE, |
| 50 | .type = PORT_TEGRA, |
Mike Rapoport | cca414b | 2011-02-07 10:10:53 +0200 | [diff] [blame] | 51 | .iotype = UPIO_MEM, |
| 52 | .regshift = 2, |
| 53 | .uartclk = 216000000, |
| 54 | }, { |
| 55 | .flags = 0 |
| 56 | } |
| 57 | }; |
| 58 | |
| 59 | static struct platform_device debug_uart = { |
| 60 | .name = "serial8250", |
| 61 | .id = PLAT8250_DEV_PLATFORM, |
| 62 | .dev = { |
| 63 | .platform_data = debug_uart_platform_data, |
| 64 | }, |
| 65 | }; |
Mike Rapoport | f02726a | 2011-03-07 16:29:24 +0200 | [diff] [blame] | 66 | static struct tegra_sdhci_platform_data sdhci_pdata1 = { |
| 67 | .cd_gpio = -1, |
| 68 | .wp_gpio = -1, |
| 69 | .power_gpio = -1, |
| 70 | }; |
| 71 | |
| 72 | static struct tegra_sdhci_platform_data sdhci_pdata4 = { |
| 73 | .cd_gpio = TRIMSLICE_GPIO_SD4_CD, |
| 74 | .wp_gpio = TRIMSLICE_GPIO_SD4_WP, |
| 75 | .power_gpio = -1, |
| 76 | }; |
Mike Rapoport | cca414b | 2011-02-07 10:10:53 +0200 | [diff] [blame] | 77 | |
Mike Rapoport | 9504940 | 2011-04-17 11:10:35 +0300 | [diff] [blame] | 78 | static struct platform_device trimslice_audio_device = { |
| 79 | .name = "tegra-snd-trimslice", |
| 80 | .id = 0, |
| 81 | }; |
| 82 | |
Mike Rapoport | cca414b | 2011-02-07 10:10:53 +0200 | [diff] [blame] | 83 | static struct platform_device *trimslice_devices[] __initdata = { |
| 84 | &debug_uart, |
Mike Rapoport | f02726a | 2011-03-07 16:29:24 +0200 | [diff] [blame] | 85 | &tegra_sdhci_device1, |
| 86 | &tegra_sdhci_device4, |
Mike Rapoport | 9504940 | 2011-04-17 11:10:35 +0300 | [diff] [blame] | 87 | &tegra_i2s_device1, |
| 88 | &tegra_das_device, |
| 89 | &tegra_pcm_device, |
| 90 | &trimslice_audio_device, |
Mike Rapoport | cca414b | 2011-02-07 10:10:53 +0200 | [diff] [blame] | 91 | }; |
| 92 | |
Mike Rapoport | bea2d6b | 2011-04-13 13:52:25 +0300 | [diff] [blame] | 93 | static struct i2c_board_info trimslice_i2c3_board_info[] = { |
| 94 | { |
| 95 | I2C_BOARD_INFO("tlv320aic23", 0x1a), |
| 96 | }, |
| 97 | { |
| 98 | I2C_BOARD_INFO("em3027", 0x56), |
| 99 | }, |
| 100 | }; |
| 101 | |
| 102 | static void trimslice_i2c_init(void) |
| 103 | { |
Mike Rapoport | bea2d6b | 2011-04-13 13:52:25 +0300 | [diff] [blame] | 104 | platform_device_register(&tegra_i2c_device1); |
| 105 | platform_device_register(&tegra_i2c_device2); |
| 106 | platform_device_register(&tegra_i2c_device3); |
| 107 | |
| 108 | i2c_register_board_info(2, trimslice_i2c3_board_info, |
| 109 | ARRAY_SIZE(trimslice_i2c3_board_info)); |
| 110 | } |
| 111 | |
Mike Rapoport | 4c75599 | 2011-04-17 11:59:32 +0300 | [diff] [blame] | 112 | static void trimslice_usb_init(void) |
| 113 | { |
| 114 | int err; |
| 115 | |
Mike Rapoport | 4c75599 | 2011-04-17 11:59:32 +0300 | [diff] [blame] | 116 | platform_device_register(&tegra_ehci3_device); |
| 117 | |
Mike Rapoport | 4c75599 | 2011-04-17 11:59:32 +0300 | [diff] [blame] | 118 | platform_device_register(&tegra_ehci2_device); |
| 119 | |
| 120 | err = gpio_request_one(TRIMSLICE_GPIO_USB1_MODE, GPIOF_OUT_INIT_HIGH, |
| 121 | "usb1mode"); |
| 122 | if (err) { |
| 123 | pr_err("TrimSlice: failed to obtain USB1 mode gpio: %d\n", err); |
| 124 | return; |
| 125 | } |
| 126 | |
Mike Rapoport | 4c75599 | 2011-04-17 11:59:32 +0300 | [diff] [blame] | 127 | platform_device_register(&tegra_ehci1_device); |
| 128 | } |
| 129 | |
Russell King | 0744a3e | 2010-12-20 10:37:50 +0000 | [diff] [blame] | 130 | static void __init tegra_trimslice_fixup(struct tag *tags, char **cmdline, |
| 131 | struct meminfo *mi) |
Mike Rapoport | cca414b | 2011-02-07 10:10:53 +0200 | [diff] [blame] | 132 | { |
| 133 | mi->nr_banks = 2; |
| 134 | mi->bank[0].start = PHYS_OFFSET; |
| 135 | mi->bank[0].size = 448 * SZ_1M; |
| 136 | mi->bank[1].start = SZ_512M; |
| 137 | mi->bank[1].size = SZ_512M; |
| 138 | } |
| 139 | |
| 140 | static __initdata struct tegra_clk_init_table trimslice_clk_init_table[] = { |
| 141 | /* name parent rate enabled */ |
| 142 | { "uarta", "pll_p", 216000000, true }, |
Mike Rapoport | 9504940 | 2011-04-17 11:10:35 +0300 | [diff] [blame] | 143 | { "pll_a", "pll_p_out1", 56448000, true }, |
| 144 | { "pll_a_out0", "pll_a", 11289600, true }, |
| 145 | { "cdev1", NULL, 0, true }, |
| 146 | { "i2s1", "pll_a_out0", 11289600, false}, |
Mike Rapoport | cca414b | 2011-02-07 10:10:53 +0200 | [diff] [blame] | 147 | { NULL, NULL, 0, 0}, |
| 148 | }; |
| 149 | |
| 150 | static int __init tegra_trimslice_pci_init(void) |
| 151 | { |
Mike Rapoport | d5fdafd | 2011-03-02 14:34:06 +0200 | [diff] [blame] | 152 | if (!machine_is_trimslice()) |
| 153 | return 0; |
| 154 | |
Mike Rapoport | cca414b | 2011-02-07 10:10:53 +0200 | [diff] [blame] | 155 | return tegra_pcie_init(true, true); |
| 156 | } |
| 157 | subsys_initcall(tegra_trimslice_pci_init); |
| 158 | |
| 159 | static void __init tegra_trimslice_init(void) |
| 160 | { |
Mike Rapoport | cca414b | 2011-02-07 10:10:53 +0200 | [diff] [blame] | 161 | tegra_clk_init_from_table(trimslice_clk_init_table); |
| 162 | |
| 163 | trimslice_pinmux_init(); |
| 164 | |
Mike Rapoport | f02726a | 2011-03-07 16:29:24 +0200 | [diff] [blame] | 165 | tegra_sdhci_device1.dev.platform_data = &sdhci_pdata1; |
| 166 | tegra_sdhci_device4.dev.platform_data = &sdhci_pdata4; |
| 167 | |
Mike Rapoport | cca414b | 2011-02-07 10:10:53 +0200 | [diff] [blame] | 168 | platform_add_devices(trimslice_devices, ARRAY_SIZE(trimslice_devices)); |
Mike Rapoport | bea2d6b | 2011-04-13 13:52:25 +0300 | [diff] [blame] | 169 | |
| 170 | trimslice_i2c_init(); |
Mike Rapoport | 4c75599 | 2011-04-17 11:59:32 +0300 | [diff] [blame] | 171 | trimslice_usb_init(); |
Mike Rapoport | cca414b | 2011-02-07 10:10:53 +0200 | [diff] [blame] | 172 | } |
| 173 | |
| 174 | MACHINE_START(TRIMSLICE, "trimslice") |
Nicolas Pitre | b61cafe | 2011-07-05 22:38:18 -0400 | [diff] [blame] | 175 | .atag_offset = 0x100, |
Mike Rapoport | cca414b | 2011-02-07 10:10:53 +0200 | [diff] [blame] | 176 | .fixup = tegra_trimslice_fixup, |
Mike Rapoport | cca414b | 2011-02-07 10:10:53 +0200 | [diff] [blame] | 177 | .map_io = tegra_map_common_io, |
Peter De Schrijver | c37c07d | 2011-12-14 17:03:17 +0200 | [diff] [blame] | 178 | .init_early = tegra20_init_early, |
Colin Cross | 0cf6230 | 2011-02-21 17:10:14 -0800 | [diff] [blame] | 179 | .init_irq = tegra_init_irq, |
Marc Zyngier | afed2a2 | 2011-09-06 10:23:45 +0100 | [diff] [blame] | 180 | .handle_irq = gic_handle_irq, |
Mike Rapoport | cca414b | 2011-02-07 10:10:53 +0200 | [diff] [blame] | 181 | .timer = &tegra_timer, |
Colin Cross | 0cf6230 | 2011-02-21 17:10:14 -0800 | [diff] [blame] | 182 | .init_machine = tegra_trimslice_init, |
Russell King | abea3f2 | 2011-11-05 08:48:33 +0000 | [diff] [blame] | 183 | .restart = tegra_assert_system_reset, |
Mike Rapoport | cca414b | 2011-02-07 10:10:53 +0200 | [diff] [blame] | 184 | MACHINE_END |