Vijayavardhan Vennapusa | afbbb8f | 2012-04-13 16:28:45 +0530 | [diff] [blame] | 1 | /* Copyright (c) 2012, 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 | |
| 13 | #include <linux/platform_device.h> |
| 14 | #include <linux/err.h> |
| 15 | #include <linux/pm_runtime.h> |
| 16 | #include <linux/regulator/consumer.h> |
| 17 | #include <linux/i2c.h> |
| 18 | #include <linux/gpio.h> |
| 19 | #include <linux/slab.h> |
| 20 | #include <linux/delay.h> |
| 21 | #include <linux/smsc3503.h> |
Steve Muckle | f132c6c | 2012-06-06 18:30:57 -0700 | [diff] [blame] | 22 | #include <linux/module.h> |
Vijayavardhan Vennapusa | afbbb8f | 2012-04-13 16:28:45 +0530 | [diff] [blame] | 23 | #include <mach/msm_xo.h> |
| 24 | |
| 25 | #define SMSC3503_I2C_ADDR 0x08 |
| 26 | #define SMSC_GSBI_I2C_BUS_ID 10 |
| 27 | static const unsigned short normal_i2c[] = { |
| 28 | SMSC3503_I2C_ADDR, I2C_CLIENT_END }; |
| 29 | |
| 30 | struct hsic_hub { |
| 31 | struct regulator *hsic_hub_reg; |
| 32 | struct device *dev; |
| 33 | struct i2c_client *client; |
| 34 | struct msm_xo_voter *xo_handle; |
| 35 | }; |
| 36 | static struct hsic_hub *smsc_hub; |
| 37 | |
| 38 | /* APIs for setting/clearing bits and for reading/writing values */ |
| 39 | static inline int hsic_hub_get_u8(struct i2c_client *client, u8 reg) |
| 40 | { |
| 41 | int ret; |
| 42 | |
| 43 | ret = i2c_smbus_read_byte_data(client, reg); |
| 44 | if (ret < 0) |
| 45 | pr_err("%s:i2c_read8 failed\n", __func__); |
| 46 | return ret; |
| 47 | } |
| 48 | |
| 49 | static inline int hsic_hub_get_u16(struct i2c_client *client, u8 reg) |
| 50 | { |
| 51 | int ret; |
| 52 | |
| 53 | ret = i2c_smbus_read_word_data(client, reg); |
| 54 | if (ret < 0) |
| 55 | pr_err("%s:i2c_read16 failed\n", __func__); |
| 56 | return ret; |
| 57 | } |
| 58 | |
| 59 | static inline int hsic_hub_write_word_data(struct i2c_client *client, u8 reg, |
| 60 | u16 value) |
| 61 | { |
| 62 | int ret; |
| 63 | |
| 64 | ret = i2c_smbus_write_word_data(client, reg, value); |
| 65 | if (ret) |
| 66 | pr_err("%s:i2c_write16 failed\n", __func__); |
| 67 | return ret; |
| 68 | } |
| 69 | |
| 70 | static inline int hsic_hub_write_byte_data(struct i2c_client *client, u8 reg, |
| 71 | u8 value) |
| 72 | { |
| 73 | int ret; |
| 74 | |
| 75 | ret = i2c_smbus_write_byte_data(client, reg, value); |
| 76 | if (ret) |
| 77 | pr_err("%s:i2c_write_byte_data failed\n", __func__); |
| 78 | return ret; |
| 79 | } |
| 80 | |
| 81 | static inline int hsic_hub_set_bits(struct i2c_client *client, u8 reg, |
| 82 | u8 value) |
| 83 | { |
| 84 | int ret; |
| 85 | |
| 86 | ret = i2c_smbus_read_byte_data(client, reg); |
| 87 | if (ret < 0) { |
| 88 | pr_err("%s:i2c_read_byte_data failed\n", __func__); |
| 89 | return ret; |
| 90 | } |
| 91 | return i2c_smbus_write_byte_data(client, reg, (ret | value)); |
| 92 | } |
| 93 | |
| 94 | static inline int hsic_hub_clear_bits(struct i2c_client *client, u8 reg, |
| 95 | u8 value) |
| 96 | { |
| 97 | int ret; |
| 98 | |
| 99 | ret = i2c_smbus_read_byte_data(client, reg); |
| 100 | if (ret < 0) { |
| 101 | pr_err("%s:i2c_read_byte_data failed\n", __func__); |
| 102 | return ret; |
| 103 | } |
| 104 | return i2c_smbus_write_byte_data(client, reg, (ret & ~value)); |
| 105 | } |
| 106 | |
| 107 | static int i2c_hsic_hub_probe(struct i2c_client *client, |
| 108 | const struct i2c_device_id *id) |
| 109 | { |
| 110 | if (!i2c_check_functionality(client->adapter, I2C_FUNC_SMBUS_BYTE_DATA | |
| 111 | I2C_FUNC_SMBUS_WORD_DATA)) |
| 112 | return -EIO; |
| 113 | |
Vijayavardhan Vennapusa | 361da68 | 2012-04-12 19:50:02 +0530 | [diff] [blame] | 114 | /* CONFIG_N bit in SP_ILOCK register has to be set before changing |
| 115 | * other registers to change default configuration of hsic hub. |
| 116 | */ |
| 117 | hsic_hub_set_bits(client, SMSC3503_SP_ILOCK, CONFIG_N); |
| 118 | |
| 119 | /* Can change default configuartion like VID,PID, strings etc |
| 120 | * by writing new values to hsic hub registers. |
| 121 | */ |
| 122 | hsic_hub_write_word_data(client, SMSC3503_VENDORID, 0x05C6); |
| 123 | |
| 124 | /* CONFIG_N bit in SP_ILOCK register has to be cleared for new |
| 125 | * values in registers to be effective after writing to |
| 126 | * other registers. |
| 127 | */ |
| 128 | hsic_hub_clear_bits(client, SMSC3503_SP_ILOCK, CONFIG_N); |
| 129 | |
Vijayavardhan Vennapusa | afbbb8f | 2012-04-13 16:28:45 +0530 | [diff] [blame] | 130 | return 0; |
| 131 | } |
| 132 | |
| 133 | static int i2c_hsic_hub_remove(struct i2c_client *client) |
| 134 | { |
| 135 | return 0; |
| 136 | } |
| 137 | |
| 138 | static const struct i2c_device_id hsic_hub_id[] = { |
| 139 | {"i2c_hsic_hub", 0}, |
| 140 | {} |
| 141 | }; |
| 142 | MODULE_DEVICE_TABLE(i2c, hsichub_id); |
| 143 | |
| 144 | static struct i2c_driver hsic_hub_driver = { |
| 145 | .driver = { |
| 146 | .name = "i2c_hsic_hub", |
| 147 | }, |
| 148 | .probe = i2c_hsic_hub_probe, |
| 149 | .remove = i2c_hsic_hub_remove, |
| 150 | .id_table = hsic_hub_id, |
| 151 | }; |
| 152 | |
| 153 | #define HSIC_HUB_VDD_VOL_MIN 1650000 /* uV */ |
| 154 | #define HSIC_HUB_VDD_VOL_MAX 1950000 /* uV */ |
| 155 | #define HSIC_HUB_VDD_LOAD 36000 /* uA */ |
| 156 | static int __devinit smsc_hub_probe(struct platform_device *pdev) |
| 157 | { |
| 158 | int ret = 0; |
| 159 | const struct smsc_hub_platform_data *pdata; |
| 160 | struct i2c_adapter *i2c_adap; |
| 161 | struct i2c_board_info i2c_info; |
| 162 | |
| 163 | if (!pdev->dev.platform_data) { |
| 164 | dev_err(&pdev->dev, "No platform data\n"); |
| 165 | return -ENODEV; |
| 166 | } |
| 167 | |
| 168 | pdata = pdev->dev.platform_data; |
| 169 | if (!pdata->hub_reset) |
| 170 | return -EINVAL; |
| 171 | |
| 172 | smsc_hub = kzalloc(sizeof(*smsc_hub), GFP_KERNEL); |
| 173 | if (!smsc_hub) |
| 174 | return -ENOMEM; |
| 175 | |
| 176 | smsc_hub->hsic_hub_reg = regulator_get(&pdev->dev, "EXT_HUB_VDDIO"); |
| 177 | if (IS_ERR(smsc_hub->hsic_hub_reg)) { |
| 178 | dev_err(&pdev->dev, "unable to get ext hub vddcx\n"); |
| 179 | ret = PTR_ERR(smsc_hub->hsic_hub_reg); |
| 180 | goto free_mem; |
| 181 | } |
| 182 | |
| 183 | ret = gpio_request(pdata->hub_reset, "HSIC_HUB_RESET_GPIO"); |
| 184 | if (ret < 0) { |
| 185 | dev_err(&pdev->dev, "gpio request failed for GPIO%d\n", |
| 186 | pdata->hub_reset); |
| 187 | goto gpio_req_fail; |
| 188 | } |
| 189 | |
| 190 | ret = regulator_set_voltage(smsc_hub->hsic_hub_reg, |
| 191 | HSIC_HUB_VDD_VOL_MIN, |
| 192 | HSIC_HUB_VDD_VOL_MAX); |
| 193 | if (ret) { |
| 194 | dev_err(&pdev->dev, "unable to set the voltage" |
| 195 | "for hsic hub reg\n"); |
| 196 | goto reg_set_voltage_fail; |
| 197 | } |
| 198 | |
| 199 | ret = regulator_set_optimum_mode(smsc_hub->hsic_hub_reg, |
| 200 | HSIC_HUB_VDD_LOAD); |
| 201 | if (ret < 0) { |
| 202 | dev_err(&pdev->dev, "Unable to set optimum mode of regulator:" |
| 203 | "VDDCX\n"); |
| 204 | goto reg_optimum_mode_fail; |
| 205 | } |
| 206 | |
| 207 | ret = regulator_enable(smsc_hub->hsic_hub_reg); |
| 208 | if (ret) { |
| 209 | dev_err(&pdev->dev, "unable to enable ext hub vddcx\n"); |
| 210 | goto reg_enable_fail; |
| 211 | } |
| 212 | |
| 213 | smsc_hub->xo_handle = msm_xo_get(MSM_XO_TCXO_D1, "hsic_hub"); |
| 214 | if (IS_ERR(smsc_hub->xo_handle)) { |
| 215 | dev_err(&pdev->dev, "not able to get the handle" |
| 216 | "for TCXO D1 buffer\n"); |
| 217 | goto disable_regulator; |
| 218 | } |
| 219 | |
| 220 | ret = msm_xo_mode_vote(smsc_hub->xo_handle, MSM_XO_MODE_ON); |
| 221 | if (ret) { |
| 222 | dev_err(&pdev->dev, "failed to vote for TCXO" |
| 223 | "D1 buffer\n"); |
| 224 | goto xo_vote_fail; |
| 225 | } |
| 226 | |
| 227 | gpio_direction_output(pdata->hub_reset, 0); |
| 228 | /* Hub reset should be asserted for minimum 2microsec |
| 229 | * before deasserting. |
| 230 | */ |
| 231 | udelay(5); |
| 232 | gpio_direction_output(pdata->hub_reset, 1); |
| 233 | |
| 234 | ret = i2c_add_driver(&hsic_hub_driver); |
| 235 | if (ret < 0) { |
| 236 | dev_err(&pdev->dev, "failed to add I2C hsic_hub_driver\n"); |
| 237 | goto i2c_add_fail; |
| 238 | } |
| 239 | usleep_range(10000, 12000); |
| 240 | i2c_adap = i2c_get_adapter(SMSC_GSBI_I2C_BUS_ID); |
| 241 | |
| 242 | if (!i2c_adap) { |
| 243 | dev_err(&pdev->dev, "failed to get i2c adapter\n"); |
| 244 | i2c_del_driver(&hsic_hub_driver); |
| 245 | goto i2c_add_fail; |
| 246 | } |
| 247 | |
| 248 | memset(&i2c_info, 0, sizeof(struct i2c_board_info)); |
| 249 | strlcpy(i2c_info.type, "i2c_hsic_hub", I2C_NAME_SIZE); |
| 250 | |
| 251 | smsc_hub->client = i2c_new_probed_device(i2c_adap, &i2c_info, |
| 252 | normal_i2c, NULL); |
| 253 | i2c_put_adapter(i2c_adap); |
| 254 | if (!smsc_hub->client) |
| 255 | dev_err(&pdev->dev, "failed to connect to smsc_hub" |
| 256 | "through I2C\n"); |
| 257 | |
| 258 | i2c_add_fail: |
| 259 | pm_runtime_set_active(&pdev->dev); |
| 260 | pm_runtime_enable(&pdev->dev); |
| 261 | |
| 262 | return 0; |
| 263 | |
| 264 | xo_vote_fail: |
| 265 | msm_xo_put(smsc_hub->xo_handle); |
| 266 | disable_regulator: |
| 267 | regulator_disable(smsc_hub->hsic_hub_reg); |
| 268 | reg_enable_fail: |
| 269 | regulator_set_optimum_mode(smsc_hub->hsic_hub_reg, 0); |
| 270 | reg_optimum_mode_fail: |
| 271 | regulator_set_voltage(smsc_hub->hsic_hub_reg, 0, |
| 272 | HSIC_HUB_VDD_VOL_MIN); |
| 273 | reg_set_voltage_fail: |
| 274 | gpio_free(pdata->hub_reset); |
| 275 | gpio_req_fail: |
| 276 | regulator_put(smsc_hub->hsic_hub_reg); |
| 277 | free_mem: |
| 278 | kfree(smsc_hub); |
| 279 | |
| 280 | return ret; |
| 281 | } |
| 282 | |
| 283 | static int smsc_hub_remove(struct platform_device *pdev) |
| 284 | { |
| 285 | const struct smsc_hub_platform_data *pdata; |
| 286 | |
| 287 | pdata = pdev->dev.platform_data; |
| 288 | if (smsc_hub->client) { |
| 289 | i2c_unregister_device(smsc_hub->client); |
| 290 | smsc_hub->client = NULL; |
| 291 | i2c_del_driver(&hsic_hub_driver); |
| 292 | } |
| 293 | pm_runtime_disable(&pdev->dev); |
| 294 | msm_xo_put(smsc_hub->xo_handle); |
| 295 | |
| 296 | regulator_disable(smsc_hub->hsic_hub_reg); |
| 297 | regulator_set_optimum_mode(smsc_hub->hsic_hub_reg, 0); |
| 298 | regulator_set_voltage(smsc_hub->hsic_hub_reg, 0, |
| 299 | HSIC_HUB_VDD_VOL_MIN); |
| 300 | gpio_free(pdata->hub_reset); |
| 301 | regulator_put(smsc_hub->hsic_hub_reg); |
| 302 | kfree(smsc_hub); |
| 303 | |
| 304 | return 0; |
| 305 | } |
| 306 | |
| 307 | #ifdef CONFIG_PM_RUNTIME |
| 308 | static int msm_smsc_runtime_idle(struct device *dev) |
| 309 | { |
| 310 | dev_dbg(dev, "SMSC HUB runtime idle\n"); |
| 311 | |
| 312 | return 0; |
| 313 | } |
| 314 | |
| 315 | static int smsc_hub_lpm_enter(struct device *dev) |
| 316 | { |
| 317 | int ret; |
| 318 | |
| 319 | ret = msm_xo_mode_vote(smsc_hub->xo_handle, MSM_XO_MODE_OFF); |
| 320 | if (ret) { |
| 321 | pr_err("%s: failed to devote for TCXO" |
| 322 | "D1 buffer%d\n", __func__, ret); |
| 323 | } |
| 324 | return ret; |
| 325 | } |
| 326 | |
| 327 | static int smsc_hub_lpm_exit(struct device *dev) |
| 328 | { |
| 329 | int ret; |
| 330 | |
| 331 | ret = msm_xo_mode_vote(smsc_hub->xo_handle, MSM_XO_MODE_ON); |
| 332 | if (ret) { |
| 333 | pr_err("%s: failed to vote for TCXO" |
| 334 | "D1 buffer%d\n", __func__, ret); |
| 335 | } |
| 336 | return ret; |
| 337 | } |
| 338 | #endif |
| 339 | |
| 340 | #ifdef CONFIG_PM |
| 341 | static const struct dev_pm_ops smsc_hub_dev_pm_ops = { |
| 342 | SET_SYSTEM_SLEEP_PM_OPS(smsc_hub_lpm_enter, smsc_hub_lpm_exit) |
| 343 | SET_RUNTIME_PM_OPS(smsc_hub_lpm_enter, smsc_hub_lpm_exit, |
| 344 | msm_smsc_runtime_idle) |
| 345 | }; |
| 346 | #endif |
| 347 | |
| 348 | static struct platform_driver smsc_hub_driver = { |
| 349 | .driver = { |
| 350 | .name = "msm_smsc_hub", |
| 351 | .owner = THIS_MODULE, |
| 352 | #ifdef CONFIG_PM |
| 353 | .pm = &smsc_hub_dev_pm_ops, |
| 354 | #endif |
| 355 | }, |
| 356 | .remove = smsc_hub_remove, |
| 357 | }; |
| 358 | |
| 359 | static int __init smsc_hub_init(void) |
| 360 | { |
| 361 | return platform_driver_probe(&smsc_hub_driver, smsc_hub_probe); |
| 362 | } |
| 363 | |
| 364 | static void __exit smsc_hub_exit(void) |
| 365 | { |
| 366 | platform_driver_unregister(&smsc_hub_driver); |
| 367 | } |
| 368 | subsys_initcall(smsc_hub_init); |
| 369 | module_exit(smsc_hub_exit); |
| 370 | |
| 371 | MODULE_LICENSE("GPL v2"); |
| 372 | MODULE_DESCRIPTION("SMSC HSIC HUB driver"); |