isp1301.h 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * NXP ISP1301 USB transceiver driver
  4. *
  5. * Copyright (C) 2012 Roland Stigge <stigge@antcom.de>
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; version 2 of the License.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. */
  17. #ifndef __LINUX_USB_ISP1301_H
  18. #define __LINUX_USB_ISP1301_H
  19. #include <linux/of.h>
  20. /* I2C Register definitions: */
  21. #define ISP1301_I2C_MODE_CONTROL_1 0x04 /* u8 read, set, +1 clear */
  22. #define MC1_SPEED_REG (1 << 0)
  23. #define MC1_SUSPEND_REG (1 << 1)
  24. #define MC1_DAT_SE0 (1 << 2)
  25. #define MC1_TRANSPARENT (1 << 3)
  26. #define MC1_BDIS_ACON_EN (1 << 4)
  27. #define MC1_OE_INT_EN (1 << 5)
  28. #define MC1_UART_EN (1 << 6)
  29. #define MC1_MASK 0x7f
  30. #define ISP1301_I2C_MODE_CONTROL_2 0x12 /* u8 read, set, +1 clear */
  31. #define MC2_GLOBAL_PWR_DN (1 << 0)
  32. #define MC2_SPD_SUSP_CTRL (1 << 1)
  33. #define MC2_BI_DI (1 << 2)
  34. #define MC2_TRANSP_BDIR0 (1 << 3)
  35. #define MC2_TRANSP_BDIR1 (1 << 4)
  36. #define MC2_AUDIO_EN (1 << 5)
  37. #define MC2_PSW_EN (1 << 6)
  38. #define MC2_EN2V7 (1 << 7)
  39. #define ISP1301_I2C_OTG_CONTROL_1 0x06 /* u8 read, set, +1 clear */
  40. #define OTG1_DP_PULLUP (1 << 0)
  41. #define OTG1_DM_PULLUP (1 << 1)
  42. #define OTG1_DP_PULLDOWN (1 << 2)
  43. #define OTG1_DM_PULLDOWN (1 << 3)
  44. #define OTG1_ID_PULLDOWN (1 << 4)
  45. #define OTG1_VBUS_DRV (1 << 5)
  46. #define OTG1_VBUS_DISCHRG (1 << 6)
  47. #define OTG1_VBUS_CHRG (1 << 7)
  48. #define ISP1301_I2C_OTG_CONTROL_2 0x10 /* u8 readonly */
  49. #define OTG_B_SESS_END (1 << 6)
  50. #define OTG_B_SESS_VLD (1 << 7)
  51. #define ISP1301_I2C_INTERRUPT_SOURCE 0x8
  52. #define ISP1301_I2C_INTERRUPT_LATCH 0xA
  53. #define ISP1301_I2C_INTERRUPT_FALLING 0xC
  54. #define ISP1301_I2C_INTERRUPT_RISING 0xE
  55. #define INT_VBUS_VLD (1 << 0)
  56. #define INT_SESS_VLD (1 << 1)
  57. #define INT_DP_HI (1 << 2)
  58. #define INT_ID_GND (1 << 3)
  59. #define INT_DM_HI (1 << 4)
  60. #define INT_ID_FLOAT (1 << 5)
  61. #define INT_BDIS_ACON (1 << 6)
  62. #define INT_CR_INT (1 << 7)
  63. #define ISP1301_I2C_REG_CLEAR_ADDR 1 /* Register Address Modifier */
  64. struct i2c_client *isp1301_get_client(struct device_node *node);
  65. #endif /* __LINUX_USB_ISP1301_H */