i2c-sibyte.c 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /*
  2. * Copyright (C) 2004 Steven J. Hill
  3. * Copyright (C) 2001,2002,2003 Broadcom Corporation
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License
  7. * as published by the Free Software Foundation; either version 2
  8. * of the License, or (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  18. */
  19. #include <linux/module.h>
  20. #include <linux/i2c-algo-sibyte.h>
  21. #include <asm/sibyte/sb1250_regs.h>
  22. #include <asm/sibyte/sb1250_smbus.h>
  23. static struct i2c_algo_sibyte_data sibyte_board_data[2] = {
  24. { NULL, 0, (void *) (CKSEG1+A_SMB_BASE(0)) },
  25. { NULL, 1, (void *) (CKSEG1+A_SMB_BASE(1)) }
  26. };
  27. static struct i2c_adapter sibyte_board_adapter[2] = {
  28. {
  29. .owner = THIS_MODULE,
  30. .id = I2C_HW_SIBYTE,
  31. .class = I2C_CLASS_HWMON,
  32. .algo = NULL,
  33. .algo_data = &sibyte_board_data[0],
  34. .name = "SiByte SMBus 0",
  35. },
  36. {
  37. .owner = THIS_MODULE,
  38. .id = I2C_HW_SIBYTE,
  39. .class = I2C_CLASS_HWMON,
  40. .algo = NULL,
  41. .algo_data = &sibyte_board_data[1],
  42. .name = "SiByte SMBus 1",
  43. },
  44. };
  45. static int __init i2c_sibyte_init(void)
  46. {
  47. printk("i2c-swarm.o: i2c SMBus adapter module for SiByte board\n");
  48. if (i2c_sibyte_add_bus(&sibyte_board_adapter[0], K_SMB_FREQ_100KHZ) < 0)
  49. return -ENODEV;
  50. if (i2c_sibyte_add_bus(&sibyte_board_adapter[1], K_SMB_FREQ_400KHZ) < 0)
  51. return -ENODEV;
  52. return 0;
  53. }
  54. static void __exit i2c_sibyte_exit(void)
  55. {
  56. i2c_sibyte_del_bus(&sibyte_board_adapter[0]);
  57. i2c_sibyte_del_bus(&sibyte_board_adapter[1]);
  58. }
  59. module_init(i2c_sibyte_init);
  60. module_exit(i2c_sibyte_exit);
  61. MODULE_AUTHOR("Kip Walker <kwalker@broadcom.com>, Steven J. Hill <sjhill@realitydiluted.com>");
  62. MODULE_DESCRIPTION("SMBus adapter routines for SiByte boards");
  63. MODULE_LICENSE("GPL");