Daniel Walker | 8d747cd | 2010-02-25 11:37:43 -0800 | [diff] [blame] | 1 | /* Copyright (c) 2009-2010, Code Aurora Forum. All rights reserved. |
| 2 | * |
| 3 | * This program is free software; you can redistribute it and/or modify |
| 4 | * it under the terms of the GNU General Public License version 2 and |
| 5 | * only version 2 as published by the Free Software Foundation. |
| 6 | * |
| 7 | * This program is distributed in the hope that it will be useful, |
| 8 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 9 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 10 | * GNU General Public License for more details. |
| 11 | * |
| 12 | * You should have received a copy of the GNU General Public License |
| 13 | * along with this program; if not, write to the Free Software |
| 14 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
| 15 | * 02110-1301, USA. |
| 16 | */ |
Russell King | 2f8163b | 2011-07-26 10:53:52 +0100 | [diff] [blame] | 17 | #include <linux/gpio.h> |
Daniel Walker | 8d747cd | 2010-02-25 11:37:43 -0800 | [diff] [blame] | 18 | #include <linux/kernel.h> |
| 19 | #include <linux/irq.h> |
Daniel Walker | 8d747cd | 2010-02-25 11:37:43 -0800 | [diff] [blame] | 20 | #include <linux/platform_device.h> |
| 21 | #include <linux/delay.h> |
Daniel Walker | 8d747cd | 2010-02-25 11:37:43 -0800 | [diff] [blame] | 22 | #include <linux/io.h> |
| 23 | #include <linux/smsc911x.h> |
Pavankumar Kondeti | 5155e2c7 | 2010-12-08 13:37:08 +0530 | [diff] [blame] | 24 | #include <linux/usb/msm_hsusb.h> |
Stephen Boyd | bd32344 | 2011-02-23 09:37:42 -0800 | [diff] [blame] | 25 | #include <linux/clkdev.h> |
Stephen Boyd | 9e775ad | 2011-08-12 00:14:28 +0100 | [diff] [blame] | 26 | #include <linux/memblock.h> |
Daniel Walker | 8d747cd | 2010-02-25 11:37:43 -0800 | [diff] [blame] | 27 | |
| 28 | #include <asm/mach-types.h> |
| 29 | #include <asm/mach/arch.h> |
Russell King | f4117ac | 2011-01-04 18:07:14 +0000 | [diff] [blame] | 30 | #include <asm/memory.h> |
Daniel Walker | 8d747cd | 2010-02-25 11:37:43 -0800 | [diff] [blame] | 31 | #include <asm/setup.h> |
| 32 | |
Ivan T. Ivanov | 5146d77 | 2013-12-30 13:15:27 -0800 | [diff] [blame] | 33 | #include <mach/clk.h> |
Daniel Walker | 8d747cd | 2010-02-25 11:37:43 -0800 | [diff] [blame] | 34 | #include <mach/msm_iomap.h> |
Daniel Walker | 8d747cd | 2010-02-25 11:37:43 -0800 | [diff] [blame] | 35 | #include <mach/dma.h> |
| 36 | |
| 37 | #include <mach/vreg.h> |
Daniel Walker | 8d747cd | 2010-02-25 11:37:43 -0800 | [diff] [blame] | 38 | #include "devices.h" |
Dima Zavin | ba5499e | 2011-01-10 11:00:30 -0800 | [diff] [blame] | 39 | #include "gpiomux.h" |
Daniel Walker | 90e37c5 | 2010-05-12 14:24:15 -0700 | [diff] [blame] | 40 | #include "proc_comm.h" |
Stephen Boyd | 4312a7e | 2012-09-05 12:28:52 -0700 | [diff] [blame] | 41 | #include "common.h" |
Daniel Walker | 90e37c5 | 2010-05-12 14:24:15 -0700 | [diff] [blame] | 42 | |
Stephen Boyd | 47a6770 | 2011-10-25 09:35:19 -0700 | [diff] [blame] | 43 | static void __init msm7x30_fixup(struct tag *tag, char **cmdline, |
| 44 | struct meminfo *mi) |
Stephen Boyd | 9e775ad | 2011-08-12 00:14:28 +0100 | [diff] [blame] | 45 | { |
| 46 | for (; tag->hdr.size; tag = tag_next(tag)) |
| 47 | if (tag->hdr.tag == ATAG_MEM && tag->u.mem.start == 0x200000) { |
| 48 | tag->u.mem.start = 0; |
| 49 | tag->u.mem.size += SZ_2M; |
| 50 | } |
| 51 | } |
| 52 | |
| 53 | static void __init msm7x30_reserve(void) |
| 54 | { |
| 55 | memblock_remove(0x0, SZ_2M); |
| 56 | } |
| 57 | |
Pavankumar Kondeti | 5155e2c7 | 2010-12-08 13:37:08 +0530 | [diff] [blame] | 58 | static int hsusb_phy_init_seq[] = { |
| 59 | 0x30, 0x32, /* Enable and set Pre-Emphasis Depth to 20% */ |
| 60 | 0x02, 0x36, /* Disable CDR Auto Reset feature */ |
| 61 | -1 |
| 62 | }; |
| 63 | |
Ivan T. Ivanov | 5146d77 | 2013-12-30 13:15:27 -0800 | [diff] [blame] | 64 | static int hsusb_link_clk_reset(struct clk *link_clk, bool assert) |
| 65 | { |
| 66 | int ret; |
| 67 | |
| 68 | if (assert) { |
| 69 | ret = clk_reset(link_clk, CLK_RESET_ASSERT); |
| 70 | if (ret) |
| 71 | pr_err("usb hs_clk assert failed\n"); |
| 72 | } else { |
| 73 | ret = clk_reset(link_clk, CLK_RESET_DEASSERT); |
| 74 | if (ret) |
| 75 | pr_err("usb hs_clk deassert failed\n"); |
| 76 | } |
| 77 | return ret; |
| 78 | } |
| 79 | |
| 80 | static int hsusb_phy_clk_reset(struct clk *phy_clk) |
| 81 | { |
| 82 | int ret; |
| 83 | |
| 84 | ret = clk_reset(phy_clk, CLK_RESET_ASSERT); |
| 85 | if (ret) { |
| 86 | pr_err("usb phy clk assert failed\n"); |
| 87 | return ret; |
| 88 | } |
| 89 | usleep_range(10000, 12000); |
| 90 | ret = clk_reset(phy_clk, CLK_RESET_DEASSERT); |
| 91 | if (ret) |
| 92 | pr_err("usb phy clk deassert failed\n"); |
| 93 | return ret; |
| 94 | } |
| 95 | |
Pavankumar Kondeti | 5155e2c7 | 2010-12-08 13:37:08 +0530 | [diff] [blame] | 96 | static struct msm_otg_platform_data msm_otg_pdata = { |
| 97 | .phy_init_seq = hsusb_phy_init_seq, |
| 98 | .mode = USB_PERIPHERAL, |
| 99 | .otg_control = OTG_PHY_CONTROL, |
Ivan T. Ivanov | 5146d77 | 2013-12-30 13:15:27 -0800 | [diff] [blame] | 100 | .link_clk_reset = hsusb_link_clk_reset, |
| 101 | .phy_clk_reset = hsusb_phy_clk_reset, |
Pavankumar Kondeti | 5155e2c7 | 2010-12-08 13:37:08 +0530 | [diff] [blame] | 102 | }; |
| 103 | |
Dima Zavin | ba5499e | 2011-01-10 11:00:30 -0800 | [diff] [blame] | 104 | struct msm_gpiomux_config msm_gpiomux_configs[GPIOMUX_NGPIOS] = { |
| 105 | #ifdef CONFIG_SERIAL_MSM_CONSOLE |
| 106 | [49] = { /* UART2 RFR */ |
| 107 | .suspended = GPIOMUX_DRV_2MA | GPIOMUX_PULL_DOWN | |
| 108 | GPIOMUX_FUNC_2 | GPIOMUX_VALID, |
| 109 | }, |
| 110 | [50] = { /* UART2 CTS */ |
| 111 | .suspended = GPIOMUX_DRV_2MA | GPIOMUX_PULL_DOWN | |
| 112 | GPIOMUX_FUNC_2 | GPIOMUX_VALID, |
| 113 | }, |
| 114 | [51] = { /* UART2 RX */ |
| 115 | .suspended = GPIOMUX_DRV_2MA | GPIOMUX_PULL_DOWN | |
| 116 | GPIOMUX_FUNC_2 | GPIOMUX_VALID, |
| 117 | }, |
| 118 | [52] = { /* UART2 TX */ |
| 119 | .suspended = GPIOMUX_DRV_2MA | GPIOMUX_PULL_DOWN | |
| 120 | GPIOMUX_FUNC_2 | GPIOMUX_VALID, |
| 121 | }, |
| 122 | #endif |
| 123 | }; |
| 124 | |
Daniel Walker | 8d747cd | 2010-02-25 11:37:43 -0800 | [diff] [blame] | 125 | static struct platform_device *devices[] __initdata = { |
Stephen Boyd | 421faca | 2013-06-17 10:43:18 -0700 | [diff] [blame] | 126 | &msm_clock_7x30, |
Stephen Boyd | 7bce696 | 2013-03-04 15:08:27 -0800 | [diff] [blame] | 127 | &msm_device_gpio_7x30, |
Daniel Walker | 90e37c5 | 2010-05-12 14:24:15 -0700 | [diff] [blame] | 128 | #if defined(CONFIG_SERIAL_MSM) || defined(CONFIG_MSM_SERIAL_DEBUGGER) |
| 129 | &msm_device_uart2, |
| 130 | #endif |
Niranjana Vishwanathapura | a8855e9 | 2010-10-06 13:52:10 -0700 | [diff] [blame] | 131 | &msm_device_smd, |
Pavankumar Kondeti | 5155e2c7 | 2010-12-08 13:37:08 +0530 | [diff] [blame] | 132 | &msm_device_otg, |
| 133 | &msm_device_hsusb, |
| 134 | &msm_device_hsusb_host, |
Daniel Walker | 8d747cd | 2010-02-25 11:37:43 -0800 | [diff] [blame] | 135 | }; |
| 136 | |
| 137 | static void __init msm7x30_init_irq(void) |
| 138 | { |
| 139 | msm_init_irq(); |
| 140 | } |
| 141 | |
Daniel Walker | 8d747cd | 2010-02-25 11:37:43 -0800 | [diff] [blame] | 142 | static void __init msm7x30_init(void) |
| 143 | { |
Pavankumar Kondeti | 5155e2c7 | 2010-12-08 13:37:08 +0530 | [diff] [blame] | 144 | msm_device_otg.dev.platform_data = &msm_otg_pdata; |
| 145 | msm_device_hsusb.dev.parent = &msm_device_otg.dev; |
| 146 | msm_device_hsusb_host.dev.parent = &msm_device_otg.dev; |
| 147 | |
Daniel Walker | 8d747cd | 2010-02-25 11:37:43 -0800 | [diff] [blame] | 148 | platform_add_devices(devices, ARRAY_SIZE(devices)); |
Daniel Walker | 8d747cd | 2010-02-25 11:37:43 -0800 | [diff] [blame] | 149 | } |
| 150 | |
| 151 | static void __init msm7x30_map_io(void) |
| 152 | { |
Daniel Walker | 8d747cd | 2010-02-25 11:37:43 -0800 | [diff] [blame] | 153 | msm_map_msm7x30_io(); |
Daniel Walker | 8d747cd | 2010-02-25 11:37:43 -0800 | [diff] [blame] | 154 | } |
| 155 | |
Shawn Guo | c633c53 | 2012-05-02 15:53:20 +0800 | [diff] [blame] | 156 | static void __init msm7x30_init_late(void) |
| 157 | { |
| 158 | smd_debugfs_init(); |
| 159 | } |
| 160 | |
Daniel Walker | 8d747cd | 2010-02-25 11:37:43 -0800 | [diff] [blame] | 161 | MACHINE_START(MSM7X30_SURF, "QCT MSM7X30 SURF") |
Nicolas Pitre | f631dd4 | 2011-07-05 22:38:14 -0400 | [diff] [blame] | 162 | .atag_offset = 0x100, |
Stephen Boyd | 9e775ad | 2011-08-12 00:14:28 +0100 | [diff] [blame] | 163 | .fixup = msm7x30_fixup, |
| 164 | .reserve = msm7x30_reserve, |
Daniel Walker | 8d747cd | 2010-02-25 11:37:43 -0800 | [diff] [blame] | 165 | .map_io = msm7x30_map_io, |
| 166 | .init_irq = msm7x30_init_irq, |
| 167 | .init_machine = msm7x30_init, |
Shawn Guo | c633c53 | 2012-05-02 15:53:20 +0800 | [diff] [blame] | 168 | .init_late = msm7x30_init_late, |
Stephen Warren | 6bb27d7 | 2012-11-08 12:40:59 -0700 | [diff] [blame] | 169 | .init_time = msm7x30_timer_init, |
Daniel Walker | 8d747cd | 2010-02-25 11:37:43 -0800 | [diff] [blame] | 170 | MACHINE_END |
| 171 | |
| 172 | MACHINE_START(MSM7X30_FFA, "QCT MSM7X30 FFA") |
Nicolas Pitre | f631dd4 | 2011-07-05 22:38:14 -0400 | [diff] [blame] | 173 | .atag_offset = 0x100, |
Stephen Boyd | 9e775ad | 2011-08-12 00:14:28 +0100 | [diff] [blame] | 174 | .fixup = msm7x30_fixup, |
| 175 | .reserve = msm7x30_reserve, |
Daniel Walker | 8d747cd | 2010-02-25 11:37:43 -0800 | [diff] [blame] | 176 | .map_io = msm7x30_map_io, |
| 177 | .init_irq = msm7x30_init_irq, |
| 178 | .init_machine = msm7x30_init, |
Shawn Guo | c633c53 | 2012-05-02 15:53:20 +0800 | [diff] [blame] | 179 | .init_late = msm7x30_init_late, |
Stephen Warren | 6bb27d7 | 2012-11-08 12:40:59 -0700 | [diff] [blame] | 180 | .init_time = msm7x30_timer_init, |
Daniel Walker | 8d747cd | 2010-02-25 11:37:43 -0800 | [diff] [blame] | 181 | MACHINE_END |
| 182 | |
| 183 | MACHINE_START(MSM7X30_FLUID, "QCT MSM7X30 FLUID") |
Nicolas Pitre | f631dd4 | 2011-07-05 22:38:14 -0400 | [diff] [blame] | 184 | .atag_offset = 0x100, |
Stephen Boyd | 9e775ad | 2011-08-12 00:14:28 +0100 | [diff] [blame] | 185 | .fixup = msm7x30_fixup, |
| 186 | .reserve = msm7x30_reserve, |
Daniel Walker | 8d747cd | 2010-02-25 11:37:43 -0800 | [diff] [blame] | 187 | .map_io = msm7x30_map_io, |
| 188 | .init_irq = msm7x30_init_irq, |
| 189 | .init_machine = msm7x30_init, |
Shawn Guo | c633c53 | 2012-05-02 15:53:20 +0800 | [diff] [blame] | 190 | .init_late = msm7x30_init_late, |
Stephen Warren | 6bb27d7 | 2012-11-08 12:40:59 -0700 | [diff] [blame] | 191 | .init_time = msm7x30_timer_init, |
Daniel Walker | 8d747cd | 2010-02-25 11:37:43 -0800 | [diff] [blame] | 192 | MACHINE_END |