~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/include/linux/usb/isp1301.h

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  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 
  8 #ifndef __LINUX_USB_ISP1301_H
  9 #define __LINUX_USB_ISP1301_H
 10 
 11 #include <linux/of.h>
 12 
 13 /* I2C Register definitions: */
 14 
 15 #define ISP1301_I2C_MODE_CONTROL_1      0x04    /* u8 read, set, +1 clear */
 16 
 17 #define MC1_SPEED_REG                   (1 << 0)
 18 #define MC1_SUSPEND_REG                 (1 << 1)
 19 #define MC1_DAT_SE0                     (1 << 2)
 20 #define MC1_TRANSPARENT                 (1 << 3)
 21 #define MC1_BDIS_ACON_EN                (1 << 4)
 22 #define MC1_OE_INT_EN                   (1 << 5)
 23 #define MC1_UART_EN                     (1 << 6)
 24 #define MC1_MASK                        0x7f
 25 
 26 #define ISP1301_I2C_MODE_CONTROL_2      0x12    /* u8 read, set, +1 clear */
 27 
 28 #define MC2_GLOBAL_PWR_DN               (1 << 0)
 29 #define MC2_SPD_SUSP_CTRL               (1 << 1)
 30 #define MC2_BI_DI                       (1 << 2)
 31 #define MC2_TRANSP_BDIR0                (1 << 3)
 32 #define MC2_TRANSP_BDIR1                (1 << 4)
 33 #define MC2_AUDIO_EN                    (1 << 5)
 34 #define MC2_PSW_EN                      (1 << 6)
 35 #define MC2_EN2V7                       (1 << 7)
 36 
 37 #define ISP1301_I2C_OTG_CONTROL_1       0x06    /* u8 read, set, +1 clear */
 38 
 39 #define OTG1_DP_PULLUP                  (1 << 0)
 40 #define OTG1_DM_PULLUP                  (1 << 1)
 41 #define OTG1_DP_PULLDOWN                (1 << 2)
 42 #define OTG1_DM_PULLDOWN                (1 << 3)
 43 #define OTG1_ID_PULLDOWN                (1 << 4)
 44 #define OTG1_VBUS_DRV                   (1 << 5)
 45 #define OTG1_VBUS_DISCHRG               (1 << 6)
 46 #define OTG1_VBUS_CHRG                  (1 << 7)
 47 
 48 #define ISP1301_I2C_OTG_CONTROL_2       0x10    /* u8 readonly */
 49 
 50 #define OTG_B_SESS_END                  (1 << 6)
 51 #define OTG_B_SESS_VLD                  (1 << 7)
 52 
 53 #define ISP1301_I2C_INTERRUPT_SOURCE    0x8
 54 #define ISP1301_I2C_INTERRUPT_LATCH     0xA
 55 #define ISP1301_I2C_INTERRUPT_FALLING   0xC
 56 #define ISP1301_I2C_INTERRUPT_RISING    0xE
 57 
 58 #define INT_VBUS_VLD                    (1 << 0)
 59 #define INT_SESS_VLD                    (1 << 1)
 60 #define INT_DP_HI                       (1 << 2)
 61 #define INT_ID_GND                      (1 << 3)
 62 #define INT_DM_HI                       (1 << 4)
 63 #define INT_ID_FLOAT                    (1 << 5)
 64 #define INT_BDIS_ACON                   (1 << 6)
 65 #define INT_CR_INT                      (1 << 7)
 66 
 67 #define ISP1301_I2C_REG_CLEAR_ADDR      1       /* Register Address Modifier */
 68 
 69 struct i2c_client *isp1301_get_client(struct device_node *node);
 70 
 71 #endif /* __LINUX_USB_ISP1301_H */
 72 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php