adm1275.c 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. /*
  2. * Hardware monitoring driver for Analog Devices ADM1275 Hot-Swap Controller
  3. * and Digital Power Monitor
  4. *
  5. * Copyright (c) 2011 Ericsson AB.
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. */
  17. #include <linux/kernel.h>
  18. #include <linux/module.h>
  19. #include <linux/init.h>
  20. #include <linux/err.h>
  21. #include <linux/slab.h>
  22. #include <linux/i2c.h>
  23. #include "pmbus.h"
  24. #define ADM1275_PMON_CONFIG 0xd4
  25. #define ADM1275_VIN_VOUT_SELECT (1 << 6)
  26. #define ADM1275_VRANGE (1 << 5)
  27. static int adm1275_probe(struct i2c_client *client,
  28. const struct i2c_device_id *id)
  29. {
  30. int config;
  31. struct pmbus_driver_info *info;
  32. if (!i2c_check_functionality(client->adapter,
  33. I2C_FUNC_SMBUS_READ_BYTE_DATA))
  34. return -ENODEV;
  35. info = kzalloc(sizeof(struct pmbus_driver_info), GFP_KERNEL);
  36. if (!info)
  37. return -ENOMEM;
  38. config = i2c_smbus_read_byte_data(client, ADM1275_PMON_CONFIG);
  39. if (config < 0)
  40. return config;
  41. info->pages = 1;
  42. info->direct[PSC_VOLTAGE_IN] = true;
  43. info->direct[PSC_VOLTAGE_OUT] = true;
  44. info->direct[PSC_CURRENT_OUT] = true;
  45. info->m[PSC_CURRENT_OUT] = 800;
  46. info->b[PSC_CURRENT_OUT] = 20475;
  47. info->R[PSC_CURRENT_OUT] = -1;
  48. info->func[0] = PMBUS_HAVE_IOUT | PMBUS_HAVE_STATUS_IOUT;
  49. if (config & ADM1275_VRANGE) {
  50. info->m[PSC_VOLTAGE_IN] = 19045;
  51. info->b[PSC_VOLTAGE_IN] = 0;
  52. info->R[PSC_VOLTAGE_IN] = -2;
  53. info->m[PSC_VOLTAGE_OUT] = 19045;
  54. info->b[PSC_VOLTAGE_OUT] = 0;
  55. info->R[PSC_VOLTAGE_OUT] = -2;
  56. } else {
  57. info->m[PSC_VOLTAGE_IN] = 6666;
  58. info->b[PSC_VOLTAGE_IN] = 0;
  59. info->R[PSC_VOLTAGE_IN] = -1;
  60. info->m[PSC_VOLTAGE_OUT] = 6666;
  61. info->b[PSC_VOLTAGE_OUT] = 0;
  62. info->R[PSC_VOLTAGE_OUT] = -1;
  63. }
  64. if (config & ADM1275_VIN_VOUT_SELECT)
  65. info->func[0] |= PMBUS_HAVE_VOUT | PMBUS_HAVE_STATUS_VOUT;
  66. else
  67. info->func[0] |= PMBUS_HAVE_VIN | PMBUS_HAVE_STATUS_INPUT;
  68. return pmbus_do_probe(client, id, info);
  69. }
  70. static int adm1275_remove(struct i2c_client *client)
  71. {
  72. const struct pmbus_driver_info *info = pmbus_get_driver_info(client);
  73. int ret;
  74. ret = pmbus_do_remove(client);
  75. kfree(info);
  76. return ret;
  77. }
  78. static const struct i2c_device_id adm1275_id[] = {
  79. {"adm1275", 0},
  80. { }
  81. };
  82. MODULE_DEVICE_TABLE(i2c, adm1275_id);
  83. static struct i2c_driver adm1275_driver = {
  84. .driver = {
  85. .name = "adm1275",
  86. },
  87. .probe = adm1275_probe,
  88. .remove = adm1275_remove,
  89. .id_table = adm1275_id,
  90. };
  91. static int __init adm1275_init(void)
  92. {
  93. return i2c_add_driver(&adm1275_driver);
  94. }
  95. static void __exit adm1275_exit(void)
  96. {
  97. i2c_del_driver(&adm1275_driver);
  98. }
  99. MODULE_AUTHOR("Guenter Roeck");
  100. MODULE_DESCRIPTION("PMBus driver for Analog Devices ADM1275");
  101. MODULE_LICENSE("GPL");
  102. module_init(adm1275_init);
  103. module_exit(adm1275_exit);