i2c.c 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. /* $OpenBSD: i2c.c,v 1.16 2015/03/14 03:38:47 jsg Exp $ */
  2. /* $NetBSD: i2c.c,v 1.1 2003/09/30 00:35:31 thorpej Exp $ */
  3. /*
  4. * Copyright (c) 2003 Wasabi Systems, Inc.
  5. * All rights reserved.
  6. *
  7. * Written by Jason R. Thorpe for Wasabi Systems, Inc.
  8. *
  9. * Redistribution and use in source and binary forms, with or without
  10. * modification, are permitted provided that the following conditions
  11. * are met:
  12. * 1. Redistributions of source code must retain the above copyright
  13. * notice, this list of conditions and the following disclaimer.
  14. * 2. Redistributions in binary form must reproduce the above copyright
  15. * notice, this list of conditions and the following disclaimer in the
  16. * documentation and/or other materials provided with the distribution.
  17. * 3. All advertising materials mentioning features or use of this software
  18. * must display the following acknowledgement:
  19. * This product includes software developed for the NetBSD Project by
  20. * Wasabi Systems, Inc.
  21. * 4. The name of Wasabi Systems, Inc. may not be used to endorse
  22. * or promote products derived from this software without specific prior
  23. * written permission.
  24. *
  25. * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
  26. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
  27. * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  28. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL WASABI SYSTEMS, INC
  29. * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  30. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  31. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  32. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  33. * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  34. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  35. * POSSIBILITY OF SUCH DAMAGE.
  36. */
  37. #include <sys/param.h>
  38. #include <sys/systm.h>
  39. #include <sys/device.h>
  40. #include <sys/event.h>
  41. #define _I2C_PRIVATE
  42. #include <dev/i2c/i2cvar.h>
  43. #define IICCF_ADDR 0
  44. #define IICCF_SIZE 1
  45. struct iic_softc {
  46. struct device sc_dev;
  47. i2c_tag_t sc_tag;
  48. };
  49. int iic_match(struct device *, void *, void *);
  50. void iic_attach(struct device *, struct device *, void *);
  51. int iic_search(struct device *, void *, void *);
  52. struct cfattach iic_ca = {
  53. sizeof (struct iic_softc),
  54. iic_match,
  55. iic_attach
  56. };
  57. struct cfdriver iic_cd = {
  58. NULL, "iic", DV_DULL
  59. };
  60. int
  61. iicbus_print(void *aux, const char *pnp)
  62. {
  63. struct i2cbus_attach_args *iba = aux;
  64. if (pnp != NULL)
  65. printf("%s at %s", iba->iba_name, pnp);
  66. return (UNCONF);
  67. }
  68. int
  69. iic_print(void *aux, const char *pnp)
  70. {
  71. struct i2c_attach_args *ia = aux;
  72. if (pnp != NULL)
  73. printf("\"%s\" at %s", ia->ia_name, pnp);
  74. printf(" addr 0x%x", ia->ia_addr);
  75. return (UNCONF);
  76. }
  77. int
  78. iic_search(struct device *parent, void *arg, void *aux)
  79. {
  80. struct iic_softc *sc = (void *) parent;
  81. struct cfdata *cf = arg;
  82. struct i2c_attach_args ia;
  83. if (cf->cf_loc[IICCF_ADDR] != -1) {
  84. memset(&ia, 0, sizeof(ia));
  85. ia.ia_tag = sc->sc_tag;
  86. ia.ia_addr = cf->cf_loc[IICCF_ADDR];
  87. ia.ia_size = cf->cf_loc[IICCF_SIZE];
  88. ia.ia_name = "unknown";
  89. if (cf->cf_attach->ca_match(parent, cf, &ia) > 0)
  90. config_attach(parent, cf, &ia, iic_print);
  91. }
  92. return (0);
  93. }
  94. int
  95. iic_match(struct device *parent, void *arg, void *aux)
  96. {
  97. struct cfdata *cf = arg;
  98. struct i2cbus_attach_args *iba = aux;
  99. /* Just make sure we're looking for i2c. */
  100. return (strcmp(iba->iba_name, cf->cf_driver->cd_name) == 0);
  101. }
  102. void
  103. iic_attach(struct device *parent, struct device *self, void *aux)
  104. {
  105. struct iic_softc *sc = (void *) self;
  106. struct i2cbus_attach_args *iba = aux;
  107. sc->sc_tag = iba->iba_tag;
  108. printf("\n");
  109. /*
  110. * Attach all i2c devices described in the kernel
  111. * configuration file.
  112. */
  113. config_search(iic_search, self, NULL);
  114. /*
  115. * Scan for known device signatures.
  116. */
  117. if (iba->iba_bus_scan)
  118. (iba->iba_bus_scan)(self, aux, iba->iba_bus_scan_arg);
  119. else
  120. iic_scan(self, aux);
  121. }