i2c-sibyte.c 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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/config.h>
  20. #include <linux/module.h>
  21. #include <linux/i2c-algo-sibyte.h>
  22. #include <asm/sibyte/sb1250_regs.h>
  23. #include <asm/sibyte/sb1250_smbus.h>
  24. static struct i2c_algo_sibyte_data sibyte_board_data[2] = {
  25. { NULL, 0, (void *) (KSEG1+A_SMB_BASE(0)) },
  26. { NULL, 1, (void *) (KSEG1+A_SMB_BASE(1)) }
  27. };
  28. static struct i2c_adapter sibyte_board_adapter[2] = {
  29. {
  30. .owner = THIS_MODULE,
  31. .id = I2C_HW_SIBYTE,
  32. .class = I2C_CLASS_HWMON,
  33. .algo = NULL,
  34. .algo_data = &sibyte_board_data[0],
  35. .name = "SiByte SMBus 0",
  36. },
  37. {
  38. .owner = THIS_MODULE,
  39. .id = I2C_HW_SIBYTE,
  40. .class = I2C_CLASS_HWMON,
  41. .algo = NULL,
  42. .algo_data = &sibyte_board_data[1],
  43. .name = "SiByte SMBus 1",
  44. },
  45. };
  46. static int __init i2c_sibyte_init(void)
  47. {
  48. printk("i2c-swarm.o: i2c SMBus adapter module for SiByte board\n");
  49. if (i2c_sibyte_add_bus(&sibyte_board_adapter[0], K_SMB_FREQ_100KHZ) < 0)
  50. return -ENODEV;
  51. if (i2c_sibyte_add_bus(&sibyte_board_adapter[1], K_SMB_FREQ_400KHZ) < 0)
  52. return -ENODEV;
  53. return 0;
  54. }
  55. static void __exit i2c_sibyte_exit(void)
  56. {
  57. i2c_sibyte_del_bus(&sibyte_board_adapter[0]);
  58. i2c_sibyte_del_bus(&sibyte_board_adapter[1]);
  59. }
  60. module_init(i2c_sibyte_init);
  61. module_exit(i2c_sibyte_exit);
  62. MODULE_AUTHOR("Kip Walker <kwalker@broadcom.com>, Steven J. Hill <sjhill@realitydiluted.com>");
  63. MODULE_DESCRIPTION("SMBus adapter routines for SiByte boards");
  64. MODULE_LICENSE("GPL");