i2c.c 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. /*
  2. * linux/arch/arm/plat-omap/i2c.c
  3. *
  4. * Helper module for board specific I2C bus registration
  5. *
  6. * Copyright (C) 2007 Nokia Corporation.
  7. *
  8. * Contact: Jarkko Nikula <jhnikula@gmail.com>
  9. *
  10. * This program is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU General Public License
  12. * version 2 as published by the Free Software Foundation.
  13. *
  14. * This program is distributed in the hope that it will be useful, but
  15. * WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  17. * General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  22. * 02110-1301 USA
  23. *
  24. */
  25. #include <linux/kernel.h>
  26. #include <linux/platform_device.h>
  27. #include <linux/i2c.h>
  28. #include <mach/irqs.h>
  29. #include <plat/mux.h>
  30. #include <plat/i2c.h>
  31. #define OMAP_I2C_SIZE 0x3f
  32. #define OMAP1_I2C_BASE 0xfffb3800
  33. #define OMAP2_I2C_BASE1 0x48070000
  34. #define OMAP2_I2C_BASE2 0x48072000
  35. #define OMAP2_I2C_BASE3 0x48060000
  36. static const char name[] = "i2c_omap";
  37. #define I2C_RESOURCE_BUILDER(base, irq) \
  38. { \
  39. .start = (base), \
  40. .end = (base) + OMAP_I2C_SIZE, \
  41. .flags = IORESOURCE_MEM, \
  42. }, \
  43. { \
  44. .start = (irq), \
  45. .flags = IORESOURCE_IRQ, \
  46. },
  47. static struct resource i2c_resources[][2] = {
  48. { I2C_RESOURCE_BUILDER(0, 0) },
  49. #if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3)
  50. { I2C_RESOURCE_BUILDER(OMAP2_I2C_BASE2, INT_24XX_I2C2_IRQ) },
  51. #endif
  52. #if defined(CONFIG_ARCH_OMAP3)
  53. { I2C_RESOURCE_BUILDER(OMAP2_I2C_BASE3, INT_34XX_I2C3_IRQ) },
  54. #endif
  55. };
  56. #define I2C_DEV_BUILDER(bus_id, res, data) \
  57. { \
  58. .id = (bus_id), \
  59. .name = name, \
  60. .num_resources = ARRAY_SIZE(res), \
  61. .resource = (res), \
  62. .dev = { \
  63. .platform_data = (data), \
  64. }, \
  65. }
  66. static u32 i2c_rate[ARRAY_SIZE(i2c_resources)];
  67. static struct platform_device omap_i2c_devices[] = {
  68. I2C_DEV_BUILDER(1, i2c_resources[0], &i2c_rate[0]),
  69. #if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3)
  70. I2C_DEV_BUILDER(2, i2c_resources[1], &i2c_rate[1]),
  71. #endif
  72. #if defined(CONFIG_ARCH_OMAP3)
  73. I2C_DEV_BUILDER(3, i2c_resources[2], &i2c_rate[2]),
  74. #endif
  75. };
  76. #define OMAP_I2C_CMDLINE_SETUP (BIT(31))
  77. static int __init omap_i2c_nr_ports(void)
  78. {
  79. int ports = 0;
  80. if (cpu_class_is_omap1())
  81. ports = 1;
  82. else if (cpu_is_omap24xx())
  83. ports = 2;
  84. else if (cpu_is_omap34xx())
  85. ports = 3;
  86. return ports;
  87. }
  88. static int __init omap_i2c_add_bus(int bus_id)
  89. {
  90. struct platform_device *pdev;
  91. struct resource *res;
  92. resource_size_t base, irq;
  93. pdev = &omap_i2c_devices[bus_id - 1];
  94. if (bus_id == 1) {
  95. res = pdev->resource;
  96. if (cpu_class_is_omap1()) {
  97. base = OMAP1_I2C_BASE;
  98. irq = INT_I2C;
  99. } else {
  100. base = OMAP2_I2C_BASE1;
  101. irq = INT_24XX_I2C1_IRQ;
  102. }
  103. res[0].start = base;
  104. res[0].end = base + OMAP_I2C_SIZE;
  105. res[1].start = irq;
  106. }
  107. if (cpu_class_is_omap1())
  108. omap1_i2c_mux_pins(bus_id);
  109. if (cpu_class_is_omap2())
  110. omap2_i2c_mux_pins(bus_id);
  111. return platform_device_register(pdev);
  112. }
  113. /**
  114. * omap_i2c_bus_setup - Process command line options for the I2C bus speed
  115. * @str: String of options
  116. *
  117. * This function allow to override the default I2C bus speed for given I2C
  118. * bus with a command line option.
  119. *
  120. * Format: i2c_bus=bus_id,clkrate (in kHz)
  121. *
  122. * Returns 1 on success, 0 otherwise.
  123. */
  124. static int __init omap_i2c_bus_setup(char *str)
  125. {
  126. int ports;
  127. int ints[3];
  128. ports = omap_i2c_nr_ports();
  129. get_options(str, 3, ints);
  130. if (ints[0] < 2 || ints[1] < 1 || ints[1] > ports)
  131. return 0;
  132. i2c_rate[ints[1] - 1] = ints[2];
  133. i2c_rate[ints[1] - 1] |= OMAP_I2C_CMDLINE_SETUP;
  134. return 1;
  135. }
  136. __setup("i2c_bus=", omap_i2c_bus_setup);
  137. /*
  138. * Register busses defined in command line but that are not registered with
  139. * omap_register_i2c_bus from board initialization code.
  140. */
  141. static int __init omap_register_i2c_bus_cmdline(void)
  142. {
  143. int i, err = 0;
  144. for (i = 0; i < ARRAY_SIZE(i2c_rate); i++)
  145. if (i2c_rate[i] & OMAP_I2C_CMDLINE_SETUP) {
  146. i2c_rate[i] &= ~OMAP_I2C_CMDLINE_SETUP;
  147. err = omap_i2c_add_bus(i + 1);
  148. if (err)
  149. goto out;
  150. }
  151. out:
  152. return err;
  153. }
  154. subsys_initcall(omap_register_i2c_bus_cmdline);
  155. /**
  156. * omap_register_i2c_bus - register I2C bus with device descriptors
  157. * @bus_id: bus id counting from number 1
  158. * @clkrate: clock rate of the bus in kHz
  159. * @info: pointer into I2C device descriptor table or NULL
  160. * @len: number of descriptors in the table
  161. *
  162. * Returns 0 on success or an error code.
  163. */
  164. int __init omap_register_i2c_bus(int bus_id, u32 clkrate,
  165. struct i2c_board_info const *info,
  166. unsigned len)
  167. {
  168. int err;
  169. BUG_ON(bus_id < 1 || bus_id > omap_i2c_nr_ports());
  170. if (info) {
  171. err = i2c_register_board_info(bus_id, info, len);
  172. if (err)
  173. return err;
  174. }
  175. if (!i2c_rate[bus_id - 1])
  176. i2c_rate[bus_id - 1] = clkrate;
  177. i2c_rate[bus_id - 1] &= ~OMAP_I2C_CMDLINE_SETUP;
  178. return omap_i2c_add_bus(bus_id);
  179. }