busgf119.c 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. /*
  2. * Copyright 2015 Red Hat Inc.
  3. *
  4. * Permission is hereby granted, free of charge, to any person obtaining a
  5. * copy of this software and associated documentation files (the "Software"),
  6. * to deal in the Software without restriction, including without limitation
  7. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  8. * and/or sell copies of the Software, and to permit persons to whom the
  9. * Software is furnished to do so, subject to the following conditions:
  10. *
  11. * The above copyright notice and this permission notice shall be included in
  12. * all copies or substantial busions of the Software.
  13. *
  14. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  17. * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
  18. * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  19. * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  20. * OTHER DEALINGS IN THE SOFTWARE.
  21. *
  22. * Authors: Ben Skeggs <bskeggs@redhat.com>
  23. */
  24. #define gf119_i2c_bus(p) container_of((p), struct gf119_i2c_bus, base)
  25. #include "bus.h"
  26. struct gf119_i2c_bus {
  27. struct nvkm_i2c_bus base;
  28. u32 addr;
  29. };
  30. static void
  31. gf119_i2c_bus_drive_scl(struct nvkm_i2c_bus *base, int state)
  32. {
  33. struct gf119_i2c_bus *bus = gf119_i2c_bus(base);
  34. struct nvkm_device *device = bus->base.pad->i2c->subdev.device;
  35. nvkm_mask(device, bus->addr, 0x00000001, state ? 0x00000001 : 0);
  36. }
  37. static void
  38. gf119_i2c_bus_drive_sda(struct nvkm_i2c_bus *base, int state)
  39. {
  40. struct gf119_i2c_bus *bus = gf119_i2c_bus(base);
  41. struct nvkm_device *device = bus->base.pad->i2c->subdev.device;
  42. nvkm_mask(device, bus->addr, 0x00000002, state ? 0x00000002 : 0);
  43. }
  44. static int
  45. gf119_i2c_bus_sense_scl(struct nvkm_i2c_bus *base)
  46. {
  47. struct gf119_i2c_bus *bus = gf119_i2c_bus(base);
  48. struct nvkm_device *device = bus->base.pad->i2c->subdev.device;
  49. return !!(nvkm_rd32(device, bus->addr) & 0x00000010);
  50. }
  51. static int
  52. gf119_i2c_bus_sense_sda(struct nvkm_i2c_bus *base)
  53. {
  54. struct gf119_i2c_bus *bus = gf119_i2c_bus(base);
  55. struct nvkm_device *device = bus->base.pad->i2c->subdev.device;
  56. return !!(nvkm_rd32(device, bus->addr) & 0x00000020);
  57. }
  58. static void
  59. gf119_i2c_bus_init(struct nvkm_i2c_bus *base)
  60. {
  61. struct gf119_i2c_bus *bus = gf119_i2c_bus(base);
  62. struct nvkm_device *device = bus->base.pad->i2c->subdev.device;
  63. nvkm_wr32(device, bus->addr, 0x00000007);
  64. }
  65. static const struct nvkm_i2c_bus_func
  66. gf119_i2c_bus_func = {
  67. .init = gf119_i2c_bus_init,
  68. .drive_scl = gf119_i2c_bus_drive_scl,
  69. .drive_sda = gf119_i2c_bus_drive_sda,
  70. .sense_scl = gf119_i2c_bus_sense_scl,
  71. .sense_sda = gf119_i2c_bus_sense_sda,
  72. .xfer = nvkm_i2c_bit_xfer,
  73. };
  74. int
  75. gf119_i2c_bus_new(struct nvkm_i2c_pad *pad, int id, u8 drive,
  76. struct nvkm_i2c_bus **pbus)
  77. {
  78. struct gf119_i2c_bus *bus;
  79. if (!(bus = kzalloc(sizeof(*bus), GFP_KERNEL)))
  80. return -ENOMEM;
  81. *pbus = &bus->base;
  82. nvkm_i2c_bus_ctor(&gf119_i2c_bus_func, pad, id, &bus->base);
  83. bus->addr = 0x00d014 + (drive * 0x20);
  84. return 0;
  85. }