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 | */ |
| 17 | |
| 18 | #include <linux/kernel.h> |
| 19 | #include <linux/irq.h> |
| 20 | #include <linux/gpio.h> |
| 21 | #include <linux/platform_device.h> |
| 22 | #include <linux/delay.h> |
Daniel Walker | 8d747cd | 2010-02-25 11:37:43 -0800 | [diff] [blame] | 23 | #include <linux/io.h> |
| 24 | #include <linux/smsc911x.h> |
Pavankumar Kondeti | 5155e2c7 | 2010-12-08 13:37:08 +0530 | [diff] [blame] | 25 | #include <linux/usb/msm_hsusb.h> |
Daniel Walker | 8d747cd | 2010-02-25 11:37:43 -0800 | [diff] [blame] | 26 | |
| 27 | #include <asm/mach-types.h> |
| 28 | #include <asm/mach/arch.h> |
Russell King | f4117ac | 2011-01-04 18:07:14 +0000 | [diff] [blame^] | 29 | #include <asm/memory.h> |
Daniel Walker | 8d747cd | 2010-02-25 11:37:43 -0800 | [diff] [blame] | 30 | #include <asm/setup.h> |
| 31 | |
| 32 | #include <mach/gpio.h> |
| 33 | #include <mach/board.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" |
Daniel Walker | 90e37c5 | 2010-05-12 14:24:15 -0700 | [diff] [blame] | 39 | #include "proc_comm.h" |
Daniel Walker | 8d747cd | 2010-02-25 11:37:43 -0800 | [diff] [blame] | 40 | |
Daniel Walker | 90e37c5 | 2010-05-12 14:24:15 -0700 | [diff] [blame] | 41 | extern struct sys_timer msm_timer; |
| 42 | |
Pavankumar Kondeti | 5155e2c7 | 2010-12-08 13:37:08 +0530 | [diff] [blame] | 43 | static int hsusb_phy_init_seq[] = { |
| 44 | 0x30, 0x32, /* Enable and set Pre-Emphasis Depth to 20% */ |
| 45 | 0x02, 0x36, /* Disable CDR Auto Reset feature */ |
| 46 | -1 |
| 47 | }; |
| 48 | |
| 49 | static struct msm_otg_platform_data msm_otg_pdata = { |
| 50 | .phy_init_seq = hsusb_phy_init_seq, |
| 51 | .mode = USB_PERIPHERAL, |
| 52 | .otg_control = OTG_PHY_CONTROL, |
| 53 | }; |
| 54 | |
Daniel Walker | 8d747cd | 2010-02-25 11:37:43 -0800 | [diff] [blame] | 55 | static struct platform_device *devices[] __initdata = { |
Daniel Walker | 90e37c5 | 2010-05-12 14:24:15 -0700 | [diff] [blame] | 56 | #if defined(CONFIG_SERIAL_MSM) || defined(CONFIG_MSM_SERIAL_DEBUGGER) |
| 57 | &msm_device_uart2, |
| 58 | #endif |
Niranjana Vishwanathapura | a8855e9 | 2010-10-06 13:52:10 -0700 | [diff] [blame] | 59 | &msm_device_smd, |
Pavankumar Kondeti | 5155e2c7 | 2010-12-08 13:37:08 +0530 | [diff] [blame] | 60 | &msm_device_otg, |
| 61 | &msm_device_hsusb, |
| 62 | &msm_device_hsusb_host, |
Daniel Walker | 8d747cd | 2010-02-25 11:37:43 -0800 | [diff] [blame] | 63 | }; |
| 64 | |
| 65 | static void __init msm7x30_init_irq(void) |
| 66 | { |
| 67 | msm_init_irq(); |
| 68 | } |
| 69 | |
Daniel Walker | 8d747cd | 2010-02-25 11:37:43 -0800 | [diff] [blame] | 70 | static void __init msm7x30_init(void) |
| 71 | { |
Pavankumar Kondeti | 5155e2c7 | 2010-12-08 13:37:08 +0530 | [diff] [blame] | 72 | msm_device_otg.dev.platform_data = &msm_otg_pdata; |
| 73 | msm_device_hsusb.dev.parent = &msm_device_otg.dev; |
| 74 | msm_device_hsusb_host.dev.parent = &msm_device_otg.dev; |
| 75 | |
Daniel Walker | 8d747cd | 2010-02-25 11:37:43 -0800 | [diff] [blame] | 76 | platform_add_devices(devices, ARRAY_SIZE(devices)); |
Daniel Walker | 8d747cd | 2010-02-25 11:37:43 -0800 | [diff] [blame] | 77 | } |
| 78 | |
| 79 | static void __init msm7x30_map_io(void) |
| 80 | { |
Daniel Walker | 8d747cd | 2010-02-25 11:37:43 -0800 | [diff] [blame] | 81 | msm_map_msm7x30_io(); |
Daniel Walker | 8d747cd | 2010-02-25 11:37:43 -0800 | [diff] [blame] | 82 | msm_clock_init(msm_clocks_7x30, msm_num_clocks_7x30); |
| 83 | } |
| 84 | |
| 85 | MACHINE_START(MSM7X30_SURF, "QCT MSM7X30 SURF") |
| 86 | #ifdef CONFIG_MSM_DEBUG_UART |
Daniel Walker | 8d747cd | 2010-02-25 11:37:43 -0800 | [diff] [blame] | 87 | #endif |
| 88 | .boot_params = PHYS_OFFSET + 0x100, |
| 89 | .map_io = msm7x30_map_io, |
| 90 | .init_irq = msm7x30_init_irq, |
| 91 | .init_machine = msm7x30_init, |
| 92 | .timer = &msm_timer, |
| 93 | MACHINE_END |
| 94 | |
| 95 | MACHINE_START(MSM7X30_FFA, "QCT MSM7X30 FFA") |
| 96 | #ifdef CONFIG_MSM_DEBUG_UART |
Daniel Walker | 8d747cd | 2010-02-25 11:37:43 -0800 | [diff] [blame] | 97 | #endif |
| 98 | .boot_params = PHYS_OFFSET + 0x100, |
| 99 | .map_io = msm7x30_map_io, |
| 100 | .init_irq = msm7x30_init_irq, |
| 101 | .init_machine = msm7x30_init, |
| 102 | .timer = &msm_timer, |
| 103 | MACHINE_END |
| 104 | |
| 105 | MACHINE_START(MSM7X30_FLUID, "QCT MSM7X30 FLUID") |
| 106 | #ifdef CONFIG_MSM_DEBUG_UART |
Daniel Walker | 8d747cd | 2010-02-25 11:37:43 -0800 | [diff] [blame] | 107 | #endif |
| 108 | .boot_params = PHYS_OFFSET + 0x100, |
| 109 | .map_io = msm7x30_map_io, |
| 110 | .init_irq = msm7x30_init_irq, |
| 111 | .init_machine = msm7x30_init, |
| 112 | .timer = &msm_timer, |
| 113 | MACHINE_END |