Sravan Kumar Ambapuram | b22cf4d | 2012-01-02 21:45:04 +0530 | [diff] [blame] | 1 | /* Copyright (c) 2011-2012, Code Aurora Forum. All rights reserved. |
Taniya Das | c98bfbc | 2011-08-23 09:58:55 +0530 | [diff] [blame] | 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 | |
| 13 | #include <linux/kernel.h> |
| 14 | #include <linux/init.h> |
| 15 | #include <linux/gpio_event.h> |
Pankaj Kumar | 6f84174 | 2011-10-10 15:52:14 +0530 | [diff] [blame] | 16 | #include <linux/usb/android.h> |
Taniya Das | c98bfbc | 2011-08-23 09:58:55 +0530 | [diff] [blame] | 17 | #include <linux/platform_device.h> |
| 18 | #include <linux/io.h> |
| 19 | #include <linux/gpio.h> |
| 20 | #include <linux/mtd/nand.h> |
| 21 | #include <linux/mtd/partitions.h> |
| 22 | #include <linux/i2c.h> |
| 23 | #include <linux/android_pmem.h> |
| 24 | #include <linux/bootmem.h> |
| 25 | #include <linux/mfd/marimba.h> |
| 26 | #include <linux/power_supply.h> |
Taniya Das | da40882 | 2011-09-06 12:54:06 +0530 | [diff] [blame] | 27 | #include <linux/input/rmi_platformdata.h> |
| 28 | #include <linux/input/rmi_i2c.h> |
Mohan Pallaka | 4c5bb92 | 2011-11-23 15:54:51 +0530 | [diff] [blame] | 29 | #include <linux/i2c/atmel_mxt_ts.h> |
Pankaj Kumar | 3cec058 | 2011-11-18 11:13:29 +0530 | [diff] [blame] | 30 | #include <linux/regulator/consumer.h> |
Chintan Pandya | f4ad400 | 2012-02-28 19:49:03 +0530 | [diff] [blame] | 31 | #include <linux/memblock.h> |
Taniya Das | c98bfbc | 2011-08-23 09:58:55 +0530 | [diff] [blame] | 32 | #include <asm/mach/mmc.h> |
| 33 | #include <asm/mach-types.h> |
| 34 | #include <asm/mach/arch.h> |
Chintan Pandya | f4ad400 | 2012-02-28 19:49:03 +0530 | [diff] [blame] | 35 | #include <asm/hardware/gic.h> |
Taniya Das | c98bfbc | 2011-08-23 09:58:55 +0530 | [diff] [blame] | 36 | #include <mach/board.h> |
| 37 | #include <mach/msm_iomap.h> |
| 38 | #include <mach/msm_hsusb.h> |
| 39 | #include <mach/rpc_hsusb.h> |
| 40 | #include <mach/rpc_pmapp.h> |
| 41 | #include <mach/usbdiag.h> |
Taniya Das | c98bfbc | 2011-08-23 09:58:55 +0530 | [diff] [blame] | 42 | #include <mach/msm_memtypes.h> |
| 43 | #include <mach/msm_serial_hs.h> |
Taniya Das | c98bfbc | 2011-08-23 09:58:55 +0530 | [diff] [blame] | 44 | #include <mach/pmic.h> |
| 45 | #include <mach/socinfo.h> |
| 46 | #include <mach/vreg.h> |
| 47 | #include <mach/rpc_pmapp.h> |
| 48 | #include <mach/msm_battery.h> |
| 49 | #include <mach/rpc_server_handset.h> |
| 50 | #include <mach/socinfo.h> |
Pankaj Kumar | 27c0264 | 2011-09-22 15:55:55 +0530 | [diff] [blame] | 51 | #include "board-msm7x27a-regulator.h" |
Taniya Das | c98bfbc | 2011-08-23 09:58:55 +0530 | [diff] [blame] | 52 | #include "devices.h" |
| 53 | #include "devices-msm7x2xa.h" |
Matt Wagantall | 7cca464 | 2012-02-01 16:43:24 -0800 | [diff] [blame] | 54 | #include "pm.h" |
Taniya Das | c98bfbc | 2011-08-23 09:58:55 +0530 | [diff] [blame] | 55 | #include "timer.h" |
Murali Nalajala | a182784 | 2011-11-13 14:12:39 +0530 | [diff] [blame] | 56 | #include "pm-boot.h" |
Pankaj Kumar | 3cec058 | 2011-11-18 11:13:29 +0530 | [diff] [blame] | 57 | #include "board-msm7x27a-regulator.h" |
Chintan Pandya | cf467fc | 2011-12-01 17:11:11 +0530 | [diff] [blame] | 58 | #include "board-msm7627a.h" |
Taniya Das | c98bfbc | 2011-08-23 09:58:55 +0530 | [diff] [blame] | 59 | |
| 60 | #define PMEM_KERNEL_EBI1_SIZE 0x3A000 |
| 61 | #define MSM_PMEM_AUDIO_SIZE 0x5B000 |
Taniya Das | c98bfbc | 2011-08-23 09:58:55 +0530 | [diff] [blame] | 62 | #define BAHAMA_SLAVE_ID_FM_REG 0x02 |
| 63 | #define FM_GPIO 83 |
Rahul Kashyap | 8b4a786 | 2011-12-13 18:40:54 +0530 | [diff] [blame] | 64 | #define BT_PCM_BCLK_MODE 0x88 |
| 65 | #define BT_PCM_DIN_MODE 0x89 |
| 66 | #define BT_PCM_DOUT_MODE 0x8A |
| 67 | #define BT_PCM_SYNC_MODE 0x8B |
| 68 | #define FM_I2S_SD_MODE 0x8E |
| 69 | #define FM_I2S_WS_MODE 0x8F |
| 70 | #define FM_I2S_SCK_MODE 0x90 |
| 71 | #define I2C_PIN_CTL 0x15 |
| 72 | #define I2C_NORMAL 0x40 |
Taniya Das | c98bfbc | 2011-08-23 09:58:55 +0530 | [diff] [blame] | 73 | |
Taniya Das | c98bfbc | 2011-08-23 09:58:55 +0530 | [diff] [blame] | 74 | static struct platform_device msm_wlan_ar6000_pm_device = { |
| 75 | .name = "wlan_ar6000_pm_dev", |
| 76 | .id = -1, |
| 77 | }; |
| 78 | |
Taniya Das | c98bfbc | 2011-08-23 09:58:55 +0530 | [diff] [blame] | 79 | static struct msm_gpio qup_i2c_gpios_io[] = { |
| 80 | { GPIO_CFG(60, 0, GPIO_CFG_OUTPUT, GPIO_CFG_NO_PULL, GPIO_CFG_8MA), |
| 81 | "qup_scl" }, |
| 82 | { GPIO_CFG(61, 0, GPIO_CFG_OUTPUT, GPIO_CFG_NO_PULL, GPIO_CFG_8MA), |
| 83 | "qup_sda" }, |
| 84 | { GPIO_CFG(131, 0, GPIO_CFG_OUTPUT, GPIO_CFG_NO_PULL, GPIO_CFG_8MA), |
| 85 | "qup_scl" }, |
| 86 | { GPIO_CFG(132, 0, GPIO_CFG_OUTPUT, GPIO_CFG_NO_PULL, GPIO_CFG_8MA), |
| 87 | "qup_sda" }, |
| 88 | }; |
| 89 | |
| 90 | static struct msm_gpio qup_i2c_gpios_hw[] = { |
| 91 | { GPIO_CFG(60, 1, GPIO_CFG_INPUT, GPIO_CFG_NO_PULL, GPIO_CFG_8MA), |
| 92 | "qup_scl" }, |
| 93 | { GPIO_CFG(61, 1, GPIO_CFG_INPUT, GPIO_CFG_NO_PULL, GPIO_CFG_8MA), |
| 94 | "qup_sda" }, |
| 95 | { GPIO_CFG(131, 2, GPIO_CFG_INPUT, GPIO_CFG_NO_PULL, GPIO_CFG_8MA), |
| 96 | "qup_scl" }, |
| 97 | { GPIO_CFG(132, 2, GPIO_CFG_INPUT, GPIO_CFG_NO_PULL, GPIO_CFG_8MA), |
| 98 | "qup_sda" }, |
| 99 | }; |
| 100 | |
| 101 | static void gsbi_qup_i2c_gpio_config(int adap_id, int config_type) |
| 102 | { |
| 103 | int rc; |
| 104 | |
| 105 | if (adap_id < 0 || adap_id > 1) |
| 106 | return; |
| 107 | |
| 108 | /* Each adapter gets 2 lines from the table */ |
| 109 | if (config_type) |
| 110 | rc = msm_gpios_request_enable(&qup_i2c_gpios_hw[adap_id*2], 2); |
| 111 | else |
| 112 | rc = msm_gpios_request_enable(&qup_i2c_gpios_io[adap_id*2], 2); |
| 113 | if (rc < 0) |
| 114 | pr_err("QUP GPIO request/enable failed: %d\n", rc); |
| 115 | } |
| 116 | |
| 117 | static struct msm_i2c_platform_data msm_gsbi0_qup_i2c_pdata = { |
| 118 | .clk_freq = 100000, |
| 119 | .msm_i2c_config_gpio = gsbi_qup_i2c_gpio_config, |
| 120 | }; |
| 121 | |
| 122 | static struct msm_i2c_platform_data msm_gsbi1_qup_i2c_pdata = { |
| 123 | .clk_freq = 100000, |
| 124 | .msm_i2c_config_gpio = gsbi_qup_i2c_gpio_config, |
| 125 | }; |
| 126 | |
| 127 | #ifdef CONFIG_ARCH_MSM7X27A |
| 128 | #define MSM_PMEM_MDP_SIZE 0x1DD1000 |
| 129 | #define MSM_PMEM_ADSP_SIZE 0x1000000 |
Taniya Das | c98bfbc | 2011-08-23 09:58:55 +0530 | [diff] [blame] | 130 | #endif |
| 131 | |
Taniya Das | da40882 | 2011-09-06 12:54:06 +0530 | [diff] [blame] | 132 | #if defined(CONFIG_TOUCHSCREEN_SYNAPTICS_RMI4_I2C) || \ |
| 133 | defined(CONFIG_TOUCHSCREEN_SYNAPTICS_RMI4_I2C_MODULE) |
| 134 | |
| 135 | #ifndef CLEARPAD3000_ATTEN_GPIO |
| 136 | #define CLEARPAD3000_ATTEN_GPIO (48) |
| 137 | #endif |
| 138 | |
| 139 | #ifndef CLEARPAD3000_RESET_GPIO |
| 140 | #define CLEARPAD3000_RESET_GPIO (26) |
| 141 | #endif |
| 142 | |
| 143 | static int synaptics_touchpad_setup(void); |
| 144 | |
| 145 | static struct msm_gpio clearpad3000_cfg_data[] = { |
| 146 | {GPIO_CFG(CLEARPAD3000_ATTEN_GPIO, 0, GPIO_CFG_INPUT, |
| 147 | GPIO_CFG_NO_PULL, GPIO_CFG_6MA), "rmi4_attn"}, |
| 148 | {GPIO_CFG(CLEARPAD3000_RESET_GPIO, 0, GPIO_CFG_OUTPUT, |
| 149 | GPIO_CFG_PULL_DOWN, GPIO_CFG_8MA), "rmi4_reset"}, |
| 150 | }; |
| 151 | |
| 152 | static struct rmi_XY_pair rmi_offset = {.x = 0, .y = 0}; |
| 153 | static struct rmi_range rmi_clipx = {.min = 48, .max = 980}; |
| 154 | static struct rmi_range rmi_clipy = {.min = 7, .max = 1647}; |
| 155 | static struct rmi_f11_functiondata synaptics_f11_data = { |
| 156 | .swap_axes = false, |
| 157 | .flipX = false, |
| 158 | .flipY = false, |
| 159 | .offset = &rmi_offset, |
| 160 | .button_height = 113, |
| 161 | .clipX = &rmi_clipx, |
| 162 | .clipY = &rmi_clipy, |
| 163 | }; |
| 164 | |
| 165 | #define MAX_LEN 100 |
| 166 | |
| 167 | static ssize_t clearpad3000_virtual_keys_register(struct kobject *kobj, |
| 168 | struct kobj_attribute *attr, char *buf) |
| 169 | { |
| 170 | char *virtual_keys = __stringify(EV_KEY) ":" __stringify(KEY_MENU) \ |
| 171 | ":60:830:120:60" ":" __stringify(EV_KEY) \ |
| 172 | ":" __stringify(KEY_HOME) ":180:830:120:60" \ |
| 173 | ":" __stringify(EV_KEY) ":" \ |
| 174 | __stringify(KEY_SEARCH) ":300:830:120:60" \ |
| 175 | ":" __stringify(EV_KEY) ":" \ |
| 176 | __stringify(KEY_BACK) ":420:830:120:60" "\n"; |
| 177 | |
| 178 | return snprintf(buf, strnlen(virtual_keys, MAX_LEN) + 1 , "%s", |
| 179 | virtual_keys); |
| 180 | } |
| 181 | |
| 182 | static struct kobj_attribute clearpad3000_virtual_keys_attr = { |
| 183 | .attr = { |
| 184 | .name = "virtualkeys.sensor00fn11", |
| 185 | .mode = S_IRUGO, |
| 186 | }, |
| 187 | .show = &clearpad3000_virtual_keys_register, |
| 188 | }; |
| 189 | |
| 190 | static struct attribute *virtual_key_properties_attrs[] = { |
| 191 | &clearpad3000_virtual_keys_attr.attr, |
| 192 | NULL |
| 193 | }; |
| 194 | |
| 195 | static struct attribute_group virtual_key_properties_attr_group = { |
| 196 | .attrs = virtual_key_properties_attrs, |
| 197 | }; |
| 198 | |
| 199 | struct kobject *virtual_key_properties_kobj; |
| 200 | |
| 201 | static struct rmi_functiondata synaptics_functiondata[] = { |
| 202 | { |
| 203 | .function_index = RMI_F11_INDEX, |
| 204 | .data = &synaptics_f11_data, |
| 205 | }, |
| 206 | }; |
| 207 | |
| 208 | static struct rmi_functiondata_list synaptics_perfunctiondata = { |
| 209 | .count = ARRAY_SIZE(synaptics_functiondata), |
| 210 | .functiondata = synaptics_functiondata, |
| 211 | }; |
| 212 | |
| 213 | static struct rmi_sensordata synaptics_sensordata = { |
| 214 | .perfunctiondata = &synaptics_perfunctiondata, |
| 215 | .rmi_sensor_setup = synaptics_touchpad_setup, |
| 216 | }; |
| 217 | |
| 218 | static struct rmi_i2c_platformdata synaptics_platformdata = { |
| 219 | .i2c_address = 0x2c, |
| 220 | .irq_type = IORESOURCE_IRQ_LOWLEVEL, |
| 221 | .sensordata = &synaptics_sensordata, |
| 222 | }; |
| 223 | |
| 224 | static struct i2c_board_info synaptic_i2c_clearpad3k[] = { |
| 225 | { |
| 226 | I2C_BOARD_INFO("rmi4_ts", 0x2c), |
| 227 | .platform_data = &synaptics_platformdata, |
| 228 | }, |
| 229 | }; |
| 230 | |
| 231 | static int synaptics_touchpad_setup(void) |
| 232 | { |
| 233 | int retval = 0; |
| 234 | |
| 235 | virtual_key_properties_kobj = |
| 236 | kobject_create_and_add("board_properties", NULL); |
| 237 | if (virtual_key_properties_kobj) |
| 238 | retval = sysfs_create_group(virtual_key_properties_kobj, |
| 239 | &virtual_key_properties_attr_group); |
| 240 | if (!virtual_key_properties_kobj || retval) |
| 241 | pr_err("failed to create ft5202 board_properties\n"); |
| 242 | |
| 243 | retval = msm_gpios_request_enable(clearpad3000_cfg_data, |
| 244 | sizeof(clearpad3000_cfg_data)/sizeof(struct msm_gpio)); |
| 245 | if (retval) { |
| 246 | pr_err("%s:Failed to obtain touchpad GPIO %d. Code: %d.", |
| 247 | __func__, CLEARPAD3000_ATTEN_GPIO, retval); |
| 248 | retval = 0; /* ignore the err */ |
| 249 | } |
| 250 | synaptics_platformdata.irq = gpio_to_irq(CLEARPAD3000_ATTEN_GPIO); |
| 251 | |
| 252 | gpio_set_value(CLEARPAD3000_RESET_GPIO, 0); |
| 253 | usleep(10000); |
| 254 | gpio_set_value(CLEARPAD3000_RESET_GPIO, 1); |
| 255 | usleep(50000); |
| 256 | |
| 257 | return retval; |
| 258 | } |
| 259 | #endif |
| 260 | |
| 261 | |
Taniya Das | c98bfbc | 2011-08-23 09:58:55 +0530 | [diff] [blame] | 262 | static struct android_usb_platform_data android_usb_pdata = { |
Pankaj Kumar | 6f84174 | 2011-10-10 15:52:14 +0530 | [diff] [blame] | 263 | .update_pid_and_serial_num = usb_diag_update_pid_and_serial_num, |
Taniya Das | c98bfbc | 2011-08-23 09:58:55 +0530 | [diff] [blame] | 264 | }; |
| 265 | |
| 266 | static struct platform_device android_usb_device = { |
| 267 | .name = "android_usb", |
| 268 | .id = -1, |
| 269 | .dev = { |
| 270 | .platform_data = &android_usb_pdata, |
| 271 | }, |
| 272 | }; |
| 273 | |
Taniya Das | c98bfbc | 2011-08-23 09:58:55 +0530 | [diff] [blame] | 274 | #ifdef CONFIG_USB_EHCI_MSM_72K |
| 275 | static void msm_hsusb_vbus_power(unsigned phy_info, int on) |
| 276 | { |
| 277 | int rc = 0; |
| 278 | unsigned gpio; |
| 279 | |
Chintan Pandya | 4076270 | 2011-12-06 13:47:06 +0530 | [diff] [blame] | 280 | gpio = QRD_GPIO_HOST_VBUS_EN; |
Taniya Das | c98bfbc | 2011-08-23 09:58:55 +0530 | [diff] [blame] | 281 | |
| 282 | rc = gpio_request(gpio, "i2c_host_vbus_en"); |
| 283 | if (rc < 0) { |
| 284 | pr_err("failed to request %d GPIO\n", gpio); |
| 285 | return; |
| 286 | } |
| 287 | gpio_direction_output(gpio, !!on); |
| 288 | gpio_set_value_cansleep(gpio, !!on); |
| 289 | gpio_free(gpio); |
| 290 | } |
| 291 | |
| 292 | static struct msm_usb_host_platform_data msm_usb_host_pdata = { |
| 293 | .phy_info = (USB_PHY_INTEGRATED | USB_PHY_MODEL_45NM), |
| 294 | }; |
| 295 | |
| 296 | static void __init msm7627a_init_host(void) |
| 297 | { |
| 298 | msm_add_host(0, &msm_usb_host_pdata); |
| 299 | } |
| 300 | #endif |
| 301 | |
| 302 | #ifdef CONFIG_USB_MSM_OTG_72K |
| 303 | static int hsusb_rpc_connect(int connect) |
| 304 | { |
| 305 | if (connect) |
| 306 | return msm_hsusb_rpc_connect(); |
| 307 | else |
| 308 | return msm_hsusb_rpc_close(); |
| 309 | } |
| 310 | |
Pankaj Kumar | 27c0264 | 2011-09-22 15:55:55 +0530 | [diff] [blame] | 311 | static struct regulator *reg_hsusb; |
Taniya Das | c98bfbc | 2011-08-23 09:58:55 +0530 | [diff] [blame] | 312 | static int msm_hsusb_ldo_init(int init) |
| 313 | { |
Pankaj Kumar | 27c0264 | 2011-09-22 15:55:55 +0530 | [diff] [blame] | 314 | int rc = 0; |
Taniya Das | c98bfbc | 2011-08-23 09:58:55 +0530 | [diff] [blame] | 315 | |
Pankaj Kumar | 27c0264 | 2011-09-22 15:55:55 +0530 | [diff] [blame] | 316 | if (init) { |
| 317 | reg_hsusb = regulator_get(NULL, "usb"); |
| 318 | if (IS_ERR(reg_hsusb)) { |
| 319 | rc = PTR_ERR(reg_hsusb); |
| 320 | pr_err("%s: could not get regulator: %d\n", |
| 321 | __func__, rc); |
| 322 | goto out; |
| 323 | } |
| 324 | |
| 325 | rc = regulator_set_voltage(reg_hsusb, 3300000, 3300000); |
| 326 | if (rc) { |
| 327 | pr_err("%s: could not set voltage: %d\n", |
| 328 | __func__, rc); |
| 329 | goto reg_free; |
| 330 | } |
| 331 | |
| 332 | return 0; |
| 333 | } |
| 334 | /* else fall through */ |
| 335 | reg_free: |
| 336 | regulator_put(reg_hsusb); |
| 337 | out: |
| 338 | reg_hsusb = NULL; |
| 339 | return rc; |
Taniya Das | c98bfbc | 2011-08-23 09:58:55 +0530 | [diff] [blame] | 340 | } |
| 341 | |
| 342 | static int msm_hsusb_ldo_enable(int enable) |
| 343 | { |
| 344 | static int ldo_status; |
| 345 | |
Pankaj Kumar | 27c0264 | 2011-09-22 15:55:55 +0530 | [diff] [blame] | 346 | if (IS_ERR_OR_NULL(reg_hsusb)) |
| 347 | return reg_hsusb ? PTR_ERR(reg_hsusb) : -ENODEV; |
Taniya Das | c98bfbc | 2011-08-23 09:58:55 +0530 | [diff] [blame] | 348 | |
| 349 | if (ldo_status == enable) |
| 350 | return 0; |
| 351 | |
| 352 | ldo_status = enable; |
| 353 | |
Pankaj Kumar | 27c0264 | 2011-09-22 15:55:55 +0530 | [diff] [blame] | 354 | return enable ? |
| 355 | regulator_enable(reg_hsusb) : |
| 356 | regulator_disable(reg_hsusb); |
Taniya Das | c98bfbc | 2011-08-23 09:58:55 +0530 | [diff] [blame] | 357 | } |
| 358 | |
| 359 | #ifndef CONFIG_USB_EHCI_MSM_72K |
| 360 | static int msm_hsusb_pmic_notif_init(void (*callback)(int online), int init) |
| 361 | { |
| 362 | int ret = 0; |
| 363 | |
| 364 | if (init) |
| 365 | ret = msm_pm_app_rpc_init(callback); |
| 366 | else |
| 367 | msm_pm_app_rpc_deinit(callback); |
| 368 | |
| 369 | return ret; |
| 370 | } |
| 371 | #endif |
| 372 | |
| 373 | static struct msm_otg_platform_data msm_otg_pdata = { |
| 374 | #ifndef CONFIG_USB_EHCI_MSM_72K |
| 375 | .pmic_vbus_notif_init = msm_hsusb_pmic_notif_init, |
| 376 | #else |
| 377 | .vbus_power = msm_hsusb_vbus_power, |
| 378 | #endif |
| 379 | .rpc_connect = hsusb_rpc_connect, |
Taniya Das | c98bfbc | 2011-08-23 09:58:55 +0530 | [diff] [blame] | 380 | .pemp_level = PRE_EMPHASIS_WITH_20_PERCENT, |
| 381 | .cdr_autoreset = CDR_AUTO_RESET_DISABLE, |
| 382 | .drv_ampl = HS_DRV_AMPLITUDE_DEFAULT, |
| 383 | .se1_gating = SE1_GATING_DISABLE, |
| 384 | .ldo_init = msm_hsusb_ldo_init, |
| 385 | .ldo_enable = msm_hsusb_ldo_enable, |
| 386 | .chg_init = hsusb_chg_init, |
| 387 | .chg_connected = hsusb_chg_connected, |
| 388 | .chg_vbus_draw = hsusb_chg_vbus_draw, |
| 389 | }; |
| 390 | #endif |
| 391 | |
| 392 | static struct msm_hsusb_gadget_platform_data msm_gadget_pdata = { |
| 393 | .is_phy_status_timer_on = 1, |
| 394 | }; |
| 395 | |
Taniya Das | c98bfbc | 2011-08-23 09:58:55 +0530 | [diff] [blame] | 396 | #ifdef CONFIG_SERIAL_MSM_HS |
| 397 | static struct msm_serial_hs_platform_data msm_uart_dm1_pdata = { |
| 398 | .inject_rx_on_wakeup = 1, |
| 399 | .rx_to_inject = 0xFD, |
| 400 | }; |
| 401 | #endif |
| 402 | static struct msm_pm_platform_data msm7627a_pm_data[MSM_PM_SLEEP_MODE_NR] = { |
| 403 | [MSM_PM_SLEEP_MODE_POWER_COLLAPSE] = { |
| 404 | .idle_supported = 1, |
| 405 | .suspend_supported = 1, |
| 406 | .idle_enabled = 1, |
| 407 | .suspend_enabled = 1, |
| 408 | .latency = 16000, |
| 409 | .residency = 20000, |
| 410 | }, |
| 411 | [MSM_PM_SLEEP_MODE_POWER_COLLAPSE_NO_XO_SHUTDOWN] = { |
| 412 | .idle_supported = 1, |
| 413 | .suspend_supported = 1, |
| 414 | .idle_enabled = 1, |
| 415 | .suspend_enabled = 1, |
| 416 | .latency = 12000, |
| 417 | .residency = 20000, |
| 418 | }, |
| 419 | [MSM_PM_SLEEP_MODE_RAMP_DOWN_AND_WAIT_FOR_INTERRUPT] = { |
| 420 | .idle_supported = 1, |
| 421 | .suspend_supported = 1, |
| 422 | .idle_enabled = 0, |
| 423 | .suspend_enabled = 1, |
| 424 | .latency = 2000, |
| 425 | .residency = 0, |
| 426 | }, |
| 427 | [MSM_PM_SLEEP_MODE_WAIT_FOR_INTERRUPT] = { |
| 428 | .idle_supported = 1, |
| 429 | .suspend_supported = 1, |
| 430 | .idle_enabled = 1, |
| 431 | .suspend_enabled = 1, |
| 432 | .latency = 2, |
| 433 | .residency = 0, |
| 434 | }, |
| 435 | }; |
| 436 | |
Maheshkumar Sivasubramanian | c6c5503 | 2011-10-25 16:01:32 -0600 | [diff] [blame] | 437 | static struct msm_pm_boot_platform_data msm_pm_boot_pdata __initdata = { |
Sravan Kumar Ambapuram | b22cf4d | 2012-01-02 21:45:04 +0530 | [diff] [blame] | 438 | .mode = MSM_PM_BOOT_CONFIG_RESET_VECTOR_PHYS, |
| 439 | .p_addr = 0, |
Maheshkumar Sivasubramanian | c6c5503 | 2011-10-25 16:01:32 -0600 | [diff] [blame] | 440 | }; |
| 441 | |
Taniya Das | c98bfbc | 2011-08-23 09:58:55 +0530 | [diff] [blame] | 442 | static struct android_pmem_platform_data android_pmem_adsp_pdata = { |
| 443 | .name = "pmem_adsp", |
| 444 | .allocator_type = PMEM_ALLOCATORTYPE_BITMAP, |
| 445 | .cached = 1, |
| 446 | .memory_type = MEMTYPE_EBI1, |
| 447 | }; |
| 448 | |
| 449 | static struct platform_device android_pmem_adsp_device = { |
| 450 | .name = "android_pmem", |
| 451 | .id = 1, |
| 452 | .dev = { .platform_data = &android_pmem_adsp_pdata }, |
| 453 | }; |
| 454 | |
| 455 | static unsigned pmem_mdp_size = MSM_PMEM_MDP_SIZE; |
| 456 | static int __init pmem_mdp_size_setup(char *p) |
| 457 | { |
| 458 | pmem_mdp_size = memparse(p, NULL); |
| 459 | return 0; |
| 460 | } |
| 461 | |
| 462 | early_param("pmem_mdp_size", pmem_mdp_size_setup); |
| 463 | |
| 464 | static unsigned pmem_adsp_size = MSM_PMEM_ADSP_SIZE; |
| 465 | static int __init pmem_adsp_size_setup(char *p) |
| 466 | { |
| 467 | pmem_adsp_size = memparse(p, NULL); |
| 468 | return 0; |
| 469 | } |
| 470 | |
| 471 | early_param("pmem_adsp_size", pmem_adsp_size_setup); |
| 472 | |
Taniya Das | c98bfbc | 2011-08-23 09:58:55 +0530 | [diff] [blame] | 473 | #define SND(desc, num) { .name = #desc, .id = num } |
| 474 | static struct snd_endpoint snd_endpoints_list[] = { |
| 475 | SND(HANDSET, 0), |
| 476 | SND(MONO_HEADSET, 2), |
| 477 | SND(HEADSET, 3), |
| 478 | SND(SPEAKER, 6), |
| 479 | SND(TTY_HEADSET, 8), |
| 480 | SND(TTY_VCO, 9), |
| 481 | SND(TTY_HCO, 10), |
| 482 | SND(BT, 12), |
| 483 | SND(IN_S_SADC_OUT_HANDSET, 16), |
| 484 | SND(IN_S_SADC_OUT_SPEAKER_PHONE, 25), |
| 485 | SND(FM_DIGITAL_STEREO_HEADSET, 26), |
| 486 | SND(FM_DIGITAL_SPEAKER_PHONE, 27), |
| 487 | SND(FM_DIGITAL_BT_A2DP_HEADSET, 28), |
Shashi Kumar | 64e0760 | 2011-10-11 13:18:57 +0530 | [diff] [blame] | 488 | SND(STEREO_HEADSET_AND_SPEAKER, 31), |
Phani Kumar Allada | d697125 | 2011-10-19 10:50:15 +0530 | [diff] [blame] | 489 | SND(CURRENT, 0x7FFFFFFE), |
Taniya Das | c98bfbc | 2011-08-23 09:58:55 +0530 | [diff] [blame] | 490 | SND(FM_ANALOG_STEREO_HEADSET, 35), |
| 491 | SND(FM_ANALOG_STEREO_HEADSET_CODEC, 36), |
| 492 | }; |
| 493 | #undef SND |
| 494 | |
| 495 | static struct msm_snd_endpoints msm_device_snd_endpoints = { |
| 496 | .endpoints = snd_endpoints_list, |
| 497 | .num = sizeof(snd_endpoints_list) / sizeof(struct snd_endpoint) |
| 498 | }; |
| 499 | |
| 500 | static struct platform_device msm_device_snd = { |
| 501 | .name = "msm_snd", |
| 502 | .id = -1, |
| 503 | .dev = { |
| 504 | .platform_data = &msm_device_snd_endpoints |
| 505 | }, |
| 506 | }; |
| 507 | |
| 508 | #define DEC0_FORMAT ((1<<MSM_ADSP_CODEC_MP3)| \ |
| 509 | (1<<MSM_ADSP_CODEC_AAC)|(1<<MSM_ADSP_CODEC_WMA)| \ |
| 510 | (1<<MSM_ADSP_CODEC_WMAPRO)|(1<<MSM_ADSP_CODEC_AMRWB)| \ |
| 511 | (1<<MSM_ADSP_CODEC_AMRNB)|(1<<MSM_ADSP_CODEC_WAV)| \ |
| 512 | (1<<MSM_ADSP_CODEC_ADPCM)|(1<<MSM_ADSP_CODEC_YADPCM)| \ |
| 513 | (1<<MSM_ADSP_CODEC_EVRC)|(1<<MSM_ADSP_CODEC_QCELP)) |
| 514 | #define DEC1_FORMAT ((1<<MSM_ADSP_CODEC_MP3)| \ |
| 515 | (1<<MSM_ADSP_CODEC_AAC)|(1<<MSM_ADSP_CODEC_WMA)| \ |
| 516 | (1<<MSM_ADSP_CODEC_WMAPRO)|(1<<MSM_ADSP_CODEC_AMRWB)| \ |
| 517 | (1<<MSM_ADSP_CODEC_AMRNB)|(1<<MSM_ADSP_CODEC_WAV)| \ |
| 518 | (1<<MSM_ADSP_CODEC_ADPCM)|(1<<MSM_ADSP_CODEC_YADPCM)| \ |
| 519 | (1<<MSM_ADSP_CODEC_EVRC)|(1<<MSM_ADSP_CODEC_QCELP)) |
| 520 | #define DEC2_FORMAT ((1<<MSM_ADSP_CODEC_MP3)| \ |
| 521 | (1<<MSM_ADSP_CODEC_AAC)|(1<<MSM_ADSP_CODEC_WMA)| \ |
| 522 | (1<<MSM_ADSP_CODEC_WMAPRO)|(1<<MSM_ADSP_CODEC_AMRWB)| \ |
| 523 | (1<<MSM_ADSP_CODEC_AMRNB)|(1<<MSM_ADSP_CODEC_WAV)| \ |
| 524 | (1<<MSM_ADSP_CODEC_ADPCM)|(1<<MSM_ADSP_CODEC_YADPCM)| \ |
| 525 | (1<<MSM_ADSP_CODEC_EVRC)|(1<<MSM_ADSP_CODEC_QCELP)) |
| 526 | #define DEC3_FORMAT ((1<<MSM_ADSP_CODEC_MP3)| \ |
| 527 | (1<<MSM_ADSP_CODEC_AAC)|(1<<MSM_ADSP_CODEC_WMA)| \ |
| 528 | (1<<MSM_ADSP_CODEC_WMAPRO)|(1<<MSM_ADSP_CODEC_AMRWB)| \ |
| 529 | (1<<MSM_ADSP_CODEC_AMRNB)|(1<<MSM_ADSP_CODEC_WAV)| \ |
| 530 | (1<<MSM_ADSP_CODEC_ADPCM)|(1<<MSM_ADSP_CODEC_YADPCM)| \ |
| 531 | (1<<MSM_ADSP_CODEC_EVRC)|(1<<MSM_ADSP_CODEC_QCELP)) |
| 532 | #define DEC4_FORMAT (1<<MSM_ADSP_CODEC_MIDI) |
| 533 | |
| 534 | static unsigned int dec_concurrency_table[] = { |
| 535 | /* Audio LP */ |
| 536 | (DEC0_FORMAT|(1<<MSM_ADSP_MODE_TUNNEL)|(1<<MSM_ADSP_OP_DMA)), 0, |
| 537 | 0, 0, 0, |
| 538 | |
| 539 | /* Concurrency 1 */ |
| 540 | (DEC0_FORMAT|(1<<MSM_ADSP_MODE_TUNNEL)|(1<<MSM_ADSP_OP_DM)), |
| 541 | (DEC1_FORMAT|(1<<MSM_ADSP_MODE_TUNNEL)|(1<<MSM_ADSP_OP_DM)), |
| 542 | (DEC2_FORMAT|(1<<MSM_ADSP_MODE_TUNNEL)|(1<<MSM_ADSP_OP_DM)), |
| 543 | (DEC3_FORMAT|(1<<MSM_ADSP_MODE_TUNNEL)|(1<<MSM_ADSP_OP_DM)), |
| 544 | (DEC4_FORMAT), |
| 545 | |
| 546 | /* Concurrency 2 */ |
| 547 | (DEC0_FORMAT|(1<<MSM_ADSP_MODE_TUNNEL)|(1<<MSM_ADSP_OP_DM)), |
| 548 | (DEC1_FORMAT|(1<<MSM_ADSP_MODE_TUNNEL)|(1<<MSM_ADSP_OP_DM)), |
| 549 | (DEC2_FORMAT|(1<<MSM_ADSP_MODE_TUNNEL)|(1<<MSM_ADSP_OP_DM)), |
| 550 | (DEC3_FORMAT|(1<<MSM_ADSP_MODE_TUNNEL)|(1<<MSM_ADSP_OP_DM)), |
| 551 | (DEC4_FORMAT), |
| 552 | |
| 553 | /* Concurrency 3 */ |
| 554 | (DEC0_FORMAT|(1<<MSM_ADSP_MODE_TUNNEL)|(1<<MSM_ADSP_OP_DM)), |
| 555 | (DEC1_FORMAT|(1<<MSM_ADSP_MODE_TUNNEL)|(1<<MSM_ADSP_OP_DM)), |
| 556 | (DEC2_FORMAT|(1<<MSM_ADSP_MODE_TUNNEL)|(1<<MSM_ADSP_OP_DM)), |
| 557 | (DEC3_FORMAT|(1<<MSM_ADSP_MODE_NONTUNNEL)|(1<<MSM_ADSP_OP_DM)), |
| 558 | (DEC4_FORMAT), |
| 559 | |
| 560 | /* Concurrency 4 */ |
| 561 | (DEC0_FORMAT|(1<<MSM_ADSP_MODE_TUNNEL)|(1<<MSM_ADSP_OP_DM)), |
| 562 | (DEC1_FORMAT|(1<<MSM_ADSP_MODE_TUNNEL)|(1<<MSM_ADSP_OP_DM)), |
| 563 | (DEC2_FORMAT|(1<<MSM_ADSP_MODE_NONTUNNEL)|(1<<MSM_ADSP_OP_DM)), |
| 564 | (DEC3_FORMAT|(1<<MSM_ADSP_MODE_NONTUNNEL)|(1<<MSM_ADSP_OP_DM)), |
| 565 | (DEC4_FORMAT), |
| 566 | |
| 567 | /* Concurrency 5 */ |
| 568 | (DEC0_FORMAT|(1<<MSM_ADSP_MODE_TUNNEL)|(1<<MSM_ADSP_OP_DM)), |
| 569 | (DEC1_FORMAT|(1<<MSM_ADSP_MODE_NONTUNNEL)|(1<<MSM_ADSP_OP_DM)), |
| 570 | (DEC2_FORMAT|(1<<MSM_ADSP_MODE_NONTUNNEL)|(1<<MSM_ADSP_OP_DM)), |
| 571 | (DEC3_FORMAT|(1<<MSM_ADSP_MODE_NONTUNNEL)|(1<<MSM_ADSP_OP_DM)), |
| 572 | (DEC4_FORMAT), |
| 573 | |
| 574 | /* Concurrency 6 */ |
| 575 | (DEC0_FORMAT|(1<<MSM_ADSP_MODE_NONTUNNEL)|(1<<MSM_ADSP_OP_DM)), |
| 576 | 0, 0, 0, 0, |
| 577 | |
| 578 | /* Concurrency 7 */ |
| 579 | (DEC0_FORMAT|(1<<MSM_ADSP_MODE_NONTUNNEL)|(1<<MSM_ADSP_OP_DM)), |
| 580 | (DEC1_FORMAT|(1<<MSM_ADSP_MODE_NONTUNNEL)|(1<<MSM_ADSP_OP_DM)), |
| 581 | (DEC2_FORMAT|(1<<MSM_ADSP_MODE_NONTUNNEL)|(1<<MSM_ADSP_OP_DM)), |
| 582 | (DEC3_FORMAT|(1<<MSM_ADSP_MODE_NONTUNNEL)|(1<<MSM_ADSP_OP_DM)), |
| 583 | (DEC4_FORMAT), |
| 584 | }; |
| 585 | |
| 586 | #define DEC_INFO(name, queueid, decid, nr_codec) { .module_name = name, \ |
| 587 | .module_queueid = queueid, .module_decid = decid, \ |
| 588 | .nr_codec_support = nr_codec} |
| 589 | |
| 590 | static struct msm_adspdec_info dec_info_list[] = { |
| 591 | DEC_INFO("AUDPLAY0TASK", 13, 0, 11), /* AudPlay0BitStreamCtrlQueue */ |
| 592 | DEC_INFO("AUDPLAY1TASK", 14, 1, 11), /* AudPlay1BitStreamCtrlQueue */ |
| 593 | DEC_INFO("AUDPLAY2TASK", 15, 2, 11), /* AudPlay2BitStreamCtrlQueue */ |
| 594 | DEC_INFO("AUDPLAY3TASK", 16, 3, 11), /* AudPlay3BitStreamCtrlQueue */ |
| 595 | DEC_INFO("AUDPLAY4TASK", 17, 4, 1), /* AudPlay4BitStreamCtrlQueue */ |
| 596 | }; |
| 597 | |
| 598 | static struct msm_adspdec_database msm_device_adspdec_database = { |
| 599 | .num_dec = ARRAY_SIZE(dec_info_list), |
| 600 | .num_concurrency_support = (ARRAY_SIZE(dec_concurrency_table) / \ |
| 601 | ARRAY_SIZE(dec_info_list)), |
| 602 | .dec_concurrency_table = dec_concurrency_table, |
| 603 | .dec_info_list = dec_info_list, |
| 604 | }; |
| 605 | |
| 606 | static struct platform_device msm_device_adspdec = { |
| 607 | .name = "msm_adspdec", |
| 608 | .id = -1, |
| 609 | .dev = { |
| 610 | .platform_data = &msm_device_adspdec_database |
| 611 | }, |
| 612 | }; |
| 613 | |
| 614 | static struct android_pmem_platform_data android_pmem_audio_pdata = { |
| 615 | .name = "pmem_audio", |
| 616 | .allocator_type = PMEM_ALLOCATORTYPE_BITMAP, |
| 617 | .cached = 0, |
| 618 | .memory_type = MEMTYPE_EBI1, |
| 619 | }; |
| 620 | |
| 621 | static struct platform_device android_pmem_audio_device = { |
| 622 | .name = "android_pmem", |
| 623 | .id = 2, |
| 624 | .dev = { .platform_data = &android_pmem_audio_pdata }, |
| 625 | }; |
| 626 | |
| 627 | static struct android_pmem_platform_data android_pmem_pdata = { |
| 628 | .name = "pmem", |
| 629 | .allocator_type = PMEM_ALLOCATORTYPE_BITMAP, |
| 630 | .cached = 1, |
| 631 | .memory_type = MEMTYPE_EBI1, |
| 632 | }; |
| 633 | static struct platform_device android_pmem_device = { |
| 634 | .name = "android_pmem", |
| 635 | .id = 0, |
| 636 | .dev = { .platform_data = &android_pmem_pdata }, |
| 637 | }; |
| 638 | |
| 639 | static u32 msm_calculate_batt_capacity(u32 current_voltage); |
| 640 | |
| 641 | static struct msm_psy_batt_pdata msm_psy_batt_data = { |
| 642 | .voltage_min_design = 2800, |
| 643 | .voltage_max_design = 4300, |
| 644 | .avail_chg_sources = AC_CHG | USB_CHG , |
| 645 | .batt_technology = POWER_SUPPLY_TECHNOLOGY_LION, |
| 646 | .calculate_capacity = &msm_calculate_batt_capacity, |
| 647 | }; |
| 648 | |
| 649 | static u32 msm_calculate_batt_capacity(u32 current_voltage) |
| 650 | { |
| 651 | u32 low_voltage = msm_psy_batt_data.voltage_min_design; |
| 652 | u32 high_voltage = msm_psy_batt_data.voltage_max_design; |
| 653 | |
| 654 | return (current_voltage - low_voltage) * 100 |
| 655 | / (high_voltage - low_voltage); |
| 656 | } |
| 657 | |
| 658 | static struct platform_device msm_batt_device = { |
| 659 | .name = "msm-battery", |
| 660 | .id = -1, |
| 661 | .dev.platform_data = &msm_psy_batt_data, |
| 662 | }; |
| 663 | |
Chintan Pandya | f4ad400 | 2012-02-28 19:49:03 +0530 | [diff] [blame] | 664 | static struct platform_device *common_devices[] __initdata = { |
| 665 | &android_usb_device, |
| 666 | &android_pmem_device, |
| 667 | &android_pmem_adsp_device, |
| 668 | &android_pmem_audio_device, |
| 669 | &msm_batt_device, |
| 670 | &msm_device_adspdec, |
| 671 | &msm_device_snd, |
| 672 | &asoc_msm_pcm, |
| 673 | &asoc_msm_dai0, |
| 674 | &asoc_msm_dai1, |
| 675 | }; |
| 676 | |
| 677 | static struct platform_device *qrd7627a_devices[] __initdata = { |
Taniya Das | c98bfbc | 2011-08-23 09:58:55 +0530 | [diff] [blame] | 678 | &msm_device_dmov, |
| 679 | &msm_device_smd, |
| 680 | &msm_device_uart1, |
| 681 | &msm_device_uart_dm1, |
| 682 | &msm_gsbi0_qup_i2c_device, |
| 683 | &msm_gsbi1_qup_i2c_device, |
| 684 | &msm_device_otg, |
| 685 | &msm_device_gadget_peripheral, |
Taniya Das | c98bfbc | 2011-08-23 09:58:55 +0530 | [diff] [blame] | 686 | &msm_kgsl_3d0, |
Taniya Das | c98bfbc | 2011-08-23 09:58:55 +0530 | [diff] [blame] | 687 | }; |
| 688 | |
Chintan Pandya | b1bad0e | 2012-02-06 19:04:51 +0530 | [diff] [blame] | 689 | static struct platform_device *qrd3_devices[] __initdata = { |
| 690 | &msm_device_nand, |
| 691 | }; |
| 692 | |
Chintan Pandya | f4ad400 | 2012-02-28 19:49:03 +0530 | [diff] [blame] | 693 | static struct platform_device *msm8625_evb_devices[] __initdata = { |
| 694 | &msm8625_device_dmov, |
| 695 | &msm8625_device_smd, |
| 696 | &msm8625_gsbi0_qup_i2c_device, |
| 697 | &msm8625_gsbi1_qup_i2c_device, |
| 698 | &msm8625_device_uart1, |
| 699 | &msm8625_device_otg, |
| 700 | &msm8625_device_gadget_peripheral, |
Aparna Mallavarapu | d95d8fc | 2012-03-08 12:07:37 +0530 | [diff] [blame] | 701 | &msm8625_kgsl_3d0, |
Chintan Pandya | f4ad400 | 2012-02-28 19:49:03 +0530 | [diff] [blame] | 702 | }; |
| 703 | |
Taniya Das | c98bfbc | 2011-08-23 09:58:55 +0530 | [diff] [blame] | 704 | static unsigned pmem_kernel_ebi1_size = PMEM_KERNEL_EBI1_SIZE; |
| 705 | static int __init pmem_kernel_ebi1_size_setup(char *p) |
| 706 | { |
| 707 | pmem_kernel_ebi1_size = memparse(p, NULL); |
| 708 | return 0; |
| 709 | } |
| 710 | early_param("pmem_kernel_ebi1_size", pmem_kernel_ebi1_size_setup); |
| 711 | |
| 712 | static unsigned pmem_audio_size = MSM_PMEM_AUDIO_SIZE; |
| 713 | static int __init pmem_audio_size_setup(char *p) |
| 714 | { |
| 715 | pmem_audio_size = memparse(p, NULL); |
| 716 | return 0; |
| 717 | } |
| 718 | early_param("pmem_audio_size", pmem_audio_size_setup); |
| 719 | |
Taniya Das | c98bfbc | 2011-08-23 09:58:55 +0530 | [diff] [blame] | 720 | static struct memtype_reserve msm7627a_reserve_table[] __initdata = { |
| 721 | [MEMTYPE_SMI] = { |
| 722 | }, |
| 723 | [MEMTYPE_EBI0] = { |
| 724 | .flags = MEMTYPE_FLAGS_1M_ALIGN, |
| 725 | }, |
| 726 | [MEMTYPE_EBI1] = { |
| 727 | .flags = MEMTYPE_FLAGS_1M_ALIGN, |
| 728 | }, |
| 729 | }; |
| 730 | |
| 731 | static void __init size_pmem_devices(void) |
| 732 | { |
| 733 | #ifdef CONFIG_ANDROID_PMEM |
| 734 | android_pmem_adsp_pdata.size = pmem_adsp_size; |
| 735 | android_pmem_pdata.size = pmem_mdp_size; |
| 736 | android_pmem_audio_pdata.size = pmem_audio_size; |
| 737 | #endif |
| 738 | } |
| 739 | |
| 740 | static void __init reserve_memory_for(struct android_pmem_platform_data *p) |
| 741 | { |
| 742 | msm7627a_reserve_table[p->memory_type].size += p->size; |
| 743 | } |
| 744 | |
| 745 | static void __init reserve_pmem_memory(void) |
| 746 | { |
| 747 | #ifdef CONFIG_ANDROID_PMEM |
| 748 | reserve_memory_for(&android_pmem_adsp_pdata); |
| 749 | reserve_memory_for(&android_pmem_pdata); |
| 750 | reserve_memory_for(&android_pmem_audio_pdata); |
| 751 | msm7627a_reserve_table[MEMTYPE_EBI1].size += pmem_kernel_ebi1_size; |
| 752 | #endif |
| 753 | } |
| 754 | |
| 755 | static void __init msm7627a_calculate_reserve_sizes(void) |
| 756 | { |
| 757 | size_pmem_devices(); |
| 758 | reserve_pmem_memory(); |
| 759 | } |
| 760 | |
| 761 | static int msm7627a_paddr_to_memtype(unsigned int paddr) |
| 762 | { |
| 763 | return MEMTYPE_EBI1; |
| 764 | } |
| 765 | |
| 766 | static struct reserve_info msm7627a_reserve_info __initdata = { |
| 767 | .memtype_reserve_table = msm7627a_reserve_table, |
| 768 | .calculate_reserve_sizes = msm7627a_calculate_reserve_sizes, |
| 769 | .paddr_to_memtype = msm7627a_paddr_to_memtype, |
| 770 | }; |
| 771 | |
| 772 | static void __init msm7627a_reserve(void) |
| 773 | { |
| 774 | reserve_info = &msm7627a_reserve_info; |
| 775 | msm_reserve(); |
| 776 | } |
| 777 | |
Chintan Pandya | f4ad400 | 2012-02-28 19:49:03 +0530 | [diff] [blame] | 778 | static void msmqrd_adsp_add_pdev(void) |
| 779 | { |
| 780 | int rc = 0; |
| 781 | struct rpc_board_dev *rpc_adsp_pdev; |
| 782 | |
| 783 | rpc_adsp_pdev = kzalloc(sizeof(struct rpc_board_dev), GFP_KERNEL); |
| 784 | if (rpc_adsp_pdev == NULL) { |
| 785 | pr_err("%s: Memory Allocation failure\n", __func__); |
| 786 | return; |
| 787 | } |
| 788 | rpc_adsp_pdev->prog = ADSP_RPC_PROG; |
| 789 | |
| 790 | if (cpu_is_msm8625()) |
| 791 | rpc_adsp_pdev->pdev = msm8625_device_adsp; |
| 792 | else |
| 793 | rpc_adsp_pdev->pdev = msm_adsp_device; |
| 794 | rc = msm_rpc_add_board_dev(rpc_adsp_pdev, 1); |
| 795 | if (rc < 0) { |
| 796 | pr_err("%s: return val: %d\n", __func__, rc); |
| 797 | kfree(rpc_adsp_pdev); |
| 798 | } |
| 799 | } |
| 800 | |
| 801 | static void __init msm7627a_device_i2c_init(void) |
Taniya Das | c98bfbc | 2011-08-23 09:58:55 +0530 | [diff] [blame] | 802 | { |
| 803 | msm_gsbi0_qup_i2c_device.dev.platform_data = &msm_gsbi0_qup_i2c_pdata; |
| 804 | msm_gsbi1_qup_i2c_device.dev.platform_data = &msm_gsbi1_qup_i2c_pdata; |
| 805 | } |
| 806 | |
Chintan Pandya | f4ad400 | 2012-02-28 19:49:03 +0530 | [diff] [blame] | 807 | static void __init msm8625_device_i2c_init(void) |
| 808 | { |
| 809 | msm8625_gsbi0_qup_i2c_device.dev.platform_data |
| 810 | = &msm_gsbi0_qup_i2c_pdata; |
| 811 | msm8625_gsbi1_qup_i2c_device.dev.platform_data |
| 812 | = &msm_gsbi1_qup_i2c_pdata; |
| 813 | } |
| 814 | |
Taniya Das | c98bfbc | 2011-08-23 09:58:55 +0530 | [diff] [blame] | 815 | static struct msm_handset_platform_data hs_platform_data = { |
| 816 | .hs_name = "7k_handset", |
| 817 | .pwr_key_delay_ms = 500, /* 0 will disable end key */ |
| 818 | }; |
| 819 | |
| 820 | static struct platform_device hs_pdev = { |
| 821 | .name = "msm-handset", |
| 822 | .id = -1, |
| 823 | .dev = { |
| 824 | .platform_data = &hs_platform_data, |
| 825 | }, |
| 826 | }; |
| 827 | |
Pankaj Kumar | 3cec058 | 2011-11-18 11:13:29 +0530 | [diff] [blame] | 828 | static struct platform_device msm_proccomm_regulator_dev = { |
| 829 | .name = PROCCOMM_REGULATOR_DEV_NAME, |
| 830 | .id = -1, |
| 831 | .dev = { |
| 832 | .platform_data = &msm7x27a_proccomm_regulator_data |
| 833 | } |
| 834 | }; |
| 835 | |
| 836 | static void __init msm7627a_init_regulators(void) |
| 837 | { |
| 838 | int rc = platform_device_register(&msm_proccomm_regulator_dev); |
| 839 | if (rc) |
| 840 | pr_err("%s: could not register regulator device: %d\n", |
| 841 | __func__, rc); |
| 842 | } |
| 843 | |
Mohan Pallaka | b6c44b3 | 2011-11-23 15:19:57 +0530 | [diff] [blame] | 844 | /* 8625 keypad device information */ |
| 845 | static unsigned int kp_row_gpios_8625[] = {31}; |
| 846 | static unsigned int kp_col_gpios_8625[] = {36, 37}; |
| 847 | |
| 848 | static const unsigned short keymap_8625[] = { |
| 849 | KEY_VOLUMEUP, |
| 850 | KEY_VOLUMEDOWN, |
| 851 | }; |
| 852 | |
| 853 | static struct gpio_event_matrix_info kp_matrix_info_8625 = { |
| 854 | .info.func = gpio_event_matrix_func, |
| 855 | .keymap = keymap_8625, |
| 856 | .output_gpios = kp_row_gpios_8625, |
| 857 | .input_gpios = kp_col_gpios_8625, |
| 858 | .noutputs = ARRAY_SIZE(kp_row_gpios_8625), |
| 859 | .ninputs = ARRAY_SIZE(kp_col_gpios_8625), |
| 860 | .settle_time.tv_nsec = 40 * NSEC_PER_USEC, |
| 861 | .poll_time.tv_nsec = 20 * NSEC_PER_MSEC, |
| 862 | .flags = GPIOKPF_LEVEL_TRIGGERED_IRQ | GPIOKPF_DRIVE_INACTIVE | |
| 863 | GPIOKPF_PRINT_UNMAPPED_KEYS, |
| 864 | }; |
| 865 | |
| 866 | static struct gpio_event_info *kp_info_8625[] = { |
| 867 | &kp_matrix_info_8625.info, |
| 868 | }; |
| 869 | static struct gpio_event_platform_data kp_pdata_8625 = { |
| 870 | .name = "8625_kp", |
| 871 | .info = kp_info_8625, |
| 872 | .info_count = ARRAY_SIZE(kp_info_8625) |
| 873 | }; |
| 874 | |
| 875 | static struct platform_device kp_pdev_8625 = { |
| 876 | .name = GPIO_EVENT_DEV_NAME, |
| 877 | .id = -1, |
| 878 | .dev = { |
| 879 | .platform_data = &kp_pdata_8625, |
| 880 | }, |
| 881 | }; |
| 882 | |
Mohan Pallaka | ad78af8 | 2011-11-23 15:30:07 +0530 | [diff] [blame] | 883 | #define LED_RED_GPIO_8625 49 |
| 884 | #define LED_GREEN_GPIO_8625 34 |
| 885 | |
| 886 | static struct gpio_led gpio_leds_config_8625[] = { |
| 887 | { |
| 888 | .name = "green", |
| 889 | .gpio = LED_GREEN_GPIO_8625, |
| 890 | }, |
| 891 | { |
| 892 | .name = "red", |
| 893 | .gpio = LED_RED_GPIO_8625, |
| 894 | }, |
| 895 | }; |
| 896 | |
| 897 | static struct gpio_led_platform_data gpio_leds_pdata_8625 = { |
| 898 | .num_leds = ARRAY_SIZE(gpio_leds_config_8625), |
| 899 | .leds = gpio_leds_config_8625, |
| 900 | }; |
| 901 | |
| 902 | static struct platform_device gpio_leds_8625 = { |
| 903 | .name = "leds-gpio", |
| 904 | .id = -1, |
| 905 | .dev = { |
| 906 | .platform_data = &gpio_leds_pdata_8625, |
| 907 | }, |
| 908 | }; |
| 909 | |
Mohan Pallaka | 4c5bb92 | 2011-11-23 15:54:51 +0530 | [diff] [blame] | 910 | #define MXT_TS_IRQ_GPIO 48 |
| 911 | #define MXT_TS_RESET_GPIO 26 |
| 912 | |
| 913 | static const u8 mxt_config_data[] = { |
| 914 | /* T6 Object */ |
| 915 | 0, 0, 0, 0, 0, 0, |
| 916 | /* T38 Object */ |
| 917 | 16, 0, 0, 0, 0, 0, 0, 0, |
| 918 | /* T7 Object */ |
| 919 | 255, 255, 10, |
| 920 | /* T8 Object */ |
| 921 | 30, 0, 20, 20, 0, 0, 20, 0, 50, 0, |
| 922 | /* T9 Object */ |
| 923 | 3, 0, 0, 18, 11, 0, 32, 75, 3, 3, |
| 924 | 0, 1, 1, 0, 10, 10, 10, 10, 31, 3, |
| 925 | 223, 1, 11, 11, 15, 15, 151, 43, 145, 80, |
| 926 | 100, 15, 0, 0, 0, |
| 927 | /* T15 Object */ |
| 928 | 131, 0, 11, 11, 1, 1, 0, 45, 3, 0, |
| 929 | 0, |
| 930 | /* T18 Object */ |
| 931 | 0, 0, |
| 932 | /* T19 Object */ |
| 933 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 934 | 0, 0, 0, 0, 0, 0, |
| 935 | /* T23 Object */ |
| 936 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 937 | 0, 0, 0, 0, 0, |
| 938 | /* T25 Object */ |
| 939 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 940 | 0, 0, 0, 0, |
| 941 | /* T40 Object */ |
| 942 | 0, 0, 0, 0, 0, |
| 943 | /* T42 Object */ |
| 944 | 0, 0, 0, 0, 0, 0, 0, 0, |
| 945 | /* T46 Object */ |
| 946 | 0, 2, 32, 48, 0, 0, 0, 0, 0, |
| 947 | /* T47 Object */ |
| 948 | 1, 20, 60, 5, 2, 50, 40, 0, 0, 40, |
| 949 | /* T48 Object */ |
| 950 | 1, 12, 80, 0, 0, 0, 0, 0, 0, 0, |
| 951 | 0, 0, 0, 6, 6, 0, 0, 100, 4, 64, |
| 952 | 10, 0, 20, 5, 0, 38, 0, 20, 0, 0, |
| 953 | 0, 0, 0, 0, 16, 65, 3, 1, 1, 0, |
| 954 | 10, 10, 10, 0, 0, 15, 15, 154, 58, 145, |
| 955 | 80, 100, 15, 3, |
| 956 | }; |
| 957 | |
| 958 | static struct mxt_config_info mxt_config_array[] = { |
| 959 | { |
| 960 | .config = mxt_config_data, |
| 961 | .config_length = ARRAY_SIZE(mxt_config_data), |
| 962 | .family_id = 0x81, |
| 963 | .variant_id = 0x01, |
| 964 | .version = 0x10, |
| 965 | .build = 0xAA, |
| 966 | }, |
| 967 | }; |
| 968 | |
| 969 | static int mxt_key_codes[MXT_KEYARRAY_MAX_KEYS] = { |
| 970 | [0] = KEY_HOME, |
| 971 | [1] = KEY_MENU, |
| 972 | [9] = KEY_BACK, |
| 973 | [10] = KEY_SEARCH, |
| 974 | }; |
| 975 | |
| 976 | static struct mxt_platform_data mxt_platform_data = { |
| 977 | .config_array = mxt_config_array, |
| 978 | .config_array_size = ARRAY_SIZE(mxt_config_array), |
| 979 | .x_size = 479, |
| 980 | .y_size = 799, |
| 981 | .irqflags = IRQF_TRIGGER_FALLING, |
| 982 | .i2c_pull_up = true, |
| 983 | .reset_gpio = MXT_TS_RESET_GPIO, |
| 984 | .irq_gpio = MXT_TS_IRQ_GPIO, |
| 985 | .key_codes = mxt_key_codes, |
| 986 | }; |
| 987 | |
| 988 | static struct i2c_board_info mxt_device_info[] __initdata = { |
| 989 | { |
| 990 | I2C_BOARD_INFO("atmel_mxt_ts", 0x4a), |
| 991 | .platform_data = &mxt_platform_data, |
| 992 | .irq = MSM_GPIO_TO_INT(MXT_TS_IRQ_GPIO), |
| 993 | }, |
| 994 | }; |
| 995 | |
Taniya Das | c868a2e | 2012-01-03 10:18:47 +0530 | [diff] [blame] | 996 | static void msm7627a_add_io_devices(void) |
| 997 | { |
Mohan Pallaka | ad78af8 | 2011-11-23 15:30:07 +0530 | [diff] [blame] | 998 | int rc; |
| 999 | |
Mohan Pallaka | 4c5bb92 | 2011-11-23 15:54:51 +0530 | [diff] [blame] | 1000 | /* touchscreen */ |
| 1001 | if (machine_is_msm7627a_qrd1()) { |
| 1002 | i2c_register_board_info(MSM_GSBI1_QUP_I2C_BUS_ID, |
| 1003 | synaptic_i2c_clearpad3k, |
| 1004 | ARRAY_SIZE(synaptic_i2c_clearpad3k)); |
Chintan Pandya | f4ad400 | 2012-02-28 19:49:03 +0530 | [diff] [blame] | 1005 | } else if (machine_is_msm7627a_evb() || machine_is_msm8625_evb()) { |
Mohan Pallaka | 4c5bb92 | 2011-11-23 15:54:51 +0530 | [diff] [blame] | 1006 | rc = gpio_tlmm_config(GPIO_CFG(MXT_TS_IRQ_GPIO, 0, |
| 1007 | GPIO_CFG_INPUT, GPIO_CFG_PULL_UP, |
| 1008 | GPIO_CFG_8MA), GPIO_CFG_ENABLE); |
| 1009 | if (rc) { |
| 1010 | pr_err("%s: gpio_tlmm_config for %d failed\n", |
| 1011 | __func__, MXT_TS_IRQ_GPIO); |
| 1012 | } |
| 1013 | |
| 1014 | rc = gpio_tlmm_config(GPIO_CFG(MXT_TS_RESET_GPIO, 0, |
| 1015 | GPIO_CFG_OUTPUT, GPIO_CFG_PULL_DOWN, |
| 1016 | GPIO_CFG_8MA), GPIO_CFG_ENABLE); |
| 1017 | if (rc) { |
| 1018 | pr_err("%s: gpio_tlmm_config for %d failed\n", |
| 1019 | __func__, MXT_TS_RESET_GPIO); |
| 1020 | } |
| 1021 | |
| 1022 | i2c_register_board_info(MSM_GSBI1_QUP_I2C_BUS_ID, |
| 1023 | mxt_device_info, |
| 1024 | ARRAY_SIZE(mxt_device_info)); |
| 1025 | } |
| 1026 | |
| 1027 | /* headset */ |
Taniya Das | c868a2e | 2012-01-03 10:18:47 +0530 | [diff] [blame] | 1028 | platform_device_register(&hs_pdev); |
| 1029 | |
Mohan Pallaka | 4c5bb92 | 2011-11-23 15:54:51 +0530 | [diff] [blame] | 1030 | /* vibrator */ |
Taniya Das | c868a2e | 2012-01-03 10:18:47 +0530 | [diff] [blame] | 1031 | #ifdef CONFIG_MSM_RPC_VIBRATOR |
| 1032 | msm_init_pmic_vibrator(); |
| 1033 | #endif |
| 1034 | |
Mohan Pallaka | b6c44b3 | 2011-11-23 15:19:57 +0530 | [diff] [blame] | 1035 | /* keypad */ |
Chintan Pandya | f4ad400 | 2012-02-28 19:49:03 +0530 | [diff] [blame] | 1036 | if (machine_is_msm7627a_evb() || machine_is_msm8625_evb()) |
Mohan Pallaka | b6c44b3 | 2011-11-23 15:19:57 +0530 | [diff] [blame] | 1037 | platform_device_register(&kp_pdev_8625); |
Mohan Pallaka | ad78af8 | 2011-11-23 15:30:07 +0530 | [diff] [blame] | 1038 | |
| 1039 | /* leds */ |
Chintan Pandya | f4ad400 | 2012-02-28 19:49:03 +0530 | [diff] [blame] | 1040 | if (machine_is_msm7627a_evb() || machine_is_msm8625_evb()) { |
Mohan Pallaka | ad78af8 | 2011-11-23 15:30:07 +0530 | [diff] [blame] | 1041 | rc = gpio_tlmm_config(GPIO_CFG(LED_RED_GPIO_8625, 0, |
| 1042 | GPIO_CFG_OUTPUT, GPIO_CFG_PULL_UP, |
| 1043 | GPIO_CFG_16MA), GPIO_CFG_ENABLE); |
| 1044 | if (rc) { |
| 1045 | pr_err("%s: gpio_tlmm_config for %d failed\n", |
| 1046 | __func__, LED_RED_GPIO_8625); |
| 1047 | } |
| 1048 | |
| 1049 | rc = gpio_tlmm_config(GPIO_CFG(LED_GREEN_GPIO_8625, 0, |
| 1050 | GPIO_CFG_OUTPUT, GPIO_CFG_PULL_UP, |
| 1051 | GPIO_CFG_16MA), GPIO_CFG_ENABLE); |
| 1052 | if (rc) { |
| 1053 | pr_err("%s: gpio_tlmm_config for %d failed\n", |
| 1054 | __func__, LED_GREEN_GPIO_8625); |
| 1055 | } |
| 1056 | |
| 1057 | platform_device_register(&gpio_leds_8625); |
| 1058 | } |
Taniya Das | c868a2e | 2012-01-03 10:18:47 +0530 | [diff] [blame] | 1059 | } |
| 1060 | |
Santosh Sajjan | 374d659 | 2012-01-19 23:16:46 +0530 | [diff] [blame] | 1061 | static int __init msm_qrd_init_ar6000pm(void) |
| 1062 | { |
| 1063 | msm_wlan_ar6000_pm_device.dev.platform_data = &ar600x_wlan_power; |
| 1064 | return platform_device_register(&msm_wlan_ar6000_pm_device); |
| 1065 | } |
| 1066 | |
Taniya Das | e380a2d | 2012-03-09 13:02:41 +0530 | [diff] [blame] | 1067 | static void __init msm_add_footswitch_devices(void) |
| 1068 | { |
| 1069 | platform_add_devices(msm_footswitch_devices, |
| 1070 | msm_num_footswitch_devices); |
| 1071 | } |
| 1072 | |
Chintan Pandya | b1bad0e | 2012-02-06 19:04:51 +0530 | [diff] [blame] | 1073 | static void add_platform_devices(void) |
| 1074 | { |
Chintan Pandya | f4ad400 | 2012-02-28 19:49:03 +0530 | [diff] [blame] | 1075 | if (machine_is_msm8625_evb()) |
| 1076 | platform_add_devices(msm8625_evb_devices, |
| 1077 | ARRAY_SIZE(msm8625_evb_devices)); |
| 1078 | else { |
| 1079 | platform_add_devices(qrd7627a_devices, |
| 1080 | ARRAY_SIZE(qrd7627a_devices)); |
| 1081 | if (machine_is_msm7627a_qrd3()) |
| 1082 | platform_add_devices(qrd3_devices, |
| 1083 | ARRAY_SIZE(qrd3_devices)); |
| 1084 | } |
| 1085 | platform_add_devices(common_devices, |
| 1086 | ARRAY_SIZE(common_devices)); |
Chintan Pandya | b1bad0e | 2012-02-06 19:04:51 +0530 | [diff] [blame] | 1087 | } |
| 1088 | |
Taniya Das | c98bfbc | 2011-08-23 09:58:55 +0530 | [diff] [blame] | 1089 | #define UART1DM_RX_GPIO 45 |
Chintan Pandya | f4ad400 | 2012-02-28 19:49:03 +0530 | [diff] [blame] | 1090 | static void __init qrd7627a_uart1dm_config(void) |
| 1091 | { |
| 1092 | msm_uart_dm1_pdata.wakeup_irq = gpio_to_irq(UART1DM_RX_GPIO); |
| 1093 | if (cpu_is_msm8625()) |
| 1094 | msm8625_device_uart_dm1.dev.platform_data = |
| 1095 | &msm_uart_dm1_pdata; |
| 1096 | else |
| 1097 | msm_device_uart_dm1.dev.platform_data = &msm_uart_dm1_pdata; |
| 1098 | } |
| 1099 | |
| 1100 | static void __init qrd7627a_otg_gadget(void) |
| 1101 | { |
| 1102 | msm_otg_pdata.swfi_latency = msm7627a_pm_data |
| 1103 | [MSM_PM_SLEEP_MODE_RAMP_DOWN_AND_WAIT_FOR_INTERRUPT].latency; |
| 1104 | |
| 1105 | if (cpu_is_msm8625()) { |
| 1106 | msm8625_device_otg.dev.platform_data = &msm_otg_pdata; |
| 1107 | msm8625_device_gadget_peripheral.dev.platform_data = |
| 1108 | &msm_gadget_pdata; |
| 1109 | |
| 1110 | } else { |
| 1111 | msm_device_otg.dev.platform_data = &msm_otg_pdata; |
| 1112 | msm_device_gadget_peripheral.dev.platform_data = |
| 1113 | &msm_gadget_pdata; |
| 1114 | } |
| 1115 | } |
| 1116 | |
Taniya Das | c868a2e | 2012-01-03 10:18:47 +0530 | [diff] [blame] | 1117 | static void __init msm_qrd_init(void) |
Taniya Das | c98bfbc | 2011-08-23 09:58:55 +0530 | [diff] [blame] | 1118 | { |
| 1119 | msm7x2x_misc_init(); |
Pankaj Kumar | 3cec058 | 2011-11-18 11:13:29 +0530 | [diff] [blame] | 1120 | msm7627a_init_regulators(); |
Chintan Pandya | f4ad400 | 2012-02-28 19:49:03 +0530 | [diff] [blame] | 1121 | msmqrd_adsp_add_pdev(); |
Taniya Das | c98bfbc | 2011-08-23 09:58:55 +0530 | [diff] [blame] | 1122 | |
Chintan Pandya | f4ad400 | 2012-02-28 19:49:03 +0530 | [diff] [blame] | 1123 | if (cpu_is_msm8625()) |
| 1124 | msm8625_device_i2c_init(); |
| 1125 | else |
| 1126 | msm7627a_device_i2c_init(); |
| 1127 | |
| 1128 | /* uart1dm*/ |
| 1129 | qrd7627a_uart1dm_config(); |
| 1130 | /*OTG gadget*/ |
| 1131 | qrd7627a_otg_gadget(); |
Taniya Das | c868a2e | 2012-01-03 10:18:47 +0530 | [diff] [blame] | 1132 | |
Taniya Das | e380a2d | 2012-03-09 13:02:41 +0530 | [diff] [blame] | 1133 | msm_add_footswitch_devices(); |
Chintan Pandya | b1bad0e | 2012-02-06 19:04:51 +0530 | [diff] [blame] | 1134 | add_platform_devices(); |
Taniya Das | c868a2e | 2012-01-03 10:18:47 +0530 | [diff] [blame] | 1135 | |
Santosh Sajjan | 374d659 | 2012-01-19 23:16:46 +0530 | [diff] [blame] | 1136 | /* Ensure ar6000pm device is registered before MMC/SDC */ |
| 1137 | msm_qrd_init_ar6000pm(); |
Chintan Pandya | cf467fc | 2011-12-01 17:11:11 +0530 | [diff] [blame] | 1138 | msm7627a_init_mmc(); |
| 1139 | |
Taniya Das | c98bfbc | 2011-08-23 09:58:55 +0530 | [diff] [blame] | 1140 | #ifdef CONFIG_USB_EHCI_MSM_72K |
| 1141 | msm7627a_init_host(); |
| 1142 | #endif |
Chintan Pandya | f4ad400 | 2012-02-28 19:49:03 +0530 | [diff] [blame] | 1143 | if (!machine_is_msm8625_evb()) { |
| 1144 | msm_pm_set_platform_data(msm7627a_pm_data, |
Taniya Das | c98bfbc | 2011-08-23 09:58:55 +0530 | [diff] [blame] | 1145 | ARRAY_SIZE(msm7627a_pm_data)); |
Chintan Pandya | f4ad400 | 2012-02-28 19:49:03 +0530 | [diff] [blame] | 1146 | BUG_ON(msm_pm_boot_init(&msm_pm_boot_pdata)); |
| 1147 | } |
Murali Nalajala | a182784 | 2011-11-13 14:12:39 +0530 | [diff] [blame] | 1148 | |
Taniya Das | 0a5303a | 2011-08-23 18:47:48 +0530 | [diff] [blame] | 1149 | msm_fb_add_devices(); |
Taniya Das | c98bfbc | 2011-08-23 09:58:55 +0530 | [diff] [blame] | 1150 | |
| 1151 | #if defined(CONFIG_BT) && defined(CONFIG_MARIMBA_CORE) |
Chintan Pandya | 13490c0 | 2011-12-20 13:03:36 +0530 | [diff] [blame] | 1152 | msm7627a_bt_power_init(); |
Taniya Das | c98bfbc | 2011-08-23 09:58:55 +0530 | [diff] [blame] | 1153 | #endif |
Taniya Das | da40882 | 2011-09-06 12:54:06 +0530 | [diff] [blame] | 1154 | |
Chintan Pandya | 4076270 | 2011-12-06 13:47:06 +0530 | [diff] [blame] | 1155 | msm7627a_camera_init(); |
Taniya Das | c868a2e | 2012-01-03 10:18:47 +0530 | [diff] [blame] | 1156 | msm7627a_add_io_devices(); |
Aparna Mallavarapu | d95d8fc | 2012-03-08 12:07:37 +0530 | [diff] [blame] | 1157 | msm7x25a_kgsl_3d0_init(); |
Taniya Das | c98bfbc | 2011-08-23 09:58:55 +0530 | [diff] [blame] | 1158 | } |
| 1159 | |
| 1160 | static void __init qrd7627a_init_early(void) |
| 1161 | { |
| 1162 | msm_msm7627a_allocate_memory_regions(); |
| 1163 | } |
| 1164 | |
| 1165 | MACHINE_START(MSM7627A_QRD1, "QRD MSM7627a QRD1") |
| 1166 | .boot_params = PHYS_OFFSET + 0x100, |
| 1167 | .map_io = msm_common_io_init, |
| 1168 | .reserve = msm7627a_reserve, |
| 1169 | .init_irq = msm_init_irq, |
Taniya Das | c868a2e | 2012-01-03 10:18:47 +0530 | [diff] [blame] | 1170 | .init_machine = msm_qrd_init, |
| 1171 | .timer = &msm_timer, |
| 1172 | .init_early = qrd7627a_init_early, |
| 1173 | .handle_irq = vic_handle_irq, |
| 1174 | MACHINE_END |
Chintan Pandya | b1bad0e | 2012-02-06 19:04:51 +0530 | [diff] [blame] | 1175 | MACHINE_START(MSM7627A_QRD3, "QRD MSM7627a QRD3") |
| 1176 | .boot_params = PHYS_OFFSET + 0x100, |
| 1177 | .map_io = msm_common_io_init, |
| 1178 | .reserve = msm7627a_reserve, |
| 1179 | .init_irq = msm_init_irq, |
| 1180 | .init_machine = msm_qrd_init, |
| 1181 | .timer = &msm_timer, |
| 1182 | .init_early = qrd7627a_init_early, |
| 1183 | .handle_irq = vic_handle_irq, |
| 1184 | MACHINE_END |
Taniya Das | c868a2e | 2012-01-03 10:18:47 +0530 | [diff] [blame] | 1185 | MACHINE_START(MSM7627A_EVB, "QRD MSM7627a EVB") |
| 1186 | .boot_params = PHYS_OFFSET + 0x100, |
| 1187 | .map_io = msm_common_io_init, |
| 1188 | .reserve = msm7627a_reserve, |
| 1189 | .init_irq = msm_init_irq, |
| 1190 | .init_machine = msm_qrd_init, |
Taniya Das | c98bfbc | 2011-08-23 09:58:55 +0530 | [diff] [blame] | 1191 | .timer = &msm_timer, |
| 1192 | .init_early = qrd7627a_init_early, |
Pankaj Kumar | bf8a2a3 | 2011-10-21 11:47:21 +0530 | [diff] [blame] | 1193 | .handle_irq = vic_handle_irq, |
Taniya Das | c98bfbc | 2011-08-23 09:58:55 +0530 | [diff] [blame] | 1194 | MACHINE_END |
Chintan Pandya | f4ad400 | 2012-02-28 19:49:03 +0530 | [diff] [blame] | 1195 | MACHINE_START(MSM8625_EVB, "QRD MSM8625 EVB") |
| 1196 | .boot_params = PHYS_OFFSET + 0x100, |
| 1197 | .map_io = msm8625_map_io, |
Taniya Das | 0c29cae | 2012-03-08 15:17:37 +0530 | [diff] [blame^] | 1198 | .reserve = msm7627a_reserve, |
Chintan Pandya | f4ad400 | 2012-02-28 19:49:03 +0530 | [diff] [blame] | 1199 | .init_irq = msm8625_init_irq, |
| 1200 | .init_machine = msm_qrd_init, |
| 1201 | .timer = &msm_timer, |
| 1202 | .init_early = qrd7627a_init_early, |
| 1203 | .handle_irq = gic_handle_irq, |
| 1204 | MACHINE_END |